* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    word-wrap: break-word;
    font-family: "Nunito", sans-serif;
}

body {
    background-color: #F8F9FA;
    /* overflow: hidden; */
}

.d-inline-block {
    display: inline-block !important;
}

.btn {
    display: inline-block;
    text-decoration: none;
    color: white;
    background-color: #41bae3;
    border: 1px solid #41bae3;
}

.btn-2,
.btn-1 {
    display: inline-flex;
    align-items: center;
    padding: 12px 24px;
    border-radius: 16px;
    font-size: 18px;
    gap: 12px;
}

.btn-3 {
    margin-bottom: 20px;
    padding: 10px 30px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 700;
    color: #41bae3;
    background-color: transparent;
    border: 2px solid #41bae3;
}

.btn-2 img {
    margin-right: 10px;
}

.container {
    width: 90%;
    margin: auto;
}

.price {
    font-size: 40px;
    font-weight: 800;
    color: #17414F;
}

img {
    vertical-align: middle;
}

/* NAV STYLE */
.navbar {
    display: flex;
    align-items: center;
    margin: 13px 0;
    border-radius: 30px;
    background-color: #FFF;
    padding: 16px 40px;
}

.navbar .logo {
    display: flex;
    align-items: center;
    width: 290px;
}

.nav-items {
    display: flex;
    align-items: center;
    width: calc(100% - 290px);
}

.nav-list {
    display: flex;
    gap: 30px;
    margin: auto;
}

.nav-list li {
    list-style: none;
}

.nav-list li a {
    color: black;
    font-size: 20px;
    font-weight: 600;
    text-decoration: none;
}

.navbar .active {
    color: #41BAE3;
    position: relative;
}

.navbar .active::after {
    content: "";
    position: absolute;
    top: 30px;
    left: calc(50% - 2.5px);
    width: 5px;
    height: 5px;
    background-color: #41BAE3;
    border-radius: 50%;
}

.navbar .search {
    position: relative;
}

.navbar .search input {
    color: black;
    outline-style: none;
    width: 290px;
    padding: 15px;
    background-color: #F8F9FA;
    border: 1px solid #F8F9FA;
    border-radius: 15px;
}

.navbar .search input::placeholder {
    color: black;
}

.navbar .search img {
    position: absolute;
    top: 15px;
    right: 20px;
}

.navbar .media-button {
    display: none;
    border: none;
    background-color: transparent;
}

.navbar .media-button img {
    display: none;
}

/* HEADER STYLE */
header {
    /* height: 740px; */
    width: 90%;
    margin: auto;
    border-radius: 50px 50px 0 0;
    background-color: rgba(226, 245, 251, 1);
    position: relative;
}

.header-top {
    display: flex;
    padding: 83px 0;
    align-items: center;
}

.header-txt {
    width: 50%;
    display: flex;
    flex-wrap: wrap;
    /* padding: 100px 100px 0 0; */
}

.header-txt h3 {
    font-size: 60px;
    animation-duration: 0.5s;
    animation-delay: 0.3s;
}

.header-txt p {
    font-size: 20px;
    animation-delay: 0.6s;
    margin-bottom: 20px;
    animation-duration: 0.5s;
}

.header-txt a {
    animation-delay: 0.9s;
    animation-duration: 0.5s;
}

.header-img {
    width: 50%;
    text-align: center;
    /* padding-left: 6.5%; */

}

.header-img img {
    width: 66%;
    animation-duration: 1.2s;
    animation-delay: 0.3s;
}

.header-txt h3,
.header-txt p,
.header-txt a,
.header-img img {
    position: relative;
    bottom: -50%;
    opacity: 0;
    animation-fill-mode: forwards;
    animation-name: headerAnimation;
}

@keyframes headerAnimation {
    to {
        bottom: 0;
        opacity: 1;
    }
}


.headcards {
    aspect-ratio: 5/1;
    width: 59%;
    display: flex;
    position: absolute;
    left: 50%;
    border-radius: 15px;
    transform: translate(-50%, -50%);
    background-color: #FFF;
    height: auto;
    box-shadow: 0px 20px 81px 0px rgba(92, 146, 164, 0.12);
}

:root {
    --headcards-height: calc(60% / 5);
}

