﻿@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

html {
    overflow-y: scroll;
    min-height: 100%;
    scroll-behavior: smooth; /* Yumuşak geçiş */
}
body {
    width: 100%;
    margin: 0;
    padding: 0;
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
    line-height: 30px;
    color: #40464c;
    background-color: #00000005;
}
img {
    max-width: 100%;
    vertical-align: middle;
}
form {
    width: 100%;
    margin: 0;
    padding: 0
}
h5 {
    color: #F15A2B;
    font-weight: 600;
    font-size: 48px;
    margin:0;
    padding:0;
}
h1 {
    color: #000;
    font-weight: 800;
    font-size: 64px;
    line-height:64px;
}
.container {
    width: 100%;
    max-width: 1280px;
    margin: auto;
    position: relative;
    padding-top: 140px;
    box-sizing:border-box;
}
a {
    all: unset;
    cursor: pointer; /* Opsiyonel, link hissi vermek istersen */
}
.b-link{
    display:block;
}
section{
    padding-top:0;
}
header {
    top:0;
    width: 100%;
    margin: auto;
    position: fixed;
    padding: 20px 0;
    background-color: #fff;
    z-index: 9999;
    box-shadow: 0px 2px 16px -3px rgba(0,0,0,0.2);
    -webkit-box-shadow: 0px 2px 16px -3px rgba(0,0,0,0.2);
    -moz-box-shadow: 0px 2px 16px -3px rgba(0,0,0,0.2);
}
    header .container{
        padding-top:0;
    }
    header .logo {
        width: 275px;
        position: absolute;
        left: -20px;
        top: 0;
    }
        header .logo img {
            max-width: 100%;
        }
    header nav {
        text-align: right;
    }
        header nav ul {
            list-style: none;
            padding: 0;
            margin: 0;
            display: inline-block;
        }
            header nav ul li {
                list-style: none;
                padding: 0;
                margin: 0;
                display: inline-block;
            }
                header nav ul li a {
                    line-height: 86px;
                    display: block;
                    padding: 0 20px;
                    color: #F15A2B;
                    text-decoration: none;
                    font-weight: 500;
                    font-size: 20px;
                    color: #F15A2B;
                }
    header .mob-menu{
        position:absolute;
        right:20px;
        top:10px;
        display:none;
        z-index:999999;
    }
    .hero {
        display: block;
    }
    .hero p {
        color: #000000;
        font-weight: 300;
        font-size: 27px;
        width: 80%;
        line-height: 35px;
    }
    .hero img {
        margin-top: 50px;
    }
.c-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}
.slide-row {
    transition: min-height 0.5s ease;
    overflow: hidden;
    min-height: 300px;
    
}
.hidden {
    height: 0;
    min-height:0;
}
.c4-col {
    position: relative;
    width: 100%;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
    box-sizing:border-box;
}
.c6-col {
    position: relative;
    width: 100%;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
    box-sizing: border-box;
}
.c8-col {
    position: relative;
    width: 100%;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 66.666666%;
    flex: 0 0 66.666666%;
    max-width: 66.666666%;
    box-sizing: border-box;
}
span.title {
    display: block;
    color: #000000;
    font-size:24px;
    font-weight:400;
}
p.desc {
    display: block;
    color: #828282;
    font-size: 24px;
    font-weight: 300;
    margin:0;
    padding:0;
}
.pt10{
    padding-top:10px;
}
.pb10 {
    padding-bottom: 10px;
}
.pt20 {
    padding-top: 20px;
}
.pb20 {
    padding-bottom: 20px;
}
.pt30 {
    padding-top: 30px;
}
.pb30 {
    padding-bottom: 30px;
}
.pt50 {
    padding-top: 50px;
}
.pb50 {
    padding-bottom: 50px;
}
.arrow-con {
    display: block;
    width: 100%;
    height: 30px;
    padding: 10px 0;
    text-align: center;
    cursor: pointer;
    background-color:transparent;
}
    .arrow-con:hover {
        animation: bounce 1s infinite;
    }
    .arrow-con .arrow-btm {
        position: relative;
        display: inline-block;
        width: 62px;
        height: 33px;
        background-color: transparent;
        transition: all 1s ease;
    }
    .arrow-con .arrow-btm:hover {
    }
        .arrow-con .arrow-btm::before,
        .arrow-con .arrow-btm::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: calc(50% - 2px);
            width: 4px;
            height: 45px;
            border-radius: 9999px;
            background-color: #000000;
            transform-origin: 50% calc(100% - 2px);
        }
        .arrow-con .arrow-btm::before {
            transform: rotate(45deg);
            transition: all 1s ease;
        }
        .arrow-con .arrow-btm::after {
            transform: rotate(-45deg);
            transition: all 1s ease;
        }
    .arrow-con .arrow-btm-open {
        transform: translateY(-33px);
    }
    .arrow-con .arrow-btm-open::before {
        transform: rotate(140deg);
    }
    .arrow-con .arrow-btm-open::after {
        transform: rotate(-140deg);
    }
