/* =====================================================
   ROOT
===================================================== */

:root{

    --primary:#ed1c24;
    --primary-hover:#cf151c;

    --dark:#202020;
    --dark-soft:#292929;

    --text:#343b47;
    --text-light:#70757d;

    --border:#e5e5e5;

    --light:#f6f6f6;
    --white:#ffffff;

    --transition:.30s ease;

}


/* =====================================================
   GENERAL
===================================================== */

*{
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    margin:0;
    padding:0;

    font-family:'Montserrat',sans-serif;

    color:var(--text);
    background:#fff;

    overflow-x:hidden;
}

a{
    text-decoration:none;
    transition:var(--transition);
}

img{
    max-width:100%;
}

.container{
    max-width:1200px;
}


/* =====================================================
   TOP BAR
===================================================== */

.top-bar{
    height:46px;

    display:flex;
    align-items:center;

    background:#f7f7f7;

    border-top:1px solid #ddd;
    border-bottom:1px solid #e7e7e7;
}


.top-bar-wrapper{
    display:flex;

    align-items:center;
    justify-content:space-between;
}


.top-contact,
.top-links{
    display:flex;
    align-items:center;

    gap:15px;
}


.top-contact a,
.top-links a{
    display:flex;
    align-items:center;

    gap:5px;

    color:#27364b;

    font-size:12px;
    font-weight:500;
}


.top-contact a:hover,
.top-links a:hover{
    color:var(--primary);
}


.top-separator{
    display:block;

    width:1px;
    height:17px;

    background:#d5d5d5;
}



/* =====================================================
   HEADER
===================================================== */

.header{
    position:relative;

    z-index:999;

    background:var(--primary);
}


.header .navbar{
    min-height:78px;

    padding:0;
}


.navbar-brand{
    align-self:stretch;

    min-width:245px;

    display:flex;
    align-items:center;

    padding:7px 28px;

    margin-right:35px;

    background:#fff;

    border-radius:0;
}


.navbar-brand img{
    width:190px;
    max-height:65px;

    object-fit:contain;
}


/* MENU */

.navbar-nav{
    gap:3px;
}


.navbar-nav .nav-link{
    position:relative;

    padding:28px 15px !important;

    color:#fff;

    font-size:13px;
    font-weight:600;

    text-transform:uppercase;
}


.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active{
    color:#fff;
    background:rgba(0,0,0,.10);
}


.navbar-nav .nav-link::after{
    transition:.3s;
}


.navbar-nav > .nav-item > .nav-link::before{
    content:"";

    position:absolute;

    left:15px;
    right:15px;
    bottom:17px;

    height:2px;

    background:#fff;

    transform:scaleX(0);

    transition:.3s;
}


.navbar-nav > .nav-item > .nav-link:hover::before,
.navbar-nav > .nav-item > .nav-link.active::before{
    transform:scaleX(1);
}



/* DROPDOWN */

.dropdown-menu{
    margin:0;

    padding:10px 0;

    min-width:230px;

    border:0;

    border-radius:0;

    box-shadow:0 15px 40px rgba(0,0,0,.15);
}


.dropdown-item{
    padding:12px 20px;

    color:#444;

    font-size:13px;

    transition:.25s;
}


.dropdown-item:hover{
    padding-left:25px;

    color:var(--primary);

    background:#f7f7f7;
}



/* CTA */

.header-action{
    margin-left:20px;
}


.header-contact-btn{
    display:flex;
    align-items:center;

    gap:8px;

    padding:11px 16px;

    border:1px solid rgba(255,255,255,.40);

    color:#fff;

    font-size:12px;
    font-weight:600;
}


.header-contact-btn:hover{
    background:#fff;

    color:var(--primary);
}



/* =====================================================
   HERO SLIDER
===================================================== */

.hero-slider{
    position:relative;
    overflow:hidden;

    background:#eeeeee;
}

