@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css");
@import url('https://fonts.googleapis.com/css2?family=Exo:ital,wght@0,100..900;1,100..900&display=swap');

*{
      -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -o-user-select: none;
  user-select: none;
}
:root {
    --hoverColor: #3f51b5;
    --textColor: #4D5463;
    --blue: #007bff;
    --indigo: #6610f2;
    --purple: #6f42c1;
    --pink: #e83e8c;
    --red: #d42a2a;
    --orange: #fd7e14;
    --yellow: #ffc107;
    --green: #055160;
    --teal: #20c997;
    --cyan: #17a2b8;
    --white: var(--white);
    --gray: #6c757d;
    --gray-dark: #343a40;
    --primary: #007bff;
    --secondary: #6c757d;
    --success: #28a745;
    --info: #17a2b8;
    --warning: #ffc107;
    --danger: #dc3545;
    --light: #f8f9fa;
    --dark: #343a40;
    --black: #000000;
    --white: #fff;

    --dark: #141619;

    --section-grey-1: #EEEEF5;
    --section-grey-2: #F5F7FA;
    --section-grey-3: #5B646B;
    --section-grey-4: #787981;
}


* {
    font-family: 'Exo', sans-serif;
}

p {
    color: #3b4f66;
    font-size: 18px;
    line-height: 30px;
}

body {
    width: 100%;
    overflow-x: hidden;
}

header {
    /*background-color: #ff442b;*/
    background-color: var(--dark);
}

header #top {
    background-color: rgb(238 101 71);
}

header #top .navbar>ul>li>a {
    color: #fff;
}

#banner {
    color: var(--white);
}

#banner h2 {
    font-weight: 700;
}

header .pagination li {
    margin-right: 10px;
    color: var(--white);
}

header .pagination li:after {
    content: '> ';
    color: var(--white);
}

header .pagination li:last-child:after {
    display: none;
}

header .pagination a {
    color: var(--white);
    text-decoration: none;
}

header .pagination li.active a {
    font-weight: 600;
}

.searchbar {
    margin-bottom: auto;
    margin-top: auto;
    height: 60px;
    background-color: rgba(255 255 255 / 5%);
    border-radius: 30px;
    padding: 10px;
}

.search_input {
    color: white;
    border: 0;
    outline: 0;
    background: none;
    width: calc(100% - 50px);
    caret-color: transparent;
    line-height: 40px;
    transition: width 0.4s linear;
    margin-left: 10px;
}

.search_icon {
    height: 40px;
    width: 40px;
    float: right;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    background-color: transparent;
    border: 0;
}

#categories {
    background-color: var(--section-grey-2);
    padding: 80px 0;
}

#categories .section-title {
    font-size: 38px;
    font-weight: 600;
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

#categories .section-title span {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

#categories .section-title span:before {
    width: 80px;
    height: 3px;
    background-color: var(--green);
    display: block;
    content: '';
}

#categories .item {
    text-align: center;
    margin-bottom: 30px;
    text-decoration: none;
    color: var(--black);
}

#categories .item .image {
    width: 100%;
    aspect-ratio: 1;
    background-color: #fff;
    border-radius: 10px;
    margin-bottom: 20px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

#categories .item .image img {
    width: 100%;
}

#categories .item h3 {
    font-size: 18px;
    color: var(--black);
}

#products {
    background-color: var(--section-grey-2);
    padding: 80px 0;
}

#products .section-title {
    font-size: 38px;
    font-weight: 600;
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

#products .section-title span {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

#products .section-title span:before {
    width: 80px;
    height: 3px;
    background-color: var(--green);
    display: block;
    content: '';
}

#products .item {
    text-align: center;
    margin-bottom: 30px;
}

#products .item .image {
    width: 100%;
    aspect-ratio: 1;
    background-color: #fff;
    margin-bottom: 20px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.05);
}

#products .item .image img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: contain;
    -o-object-fit: contain;
    object-position: center;
}


#products .item a {
    text-decoration: none;

}

#products .item h3 {
    font-size: 16px;
    color: var(--black);
}

#band {
    background-color: var(--green);
    color: var(--white);
}

#band h2 {
    font-weight: 600;
    margin: 0;
}

#band a {
    font-size: 20px;
}

footer {
    background-color: var(--dark);
    color: var(--light);
}

footer #logo {
    display: block;
    margin-bottom: 30px;
}

footer .social a {
    color: var(--light);
    border: 1px solid var(--light);
    border-radius: 100%;
    width: 45px;
    height: 45px;
    display: inline-block;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

footer .widget .title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 20px;
}


footer .widget .title:after {
    width: 80px;
    height: 3px;
    background-color: var(--green);
    display: block;
    content: '';
    margin-top: 5px;
}

footer .widget ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

footer .widget ul li {
    margin-bottom: 5px;

}

footer .widget ul li a {
    text-decoration: none;
    color: #b1b1b1;
}

footer .copyright {
    border-top: 1px solid #212121;
    padding: 30px 0;
}

.sidebar div.title {
    background-color: #ff4948;
    font-size: 20px;
    color: #fff;
    font-weight: 700;
    text-align: center;
    padding: 15px 20px;
    position: relative;
    z-index: 3;
}