@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}
.button1 {
    width: 160px;
    line-height: 76px;
    text-align: center;
    background-color: #F15A2B;
    border-radius: 8px;
    display: inline-block;
    font-size: 24px;
    color: #fff;
    text-decoration: none;
}
.button2 {
    width: 144px;
    line-height: 60px;
    text-align: center;
    background-color: #F15A2B;
    border-radius: 8px;
    display: inline-block;
    font-size: 24px;
    color: #fff;
    text-decoration: none;
    border: 0;
}
.button3 {
    width: 72px;
    line-height: 32px;
    text-align: center;
    background-color: #F15A2B;
    border-radius: 8px;
    display: inline-block;
    font-size: 14px;
    color: #fff;
    text-decoration: none;
    border: 0;
}
footer {
    width: 100%;
    max-width: 1280px;
    margin: auto;
    position: relative;
    padding: 20px 0;
    border-top: 2px #f7f7f7 solid;
}

    footer::after {
        content: '';
        display: block;
        clear: both;
    }

    footer .logo {
        float: left;
        width: 50%;
        padding-top: 30px;
    }

    footer .footer-soc {
        list-style: none;
        padding: 0;
        margin: 0;
        display: block;
        margin-top: 20px;
    }

        footer .footer-soc li {
            list-style: none;
            padding: 0;
            margin: 0;
            display: inline-block;
            padding-right: 30px;
        }

    footer .menu {
        float: left;
        text-align: right;
        width: 50%;
    }

        footer .menu div {
            padding-left: 40px;
            vertical-align: top;
            text-align: left;
            display: inline-block;
        }

            footer .menu div b {
                padding-bottom: 5px;
                display: block;
            }

            footer .menu div a {
                padding-top: 5px;
                display: block;
                color: #000;
                text-decoration: none;
            }
.overlap {
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: #00000090;
    top: 0;
    right: -100%;
    bottom: 0;
    z-index: 99999;
    transition: opacity 0.5s ease;
    opacity: 0;
}
    .overlap.open {
        right: 0;
        opacity: 1;
    }
.detail .desc {
    color: #000000;
    font-weight: 300;
    font-size: 27px;
    width: 80%;
    line-height: 35px;
}
.detail img {
    margin-top: 50px;
    margin-bottom: 50px;
}
@media (max-width: 750px) {
    body {
        line-height: 20px;
    }
    h1 {
        line-height: 40px;
        font-size: 26px;
        margin: 0;
    }
    h5 {
        color: #F15A2B;
        font-weight: 600;
        font-size: 20px;
    }
    .container {
        padding-top: 110px;
        padding-left: 20px;
        padding-right: 20px;
    }
    header nav {
        display: block;
        position: fixed;
        top: 0;
        right: -200%;
        width: 70%;
        height: 100%;
        background-color: #fff;
        text-align: left;
        box-shadow: -2px 0px 10px -3px rgba(0,0,0,0.62);
        -webkit-box-shadow: -2px 0px 10px -3px rgba(0,0,0,0.62);
        -moz-box-shadow: -2px 0px 10px -3px rgba(0,0,0,0.62);
        padding-top: 100px;
        z-index: 999999;
        transition: all 0.5s ease;
    }
        header nav.open {
            right: 0;
        }
        header nav ul {
            display: block;
        }
            header nav ul li {
                display: block;
            }
                header nav ul li a {
                    line-height: 45px;
                    display: block;
                    padding: 0 20px;
                    font-weight: 500;
                    font-size: 18px;
                }
    header .container {
        padding-top: 0;
        padding-left: 0;
        padding-right: 0;
    }
    header .logo {
        width: 150px;
        position: relative;
        left: 10px;
        top: 0;
    }
    .hero {
        display: block;
    }
        .hero p {
            font-size: 18px;
            width: 100%;
            line-height: 27px;
        }
        .hero img {
            margin-top: 30px;
        }
    header .mob-menu {
        display:block;
    }
    .button1 {
        width: fit-content;
        line-height: 46px;
        padding-left: 20px;
        padding-right: 20px;
        font-size: 18px;
        color: #fff;
        text-decoration: none;
    }
    .button2 {
        width: fit-content;
        line-height: 40px;
        font-size: 16px;
        padding-left: 20px;
        padding-right: 20px;
        margin-bottom:20px;

    }
    .arrow-con {
        height: 20px;
    }
        .arrow-con .arrow-btm {
            position: relative;
            display: inline-block;
            width: 62px;
            height: 23px;
            background-color: transparent;
            transition: all 1s ease;
        }
            .arrow-con .arrow-btm::before,
            .arrow-con .arrow-btm::after {
                height: 30px;
            }
    span.title {
        font-size: 16px;
    }
    p.desc {
        font-size: 16px;
    }
    .pt10 {
        padding-top: 5px;
    }
    .pb10 {
        padding-bottom: 5px;
    }
    .pt20 {
        padding-top: 10px;
    }
    .pb20 {
        padding-bottom: 10px;
    }
    .pt30 {
        padding-top: 15px;
    }
    .pb30 {
        padding-bottom: 15px;
    }
    .pt50 {
        padding-top: 25px;
    }
    .pb50 {
        padding-bottom: 25px;
    }
    .c4-col {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
    .c6-col {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
    .c8-col {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
    footer {
        padding: 30px 20px;
        box-sizing:border-box;
    }
        footer .logo {
            float: none;
            width: 100%;
            padding-top: 20px;
            text-align:center;
        }
        footer .menu {
            margin-top:40px;
            float: none;
            text-align: center;
            width: 100%;
        }
            footer .menu div {
                width:49%;
                padding-left: 10px;
                padding-right: 10px;
                vertical-align: top;
                text-align: left;
                display: inline-block;
                box-sizing:border-box;
            }
    .detail .desc {
        font-size: 18px;
        width: 100%;
        line-height: 30px;
    }
    .detail img {
        margin-top: 30px;
        margin-bottom: 30px;
    }
}