@import url("https://fonts.googleapis.com/css?family=Montserrat:300,500");

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    font-family: 'Montserrat';
    transition: all 0.15s;
}


/* TOP-BAR CSS BAŞLANGICI*/
.top-bar {
    background-color: #f87100;
    display: flex;
}

.top-bar-link {
    color: #373e42;
}

.top-bar-link:hover,
.top-bar-link.active {
    color: white;
}

/* TOP-BAR CSS SONU*/




/* ÜST MENÜ CSS BAŞLANGICI */
.wrapper {
    background: #373e42;
    width: 100%;
}

.wrapper nav {
    position: relative;
    display: flex;
    max-width: calc(100% - 200px);
    margin: 0 auto;
    height: 70px;
    align-items: center;
    justify-content: space-between;
}

nav .content {
    display: flex;
    align-items: center;
    max-height: 70px;
}

.content .links {
    display: flex;
}


.content .links li {
    list-style: none;
    line-height: 70px;
}

.content .links li a,
.content .links li label {
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    padding: 9px 17px;
    border-radius: 5px;
    transition: all 0.3s ease;
    text-decoration: none;
    margin: 5px;
}

.content .links li label {
    display: none;
}

.content .links li a:hover,
.content .links li label:hover,
.content .links li a.active,
.content .links li label.active {
    color: #fb7000;
}


.kategori-linkleri.active .content .links li a,
.kategori-linkleri:hover .content .links li a {
    color: #f87100;
}

.wrapper .search-icon,
.wrapper .menu-icon {
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    line-height: 70px;
    width: 70px;
    text-align: center;
}

.wrapper .menu-icon {
    display: none;
}

.wrapper #show-search:checked~.search-icon i::before {
    content: "\f00d";
    color: #fb7000;
}

.wrapper .search-box {
    position: absolute;
    height: 100%;
    max-width: calc(100% - 50px);
    width: 90%;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
}

.wrapper #show-search:checked~.search-box {
    opacity: 1;
    pointer-events: auto;
}

.search-box input {
    width: 100%;
    height: 100%;
    border: none;
    outline: none;
    font-size: 17px;
    color: white;
    background: #373e42;
    padding: 0 100px 0 15px;
}

.search-box input::placeholder {
    color: #fb7000;
}

.search-box .go-icon {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    line-height: 60px;
    width: 70px;
    background: #373e42;
    border: none;
    outline: none;
    color: #fb7000;
    font-size: 20px;
    cursor: pointer;
}

.wrapper input[type="checkbox"] {
    display: none;
}

/* Dropdown Menu code start */
.content .links ul {
    position: absolute;
    background: #373e42;
    top: 70px;
    z-index: 1;
    opacity: 0;
    visibility: hidden;
}

.content .links li:hover>ul {
    top: 70px;
    opacity: 1;
    visibility: visible;
    transition: all 0.3s ease;
}

.content .links ul li a {
    display: block;
    width: 100%;
    line-height: 30px;
    border-radius: 0px !important;
}

.content .links ul ul {
    position: absolute;
    top: 0px;
    right: -165px;
}

.content .links ul ul ul {
    font-size: 10px;
    position: absolute;
    top: 0px;
    right: -200px;
    overflow-y: scroll;
    overflow-x: hidden;
    max-height: 35vh;
}

.content .links ul ul ul a:hover .content .links ul ul a {
    background-color: aqua;
}


.content .links ul ul span {
    color: #fb7000;
}

.content .links ul li {
    position: relative;
}

.content .links ul li:hover ul {
    top: 0;
}

.sepet-iconu {
    color: #fff;
}

.sepet-iconu:hover,
.sepet-iconu.active {
    color: #f87100;
}

.dil-secenegi-acilir-menu {
    position: relative;
    right: 0px;
}

.dil-butonu {
    border: none;
    cursor: pointer;
    background-color: transparent;
    color: white;
}

.dil-secenegi-acilir-menu-icerigi {
    background-color: white;
    right: 0;
    display: none;
    position: absolute;
    min-width: 160px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.dil-secenegi-acilir-menu-icerigi a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.dil-secenegi-acilir-menu-icerigi a:hover {
    background-color: black;
    color: white;
}

#language {
    display: none;
}