.sidebar ul {
    width: 100%;
    float: right;
    background-color: #202020;
    padding: 60px 30px 30px 30px;
    margin-top: -20px;
    position: relative;
    z-index: 2;
    box-sizing: border-box;
    -webkit-box-shadow: 0 4px 9px 0 rgb(67 65 79 / 10%);
    box-shadow: 0 4px 9px 0 rgb(67 65 79 / 10%);
}

.sidebar ul li {
    background-color: rgba(167, 167, 167, .12);
    float: left;
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 5px;
    padding: 12px 20px;
}

.sidebar ul li.active {
    background-color: #ff4948;

}

.sidebar ul li a {
    font-weight: 500;
    color: #fff;
    text-decoration: none;
}

.states a {
    font-size: 14px;
    color: #000000;
    text-decoration: none;
}

.service h1,
.service h2,
.service h3,
.service h4,
.service h5,
.service h6 {
    color: #c22322;
}

.service p {
    line-height: 30px;
}

.content_items {
    background-color: #ee6547;
    background-repeat: no-repeat;
    background-position: bottom right;
    position: relative;
}

.content_items:before {
    background-image: url(../img/pattern.svg);
        opacity: 0.06;
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 0;
}

.content_items .item {
    background-color: #fff;
    float: left;
    width: 100%;
    box-sizing: border-box;
    color: #fff;
}

.content_items .item div.icon {
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    padding: 0 0 30px 0;
    float: left;
    width: 100%;
}

.content_items .item div.icon:before {
    content: '';
    width: 100%;
    height: 70px;
    line-height: 60px;
    font-size: 80px;
    float: left;
    background-image: url(../img/smile.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.content_items .item div.nakliye:before {
    background-image: url(../img/delivery.svg);
}

.content_items .item div.urun:before {
    background-image: url(../img/box.svg);
}

.content_items .item div.support:before {
    background-image: url(../img/support.svg);
}

.content_items .item div.title {
    font-size: 24px;
    padding: 10px 0;
    margin-bottom: 10px;
    font-weight: 700;
    float: left;
    width: 100%;
    text-align: center;
    color: #000;
}

.content_items .item div.desc {
    color: #979797;
    line-height: 32px;
    float: left;
    width: 100%;
    text-align: center;
    font-size: 20px;
}

@media screen and (max-width:460px) {
    #menu {
        width: 100% !important;
        position: fixed;
        height: 100%;
        top: 0;
        right: -100%;
        background-color: var(--dark);
        align-items: baseline;
        padding: 20px !important;
        box-sizing: border-box;
        overflow-y: scroll;
        transition: .3s;
        -webkit-transition: .3s;
        -moz-transition: .3s;
        -ms-transition: .3s;
        -o-transition: .3s;
    }

    #menu.active {
        right: 0;
    }

    #menu .logo,
    #menu #searchbar {
        border-bottom: 1px solid #2c2c2c;
    }

    #menu .logo,
    #menu .searchbar {
        border-radius: 6px;
        -webkit-border-radius: 6px;
        -moz-border-radius: 6px;
        -ms-border-radius: 6px;
        -o-border-radius: 6px;
    }
}

.page_customers {
    background-color: #f3f1f1;
    padding: 80px 0;
}

.logos {
    box-sizing: border-box;
}

.logos .item {
    background-size: 80%;
    background-repeat: no-repeat;
    background-position: center;
    overflow: hidden;
    text-align: center;
    filter: grayscale(100%);
    transition: .3s;
    background-color: var(--white);
    box-sizing: border-box;
}

.logos .item:hover {
    filter: inherit
}

.logos .item:before {
    content: '';
    padding-top: 100%;
    float: left
}

.lists {
    box-sizing: border-box
}

.lists .item {
    background-color: var(--white);
    font-weight: 600;
    color: var(--black);
    text-align: center;
}

section#customer .customer .item {

    background-size: 80%;
    background-repeat: no-repeat;
    background-position: center;
    overflow: hidden;
    text-align: center;
    transition: .3s;
    box-sizing: border-box;
    border-radius: 6px;
    border: 1px solid #e9e9e9;
}

section#customer .customer .item:before {
    width: 100%;
    float: left;
    padding-top: 100%;
    content: '';
}

section#customer .customer .item:hover {
    opacity: 1;
}

section#customer .customer .owl-dots {
    display: none;
}

section#customer .customer .owl-dots button.active {
    border: 1px solid #fff;
}

section#brands{
    box-shadow: 0 10px 20px 0 rgb(0 0 0 / .06);
}

section#brands .brands .item {
    background-size: 80%;
    background-repeat: no-repeat;
    background-position: center;
    overflow: hidden;
    text-align: center;
    transition: .3s;
    box-sizing: border-box;
    border-radius: 6px;
    border: 1px solid #e9e9e9;
}

section#brands .brands .item:before{
    width: 100%;
    float: left;
    padding-top: 100%;
    content: '';
}

section#brands .brands .item:hover {
    opacity: 1;
}

section#brands .brands .owl-dots {
    display: none;
}

section#brands .brands .owl-dots button.active {
    border: 1px solid #fff;
}

section#customer a.more {
    color: var(--white);
    background-color: #de2021;
    font-weight: 500;
}

.square-img {
    aspect-ratio: 1;
    object-position: center;
    object-fit: cover;
}