.hero-slide{
    position:relative;

    min-height:520px;

    display:flex;
    align-items:center;

    background:
        linear-gradient(
            110deg,
            #eeeeee 0%,
            #f6f6f6 55%,
            #ffffff 100%
        );

    overflow:hidden;
}

.hero-slide .container{
    position:relative;
    z-index:5;
}


/* =====================================================
   SOL İÇERİK
===================================================== */

.hero-content{
    max-width:560px;

    padding:80px 0;
}

.hero-subtitle{
    display:inline-block;

    margin-bottom:15px;

    color:var(--primary);

    font-size:12px;
    font-weight:700;

    letter-spacing:2px;
}

.hero-content h1,
.hero-content h2{
    margin:0 0 25px;

    color:#333c4a;

    font-size:52px;
    line-height:1.15;

    font-weight:800;
}

.hero-content p{
    max-width:500px;

    margin-bottom:32px;

    color:#4e5662;

    font-size:14px;
    line-height:1.8;
}


/* =====================================================
   SAĞ KARE PNG
===================================================== */

.hero-product-image{
    width:100%;
    height:500px;

    display:flex;
    align-items:center;
    justify-content:center;

    position:relative;
}


/* HAFİF DEKOR */

.hero-product-image::before{
    content:"";

    position:absolute;

    width:410px;
    height:410px;

    border-radius:50%;

    background:rgba(255,255,255,.65);

    box-shadow:
        0 30px 80px rgba(0,0,0,.06);

    z-index:0;
}


.hero-product-image img{
    position:relative;
    z-index:2;

    display:block;

    width:100%;
    max-width:500px;

    height:500px;

    object-fit:contain;
    object-position:center;

    transition:.6s ease;
}


/* Çok hafif hareket */

.carousel-item.active .hero-product-image img{
    animation:heroProduct 1s ease;
}

@keyframes heroProduct{

    from{
        opacity:0;
        transform:translateX(30px) scale(.96);
    }

    to{
        opacity:1;
        transform:translateX(0) scale(1);
    }

}


/* =====================================================
   BUTON
===================================================== */

.hero-button{
    display:inline-flex;

    align-items:center;
    justify-content:space-between;

    gap:35px;

    min-width:195px;

    padding:14px 17px;

    border:2px solid var(--primary);

    color:var(--primary);

    font-size:12px;
    font-weight:700;

    text-transform:uppercase;
}

.hero-button:hover{
    background:var(--primary);
    color:#fff;
}

.hero-button i{
    transition:.3s;
}

.hero-button:hover i{
    transform:translateX(4px);
}


/* =====================================================
   OKLAR
===================================================== */

.hero-slider .carousel-control-prev,
.hero-slider .carousel-control-next{
    width:65px;
    opacity:1;
}

.slider-arrow{
    width:45px;
    height:45px;

    display:flex;
    align-items:center;
    justify-content:center;

    color:#303b4d;

    font-size:20px;

    transition:.3s;
}

.slider-arrow:hover{
    color:var(--primary);
}


/* =====================================================
   DOTLAR
===================================================== */

.hero-slider .carousel-indicators{
    bottom:20px;
    gap:7px;
}

.hero-slider .carousel-indicators button{
    width:9px;
    height:9px;

    border:0;
    border-radius:50%;

    background:#adb2b9;

    opacity:.7;
}

.hero-slider .carousel-indicators button.active{
    background:var(--primary);
    opacity:1;
}


/* =====================================================
   TABLET / MOBILE
===================================================== */

@media(max-width:991px){

    .hero-slide{
        min-height:auto;
    }

    .hero-content{
        max-width:100%;

        padding:60px 30px 20px;

        text-align:center;
    }

    .hero-content p{
        margin-left:auto;
        margin-right:auto;
    }

    .hero-content h1,
    .hero-content h2{
        font-size:40px;
    }

    .hero-product-image{
        height:360px;
    }

    .hero-product-image::before{
        width:310px;
        height:310px;
    }

    .hero-product-image img{
        max-width:360px;
        height:360px;
    }

}