/* ÜST MENÜ CSS SONU */



/* SCROLLBAR CSS BAŞLANGICI */

/* width */
::-webkit-scrollbar {
    width: 5px;
    background-color: #373e42;
}


/* Handle */
::-webkit-scrollbar-thumb {
    background: #f87100;
    border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #fff;
}

/* SCROLLBAR CSS SONU */


/* ANASAYFA DÖNEN RESİMLER CSS BAŞLANGICI */
.carousel {
    position: relative;
    width: 100%;
    min-height: 60vh;
    height: 60vh;
    max-height: 60vh;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.carousel-item {
    height: 100vh;
    align-items: center;
    position: relative;
}

.carousel-image {
    width: 100%;
    height: 60%;
    object-fit: cover;
    /* Resmi boyutunu korumadan carousel boyutuna göre ölçekle */
}

/* ANASAYFA DÖNEN RESİMLER CSS SONU */




/* ANASAYFA HİZMET VERİLEN ARAÇLAR CSS BAŞLANGICI  */

.anasayfa-hizmet-verilen-marka-linki:hover .anasayfa-hizmet-verilen-marka-resmi {
    transform: scale(1.1);
}

/* ANASAYFA HİZMET VERİLEN ARAÇLAR CSS SONU  */


/* YENİ URUNLER CSS BAŞLANGICI */
.yeni-urunler .urun-karti {
    background: white;
    box-shadow: 0 6px 10px rgba(0, 0, 0, .08), 0 0 6px rgba(0, 0, 0, .05);
    transition: .3s transform cubic-bezier(.155, 1.105, .295, 1.12), .3s box-shadow, .3s -webkit-transform cubic-bezier(.155, 1.105, .295, 1.12);
    border: 0;
    border-radius: 1rem;
}

.yeni-urunler .card-img,
.yeni-urunler .card-img-top {
    border-top-left-radius: calc(1rem - 1px);
    border-top-right-radius: calc(1rem - 1px);
}


.yeni-urunler .urun-karti h5 {
    overflow: hidden;
    height: 55px;
    align-items: center;
    display: grid;
    justify-content: center;
}

.yeni-urunler .card-img-top {
    width: 100%;
    min-height: 300px;
    max-height: 30px;
    object-fit: contain;
    padding: 30px;
}

.yeni-urunler .urun-karti:hover {
    transform: scale(1.02);
}


/* YENİ URUNLER CSS SONU */



/* BREADCRUMB CSS BAŞLANGICI */

.breadcrumb-link {
    color: #373e42;
}

.breadcrumb-link.active,
.breadcrumb-link:hover {
    color: #f87100;
}


/* BREADCRUMB CSS SONU */



/* ÜRÜNLER SAYFASI CSS BAŞLANGICI */
.urun-filtreleme-menusu .list-group-item {
    background-color: #373e42;
    border: 0px;
}

.urun-filtreleme-menusu .marka-acilir-link {
    text-decoration: none;
    color: white;
    display: flex;
}

.urun-filtreleme-menusu .marka-acilir-link:hover,
.urun-filtreleme-menusu .marka-acilir-link.active {
    color: #f87100;
}

.urun-filtreleme-menusu .kategori-linki {
    text-decoration: none;
    color: white;
}

.urun-filtreleme-menusu .kategori-linki:hover,
.urun-filtreleme-menusu .kategori-linki.active {
    color: #f87100;
}

#urun-arama-cubugu input {
    border: 0px;
    border-radius: 0%;
    border-bottom: 2px solid #f87100;
}

.form-control:focus {
    box-shadow: none;
}

#urun-arama-cubugu i {
    color: #f87100;
    font-size: 20px;
}

#urun-arama-cubugu i:hover {
    color: #373e42;
}

.urunler .urun-karti {
    background: white;
    box-shadow: 0 6px 10px rgba(0, 0, 0, .08), 0 0 6px rgba(0, 0, 0, .05);
    transition: .3s transform cubic-bezier(.155, 1.105, .295, 1.12), .3s box-shadow, .3s -webkit-transform cubic-bezier(.155, 1.105, .295, 1.12);
    border: 0;
    border-radius: 1rem;
    height: 380px;
}