.headcard {
    width: 33.33%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    font-size: 20px;
}

.headcard p {
    width: 70%;
}

.headcard .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 33.333%;
    aspect-ratio: 1/1;
    background-color: #41BAE3;
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
}


/* COMPANY STYLE */
.company {
    background-color: #FFF;
    width: 90%;
    margin: auto;
    border-radius: 0 0 30px 30px;
    padding-top: calc(var(--headcards-height) / 2) !important;
}

.company .company-list {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0 24px;
}

.company-list-media {
    display: none;
}


/* ABOUT STYLE */
.about {
    padding: 100px 0 80px;
    width: 82%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: -30px auto 0;
    overflow: hidden;
}

.about .about-txt h2 {
    font-size: 50px;
    margin-bottom: 10px;
    color: #17414F;
}

.about .about-txt p {
    margin-bottom: 40px;
    font-weight: 300;
}

.about-img {
    width: 50%;
    left: -100%;
}

.about-img img {
    width: 100%;
}

.about-txt {
    width: 36%;
    right: -100%;
}

.about-img,
.about-txt {
    position: relative;
    opacity: 0;
    animation-fill-mode: forwards;
    animation-duration: 0.8s;
}

@keyframes slideInLeft {
    to {
        left: 0;
        opacity: 1;
    }
}

@keyframes slideInRight {
    to {
        right: 0;
        opacity: 1;
    }
}

@keyframes slideOutLeft {
    to {
        left: -100%;
        opacity: 0;
    }
}

@keyframes slideOutRight {
    to {
        right: -100%;
        opacity: 0;
    }
}


/* DISCOUNT STYLE */
.discount {
    width: 94.7%;
    margin-left: auto;
    border-radius: 100px 0 0 100px;
    background-color: #E2F5FB;
    padding: 0px 72px;
    display: flex;
    gap: 12%;

}

.discount .discount-img {
    width: 31%;
    aspect-ratio: 1 / 1;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 33px 29px;
    overflow: hidden;
    border-radius: 50%;
    background-color: #17414f;
}

.discount .discount-txt {
    padding: 27px 0;
    width: 39%;
}

.discount .discount-txt .discount-txt-ust {
    margin-bottom: 25px;
    width: 23%;
    aspect-ratio: 5/4;
    border-radius: 48% 0 48% 0;
    position: relative;
    background-color: #ffc12b;
}