@media(max-width:576px){

    .hero-content{
        padding:50px 35px 10px;
    }

    .hero-content h1,
    .hero-content h2{
        font-size:32px;
    }

    .hero-content p{
        font-size:13px;
    }

    .hero-product-image{
        height:300px;
    }

    .hero-product-image::before{
        width:250px;
        height:250px;
    }

    .hero-product-image img{
        max-width:300px;
        height:300px;
    }

    .hero-slider .carousel-control-prev,
    .hero-slider .carousel-control-next{
        width:35px;
    }

}


/* =====================================================
   INTRO
===================================================== */

.intro-section{
    padding:100px 0;
}


.intro-image{
    overflow:hidden;
}


.intro-image img{
    width:100%;

    display:block;

    transition:.6s;
}


.intro-image:hover img{
    transform:scale(1.04);
}


.intro-content > span{
    display:block;

    margin-bottom:13px;

    color:var(--primary);

    font-size:12px;
    font-weight:700;

    letter-spacing:2px;
}


.intro-content h2{
    margin-bottom:25px;

    color:var(--dark);

    font-size:39px;
    line-height:1.3;

    font-weight:700;
}


.intro-content h2 strong{
    color:var(--primary);
}


.intro-content p{
    margin-bottom:30px;

    color:var(--text-light);

    font-size:14px;
    line-height:1.9;
}


.default-button{
    display:inline-flex;

    align-items:center;

    gap:25px;

    padding:14px 22px;

    background:var(--primary);

    color:#fff;

    font-size:12px;
    font-weight:700;

    text-transform:uppercase;
}


.default-button:hover{
    background:var(--dark);

    color:#fff;
}



/* =====================================================
   FOOTER
===================================================== */

.footer{
    padding:75px 0 0;

    background:#202020;

    color:#fff;
}


.footer-logo{
    width:190px;

    margin-bottom:25px;
}


.footer-about p{
    max-width:350px;

    color:rgba(255,255,255,.60);

    font-size:13px;
    line-height:1.9;
}


.footer h5{
    position:relative;

    margin-bottom:27px;
    padding-bottom:13px;

    color:#fff;

    font-size:16px;
    font-weight:700;
}


.footer h5::after{
    content:"";

    position:absolute;

    left:0;
    bottom:0;

    width:35px;
    height:2px;

    background:var(--primary);
}


.footer ul{
    margin:0;
    padding:0;

    list-style:none;
}


.footer ul li{
    margin-bottom:12px;
}


.footer ul li a{
    color:rgba(255,255,255,.62);

    font-size:13px;
}


.footer ul li a:hover{
    padding-left:5px;

    color:var(--primary);
}



/* SOCIAL */

.footer-social{
    display:flex;

    gap:8px;

    margin-top:25px;
}


.footer-social a{
    width:38px;
    height:38px;

    display:flex;
    align-items:center;
    justify-content:center;

    border:1px solid rgba(255,255,255,.15);

    color:#fff;

    font-size:14px;
}


.footer-social a:hover{
    background:var(--primary);

    border-color:var(--primary);
}



/* CONTACT */

.footer-contact li{
    display:flex;

    align-items:flex-start;

    gap:10px;

    color:rgba(255,255,255,.62);

    font-size:13px;

    line-height:1.7;
}


.footer-contact i{
    margin-top:2px;

    color:var(--primary);
}



/* BOTTOM */

.footer-bottom{
    margin-top:60px;

    padding:22px 0;

    border-top:1px solid rgba(255,255,255,.10);

    color:rgba(255,255,255,.45);

    font-size:11px;
}



/* =====================================================
   TABLET
===================================================== */

@media(max-width:1199px){

    .navbar-nav .nav-link{
        padding-left:10px !important;
        padding-right:10px !important;

        font-size:11px;
    }

    .navbar-brand{
        min-width:200px;
        margin-right:15px;
    }

    .navbar-brand img{
        width:165px;
    }

}



/* =====================================================
   MOBILE
===================================================== */