.urunler .urun-karti:hover {
    transform: scale(0.95);
    box-shadow: 0px 0px 10px 2px #f87100;
}

.urunler .card-img,
.urunler .card-img-top {
    border-top-left-radius: calc(1rem - 1px);
    border-top-right-radius: calc(1rem - 1px);
}


.urunler .urun-karti h5 {
    overflow: hidden;
    height: 55px;
    align-items: center;
    justify-content: center;
    display: flex;
    font-size: 16px;
}

.urunler .card-img-top {
    width: 100%;
    min-height: 200px;
    max-height: 200px;
    object-fit: contain;
}

.listeye-ekle-butonu {
    background-color: #f87100;
    color: white;
}

.listeye-ekle-butonu:hover {
    background-color: #373e42;
    color: #f87100;
}


/* ÜRÜNLER SAYFASI CSS SONU */



/* SAYFALAMA BUTONLARI CSS BAŞLANGICI */
#sayfalama-butonlari ul li a {
    background-color: #ffff;
    border: 1px solid #ffff;
    color: #373e42;
    font-size: 20px;
    padding-bottom: 0px;
    margin: 5px;
}

#sayfalama-butonlari ul li a:hover,
#sayfalama-butonlari ul li a.active {
    border-bottom: 1px solid #f87100;
    color: #f87100;

}

/* SAYFALAMA BUTONLARI CSS SONU */