.discount .discount-txt .discount-txt-ust span {
    position: absolute;
    color: white;
    font-size: 36px;
    font-weight: 300;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.discount .discount-txt .discount-txt-alt {
    padding: 30px 30px 50px;
    background-color: #F8F9FA;
    border-radius: 0 60px 60px 60px;
}

.discount .discount-txt .discount-txt-alt h2 {
    color: #41BAE3;
    margin-bottom: 15px;
}

.discount .discount-txt .discount-txt-alt p {
    font-size: 24px;
    color: #000000B2;
    margin-bottom: 15px;
}

.discount .discount-txt .discount-txt-alt span {
    margin-left: 20px;
}

.discount .discount-txt .discount-txt-alt .stars {
    margin-bottom: 25px;
}

/* PRODUCTS-SLIDE */
.products-slide {
    width: 90%;
    margin: auto;
    padding: 80px 0 100px;
    position: relative;
}

.products-slide .swiper {
    margin: 0 56px;
}

.products-slide .swiper-button::after {
    color: var(--17414F, #17414F);
    font-size: 12px;
    font-style: normal;
    font-weight: 900;
    line-height: normal;
}

.products-slide .swiper-button {
    display: flex;
    width: 36px;
    height: 36px;
    padding: 12px;
    justify-content: center;
    align-items: center;
    gap: 12px;
    border-radius: 12px;
    opacity: 0.2;
    background: var(--E1E1E3, #E1E1E3);
}

.products-slide .swiper-button-next {
    right: 0px;
}

.products-slide .swiper-button-prev {
    left: 0px;
}

.product-card {
    height: fit-content;
    padding: 16px;
    background-color: #FFF;
    border-radius: 16px;
}

.product-card .card-img {
    width: 100%;
    aspect-ratio: 3 / 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-card .card-img img {
    max-width: 100% !important;
    max-height: 100% !important;
}

.product-card .card-txt {
    padding-top: 10px;
}

.product-card .card-txt h2 {
    font-size: 18px;
    color: #41BAE3;
}

.product-card .card-txt p {
    margin: 0 0 5px;
    font-size: 24px;
}

/* FOOTET STYLE */
footer {
    padding: 16px 0;
    background-color: #41BAE3;
}

footer .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

footer .nav-list {
    margin: 0;
}

footer .nav-list a {
    color: white;
}

footer .logo {
    display: flex;
    align-items: center;
}

.shop-main {
    display: flex;
    padding: 80px 0;
    width: 90%;
    margin: auto;
}

.shop-main .shop-filter {
    padding-right: 25px;
    width: 25%;
}

.media-filter-button {
    display: none;
}

.shop-main .filter-item {
    padding: 30px 20px;
    margin-bottom: 50px;
    border-radius: 30px;
    background-color: #E2F5FB;
    width: 100%;
    color: #17414F;
}

.shop-main .filter-brand {
    background-color: #FFF !important;
}

.shop-main .filter-item .price-range-top {
    position: relative;
    margin-top: 20px;
}

.shop-main .filter-item .price-range-top .slider-container {
    width: 100%;
    height: 10px;
    position: relative;
    background: var(--41BAE3, #41BAE3);
    border-radius: 30px;
}

.shop-main .filter-item .price-range-top .slider-container .price-slider {
    height: 100%;
    left: 0%;
    right: 0%;
    position: absolute;
    border-radius: 5px;
    background: white;
}

.shop-main .filter-item .price-range-top input {
    position: absolute;
    width: 100%;
    height: 5px;
    background: none;
    top: 2.5px;
    pointer-events: none;
    cursor: pointer;
    -webkit-appearance: none;
}

/* Styles for the range thumb in WebKit browsers */
.shop-main .filter-item .price-range-top input[type="range"]::-webkit-slider-thumb {
    height: 15px;
    width: 15px;
    border: 3px solid white;
    border-radius: 50%;
    background: var(--41BAE3, #41BAE3);
    pointer-events: auto;
    -webkit-appearance: none;
}

.price-range-top input:focus {
    border: none;
    outline: none;
}

.shop-main .filter-item .price-range-bottom {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    align-items: center;
}

.shop-main .filter-item .price-range-bottom input {
    border-radius: 10px;
    background: var(--F8F9FA, #F8F9FA);
    border: none;
    width: 100px;
    padding: 14px 6px;
    color: #000;
    outline-style: none;
}

.shop-main .filter-item .price-range-bottom hr {
    width: 10px;
    border: none;
    height: 3px;
    background-color: #ffffff;
    border-radius: 1px;

}

.shop-main .filter-brand h3 {
    margin-bottom: 15px;
}

.shop-main .filter-brand ul li {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 5px;
}

.shop-main .filter-brand ul li:not(:last-child) {
    margin-bottom: 10px;
}

.shop-main .filter-brand ul li input {
    width: 15px;
    height: 15px;
}

.shop-main .filter-brand ul li .control {
    display: block;
    position: relative;
    padding-left: 25px;
    cursor: pointer;
    font-weight: 500;
}

.shop-main .filter-brand ul li .control input {
    position: absolute;
    z-index: -1;
    opacity: 0;
}

.shop-main .filter-brand ul li .control__indicator {
    position: absolute;
    top: 2px;
    left: 0;
    width: 16px;
    height: 16px;
    border-radius: 4px;
    border: 1px solid var(--E1E1E3, #E1E1E3);
    background: #FFF;
}

.shop-main .filter-brand ul li .control:hover input~.control__indicator,
.shop-main .filter-brand ul li .control input:focus~.control__indicator {
    background: #e1e1e3;
}

.shop-main .filter-brand ul li .control input:checked~.control__indicator {
    background: var(--41BAE3, #41BAE3);
}

.shop-main .filter-brand ul li .control input:disabled~.control__indicator {
    background: #e1e1e3;
    opacity: 0.6;
    pointer-events: none;
}

.shop-main .filter-brand ul li .control__indicator:after {
    content: '';
    position: absolute;
    display: none;
}

.shop-main .filter-brand ul li .control input:checked~.control__indicator:after {
    display: block;
}

.shop-main .filter-brand ul li .control--checkbox .control__indicator:after {
    left: 35%;
    top: 17%;
    width: 3px;
    height: 6px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.shop-main .filter-brand ul li .control--checkbox input:disabled~.control__indicator:after {
    border-color: #17414f;
}

.shop-main .shop-products {
    width: 75%;
    padding-left: 18px;
    display: flex;
    flex-wrap: wrap;
    gap: 36px;
}

.shop-main .shop-products .product-card {
    width: calc((100% - 72px)/3);
}

.shop-main .shop-products .product-card .stars {
    margin-bottom: 10px;
}

/* CONTACT STYLE */
.contact {
    width: 78.5%;
    aspect-ratio: 3 / 1;
    margin: 80px auto;
    padding: 10px 20px;
    background-color: #fff;
    border-radius: 30px;
    color: white;
}

.contact-items {
    display: flex;
    gap: 20px;
    height: 100%;
}

.contact-txt {
    width: 35.6%;
    height: 100%;
    padding: 25px;
    border-radius: 30px;
    background-color: #41BAE3;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.contact-txt h3 {
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 10px;
}

.contact-txt p {
    margin-bottom: 25px;
}

.contact-txt li {
    display: flex;
    gap: 15px;
    align-items: center;
    list-style: none;
    margin-bottom: 15px;
}

.contact-map {
    height: 100%;
    width: calc(64.4% - 20px);
    overflow: hidden;
    border-radius: 0 30px 30px 0;
}

.bg-image {
    position: absolute;
    bottom: -15px;
    right: -15px;
}


/* PRODUCT-INFO STYLE */

.product-info {
    padding: 80px;
}

.product-info-top {
    display: flex;
}

.product-photos {
    width: 50%;
    display: flex;
    gap: 20px;
}

.product-photos-left {
    width: 17%;
}

.small-photos {
    width: 100%;
    border: 1px solid #41bae371;
    border-radius: 8px;
    padding: 10px;
    overflow: hidden;
    margin-bottom: 10px;
    aspect-ratio: 1/1;
}

.small-photos-active,
.small-photos:hover {
    border: 2px solid #41BAE3;
    padding: 20px;
}

.small-photos img {
    max-width: 100%;
    max-height: 100%;
    background-color: #F8F8F8;
}

.product-photos-right {
    width: 100%;
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #41bae371;
    border-radius: 8px;
    padding: 40px;
    overflow: hidden;
}

.product-photos-right img {
    max-width: 100%;
    max-height: 100%;
    background-color: #F8F8F8;
}

.product-text {
    width: 50%;
    padding: 20px 20px 0 80px;
}

.product-text h2 {
    font-weight: 700;
    font-size: 40px;
}

.product-text-items {
    display: flex;
    flex-wrap: wrap;
    align-content: flex-start;
    margin: 20px -10px auto -10px;
}

.product-text-item {
    width: 50%;
    padding: 0 10px;
    font-size: 18px;
}

.product-text-item p {
    margin: 0;
}

.product-text-item span {
    color: #41BAE3;
    margin-bottom: 28px;
    font-weight: 600;
    display: inline-block;
}

.product-info-bottom {
    padding-top: 50px;
}

.product-info-bottom h3 {
    font-size: 40px;
    margin-bottom: 10px;
}

.product-info-bottom-txt {
    width: 100%;
    padding: 32px;
    border-radius: 24px;
    background-color: #41BAE3;
    color: #fff;
}

.product-info-bottom-txt ul {
    margin-left: 32px;
}

.product-info-bottom-txt p {
    margin-bottom: 10px;
}

.structure {
    width: 90%;
    margin: auto;
    margin-top: 4dvb;
    display: flex;
    padding: 20px 0px;
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
    align-self: stretch;
}

.structure .head {
    width: 100%;
    text-align: center;
    line-height: 54.56px;
    margin-bottom: -70px;
}

.structure .head p {
    color: rgba(65, 186, 227, 1);
    font-size: 28px;
    font-weight: 700;
}

.structure .head h3 {
    color: rgba(23, 65, 79, 1);
    font-size: 40px;
    font-weight: 800;
}

.structure .map {
    width: 100%;
    position: relative;
}

.structure .whole-map {
    width: 100%;
    margin-bottom: -170px;
    display: flex;
    padding: 10px;
    align-items: flex-start;
    gap: 10px;
    align-self: stretch;
}

.structure .whole-map img {
    width: 100%;
    aspect-ratio: 2/1;
}

.country-point {
    width: 3.5%;
    aspect-ratio: 1/1;
    position: absolute;
    /* transition: 0.4s; */
}

.country-point img {
    width: 100%;
    height: 100%;
}

.point-georgia {
    top: 30.5%;
    right: 41.8%;
}

.point-azerbaijan {
    top: 33%;
    right: 38.5%;
}

.point-uzbekistan {
    top: 30.8%;
    right: 33.5%;
}

.point-kyrgyzstan {
    top: 30.9%;
    right: 29.2%;
}

.point-kazakhstan {
    top: 24%;
    right: 31.7%;
}

.point-georgia:hover .info-georgia {
    z-index: 40;
    opacity: 1;
}

.point-azerbaijan:hover .info-azerbaijan {
    z-index: 40;
    opacity: 1;
}

.point-uzbekistan:hover .info-uzbekistan {
    z-index: 40;
    opacity: 1;
}

.point-kyrgyzstan:hover .info-kyrgyzstan {
    z-index: 40;
    opacity: 1;
}

.point-kazakhstan:hover .info-kazakhstan {
    z-index: 40;
    opacity: 1;
}


.country-info {
    position: absolute;
    top: -170%;
    left: 0;
    display: flex;
    padding: 16px;
    align-items: center;
    border-radius: 20px;
    border: 1px solid #FFF;
    gap: 20px;
    background: rgba(255, 255, 255, 0.20);
    box-shadow: 0px 20px 81px 0px rgba(92, 146, 164, 0.12);
    backdrop-filter: blur(10px);
    transition: 0.5s;
    z-index: -10;
    opacity: 0;
}

.info-georgia {
    right: 0;
    left: unset;
}

.info-uzbekistan {
    right: 0;
    left: unset;
}

.country-info .img {
    display: flex;
    width: 106px;
    height: 53px;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    border-radius: 8px;
    border: 3px solid var(--E2F5FB, #E2F5FB);
    background: url(<path-to-image>) lightgray 50% / cover no-repeat;
}

.country-info .img img {
    width: 100%;
    height: 100%;
}

.country-txt {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
}

.country-txt h4 {
    color: var(--41BAE3, #41BAE3);
    white-space: nowrap;
    font-size: 20px;
}


.country {
    display: flex;
    align-items: center;
    gap: 12px;
}

.country .location-dot img {
    width: 100%;
    height: 100%;
}

.country-txt p {
    color: var(--17414F, #17414F);
    font-family: "Nunito", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.details {
    width: 100%;
    display: flex;
    padding: 0px 28px;
    justify-content: space-between;
    gap: 3%;
    margin: 20px 0;
}

.info {
    display: flex;
    padding: 24px 36px;
    align-items: flex-start;
    gap: 32px;
    flex: 1 0 0;
    border-radius: 20px;
    border: 1px solid #FFF;
    background: rgba(255, 255, 255, 0.50);
    transition: 0.4s;
    z-index: 100;
}

.info:hover {
    box-shadow: 0px 20px 81px 0px rgba(92, 146, 164, 0.12);
    background: rgb(255, 255, 255);
}

.txt {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}

.txt h3 {
    color: var(--17414F, #17414F);
    font-family: "Nunito", sans-serif;
    font-size: 28px;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
}

.txt p {
    color: var(--17414F, #17414F);
    font-family: "Nunito", sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.directors {
    width: 100%;
    display: flex;
    padding: 36px 28px;
    align-items: center;
    justify-content: space-between;
    gap: 3%;
}

.directors .img {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex: 1 0 0;
}

.directors .img img {
    width: 80%;
    aspect-ratio: 1/1;
}

.directors .main {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 36px;
    flex: 1 0 0;
}

.directors .head {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    align-self: stretch;
    margin: 0;
}

.directors .head h3 {
    color: var(--17414F, #17414F);
    text-align: center;
    font-family: "Nunito", sans-serif;
    font-size: 28px;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
}

.directors .general {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    align-self: stretch;
}

.directors .info {
    align-items: center;
    gap: 44px;
    align-self: stretch;
    background-color: transparent;
    border: none;
}

.directors .info:hover {
    background-color: rgb(255, 255, 255);
}

.directors .icon {
    display: flex;
    width: 64px;
    height: 64px;
    padding: 16px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.directors .txt {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}

.directors .txt p {
    color: var(--17414F, #17414F);
    font-family: "Nunito", sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
}

.directors hr {
    width: 42px;
    height: 2px;
    transform: rotate(90deg);
    margin-left: 48px;
    background-color: #E1E1E3;
    border: none;
}


@media (max-width: 768px) {
    .container {
        width: 94%;
        margin: auto;
        padding: 0;
    }
    
    nav {
        height: 86px;
    }

    .navbar {
        transition: 0.6s;
        padding: 16px 30px;
        display: block;
        max-height: 60px;
        overflow: hidden;
        position: absolute;
        z-index: 10;
        width: calc(100% - 16px);
    }

    .navbar .logo {
        width: 100%;
        margin-bottom: 20px;
        justify-content: space-between;
    }

    .navbar .logo img {
        width: 180px !important;
        height: 28px !important;
    }

    .navbar .media-button img {
        width: unset !important;
        height: unset !important;
    }

    .navbar .media-button {
        display: flex !important;
        align-items: center;
    }

    .nav-items {
        flex-direction: column-reverse;
        width: 100%;
    }

    .nav-list,
    .navbar .search {
        display: block;
    }

    .nav-list {
        text-align: center;
    }

    .nav-list li {
        margin-top: 30px;
    }

    .navbar .active::after {
        display: none;
    }

    .navbar .search {
        width: 100%;
    }

    .navbar .search input {
        width: 100%;
    }

    .navbar .search input::placeholder {
        color: black;
    }

    .navbar .search img {
        position: absolute;
        top: 15px;
        right: 20px;
    }

    .header-top {
        padding: 62px 0 83px;
    }

    .header-txt {
        width: 100%;
        padding: 0 20px;
    }

    .header-txt h3 {
        font-size: 35px;
    }

    .header-txt p {
        font-size: 14px;
    }

    .header-img {
        display: none;
    }

    .headcards {
        /* height: 74px; */
        width: unset !important;
        /* aspect-ratio: 3/1; */
        padding: 0 4px;
        gap: 4px;
        left: 10px;
        right: 10px;
        transform: translate(0, -50%);
    }

    .headcard {
        font-size: 10px;
    }

    .headcard p {
        margin-top: 5px;
        width: 100%;
    }

    .headcard .icon img {
        width: 50%;
        height: 50%;
    }

    .company {
        padding-top: 50px !important;
    }

    .company .company-list {
        display: none;
    }

    .company-list-media {
        padding: 0 45px;
        width: 100%;
        display: block;
    }

    .company-list-media .swiper-wrapper {
        align-items: center;
    }

    .company-list-media .swiper-wrapper .company-item {
        display: flex;
        align-items: center;
        justify-content: center;
        padding-bottom: 10px;
    }

    .about {
        display: block;
        padding: 30px 0 30px;
        width: 90%;
        margin-top: 0;
    }

    .about .about-img {
        width: 100%;
        padding: 0 0 30px;
    }

    .about .about-img img {
        width: 100%;
    }

    .about-txt {
        width: 100%;
    }

    .about-txt h2 {
        font-size: 35px !important;
    }

    .about-txt p {
        font-size: 14px !important;
        margin-bottom: 30px !important;
    }

    .discount {
        width: 100%;
        display: block;
        margin-left: 0;
        padding: 40px 15px;
    }

    .discount-img {
        width: 100% !important;
        aspect-ratio: 1/1 !important;
        margin: 0 auto 30px !important;
    }

    .discount-img img {
        width: 100%;
    }

    .discount .discount-txt {
        width: 100%;
    }

    .discount .discount-txt {
        background-color: #F8F9FA;
        border-radius: 0 60px 60px;
    }

    .discount .discount-txt .discount-txt-alt {
        min-width: 100%;
        padding: 10px 30px 0;
        font-size: 20px;
    }

    .discount .discount-txt .discount-txt-alt h2 {
        font-size: 22px;
        margin-bottom: 5px;
    }

    .discount .discount-txt .discount-txt-alt p {
        font-size: 25px;
        margin-bottom: 5px;
    }

    .discount .discount-txt .discount-txt-alt span {
        font-size: 35px;
    }

    .discount .discount-txt .discount-txt-alt .stars {
        margin-bottom: 10px;
    }

    .discount .discount-txt .discount-txt-ust {
        margin-bottom: 0;
        width: 63px;
        height: 54px;
        margin-left: 30px;
        position: relative;
    }

    .discount .discount-txt .discount-txt-ust span {
        font-size: 22px;
    }

    footer {
        padding: 16px 0;
        background-color: #41BAE3;
        display: flex;
        justify-content: center;
    }

    footer .nav-list {
        display: none;
    }

    .product-info {
        padding: 30px 15px;
    }

    .product-info-top {
        display: block;
    }

    .product-photos {
        width: 100%;
        flex-direction: column-reverse;
        flex-wrap: wrap;
    }

    .product-photos-left {
        width: 100%;
        display: flex;
        gap: 10px;
    }

    .small-photos {
        width: 20%;
        padding: 5px;
    }

    .small-photos-active,
    .small-photos:hover {
        padding: 10px;
    }

    .product-photos-right {
        width: 100%;
        padding: 20px;
    }

    .product-text {
        width: 100%;
        padding: 30px 0;
    }

    .product-text h2 {
        font-size: 30px;
    }

    .product-text-item {
        font-size: 14px;
        padding: 0 10px;
    }

    .product-text-item span {
        margin-bottom: 10px;
    }

    .product-info-bottom {
        padding-top: 0;
    }

    .product-info-bottom h3 {
        font-size: 30px;
    }

    .product-info-bottom-txt {
        padding: 15px;
        border-radius: 12px;
        font-size: 14px;
    }

    .product-info-bottom-txt ul {
        margin-left: 24px;
    }

    .contact {
        width: 91.4%;
        margin: 30px auto;
        padding: 10px;
    }

    .contact-items {
        display: flex;
        flex-direction: column-reverse;
        height: unset;
    }

    .contact-txt {
        width: 100%;
        aspect-ratio: 1/1;
        padding: 15px;
        border-radius: 20px;
    }

    .contact-txt p {
        font-size: 14px;
        border-radius: 26px;
        margin-bottom: 15px;
    }

    .contact-txt li {
        font-size: 14px;
        margin-bottom: 15px;
    }

    .contact-map {
        width: 100%;
        aspect-ratio: 1/1;
        overflow: hidden;
        border-radius: 26px;

    }

    .bg-image {
        display: none;
    }

    .shop-main {
        padding: 25px 15px;
        display: block;
    }

    .shop-main .shop-filter {
        transition: 0.6s;
        width: 100%;
        padding: 0;
        max-height: 0;
        overflow: hidden;
    }

    .h-unset {
        max-height: 1000px !important;
    }

    .media-filter-button {
        display: block
    }

    .shop-main .filter-item {
        padding: 15px 10px;
        margin-bottom: 20px;
        border-radius: 15px;
    }

    .shop-main .filter-item .price-range-bottom input {
        padding: 10px 6px;
    }

    .shop-main .filter-brand h3 {
        margin-bottom: 15px;
    }

    .shop-main .filter-brand ul li:not(:last-child) {
        margin-bottom: 10px;
    }

    .shop-main .filter-brand ul li .control {
        font-weight: 600;
    }

    .shop-main .shop-products {
        width: 75%;
        padding-left: 25px;
        display: flex;
        flex-wrap: wrap;
        gap: 16px;
        justify-content: space-between;
    }

    .shop-main .shop-products .product-card {
        width: calc((100% - 16px) / 2);
        margin-bottom: 50px;
    }

    .shop-main .shop-products {
        width: 100%;
        padding: 0;
    }

    .shop-main .shop-products .product-card .stars {
        margin-bottom: 4px;
    }

    .shop-main .shop-products .product-card .stars img {
        width: 22px;
    }

    .shop-main .product-card .btn-2 {
        font-size: 16px;
        padding: 8px 16px;
    }
    

    .shop-main .shop-products .product-card button img {
        width: 13px;
        margin-right: 3px;
        display: none;
    }
}