@media(max-width:991px){

    .top-bar{
        height:auto;

        padding:9px 0;
    }


    .top-bar-wrapper{
        justify-content:center;
    }


    .top-links{
        display:none;
    }


    .top-contact{
        flex-wrap:wrap;

        justify-content:center;

        gap:8px 12px;
    }


    .header .navbar{
        min-height:70px;
    }


    .navbar-brand{
        align-self:auto;

        min-width:auto;

        margin:0;

        padding:8px 15px;
    }


    .navbar-brand img{
        width:155px;
    }


    .navbar-toggler{
        border:0;

        color:#fff;

        box-shadow:none !important;

        font-size:28px;
    }


    .navbar-collapse{
        padding:15px 0 20px;
    }


    .navbar-nav{
        align-items:stretch !important;
    }


    .navbar-nav .nav-link{
        padding:13px 10px !important;

        border-bottom:1px solid rgba(255,255,255,.12);

        font-size:12px;
    }


    .navbar-nav > .nav-item > .nav-link::before{
        display:none;
    }


    .header-action{
        margin:15px 0 0;
    }


    .header-contact-btn{
        justify-content:center;
    }


    /* HERO */

    .hero-slide{
        min-height:500px;
    }


    .hero-slide::after{
        background:rgba(235,235,235,.88);
    }


    .hero-content{
        max-width:600px;

        padding:70px 40px;
    }


    .hero-content h1,
    .hero-content h2{
        font-size:42px;
    }


    .intro-section{
        padding:70px 0;
    }

}



/* =====================================================
   SMALL MOBILE
===================================================== */

@media(max-width:576px){

    .top-contact a{
        font-size:10px;
    }


    .top-separator{
        display:none;
    }


    .hero-slide{
        min-height:460px;
    }


    .hero-content{
        padding:60px 30px;
    }


    .hero-content h1,
    .hero-content h2{
        font-size:34px;
    }


    .hero-content p{
        font-size:13px;
    }


    .hero-slider .carousel-control-prev,
    .hero-slider .carousel-control-next{
        width:35px;
    }


    .intro-content h2{
        font-size:31px;
    }


    .footer{
        padding-top:55px;
    }

}




/* =====================================================
   POLİTİKAMIZ / MİSYON & VİZYON
===================================================== */

.company-values{
    padding:85px 0;
    background:#fff;
}


/* ITEM */

.value-item{
    height:100%;
}


/* BAŞLIK */

.value-title{
    display:flex;
    align-items:center;
    gap:15px;

    margin-bottom:20px;
}

.value-icon{
    flex:0 0 52px;

    width:52px;
    height:52px;

    display:flex;
    align-items:center;
    justify-content:center;

    background:var(--primary);
    color:#fff;

    font-size:21px;
}

.value-title > div > span{
    display:block;

    margin-bottom:4px;

    color:var(--primary);

    font-size:10px;
    font-weight:700;

    letter-spacing:1.8px;
}

.value-title h3{
    margin:0;

    color:var(--text);

    font-size:27px;
    font-weight:600;
}


/* İÇERİK */

.value-content{
    position:relative;

    height:calc(100% - 72px);

    padding:30px 35px;

    background:#f7f7f7;

    border:1px solid #e7e7e7;
    border-left:4px solid var(--primary);
}

.value-content p{
    margin:0 0 12px;

    color:#4e535a;

    font-size:14px;
    line-height:1.85;

    font-style:italic;
}

.value-content p:last-child{
    margin-bottom:0;
}


/* HOVER */

.value-item{
    transition:.3s ease;
}

.value-content{
    transition:.3s ease;
}

.value-item:hover .value-content{
    background:#fff;

    box-shadow:0 15px 40px rgba(0,0,0,.07);

    transform:translateY(-3px);
}


/* =====================================================
   MOBILE
===================================================== */

@media(max-width:767px){

    .company-values{
        padding:60px 0;
    }

    .value-title h3{
        font-size:23px;
    }

    .value-icon{
        flex-basis:46px;

        width:46px;
        height:46px;

        font-size:18px;
    }

    .value-content{
        height:auto;

        padding:25px;
    }

    .value-content p{
        font-size:13px;
    }

}