/* KATALOGLAR CSS BAŞLANGICI */
.katalog-resmi {
    width: 100%;
    height: 300px;
    object-fit: cover;
    background-position: center;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.katalog-karti {
    border: 0;
}

.katalogu-ac-butonu {
    background-color: #373e42;
    color: #fff;
}

.katalogu-ac-butonu:hover,
.katalogu-ac-butonu.active {
    background-color: #373e42;
    color: #f87100;
}

/* KATALOGLAR CSS SONU */



/* HAKKIMIZDA CSS BAŞLANGICI */
.hakkimizda-sosyal-medya-iconlari {
    color: #373e42;
}

.hakkimizda-sosyal-medya-iconlari:hover,
.hakkimizda-sosyal-medya-iconlari.active {
    color: #f87100;
}

/* HAKKIMIZDA CSS SONU */


/*EKİBİMİZ CSS BAŞLANGICI*/

.ekibimiz {
    color: #373e42;
    font-weight: 300;
}

.ekibimiz h1,
.ekibimiz h2,
.ekibimiz h3,
.ekibimiz h4,
.ekibimiz h5,
.ekibimiz h6 {
    color: #373e42;
}

.ekibimiz .font-weight-medium {
    font-weight: 500;
}

.ekibimiz h5 {
    line-height: 22px;
    font-size: 18px;
}

.ekibimiz .subtitle {
    color: #8d97ad;
    line-height: 24px;
    font-size: 13px;
}

.ekibimiz ul li a {
    color: #373e42;
    padding-right: 15px;
    -webkit-transition: 0.1s ease-in;
    -o-transition: 0.1s ease-in;
    transition: 0.1s ease-in;
}

.ekibimiz ul li a:hover {
    -webkit-transform: translate3d(0px, -5px, 0px);
    transform: translate3d(0px, -5px, 0px);
    color: #f87100;
}

/*EKİBİMİZ CSS SONU*/


/* İLETİŞİM CSS BAŞLANGICI*/
.iletisim i {
    color: #f87100;
}

.gonder-butonu {
    background-color: #f87100;
    color: #fff;
    border: 0;
}

.gonder-butonu:hover,
.gonder-butonu.active {
    background-color: #373e42;
    color: #fff;
}

/* İLETİŞİM CSS SONU*/



/* SAYFA SONU CSS BAŞLANGICI */

.footer {
    background-color: #373e42;
    color: white;
}

footer .nav-link {
    color: #d1d1d1;
}

footer .nav-link:hover,
footer .nav-link.active {
    color: #fb7000;
}

.footer-basligi {
    color: #fff;
}

.sayfa-sonu-sosyal-medya-iconu {
    color: #fb7000;
}

.sayfa-sonu-sosyal-medya-iconu:hover,
.sayfa-sonu-sosyal-medya-iconu.active {
    color: white;
}

.btn-goi-orange {
    background-color: #f87100;
    color: #fff;
}

.btn-goi-orange:hover,
.btn-goi-orange.active {
    background-color: #fff;
    color: #f87100;
}

/* SAYFA SONU CSS SONU */






/* RAKAMLARLA BİZ CSS BAŞLANGICI */

.rakamlarla-biz {
    font-family: "Abril Fatface", sans-serif;
    color: #f87100;
    font-weight: 400;
    max-height: 600px;
}

.rakamlarla-biz img {
    max-height: 600px;
    min-width: 100%;
    object-fit: fill;
    background-position: center;
}

.rakamlarla-biz h1 {
    color: #ffff;
    font-size: 70px;
    padding: 30px;
    margin-top: 10px;
}

.rakamlarla-biz h3 {
    color: #f87100;
    font-size: 60px;
}

.rakamlarla-biz h6 {
    color: #ffff;
    font-size: 25px;
}

/* RAKAMLARLA BİZ CSS SONU */




/* Responsive code start */
@media screen and (max-width: 1250px) {
    .content .links li a {
        padding: 8px 13px;
    }

    .wrapper .search-box {
        max-width: calc(100% - 120px);
        width: 85%;
    }

    .wrapper .search-box input {
        padding: 0 100px 0 15px;
    }

}

@media screen and (max-width: 900px) {
    .wrapper nav {
        max-width: 100%;
        height: 70px;
    }

    .wrapper .menu-icon {
        display: block;
    }

    .wrapper #show-menu:checked~.menu-icon i::before {
        content: "\f00d";
    }

    nav .content .links {
        display: block;
        position: fixed;
        background: #373e42;
        height: 100%;
        width: 100%;
        top: 70px;
        left: -100%;
        margin-left: 0;
        overflow-y: auto;
        padding-top: 20px;
        padding-bottom: 100px;
        transition: all 0.3s ease;
    }

    nav #show-menu:checked~.content .links {
        left: 0%;
    }

    .content .links li {
        margin: 15px 20px;
    }

    .content .links li a,
    .content .links li label {
        line-height: 10px;
        font-size: 20px;
        display: block;
        padding: 8px 18px;
        cursor: pointer;
    }

    .content .links li a.desktop-link {
        display: none;
    }

    /* dropdown responsive code start */
    .content .links ul,
    .content .links ul ul,
    .content .links ul ul ul {
        position: static;
        opacity: 1;
        visibility: visible;
        background: none;
        max-height: 0px;
        overflow: hidden;
    }

    .content .links #show-about:checked~ul,
    .content .links #show-services:checked~ul,
    .content .links #show-items:checked~ul {
        max-height: 100vh;
    }

    .content .links ul li {
        margin: 7px 20px;
    }

    .content .links ul li a {
        font-size: 20px;
        line-height: 20px;
        border-radius: 5px !important;
    }

    .language {
        display: none;
    }

    #language {
        display: flex;
    }


    .top-bar {
        display: none;
    }

    .carousel {
        min-height: 30vh;
        height: 30vh;
        max-height: 30vh;
    }

    .carousel-image {
        width: 100%;
        height: 30%;
        object-fit: cover;
        /* Resmi boyutunu korumadan carousel boyutuna göre ölçekle */
    }

    .rakamlarla-biz {
        height: 100vh;
    }

    .rakamlarla-biz h1 {
        font-size: 40px;
        margin-top: 10px;
    }

    .rakamlarla-biz h3 {
        font-size: 30px;
    }

    .rakamlarla-biz img {
        height: 600px;
        min-width: 100%;
        object-fit: cover;
    }


    .search_input {
        width: 250px;
    }

}

@media screen and (max-width: 400px) {
    .wrapper nav {
        padding: 0 10px;
    }

    .content .logo a {
        font-size: 27px;
    }

    .wrapper .search-box {
        max-width: calc(100% - 70px);
    }

    .wrapper .search-box .go-icon {
        width: 30px;
        right: 0;
    }

    .wrapper .search-box input {
        padding-right: 30px;
    }
}