/* =====================================================
   ÜRÜN GRUPLARIMIZ
===================================================== */

.product-groups-section{
    padding:90px 0 100px;
    background:#f2f2f2;
}


/* =====================================================
   BAŞLIK
===================================================== */

.product-groups-heading{
    margin-bottom:40px;
}

.product-groups-heading > span{
    display:block;

    margin-bottom:8px;

    color:var(--primary);

    font-size:11px;
    font-weight:700;

    letter-spacing:2px;
}

.product-groups-heading h2{
    position:relative;

    margin:0;
    padding-bottom:20px;

    color:#303b4d;

    font-size:35px;
    font-weight:600;
}

.product-groups-heading h2::after{
    content:"";

    position:absolute;

    left:0;
    bottom:0;

    width:50px;
    height:2px;

    background:var(--primary);
}


/* =====================================================
   KART
===================================================== */

.product-group-card{
    position:relative;

    min-height:245px;
    height:100%;

    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;

    padding:35px 30px;

    overflow:hidden;

    background:#fff;

    border:1px solid #ededed;

    text-align:center;
    text-decoration:none;

    transition:.35s ease;
}


/* ÜST KIRMIZI ÇİZGİ */

.product-group-card::before{
    content:"";

    position:absolute;

    left:0;
    top:0;

    width:100%;
    height:3px;

    background:var(--primary);

    transform:scaleX(0);
    transform-origin:left;

    transition:.4s ease;
}


/* =====================================================
   İKON
===================================================== */

.product-group-icon{
    width:62px;
    height:62px;

    display:flex;
    align-items:center;
    justify-content:center;

    margin-bottom:20px;

    background:#f6f6f6;

    border-radius:50%;

    color:#303b4d;

    font-size:29px;

    transition:.35s ease;
}


/* =====================================================
   BAŞLIK
===================================================== */

.product-group-card h3{
    margin:0 0 13px;

    color:#27364b;

    font-size:17px;
    font-weight:600;

    text-transform:uppercase;

    transition:.3s;
}


/* =====================================================
   AÇIKLAMA
===================================================== */

.product-group-card p{
    max-width:320px;

    margin:0;

    color:#6d7178;

    font-size:12px;
    line-height:1.8;

    transition:.3s;
}


/* =====================================================
   DETAY LİNKİ
===================================================== */

.product-group-link{
    display:flex;
    align-items:center;
    justify-content:center;

    gap:8px;

    max-height:0;

    margin-top:0;

    overflow:hidden;

    opacity:0;

    color:var(--primary);

    font-size:11px;
    font-weight:700;

    text-transform:uppercase;

    transition:.35s ease;
}

.product-group-link i{
    transition:.3s;
}


/* =====================================================
   HOVER
===================================================== */

.product-group-card:hover{
    border-color:transparent;

    transform:translateY(-6px);

    box-shadow:0 18px 45px rgba(0,0,0,.09);
}

.product-group-card:hover::before{
    transform:scaleX(1);
}

.product-group-card:hover .product-group-icon{
    background:var(--primary);
    color:#fff;

    transform:rotate(8deg);
}

.product-group-card:hover h3{
    color:var(--primary);
}

.product-group-card:hover .product-group-link{
    max-height:30px;

    margin-top:17px;

    opacity:1;
}

.product-group-card:hover .product-group-link i{
    transform:translateX(4px);
}


/* =====================================================
   TABLET
===================================================== */

@media(max-width:991px){

    .product-groups-section{
        padding:70px 0 80px;
    }

    .product-groups-heading h2{
        font-size:31px;
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media(max-width:576px){

    .product-groups-section{
        padding:55px 0 65px;
    }

    .product-groups-heading{
        margin-bottom:30px;
    }

    .product-groups-heading h2{
        font-size:28px;
    }

    .product-group-card{
        min-height:220px;

        padding:30px 20px;
    }

    .product-group-icon{
        width:55px;
        height:55px;

        font-size:25px;
    }

    .product-group-card h3{
        font-size:15px;
    }

}



/* =====================================================
   ÜRÜN KATEGORİ SAYFASI
===================================================== */

.product-category-header{
    padding:70px 0 55px;

    background:#f3f3f3;

    border-bottom:1px solid #e5e5e5;
}

.product-category-header span{
    display:block;

    margin-bottom:10px;

    color:var(--primary);

    font-size:11px;
    font-weight:700;

    letter-spacing:2px;
}

.product-category-header h1{
    position:relative;

    margin:0 0 22px;
    padding-bottom:20px;

    color:#303b4d;

    font-size:38px;
    font-weight:700;
}

.product-category-header h1::after{
    content:"";

    position:absolute;

    left:0;
    bottom:0;

    width:50px;
    height:2px;

    background:var(--primary);
}

.product-category-header p{
 

    margin:0;

    color:#646b75;

    font-size:14px;
    line-height:1.8;
}


/* =====================================================
   ÜRÜNLER
===================================================== */

.products-page-section{
    padding:70px 0 90px;

    background:#f3f3f3;
}


/* KART */

.product-card{
    height:100%;

    background:#fff;

    border:1px solid #e8e8e8;

    overflow:hidden;

    transition:.35s ease;
}

.product-card:hover{
    transform:translateY(-5px);

    border-color:transparent;

    box-shadow:0 18px 45px rgba(0,0,0,.09);
}


/* RESİM */

.product-card-image{
    position:relative;

    width:100%;
    height:280px;

    display:flex;
    align-items:center;
    justify-content:center;

    padding:25px;

    overflow:hidden;

    background:#f7f7f7;
}

.product-card-image img{
    display:block;

    width:100%;
    height:100%;

    object-fit:contain;

    transition:.4s ease;
}

.product-card:hover .product-card-image img{
    transform:scale(1.05);
}


/* İÇERİK */

.product-card-content{
    padding:25px;
}

.product-card-category{
    display:block;

    margin-bottom:8px;

    color:var(--primary);

    font-size:10px;
    font-weight:700;

    letter-spacing:1.2px;

    text-transform:uppercase;
}

.product-card-content h3{
    margin:0 0 12px;

    color:#303b4d;

    font-size:18px;
    font-weight:700;
    line-height:1.4;
}

.product-card-content p{
    margin:0 0 20px;

    color:#70757d;

    font-size:13px;
    line-height:1.7;
}


/* DETAY */

.product-card-link{
    display:inline-flex;
    align-items:center;

    gap:8px;

    color:var(--primary);

    font-size:11px;
    font-weight:700;

    text-transform:uppercase;
}

.product-card-link i{
    transition:.3s;
}

.product-card:hover .product-card-link i{
    transform:translateX(5px);
}


/* =====================================================
   ÜRÜN YOK
===================================================== */

.products-empty{
    padding:80px 20px;

    background:#f7f7f7;

    text-align:center;
}

.products-empty > i{
    display:block;

    margin-bottom:20px;

    color:var(--primary);

    font-size:50px;
}

.products-empty h3{
    margin-bottom:10px;

    color:#303b4d;

    font-size:23px;
}

.products-empty p{
    margin-bottom:25px;

    color:#777;

    font-size:14px;
}

.products-empty a{
    display:inline-block;

    padding:13px 25px;

    background:var(--primary);

    color:#fff;

    font-size:12px;
    font-weight:700;

    text-decoration:none;
}


/* =====================================================
   MOBILE
===================================================== */

@media(max-width:767px){

    .product-category-header{
        padding:50px 0 40px;
    }

    .product-category-header h1{
        font-size:30px;
    }

    .products-page-section{
        padding:50px 0 65px;
    }

    .product-card-image{
        height:250px;
    }

}



/* =====================================================
   İLETİŞİM
===================================================== */

.contact-page-header{
    padding:70px 0 55px;
    background:#f3f3f3;
    border-bottom:1px solid #e5e5e5;
}

.contact-page-header > .container > span{
    display:block;
    margin-bottom:10px;

    color:var(--primary);

    font-size:11px;
    font-weight:700;
    letter-spacing:2px;
}

.contact-page-header h1{
    position:relative;

    margin:0 0 22px;
    padding-bottom:20px;

    color:#303b4d;

    font-size:38px;
    font-weight:700;
}

.contact-page-header h1::after{
    content:"";

    position:absolute;
    left:0;
    bottom:0;

    width:50px;
    height:2px;

    background:var(--primary);
}

.contact-page-header p{
    max-width:750px;
    margin:0;

    color:#646b75;

    font-size:14px;
    line-height:1.8;
}


/* =====================================================
   İLETİŞİM KARTLARI
===================================================== */

.contact-info-section{
    padding:80px 0;
    background:#fff;
}

.contact-card{
    position:relative;

    height:100%;
    min-height:230px;

    padding:35px 28px;

    background:#f6f6f6;

    border-bottom:3px solid transparent;

    transition:.3s ease;
}

.contact-card:hover{
    background:#fff;

    border-bottom-color:var(--primary);

    transform:translateY(-5px);

    box-shadow:0 15px 40px rgba(0,0,0,.08);
}


/* İKON */

.contact-card-icon{
    width:52px;
    height:52px;

    display:flex;
    align-items:center;
    justify-content:center;

    margin-bottom:25px;

    background:var(--primary);
    color:#fff;

    font-size:20px;
}


/* KÜÇÜK BAŞLIK */

.contact-card > span{
    display:block;

    margin-bottom:6px;

    color:var(--primary);

    font-size:10px;
    font-weight:700;

    letter-spacing:1.5px;
    text-transform:uppercase;
}


/* BAŞLIK */

.contact-card h3{
    margin:0 0 12px;

    color:#303b4d;

    font-size:17px;
    font-weight:700;
}


/* İÇERİK */

.contact-card p{
    margin:0;

    color:#70757d;

    font-size:13px;
    line-height:1.8;
}

.contact-card a{
    color:#70757d;
    text-decoration:none;

    transition:.3s;
}

.contact-card a:hover{
    color:var(--primary);
}


/* =====================================================
   HARİTA
===================================================== */

.contact-map-section{
    padding-top:20px;
    background:#f3f3f3;
}

.contact-map-heading{
    padding:40px 0 30px;
}

.contact-map-heading span{
    display:block;

    margin-bottom:7px;

    color:var(--primary);

    font-size:10px;
    font-weight:700;

    letter-spacing:2px;
}

.contact-map-heading h2{
    margin:0;

    color:#303b4d;

    font-size:30px;
    font-weight:700;
}

.contact-map{
    width:100%;

    line-height:0;
}

.contact-map iframe{
    display:block;

    width:100%;
    height:450px;

    border:0;
}


/* =====================================================
   MOBILE
===================================================== */

@media(max-width:767px){

    .contact-page-header{
        padding:50px 0 40px;
    }

    .contact-page-header h1{
        font-size:30px;
    }

    .contact-info-section{
        padding:50px 0;
    }

    .contact-card{
        min-height:auto;
    }

    .contact-map iframe{
        height:350px;
    }

}






/* =====================================================
   ÜRÜNLER DROPDOWN
===================================================== */

.header .nav-item.dropdown{
    position:relative;
}

.header .dropdown-menu{
    display:block;

    position:absolute;
    top:100%;
    left:0;

    min-width:260px;

    margin:0;
    padding:10px 0;

    background:#fff;

    border:0;
    border-top:3px solid var(--primary);
    border-radius:0;

    box-shadow:0 15px 40px rgba(0,0,0,.12);

    opacity:0;
    visibility:hidden;

    transform:translateY(12px);

    transition:
        opacity .25s ease,
        transform .25s ease,
        visibility .25s ease;

    z-index:9999;
}


/* AÇILMA */

@media(min-width:992px){

    .header .nav-item.dropdown:hover > .dropdown-menu{
        opacity:1;
        visibility:visible;
        transform:translateY(0);
    }

}


/* DROPDOWN LINKLER */

.header .dropdown-item{
    position:relative;

    padding:11px 22px;

    color:#3d4652;

    font-size:13px;
    font-weight:500;

    background:transparent;

    transition:.25s ease;
}

.header .dropdown-item:hover{
    padding-left:27px;

    color:var(--primary);

    background:#f7f7f7;
}


/* ACTIVE KATEGORİ */

.header .dropdown-item.active{
    color:var(--primary);
    background:#f7f7f7;

    font-weight:600;
}

.header .dropdown-item.active::before{
    content:"";

    position:absolute;

    left:0;
    top:0;

    width:3px;
    height:100%;

    background:var(--primary);
}


/* =====================================================
   MOBİL
===================================================== */

@media(max-width:991px){

    .header .dropdown-menu{
        display:none;

        position:static;

        width:100%;
        min-width:0;

        margin:5px 0 10px;
        padding:5px 0;

        border-top:0;
        box-shadow:none;

        opacity:1;
        visibility:visible;

        transform:none;

        background:#f6f6f6;
    }

    .header .dropdown.show > .dropdown-menu{
        display:block;
    }

}







/* =====================================================
   MAIN SLIDER
===================================================== */

.main-slider{
    position:relative;
    width:100%;
    overflow:hidden;
}

.main-slider #homeSlider,
.main-slider .carousel-inner,
.main-slider .carousel-item{
    width:100%;
}

.slider-image{
    display:block;

    width:100%;
    height:auto;

    object-fit:cover;
}


/* GEÇİŞ */

.main-slider .carousel-fade .carousel-item{
    opacity:0;
    transition:opacity .8s ease-in-out;
}

.main-slider .carousel-fade .carousel-item.active{
    opacity:1;
}


/* OKLAR */

.main-slider .carousel-control-prev,
.main-slider .carousel-control-next{
    width:70px;
}


/* DOTLAR */

.main-slider .carousel-indicators{
    bottom:20px;
}

.main-slider .carousel-indicators button{
    width:9px;
    height:9px;

    border-radius:50%;

    margin:0 5px;
}


/* MOBİL */

@media(max-width:767px){

    .main-slider .carousel-control-prev,
    .main-slider .carousel-control-next{
        width:40px;
    }

    .main-slider .carousel-indicators{
        bottom:10px;
    }

}


/* =====================================================
   HEADER - SLIDER ÜZERİNDE
===================================================== */

.header{
    position:absolute;
    top:0;
    left:0;

    width:100%;

    z-index:9999;

    background:var(--primary);
}


/* =====================================================
   FULLSCREEN SLIDER
===================================================== */

.main-slider{
    position:relative;

    width:100%;
    height:100vh;

    overflow:hidden;
}

.main-slider #homeSlider,
.main-slider .carousel-inner,
.main-slider .carousel-item{
    width:100%;
    height:100%;
}

.slider-image{
    display:block;

    width:100%;
    height:100%;

    object-fit:cover;
    object-position:center;
}


/* =====================================================
   GEÇİŞ
===================================================== */

.main-slider .carousel-fade .carousel-item{
    opacity:0;

    transition:opacity .8s ease-in-out;
}

.main-slider .carousel-fade .carousel-item.active{
    opacity:1;
}


/* =====================================================
   OKLAR
===================================================== */

.main-slider .carousel-control-prev,
.main-slider .carousel-control-next{
    width:70px;

    z-index:5;
}


/* =====================================================
   DOTLAR
===================================================== */

.main-slider .carousel-indicators{
    bottom:25px;
}

.main-slider .carousel-indicators button{
    width:9px;
    height:9px;

    margin:0 5px;

    border-radius:50%;
}


/* =====================================================
   MOBILE
===================================================== */

@media(max-width:767px){

    .main-slider{
        height:100vh;
    }

    .main-slider .carousel-control-prev,
    .main-slider .carousel-control-next{
        width:40px;
    }

}
