@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');

@font-face {
    font-family: 'PP Agrandir';
    src: url('images/PPAgrandir-Variable.woff2') format('woff2');
    font-style: normal;
    font-display: swap;
}

body {
    font-family: 'DM Sans', sans-serif;
    margin: 0;
    overflow-x: hidden !important;
}

a {
    text-decoration: none;
    color: #000000;
    transition: .2s ease;
    display: inline-block;
}


img {
    max-width: 100%;
}


/* PAGE SCROLLBAR */
::-webkit-scrollbar {
    width: 8px;
    height: 4px;
}

::-webkit-scrollbar-track {
    background-color: white;
}

::-webkit-scrollbar-thumb {
    background: #e7e7e7;
    background: #8B8B8B;
}

::-webkit-scrollbar-thumb:hover {
    background: #3380E5;

}

/* BTNS */
.custom-btn {
    padding: 0.6rem 1rem;
    background-color: #F2F2ED;
    border-radius: 3rem;
    font-size: 1rem;
    color: #000000;
    transition: .2s ease;
    border: none;
    white-space: nowrap;
}

.custom-btn:hover {
    background-color: #E6E6E1;
}

.custom-btn.bg {
    background-color: #3380E5;
    color: #fff;
}

.custom-btn.bg:hover {
    background-color: #2A6BB8;
}

.custom-btn.bg-red {
    background-color: #e02929;
    color: #fff
}

.custom-btn.bg-red:hover {
    background-color: #ca2a2a;
}

.custom-btn[disabled] {
    background-color: #E6E6E1;
    color: #A9A9A9;
    cursor: not-allowed;
}

.custom-big {
    padding: 1rem 1.25rem;
}

.custom-btn-full {
    width: 100%;
    text-align: center;
}

.modal-card {
    border: 1px solid rgba(204, 204, 204, 0.8);
    border-radius: .5rem;
    padding: 3rem 1rem 2rem 1rem;
    background-color: #F2F2ED;
}

.modal-title {
    font-size: 1.5rem;
    font-weight: 500;
}

.basket-modal .fa-basket-shopping {
    color: #3380E5;
    font-size: 2rem;
    margin-bottom: .5rem;

}

.font-bold {
    font-weight: 600;
}

.basket-modal .menu-modal-content {
    padding: 1rem 2rem;
}

/* HEADER */
.header-container {
    padding: 1rem 3rem;
    z-index: 3;
    position: relative;
    border-bottom: 1px solid #F9F9F6;
}

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

.header-left {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.header-right {
    display: flex;
    align-items: center;
    gap: .5rem;
}

.header-links {
    display: flex;
    gap: .5rem;
}

.header-links a {
    padding: 1rem 1.05rem;
    border-radius: 3rem;
    transition: none;
}

.header-links a:hover {
    background-color: #E6E6E1;
}

.chakra-btn {
    border: none;
    background-color: #F2F2ED;
    padding: .75rem 1rem;
    border-radius: 3rem;
}

.chakra-btn-2 {
    padding: 1rem 1.25rem;
}

.chakra-btn:hover {
    background-color: #E6E6E1;
}

header {
    position: sticky;
    top: 0;
    width: 100%;
    background: white;
    border-bottom: 1px solid #F9F9F6;
    z-index: 99;
}

header .logo img {
    width: 130px;
}

/* .header-burger {
    display: none;
} */

/* .menu-modal {
    display: none;
} */

/* SEARCH MODAL */
.search-modal {
    width: 100%;
    background: #00000078;
    position: absolute;
    height: calc(100vh - 88px);
    opacity: 0;
    visibility: hidden;
    transition: .2s ease;
}

.search-modal-content {
    background: white;
    padding: 1rem 3rem;
}

.search-input {
    position: relative;
}

.search-input input {
    width: 100%;
    height: 100%;
    padding: 1rem 1.1rem;
    border-radius: 1rem;
    border: none;
    outline: none;
    padding-right: 5rem;
    border: 1px solid #3380E5;
}

.search-input i {
    position: absolute;
    top: 50%;
    right: 1.5rem;
    transform: translateY(-50%);
    color: #949494;
    font-size: 1.5rem;
}

.search-results {
    padding-top: 1rem;
}

.search-result-title {
    margin-bottom: 1rem;
    color: #949494;
}

.search-result-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.search-result-content a {
    padding-left: 1rem;
    position: relative;
}

.search-result-content a::before {
    content: "\f0da";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0rem;
    color: #3380E5;
}

.search-modal.active {
    opacity: 1;
    visibility: visible;
}

/*  */

.header-burger {
    color: #fff;
    border-color: transparent;
    position: relative;
    padding: 0;
    text-align: center;
    display: block;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer
}

.burger-icon {
    display: block;
    width: 64%;
    height: 2px;
    border-radius: 1rem;
    background: #000;
    transition: .3s ease
}

.burger-icon::before,
.burger-icon::after {
    content: "";
    width: 64%;
    height: 2px;
    border-radius: 1rem;
    background: #000;
    position: absolute;
    transition: .3s ease;
    left: 18%;
}

.burger-icon::before {
    top: 30%
}

.burger-icon::after {
    bottom: 30%;
}

.header-burger.active .burger-icon,
.header-burger.close-icon .burger-icon {
    background-color: transparent
}

.header-burger.active .burger-icon::before,
.header-burger.close-icon .burger-icon::before {
    transform: rotateZ(-45deg) scaleX(1.05) translate(-4.5px, 4.5px)
}

.header-burger.active .burger-icon::after,
.header-burger.close-icon .burger-icon::after {
    transform: rotateZ(45deg) scaleX(1.05) translate(-4.5px, -5.5px)
}

.menu-modal {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 9999;
    background-color: rgba(0, 0, 0, 0.336);
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: .2s ease;
}

.menu-modal-content {
    width: 100%;
    max-width: 560px;
    height: 100vh;
    background: white;
    position: absolute;
    right: -560px;
    padding: 1rem;
    transition: .4s ease;
}

.menu-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.menu-modal-header>div {
    color: #949494;
    font-size: 1.1rem;
}

.menu-modal.basket-modal .menu-modal-header>div {
    color: black;
    font-size: 1.2rem;
    font-weight: 500;
}



.menu-modal.active {
    opacity: 1;
    visibility: visible;
}


.menu-modal.active .menu-modal-content {
    right: 0;
}

.header-burger {
    display: none;
}

.menu-modal a.chakra-btn {
    display: block;
    width: 100%;
    padding: 1rem 1.25rem;
    background-color: #F2F2ED;
    margin-bottom: 0.5rem;
    height: auto;
    text-align: center;
    font-size: 1.1rem;
}

.menu-modal a.chakra-btn:hover {
    background-color: #E6E6E1;
}

/* SOCIALS */

.socials {
    font-size: 1.2rem;
    display: flex;
    gap: 1rem
}

.socials a {
    color: #E6E6E1;
    color: #3380E5;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.2rem;
    border: 1px solid #3380E5;
}

.socials a:hover {
    background-color: #3380E5;
    color: #fff;
}

/* FOOTER */
footer .socials a {
    color: white;
    border-color: white;
}

footer .socials a:hover {
    background-color: white;
    color: #0a3972;
}

footer {
    background-color: #0a3972;
    color: white;
    padding: 2rem;
}

footer a {
    color: white;
}

footer .logo img {
    filter: brightness(0) invert(1);
}

footer .logo {
    margin-bottom: 3rem;
}

.footer-title {
    color: #aed1ff;
    margin-bottom: 1rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
}

.footer-left {
    display: flex;
    gap: 1rem;
    width: 70%;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-left>div {
    width: 20%;
}

.footer-right {
    width: 25%;
}

.footer-desc {
    padding: 3rem 0;
    font-size: .8rem;
    max-width: 70%;
    color: #aed1ff;
}

.footer-copyright {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: .8rem;
    color: #aed1ff;
    border-top: 1px solid #aed1ff4a;
    padding-top: 2rem;
position:relative;
}

.footer-copyright a {
    color: #aed1ff;
    margin-right: 1rem;
}

/* BANNER */
.banner-section {
    padding: 5rem 0 2.5rem;
    /* text-align: center; */
}

.banner h1 {
    font-size: calc(2.2vw + 1.3rem);
    font-size: 4rem;
    font-weight: 300;
    margin-bottom: 1rem;

}

.banner h1,
.banner h2 {
    color: #3380E5;
    font-family: 'PP Agrandir', sans-serif;
}

.banner h2 {
    font-size: 1.75rem;
    font-weight: 500;
    margin-bottom: 2rem;
}

.banner-desc {
    font-size: calc(0.3vw + 1.1rem);
    margin-bottom: 2rem;
}

ul {
    list-style-type: none;
}

@keyframes eHXWtl {

    0%,
    0% {
        transform: translateZ(0px) translateY(0%);
    }

    2.5%,
    20% {
        transform: translateZ(0px) translateY(-16.6667%);
    }

    22.5%,
    40% {
        transform: translateZ(0px) translateY(-33.3333%);
    }

    42.5%,
    60% {
        transform: translateZ(0px) translateY(-50%);
    }

    62.5%,
    80% {
        transform: translateZ(0px) translateY(-66.6667%);
    }

    82.5%,
    100% {
        transform: translateZ(0px) translateY(-83.3333%);
    }
}

/* @keyframes eHXWtl {

    0%,
    0% {
        transform: translateZ(0px) translateY(0%);
    }

    2.5%,
    20% {
        transform: translateZ(0px) translateY(-70px);
    }

    22.5%,
    40% {
        transform: translateZ(0px) translateY(-140px);
    }

    42.5%,
    60% {
        transform: translateZ(0px) translateY(-210px);
    }

    62.5%,
    80% {
        transform: translateZ(0px) translateY(-280px);
    }

    82.5%,
    100% {
        transform: translateZ(0px) translateY(-350px);
    }
} */


/* Rolling list container */
.rolling-list-cont {
    position: relative;
    /* min-width: 8.4375rem; */
    transform: translateY(clamp(0.125rem, -1.06742px + 0.125rem + 0.280899vw, 0.25rem));
    overflow: hidden;
    height: 77px;
}

.rolling-list {
    position: absolute;
    top: 0;
    list-style: none;
    margin: 0;
    padding: 0;
    animation: 11s ease 1750ms infinite normal none running eHXWtl;
}

.rolling-list li {
    transform: translateZ(0px) translateY(0px);
    /* height: 70px; */
}

.rolling-list span {
    display: block;
    /* height: 70px; */
    /* transform: translateY(clamp(-0.25rem, 1.06742px - 0.125rem - 0.280899vw, -0.125rem)); */
}

/* KIT CATEGORIES */
.kit-categories {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: .3rem;
    margin-bottom: 3rem;
}

.kit-category {
    padding: 1rem 1.1rem;
    border-radius: 1.5rem;
    background-color: #F2F2ED;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    transition: .2s ease;
    position: relative;
}

.kit-category::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 1.5rem;
    background-color: red;
    z-index: 0;
    opacity: 0;
    opacity: 1;
    transition: opacity 400ms;
}

.kit-category>div {
    position: relative;
}

.kit-cat-image {
    width: 112px;
    height: 112px;
    background-image: url(images/kitcategories/beslenme.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin-right: 2rem;
    display: none;
}

.kit-cat-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: white;
    /* transition: .2s ease; */
}

.kit-cat-title span {
    color: white;
}

.kit-category .kit-cat-icon {
    width: 35px;
    height: 35px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    position: absolute;
    right: 1rem;
    transition: .2s ease;
}

.kit-blue .kit-cat-image {
    background-image: url(images/kitcategories/beslenme.png);
}

.kit-purple .kit-cat-image {
    background-image: url(images/kitcategories/genel.png);
}

.kit-pink .kit-cat-image {
    background-image: url(images/kitcategories/kadin.png);
}

.kit-orange .kit-cat-image {
    background-image: url(images/kitcategories/hormon.png);
}

.kit-yellow .kit-cat-image {
    background-image: url(images/kitcategories/cinsel.png);
}

.kit-darkblue .kit-cat-image {
    background-image: url(images/kitcategories/erkek.png);
}

.kit-category.kit-blue:hover .kit-cat-title {
    color: #00B1D2;
}

.kit-category.kit-purple:hover .kit-cat-title {
    color: #B068DE;
}

.kit-category.kit-green:hover .kit-cat-title {
    color: #13956E;
}

.kit-category.kit-pink:hover .kit-cat-title {
    color: #F6A4E3;
}

.kit-category.kit-orange:hover .kit-cat-title {
    color: #FF7F00;
}

.kit-category.kit-yellow:hover .kit-cat-title {
    color: #c7c70a;
}

.kit-category.kit-darkblue:hover .kit-cat-title {
    color: #2E58BD;
}


.kit-blue::before {
    background-image: linear-gradient(127deg, #00B1D2 12.55%, #95eeff 84.61%);
}

.kit-purple::before {
    background-image: linear-gradient(127deg, #B068DE 12.55%, #d89ffd 84.61%);
}

.kit-green::before {
    background-image: linear-gradient(127deg, #13956E 12.55%, #33cfa0 84.61%);
}

.kit-pink::before {
    background-image: linear-gradient(127deg, #F6A4E3 12.55%, #cab6c5 84.61%);
}

.kit-orange::before {
    background-image: linear-gradient(127deg, #FF7F00 12.55%, #e0b081 84.61%);
}

.kit-yellow::before {
    background-image: linear-gradient(127deg, #FFE325 12.55%, #c4c4aa 84.61%);
}

.kit-darkblue::before {
    background-image: linear-gradient(127deg, #2E58BD 12.55%, #a7b0c3 84.61%);
}

/* .kit-blue:hover .kit-cat-image {
    background-image: url(images/kitcategories/beslenmehover.png);
}

.kit-purple:hover .kit-cat-image {
    background-image: url(images/kitcategories/genelhover.png);
}

.kit-pink:hover .kit-cat-image {
    background-image: url(images/kitcategories/kadinhover.png);
}

.kit-orange:hover .kit-cat-image {
    background-image: url(images/kitcategories/hormonhover.png);
}

.kit-yellow:hover .kit-cat-image {
    background-image: url(images/kitcategories/cinselhover.png);
}

.kit-darkblue:hover .kit-cat-image {
    background-image: url(images/kitcategories/erkekhover.png);
} */

.kit-blue:hover .kit-cat-title span {
    color: #0c4d59;
}

.kit-purple:hover .kit-cat-title span {
    color: #4b2c6f;
}

.kit-green:hover .kit-cat-title span {
    color: #376f2c;
}

.kit-pink:hover .kit-cat-title span {
    color: #9b4d7f;
}

.kit-orange:hover .kit-cat-title span {
    color: #7f4d2f;
}

.kit-yellow:hover .kit-cat-title span {
    color: #c7c70a;
}

.kit-darkblue:hover .kit-cat-title span {
    color: #1f2f4d;
}

/* .kit-category:hover .kit-cat-title span,
.kit-category:hover .kit-cat-title {
    color: white;
} */

.kit-category:hover::before {
    background: #F2F2ED;
    background-color: #F2F2ED;
    /* opacity: 1; */
}

.kit-category:hover .kit-cat-title {
    color: white;
}

.kit-category:hover .kit-cat-icon {
    right: .5rem;
}

/* CARD CAROUSEL */
.section-p {
    padding: 3rem 0;
}

.section-m {
    margin: 3rem 0;
}

.text-blue {
    color: #3380E5;
}

.text-lightblue {
    color: #aed1ff;
}

.cc-section {
    position: relative;
    padding: 1rem 0;
}

.card-carousel-slider .swiper-slide:nth-child(odd) .card-carousel {
    padding-top: 2rem;
}

.cc-box {
    background-color: #F2F2ED;
    border-radius: 1rem;
    padding: 1.3rem 1rem;
    position: relative;
    height: 390px;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.cc-content {
    text-align: center;
}

.cc-content h3 {
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.cc-box .custom-btn {
    background-color: white;
    font-weight: 500;
}

.cc-box .custom-btn:hover {
    background-color: #dfedff;
}

.cc-image {
    position: absolute;
    width: 150px;
    top: -16px;
    left: 0;
    z-index: 1;
    max-width: 100%;
}


.cc-box:not(.cc-box-2) .cc-image {
    width: 180px;
    top: 35px;
    left: 49%;
    transform: translate(-49%, 0);
}

.transp {
    display: block;
    width: 420px;
    /* width: 210px; */
    height: calc(100% + 1px);
    position: absolute;
    top: 0;
    z-index: 2;
    pointer-events: none;
}

.transp-left {
    left: -1px;
    background: linear-gradient(270deg, rgba(255, 255, 255, 0.00) 12%, rgba(255, 255, 255, 0.70) 37%, #FFF 65%);
}

.transp-right {
    right: -1px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.00) 12%, rgba(255, 255, 255, 0.70) 37%, #FFF 65%);
}

.mcc-cards {
    display: none;
}

.title-group {
    margin-bottom: 2.5rem;
}

.title-group h2,
.section-title h2 {
    font-size: calc(0.9vw + 1.3rem);
    font-family: 'PP Agrandir', sans-serif;
    font-weight: 400;
    animation-name: fadeInUp;

}

.title-group>p {
    margin-bottom: 0.3rem;
    animation-name: fadeInUp;
}

.section-title {
    position: relative;
}

.section-title.section-title-icon h2 {
    padding-left: 2rem;
}

.section-title.section-title-icon h2 img {
    width: 25px;
    height: 25px;
    position: absolute;
    top: 0;
    left: 0;
    top: 50%;
    transform: translate(0, -50%);
}

.cc-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding-top: 1rem;
}

.cc-box-2 {
    overflow: hidden;
    background-color: #0a3972;
    color: white;
}

.cc-box-2 .cc-image {
    width: 100%;
    height: 67%;
}

.cc-box-2 .cc-image img {
    object-fit: cover;
    clip-path: polygon(0 0, 105% 0, 105% 100%, 74% 89%, 25% 100%, 0 90%);
}

/* PRODUCTS */
.product {
    border-radius: 1rem;
    background-color: #F2F2ED;
    border: 1px solid white;
    padding: .5rem;
}

.products>div {
    grid-column: span 3;
}

.product-image {
    border-radius: 1rem;
    background-color: #F9F9F6;
    width: 100%;
    height: 240px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: .1s ease;
}

.product:hover img {
    scale: 1.05;
}

.product-content {
    padding: 1rem 0.5rem .5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: .5rem;
    height: 210px
}

.product h2,
.product h3 {
    /* font-size: calc(0.9vw + 1rem); */
    font-size: 1.5rem;
}

.product-content p {
    font-size: 0.75rem;
    color: #545454;
}

.product-text {
    margin: auto;
    text-align: center;
}

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

.product-footer>div:first-child {
    font-weight: 600;
    font-size: 1.1rem;
}

.product:hover {
    background-color: #E8E8E2;
}

/* PRODUCT NAVS */
.product-navs {
    width: 100%;
    height: 90px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}


.swiper-navigation {
    display: flex;
    width: 100px;
    position: relative;
}

.bullets span {
    width: 15px;
    height: 15px;
    opacity: .5;
    transition: .2s ease;
    background-color: white;
    background-color: #A9A9A9;
}

.bullets .swiper-pagination-bullet-active {
    opacity: 1;
    background-color: #3380E5;
}

.b1 {
    bottom: 1rem !important;
}

.left-pag {
    width: auto !important;
}

.nav-btn {
    /* margin-top: 0; */
    color: #3380E5;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 2px solid #3380E5;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    transition: .2s ease
}

.nav-btn:hover {
    background-color: #3380E5;
    color: white
}

.nav-btn::after {
    font-size: 1rem;
}

/* FEATURES */

.features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    color: #a0b2cd;
    transition: all .3s ease-in-out;
    cursor: pointer;
}


.feature-title {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.feature-item h3 {
    font-size: 1.15rem;
    margin: 0;
    font-weight: 600;
    transition: .2s ease;
}

.feature-icon img {
    width: 45px;
    height: 45px;
    object-fit: contain;
    transition: .15s ease;
}

.feature-title>div {
    font-weight: 700;
    font-size: 1.5rem;
    transition: all .15s linear;
}

.feature-item.active,
.feature-item:hover {
    background-color: #3380e921;
    border: 1px solid #3380e9;
    border-radius: 16px;
    color: black;
}

.feature-item:hover .feature-title>div {
    font-size: 2rem;
}

.feature-item:hover h3 {
    font-size: 1.25rem;
}

.feature-item:hover img {
    scale: 1.1;
}

.feature-content {
    display: none;
}

.feature-content.active {
    display: block;
}

.feature-content img {
    width: 100%;
    height: 0;
    opacity: 0;
    transition: all .3s ease-in-out;
    margin: 0;
    object-fit: contain;
    max-height: 500px;
}

.feature-content.active img {
    opacity: 1;
    height: auto;
}

.feature-row {
    align-items: center;
}

/* JUMBOTRON */
.jumb {
    background-color: #0a3972;
    color: white;
    padding: 4rem 0;
    padding: 0;
    position: relative;
}

.jumb-animate {
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    /* width: 50vw; */
    width: 100%;
    height: 100%;
    position: absolute;
    animation: rotate 80s linear infinite;
    background-image: url(images/radial-42.svg);
    top: 0; */
    bottom: -4rem;
    filter: brightness(0) saturate(100%) invert(84%) sepia(20%) saturate(1466%) hue-rotate(181deg) brightness(99%) contrast(104%);
    right: 0;
}

@keyframes rotate {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.jumb-image {
    position: relative;
    z-index: 1;
}

.jumb-image img {
    width: 100%;
   //height: 630px;
    object-fit: cover;
    // filter: brightness(0) saturate(100%) invert(100%) sepia(88%) saturate(49%) hue-rotate(52deg) brightness(112%) contrast(112%);
}

.jumb-row {
    align-items: center;
}

.mobile-display {
    display: none;
}

/*  */
.info-boxes {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
}


.info-box img {
    margin-right: .5rem;
    width: 24px;
    height: 24px;
    object-fit: scale-down;
}

/*  */
.tab-headers {
    display: flex;
    justify-content: space-between;
    text-align: center;
    margin-bottom: 1rem;
    background: white;
    padding: .5rem;
    border-radius: 2.5rem;
    gap: 1rem;
    border: 1px solid #3380e54f;
}

.tab-title {
    width: 100%;
    padding: .7rem 1rem;
    background: #f2f2ed00;
    border-radius: 2.5rem;
    cursor: pointer;
    font-weight: 500;
    transition: .2s ease-in-out;
    border: 1px solid #3380e54f;
    animation-name: fadeIn;
}

.tab-title:nth-child(1) {
    animation-delay: 0s;
}

.tab-title:nth-child(2) {
    animation-delay: 0.2s;
}

.tab-title:nth-child(3) {
    animation-delay: 0.4s;
}

.tab-title:nth-child(4) {
    animation-delay: 0.6s;
}

.tab-title.active {
    background-color: #3380E5;
    color: white;
}

.tab-title:hover:not(.active) {
    background-color: #aed1ff;
}

.tab-content {

    padding: 1rem;
    background: #3380e50f;
    border-top-left-radius: 2.5rem;
    border-top-right-radius: 2.5rem;
    position: relative;
    overflow: hidden;
    display: none;
}

.tab-text {
    height: 100%;
    max-width: 37%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2rem;
    gap: 1rem;
}

.tab-text h3 {
    font-size: calc(0.9vw + 1.2rem);
    font-family: 'PP Agrandir', sans-serif;
    font-weight: 400;
}

.tab-img {
    position: absolute;
    width: 60%;
    right: 0;
    height: 100%;
    top: 0;
    object-fit: cover;
    clip-path: polygon(17% 0, 100% 0, 100% 100%, 12% 100%, 0 78%);
}

.tab-products {
    position: absolute;
    bottom: 2.5rem;
    right: 2.5rem;
    width: 57%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.tab-products img {
    width: 90px;
    height: 90px;
    object-fit: contain;
}

.tab-product {
    background-color: white;
    width: 100%;
    padding: 1rem 1.2rem;
    border-radius: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.tab-product h4 {
    font-size: 1rem;
    font-weight: 600;

}

.tab-product>div {
    font-weight: 600;
}

.tab-text ul {
    padding: 0;
    margin: 0;
}

.tab-text i {
    font-size: 0.4rem;
    position: relative;
    bottom: 0.25rem;
    color: #3380e5;
}

.tab-content[tabindex="2"] {
    background-color: #EFF9F5;
}

.tab-content[tabindex="3"] {
    background-color: #FFF4F4;
}

.tab-content[tabindex="4"] {
    background-color: #F9F9F6;
}

/* OFFER CARDS */
.offer-cards {
    display: flex;
    gap: 1rem;
}

.offer-card {
    width: 100%;
    position: relative;
    background-color: #004C99;
    border-radius: 1rem;
    overflow: hidden;
    padding: 1.5rem 1.5rem;
    height: 260px;
    color: white;
}

.offer-card:nth-child(1) {
    animation-name: fadeInLeft;
}

.offer-card:nth-child(2) {
    animation-name: fadeInRight;
}

.offer-content {
    width: 55%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: start;
    height: 100%;
    justify-content: space-between;
}





.offer-card img {
    position: absolute;
    width: 45%;
    height: 100%;
    right: 0;
    top: 0;
    bottom: 0;
    object-fit: cover;
    clip-path: polygon(100% 0, 100% 50%, 100% 100%, 0% 100%, 25% 50%, 0% 0%);

}

.offer-pill {
    background: white;
    padding: 0.3rem 0.5rem;
    font-size: .9rem;
    border-radius: 1rem;
    background-color: #5C85FF;
}

.offer-card h3 {
    font-size: calc(0.9vw + 0.8rem);
}

.offer-card-2 {
    background-color: #3380E5;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row-reverse;
    padding: 1rem 1rem 0 1rem;
    height: auto;
}

.offer-card-2 .offer-content {
    justify-content: center;
}


.offer-card.offer-card-2 img {
    max-width: 350px;
    height: auto;
    object-fit: contain;
    clip-path: none;
    position: static;
}

/* BLOGS */
.df-between {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.blog-slider {
    width: 69.2vw;
    overflow: hidden;
}

.left-blog-div {
    width: 30%;
}

.right-blog-div {
    width: 60%;
}

.blog-card {
    background-color: white;
    padding: 0.5rem;
    border-radius: 1.5rem;
    box-shadow: 0px 0px 10px 0px #0000001a;
    margin: .7rem;
}

.blog-card>a {
    width: 100%;
    overflow: hidden;
    display: block;
    border-radius: .5rem;
}

.blog-body {
    padding: 1.25rem;
}

.blog-body>a {
    font-weight: 400;
}

.blog-body>div {
    font-weight: 400;
    font-size: .9rem;
    margin-bottom: 1rem;
    display: flex;
    justify-content: space-between;
}

.blog-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.blog-card h3 a {
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    height: 48px;
    color: black;
    font-weight: 500;
}

.blog-card * {
    color: #474F62;
    transition: .3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.blog-card p {
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.blog-card.popular-blog-small p {
-webkit-line-clamp: 1;
}

.blog-card i {
    position: relative;
}

.blog-buttons {
    position: absolute;
    left: 15px;
    bottom: 2rem;
}

.blog-card:hover a,
.blog-card:hover i {
    color: #3380E5;
}

.blog-card:hover img {
    scale: 1.1;
}

.blog-card:hover .blog-body a i {
    transform: translate(10px, 0px);
}

.blog-button:hover {
    opacity: 1;
}

.blog-button.swiper-button-prev:after {
    content: "\f053";
}

.blog-button.swiper-button-next:after {
    content: "\f054";
}

.blog-button.swiper-button-next {
    left: 3rem;
}

.blog-button.swiper-button-prev {
    left: 0;
}


.blog-button.swiper-button-next:after,
.blog-button.swiper-button-prev:after {
    font-size: 1.25rem;
    font-family: "Font Awesome 6 Free";
    font-weight: 900;

}

.blog-card .blog-image {
    width: 100%;
    height: 205px;
    border-radius: 1rem;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;

    transition: .3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* FAQS */

.faq-container {
    max-width: 992px;

}

.faqs {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    padding: 1rem;
    cursor: pointer;
    background-color: #f2f2ed;
    border-radius: 2rem;
    transition: .2s ease;
    animation-name: fadeInUp;
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.faq-question h3,
.faq-question h2 {
    margin: 0;
    font-size: 1.25rem;
    /* font-family: 'PP Agrandir', sans-serif; */
    font-weight: 400;
}

.faq-answer {
    display: none;
    padding-top: .5rem;
}

.faq-question i {
    font-size: 1.2rem;
    transition: .3s ease;
    margin-left: .5rem;
}

.faq-item:hover {
    background-color: #aed1ff;
}

.faq-item:hover .faq-question i,
.faq-item.active .faq-question i {
    rotate: 90deg;
}

.faq-item.active .faq-question {
    color: #3380E5;
}

.faq-answer p:last-child {
    margin: 0;
}

/* BASKET PRODUCTS */
.basket-products {
    display: flex;
    flex-direction: column;
    gap: .75rem;
    max-height: 58vh;
    overflow: scroll;
    padding-right: .5rem;
}

.basket-product {
    display: flex;
    gap: .5rem;
    border-radius: .5rem;
    border: 2px solid #E8E8E2;
    padding: 0.5rem;
    justify-content: space-between;
    background-color: #F9F9F6;
}

.bp-title {
    font-weight: 500;
    font-size: 1.15rem;
    margin-bottom: .2rem;
}

.bp-body p {
    font-size: .9rem;
}

.bp-image img {
    width: 90px;
    min-width: 90px;
    height: 90px;
    object-fit: contain;
}

.bp-body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.bp-amount {
    display: flex;
    gap: 0.7rem;
    align-items: center;
}

.bp-icon {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: white;
    color: #3380E5;
    cursor: pointer;
}

.bp-price {
    font-weight: 500;
}

.bp-total-price {
    font-size: 1.25rem;
    font-weight: 500;
}

.modal-payment ul {
    padding: 0;
}

.modal-payment li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: .25rem;
}

.basket-modal-footer {
    /* border-top: 1px solid #E8E8E2; */
    position: absolute;
    bottom: 0;
    /* height: 33vh; */
    display: flex;
    flex-direction: column;
    justify-content: end;
    width: 100%;
    left: 0;
    bottom: 0;
    padding: 1rem;
}

.toggle-basket {
    position: relative;
}

.basket-amount {
    position: absolute;
    font-size: .8rem;
    top: -3px;
    right: 0;
    background: #3380E5;
    color: white;
    width: 17px;
    height: 17px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: 200;
}

/* FOOTER FORM */
.footer-form {
    margin-bottom: 1rem;
    position: relative;
}

.footer-form input {
    width: 100%;
    padding: 0.7rem 0.5rem;
    border: none;
    border-radius: 3rem;
    outline: none !important;
    padding-right: 3.2rem;
    border: 1px solid white;
}

.footer-form button {
    border: none;
    background-color: #3380E5;
    color: white;
    border-radius: 50%;
    position: absolute;
    right: 3px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 3px;
}

.footer-form input:focus {
    border-color: #3380E5;
}

.footer-form button:hover {
    background-color: #64a4f7;
}

/* TEXT CONTAINER */
.text-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.text-container-rev {
    flex-direction: row-reverse;
}


.text-image {
    width: 45%;
}

.text-image-big {
    width: 69.2vw;
    overflow: hidden;
}

.text-image img {
    width: 100%;
    height: 370px;
    border-radius: 1rem;
    object-fit: cover;
}

.text-content {
    width: 50%;
    padding-right: 2rem;
}


/*  */
.page-banner h1 {
    font-family: 'PP Agrandir', sans-serif;
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 1rem;
}

.text-container-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

/* PRODUCTS 2 */
.products {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.products>div {
    grid-column: span 3;
}

.product-categories {
    margin-bottom: 3rem;
    text-align: center;
}



.product-categories-list {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.product-categories-list div {
    padding: 0.5rem 1rem;
    border-radius: 1.5rem;
    background-color: #F9F9F6;
    cursor: pointer;
    transition: .2s ease;
}

.product-categories-list div.active {
    background-color: #3380E5;
    color: white;
}

.product-categories-list div.active a {
	color: white;
}

.product-categories-list div:hover {
    background-color: #aed1ff;
}

.product-categories-sublist {
    margin-top: 2rem;
    position: relative;
}

.product-categories-sublist::before {
    content: "\f054";
    content: none;

    font-weight: 900;
    font-family: "Font Awesome 6 Free";
    position: absolute;
    right: 0px;
    bottom: 28px;
    background: #3380e5;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    z-index: 2;
}

.product-category-subitem {
    display: none;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}




.product-category-subitem div {

    cursor: pointer;
    transition: .2s ease;
}

.product-category-subitem:hover div {
    opacity: .4;
}

.product-category-subitem div:hover {
    opacity: 1;
}

.product-category-subitem div.active {
    color: #3380E5;
}


/* FAQ CATEGORIES */

.faq-categories {
    margin: 2rem 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    text-align: center;
    flex-wrap: wrap;
}

.faq-category {
    cursor: pointer;
    font-weight: 500;
    padding: .5rem;
    position: relative;
}

.faq-category::before {
    content: "";
    width: 0%;
    bottom: 0;
    left: 0;
    height: 2px;
    background-color: #3380E5;
    position: absolute;
    transition: .3s ease;
}

.faq-category.active::before,
.faq-category:hover:not(.active)::before {
    width: 100%;
}

.faq-category.active {
    color: #3380E5;
}


.fi-2 {
    border-radius: 0;
    background: white;
    border-bottom: 1px solid #d5d5d5;
    padding: 1.5rem 1rem;
}

.fi-2:hover {
    background-color: #fafafa;
}

.faq-input input {
    border-color: #d5d5d5;
    padding: 1rem 1.1rem;
    transition: .2s ease;
}

.faq-input input:focus {
    border-color: #3380E5;
}

.no-faq {
    display: none;
    text-align: center;
}

.no-faq a {
    color: #3380E5;
}

/* FAQ EXAMPLES */
.faq-examples {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.faq-example {
    text-align: center;
    padding: 1rem;
    cursor: pointer;
    transition: .2s linear;
    border-radius: .5rem;
}

.faq-example img {
    width: 64px;
    object-fit: contain;
    margin-bottom: 1rem;
    filter: brightness(0) saturate(100%) invert(40%) sepia(62%) saturate(2468%) hue-rotate(199deg) brightness(97%) contrast(84%);
}

.faq-example h3 {
    font-weight: 500;
    font-size: 1.25rem;
}

.faq-example:hover {
    background-color: #F2F2ED;
}

/* CUSTOM MODAL */
.custom-modal {
    background: rgba(0, 0, 0, 0.336);
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: .2s ease;
}

.custom-modal.active {
    opacity: 1;
    visibility: visible;
}

.cm-container {
    width: 100%;
    max-width: 992px;
    /* height: 100%; */
    background: white;
    max-height: 90vh;
    border-radius: .5rem;
    margin: 1rem;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.cm-sm-container {
    max-width: 480px;
}

.cm-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
}

.close-modal {
    font-size: 1.4rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;
    background-color: #F2F2ED;
}

.cm-title {
    font-size: 1.3rem;
    font-weight: 500;
}

.cm-body {
    height: 100%;
    overflow-x: scroll;
    padding: 1rem;
}

.res-pass {
    color: #292929;
    font-size: 0.9rem;
}

/* STEPS */
.steps {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.step {
    display: flex;
    /* align-items: center; */
    gap: 1rem;
    position: relative;
    margin-bottom: 1.5rem;
}

.step img {
    width: 100px;
    object-fit: contain;
}

.step-content {
    position: relative;
    padding-left: 1.5rem;
}

.step-main-title {
    font-weight: 500;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.step-title {
    font-size: 1.1rem;
    font-weight: 500;
    color: #3380E5;
    /* position: relative; */
    padding-left: 2rem;
}

.step-title span {
    position: absolute;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* background-color: #0a3972; */
    color: black;
    border-radius: 50%;
    left: -10px;
    font-size: 0.8rem;
    border: 1px solid black;
    top: 0px;
}

.step-text p:last-child {
    margin: 0;
}


/* BLOGS 2 */
.blogs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

/* POPÜLER BLOGLAR */
.popular-blogs {
    display: flex;
    justify-content: space-between;
}

.popular-blogs>div {
    width: 50%;
}

.blog-card.popular-blog-big img {
    height: 220px;
}

.blog-card.popular-blog-small {
    display: flex;
    height: 100%;
}

.blog-card.popular-blog-small>a {
    min-width: 180px;
    width: 180px;
    height: auto;
}

.blog-card.popular-blog-small img {
    height: 100%;
}

.popular-blog-smalls {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 1.5rem;
}

.popular-blogs .blog-card {
    margin-top: 0;
    margin-bottom: 0;
}

/* ABOUT US */
.clipped-image {
    clip-path: inset(0% 10%);
    height: 100vh;
    transform: scale(.8, .8);
}

.clipped-image img {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    object-position: center;
    object-fit: cover;
}

.image-container {
    position: relative;
}

.cont-992 {
    max-width: 992px;
    margin-left: auto;
    margin-right: auto;
}

/* FORM */
.contact-form {
    border-bottom: 2px solid #3380E5;

}

.custom-form {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.4rem 1rem;
}

.custom-form>div {
    width: 100%;
}

.half-input {
    width: 48% !important;
}

.custom-form input:not(input[type="checkbox"]),
.custom-form textarea,
.custom-form select,
.custom-select {
    width: 100%;
    padding: .75rem 1rem;
    background-color: white;
    border: none;
    outline: none !important;
    resize: none;
    border-radius: 0.7rem;
}

.custom-form label {
    margin-bottom: .4rem;
    padding-left: .2rem;
    font-weight: 500;
}

.custom-form small {
    display: block;
    padding-left: .2rem;
    margin-bottom: .4rem;
    color: #949494;
}

.form-content {
    padding: 2rem;
    background-color: #f6f6f6;
    border-radius: 2rem;
}

.contact-info {
    width: 100%;
    display: flex;
    align-items: center;
    /* justify-content: end; */
    gap: .5rem;
    font-size: 1.2rem;
}

.contact-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: .5rem;
    background-color: #3380E5;
    color: white;
    font-size: 1.7rem;
}

.align-items-normal {
    align-items: normal;
}

.form-btn {
    border-radius: .7rem;
}

.account-form input,
.account-form textarea,
.account-form select,
.custom-select {
    border: 1px solid #d7d7d7 !important;
}

textarea {
    display: flex;
}

.form-check a {
    color: #3380E5;
}

.form-check label {
    margin: 0;
}

.payment-infos li {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.payment-infos li:last-child {
    border-top: 1px solid #bdbdbd;
    margin-top: 1.1rem;
    padding-top: 0.8rem;
}

/* input[type="checkbox"] {
    width: auto;
} */
/* .checkbox {
    position: relative;
    padding-left: 1.5rem !important;
}

.checkbox::before {
    content: "";
    position: absolute;
    width: 16px;
    height: 16px;
    border-radius: 0.2rem;
    border: 2px solid #3380E5;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

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

input[type="checkbox"]:checked+.checkbox::before {
    background-color: #3380E5;
} */

/* ADVANTAGES */
.advantages {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.advantage {
    display: flex;
    align-items: center;
    gap: .5rem;
}

.advantage-icon {
    border-radius: 50%;
    min-width: 64px;
    width: 64px;
    height: 64px;
}

.advantage-icon img {
    width: 44px;
    height: 44px;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(97%) sepia(61%) saturate(0%) hue-rotate(142deg) brightness(106%) contrast(104%);
}

.advantage-2 .advantage-icon img {
    width: 34px;
    height: 34px;
}

.advantage h3,
.advantage .advantage-title {
    margin: 0;
    font-size: 1rem;
    font-weight: normal;
}

.fs-lg {
    font-size: 1.6rem;
}

.text-content-2 {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.ml-0 {
    margin-left: 0;
}

.fs-md {
    font-size: 1.5rem !important;
}

/* PRODUCT DETAILS */
.board {
    background: #F9F9F6;
    padding: 1rem;
    border-radius: 1rem;
}

.item-price {
    font-size: 1.75rem;
    color: darkgreen;
    font-weight: 600;
}

.item-price span {
    font-size: .9rem;
    font-weight: 400;
}

.pd-content h1 {
    font-family: 'PP Agrandir', sans-serif;
    font-size: 2.2rem;
    font-weight: 400;
    margin-bottom: 1rem;
}

.pd-list {
    padding: 0;
    margin: 1rem 0;
    display: flex;
    justify-content: space-around;
}

.row-reverse {
    flex-direction: row-reverse;
}

.product-image-slider {
    overflow: hidden;
    position: relative;
}

.pd-image img {
    width: 100%;
    height: 300px;
    object-fit: contain;
}

.pd-navs {
    height: auto !important;
    padding-top: 1.5rem;
    justify-content: center;
}

.detail-box {
    padding: 1.5rem;
    background-color: #F9F9F6;
    border-radius: 1rem;
}

.pd-faqs .fi-2 {
    background-color: transparent;
    padding: 1rem 1rem;
}

.pd-faqs .fi-2:last-child {
    border-bottom: 0;
}

.fs-sm {
    font-size: 1.2rem;
}

/*  */
.instructions {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: .5rem;
}

.instr-item {
    gap: .5rem;
    justify-content: start;
    cursor: pointer;
    padding: .5rem;
    border-radius: 1rem;
    transition: .2s ease;
}

.instr-item:hover {
    background-color: #c2dcff;
}

.instr-item .advantage-icon {
    background-color: transparent;
}

.instr-item .advantage-icon img {
    filter: brightness(0) saturate(100%) invert(33%) sepia(91%) saturate(622%) hue-rotate(179deg) brightness(116%) contrast(91%);
}

.advantages-2 {
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
}

/*  */
.sticky-price {
    padding: 1rem;
    border-bottom: 1px solid #F9F9F6;
    position: fixed;
    top: 89px;
    width: 100%;
    background: white;
    z-index: 9;
    opacity: 0;
    visibility: hidden;
}

.sticky-price .item-price {
    font-weight: 400;
}

/* CONTRACTS */
.contracts {
    padding: 0.3rem;
    border-radius: .5rem;
    background-color: #F9F9F6;
}

.contracts a {
    padding: 0.7rem 1rem;
    display: block;
    background: white;
    margin-bottom: 0.3rem;
    font-weight: 500;
    border-radius: 0.3rem;
}

.contracts a:hover {
    background-color: #aed1ff;
    color: #0a3972;
}

.contracts a.active {
    background-color: #3380E5;
    color: white;
}

.contract-content h1 {
    font-family: 'PP Agrandir', sans-serif;
    font-size: 2.2rem;
    font-weight: 300;
    margin-bottom: 1rem;
}

/* BLOG DETAILS */
.bd-image {
    width: 100%;
    height: 50vh;
    border-radius: 1rem;
    overflow: hidden;
}

.bd-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.bd-links {
    display: flex;
    gap: 1.2rem;
}

.bd-links a {
    color: #B7B7B7;
    font-size: 1.4rem;
    transition: .3s ease;
}

.bd-links a:hover {
    color: #3380E5;
}

.blog-detail .bd-info i {
    color: #3380E5;
}

.bd-content {
    margin-bottom: 1rem;
}

/* ABOUT */
.about-item {
    /* margin-bottom: 2rem; */
    padding: 2rem 0;
    border-bottom: 1px solid #F2F2ED;
}

.about-item:last-child {
    border: none;
    padding-bottom: 0;
}

.about-item:first-child {
    padding-top: 0;
}

.about-item p:last-child {
    margin: 0;
}

/* HOW WORKS */
.how-works {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.works-icon {
    position: relative;
    margin-bottom: 1rem;
}

.works-icon span {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.6rem;
    background: #E6E6E1;
    font-size: 1rem 16px;
}

.works-icon::before {
    content: "";
    position: absolute;
    width: 86%;
    right: 0;
    top: 50%;
    transform: translate(0, -50%);
    height: 2px;
    background: linear-gradient(90deg, #E6E6E1, transparent);
}

.works-item h3 {
    font-size: 1.15rem;
}

.works-item p {
    color: #545454;
    font-size: .9rem;
}

.works-image {
    width: 100%;
    height: 190px;
    border-radius: 1rem;
    overflow: hidden;
}

.works-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/*  */
.acc-title {
    font-size: 1.45rem;
    margin-bottom: 1rem;
}

.acc-links {
    display: flex;
    flex-direction: column;
    margin-bottom: 1rem;
    gap: .5rem;
    font-size: 1.35rem;
}

.acc-links a.active {
    font-weight: 600;
}

.acc-links a:hover:not(.active) {
    color: #3380E5;
}

.acc-form-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.account-form>div>div {
    width: 70%;
    display: flex;
    justify-content: space-between;


}



.text-right {
    text-align: right;
}

.acc-box-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

/* ORDERS */
.c-table {}

.c-tr {
    width: 20%;
}

.c-thead,
.c-product-summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: center;
}

.c-product-summary {
    cursor: pointer;
    transition: .2s ease;
    position: relative;
    padding: .5rem 0;
    padding-right: 1rem;
}

.c-product-summary::before {
    content: "\f054";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    right: 1.1rem;
    position: absolute;
    transition: .2s ease;
}

.c-product-summary:hover {
    background-color: #fdfdfd;
}

.c-product-summary:hover::before {
    rotate: 90deg;
}

.c-product:not(:last-child) {
    border-bottom: 1px solid #bdbdbd;
    margin-bottom: .2rem;
}

.c-thead {
    background-color: white;
    border-radius: 1rem;
    text-align: center;
    margin-bottom: 1rem;
}

.c-thead .c-tr {
    padding: 0.6rem 0.8rem;
    text-align: center;
}

.c-tr img {
    height: 70px;
    object-fit: contain;
}


.c-products {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: .5rem;
    border-radius: 1rem;
    margin-bottom: 1rem;
}

.c-product-content {
    background: white;
    border-radius: 1rem;
    padding: 1rem;
    margin-top: .25rem;
    display: none;
}

.c-product-item {
    display: flex;
    align-items: center;
    gap: .5rem;
    border: 1px solid #bdbdbd;
    border-radius: 1rem;
}

.c-product-item img {
    width: 90px;
    height: 90px;
    object-fit: contain;
}

.c-title {
    font-weight: 600;
    margin-bottom: .5rem;
}

.c-product-content ul {
    padding: 0;

}

.c-product-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: .5rem;
}

.bt-1 {
    border-top: 1px solid #d5d5d5;
    padding-top: 1rem;
}

/*  */
.trust-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 1rem;
}

/*  */
.payment-box {
    padding: 1rem;
    position: sticky;
    top: 120px;
}

.payment-box .c-product-item {
    border: none;
    justify-content: space-between;
    text-align: right;
    border-bottom: 1px solid #bdbdbd;
    border-radius: 0;
}

.coupon-form {
    margin: 1rem 0;
    position: relative;
}

.coupon-form input {
    width: 100%;
    padding: 0.7rem 0.5rem;
    border: none;
    border-radius: 0.5rem;
    outline: none !important;
    padding-right: 6.2rem;
    border: 1px solid white;
}

.coupon-form button {
    border: none;
    background-color: #3380E5;
    color: white;
    border-radius: .3rem;
    position: absolute;
    right: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 3px;
    bottom: 3px;
    padding: 0 1rem;
}

.payment-infos {
    margin-bottom: 1rem;
    padding: 0;
}

/*  */
.birthdate-selects {
    display: flex;
    gap: 1rem;
    position: relative;
}

.birthdate-selects .error-message {
    position: absolute;
    bottom: -21px;
}

.bg-lightblue {
    background-color: #F5FBFE;
}

.bg-lightblue .fi-2 {
    background-color: transparent;
    padding: 1rem 1rem;
}

.jumb-2 img {
    max-height: 500px;
    filter: brightness(0) saturate(100%) invert(17%) sepia(67%) saturate(1520%) hue-rotate(188deg) brightness(97%) contrast(97%);
}

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

/* COOKIES */
.cookies {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #1a1a1ade;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1000;
    color: white;
}

.cookies p {
    margin: 0;
    font-size: 1.2rem;
}

.cookies a {
    color: white;
    text-decoration: underline;
    font-weight: 500;
}

.cookies button {
    background-color: #3380E5;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    cursor: pointer;
}

.cookies button:hover {
    background-color: #64a4f7;
}

/* CREDIT CARD */
.ccicon {
    height: 38px;
    position: absolute;
    right: 6px;
    top: calc(50% - 17px);
    width: 60px;
}

/* CREDIT CARD IMAGE STYLING */
.preload * {
    -webkit-transition: none !important;
    -moz-transition: none !important;
    -ms-transition: none !important;
    -o-transition: none !important;
}

#ccsingle {
    position: absolute;
    right: 15px;
    top: 20px;
}

#ccsingle svg {
    width: 100px;
    max-height: 60px;
}

.creditcard svg#cardfront,
.creditcard svg#cardback {
    width: 100%;
    -webkit-box-shadow: 1px 5px 6px 0px black;
    box-shadow: 1px 5px 6px 0px black;
    border-radius: 22px;
}

#generatecard {
    cursor: pointer;
    float: right;
    font-size: 12px;
    color: #fff;
    padding: 2px 4px;
    background-color: #909090;
    border-radius: 4px;
    cursor: pointer;
    float: right;
}

/* CHANGEABLE CARD ELEMENTS */
.creditcard .lightcolor,
.creditcard .darkcolor {
    -webkit-transition: fill .5s;
    transition: fill .5s;
}

.creditcard .lightblue {
    fill: #03A9F4;
}

.creditcard .lightbluedark {
    fill: #0288D1;
}

.creditcard .red {
    fill: #ef5350;
}

.creditcard .reddark {
    fill: #d32f2f;
}

.creditcard .purple {
    fill: #ab47bc;
}

.creditcard .purpledark {
    fill: #7b1fa2;
}

.creditcard .cyan {
    fill: #26c6da;
}

.creditcard .cyandark {
    fill: #0097a7;
}

.creditcard .green {
    fill: #66bb6a;
}

.creditcard .greendark {
    fill: #388e3c;
}

.creditcard .lime {
    fill: #d4e157;
}

.creditcard .limedark {
    fill: #afb42b;
}

.creditcard .yellow {
    fill: #ffeb3b;
}

.creditcard .yellowdark {
    fill: #f9a825;
}

.creditcard .orange {
    fill: #ff9800;
}

.creditcard .orangedark {
    fill: #ef6c00;
}

.creditcard .grey {
    fill: #bdbdbd;
}

.creditcard .greydark {
    fill: #616161;
}

/* FRONT OF CARD */
#svgname {
    text-transform: uppercase;
}

#cardfront .st2 {
    fill: #FFFFFF;
}

#cardfront .st3 {
    font-family: 'Source Code Pro', monospace;
    font-weight: 600;
}

#cardfront .st4 {
    font-size: 54.7817px;
}

#cardfront .st5 {
    font-family: 'Source Code Pro', monospace;
    font-weight: 400;
}

#cardfront .st6 {
    font-size: 33.1112px;
}

#cardfront .st7 {
    opacity: 0.6;
    fill: #FFFFFF;
}

#cardfront .st8 {
    font-size: 24px;
}

#cardfront .st9 {
    font-size: 36.5498px;
}

#cardfront .st10 {
    font-family: 'Source Code Pro', monospace;
    font-weight: 300;
}

#cardfront .st11 {
    font-size: 16.1716px;
}

#cardfront .st12 {
    fill: #4C4C4C;
}

/* BACK OF CARD */
#cardback .st0 {
    fill: none;
    stroke: #0F0F0F;
    stroke-miterlimit: 10;
}

#cardback .st2 {
    fill: #111111;
}

#cardback .st3 {
    fill: #F2F2F2;
}

#cardback .st4 {
    fill: #D8D2DB;
}

#cardback .st5 {
    fill: #C4C4C4;
}

#cardback .st6 {
    font-family: 'Source Code Pro', monospace;
    font-weight: 400;
}

#cardback .st7 {
    font-size: 27px;
}

#cardback .st8 {
    opacity: 0.6;
}

#cardback .st9 {
    fill: #FFFFFF;
}

#cardback .st10 {
    font-size: 24px;
}

#cardback .st11 {
    fill: #EAEAEA;
}

#cardback .st12 {
    font-family: 'Rock Salt', cursive;
}

#cardback .st13 {
    font-size: 37.769px;
}

/* FLIP ANIMATION */


.creditcard {
    width: 100%;
    max-width: 400px;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    transition: -webkit-transform 0.6s;
    -webkit-transition: -webkit-transform 0.6s;
    transition: transform 0.6s;
    transition: transform 0.6s, -webkit-transform 0.6s;
    cursor: pointer;
}

.creditcard .front,
.creditcard .back {
    position: absolute;
    width: 100%;
    max-width: 400px;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-font-smoothing: antialiased;
    color: #47525d;
}

.creditcard .back {
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg);
}

.creditcard.flipped {
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg);
}

/*  */
.p-options {
    display: flex;
    justify-content: space-between;
    text-align: center;
    margin-bottom: 2rem;
    background: white;
    border-radius: 0.5rem;
    border: 1px solid #d7d7d7 !important;
    overflow: hidden;
}

.p-option {
    width: 100%;
    padding: .5rem;
    cursor: pointer;
}

.p-option.active {
    background: #3380E5;
    color: white;
}

.p-content {
    display: none;
}

.p-content.active {
    display: inline-block;
}

.card-margin {
    margin-top: 290px;
}

.footer-contracts{
    position: absolute;
    bottom: 0rem;
    right: 170px;
    display: flex
;
    align-items: center;
    gap: .5rem;
}

.footer-contracts img:nth-child(1){
	width: 350px;
}
.footer-contracts img:nth-child(2){
	width: 100px;
}

@media screen and (max-width:1350px) {
.header-links a{
    padding: 0.7rem 0.65rem;
}
}

@media screen and (max-width:1270px) {
.header-links a{
    padding: 0.7rem 0.29rem;
}
}


@media screen and (max-width:1400px) {
.product h2, .product h3{
font-size: 1.3rem;
}
    .product-image {
        height: 210px;
    }
}

@media screen and (min-width:1200px) {
    .menu-modal.link-modal {
        display: none;
    }

    .menu-modal.basket-modal .header-burger {
        display: flex;
        width: 40px;
        height: 40px;
    }

}

@media screen and (max-width:1200px) {

    .products>div {
        grid-column: span 2;
    }

    .tab-products {
        width: 64%;
    }

    .banner h1 {
        font-size: 3rem;
    }

    .rolling-list-cont {
        height: 58px;
    }

    .header-burger {
        display: flex;
    }

    /*  */
    .header-container {
        padding: 1rem 1rem;
    }

    .header-links {
        display: none;
    }


    a.chakra-btn {
        display: none;
    }


    .chakra-btn {
        width: 40px;
        height: 40px;
        padding: 0;
    }


    .menu-links {
        display: flex;
        flex-direction: column;
        padding: 0rem 0 2rem;
    }

    .menu-links a {
        padding: .85rem 0;
        border-bottom: 1px solid #F2F2ED;
        font-size: 1.4rem;
        position: relative;
    }

    .menu-links a i {
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        font-size: 1rem;
        color: #949494;
    }

    .menu-links a:hover,
    .menu-links a:hover i {
        color: #3380E5;
    }

    /*  */

    .search-modal {
        height: calc(100vh - 72px);
    }

    .search-result-content {
        grid-template-columns: repeat(3, 1fr);
    }

    .search-modal-content {
        padding: 1rem 1rem;
    }

    /* FOOTER */
    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }

    .footer-left {
        width: 100%;
    }

    .footer-right {
        width: 100%;
    }

    .footer-desc {
        max-width: 100%;
        padding: 2rem 0;
    }

    .footer-left>div {
        width: 100%;
    }

    /* KIT CATEGORIES */
    .kit-cat-title {
        font-size: 1rem;
    }

    .kit-cat-image {
        width: 80px;
        height: 80px;
    }

    .kit-category .kit-cat-icon {
        width: 30px;
        height: 30px;
        font-size: 1rem;
    }

    /*  */
    .transp {
        width: 190px;
    }

    .info-boxes {
        flex-wrap: wrap;
        text-align: center;
        gap: .5rem;
    }

    .info-box {
        width: calc(100% / 2 - .5rem);
    }

    /*  */
    .sticky-price {
        top: 73px;
    }

    .blogs {
        grid-template-columns: repeat(2, 1fr);
    }

    .products {
        grid-template-columns: repeat(3, 1fr);
    }

}

@media screen and (max-width:992px) {
.jumb {

    padding: 4rem 0;
}
.jumb-animate{
bottom:0;
top:0;
}


    .sp3 {
        padding-top: 0;
    }

.footer-contracts {
    position: static;
flex-wrap:wrap;
}

.footer-copyright {
 
    flex-direction: column;
    gap: 1rem;
}

    .search-input input {
        padding: 0.8rem 1.1rem;
        padding-right: 3rem;
    }

    .search-input i {
        right: 0.9rem;
    }

    /* KIT CATEGORIES */
    .kit-categories {
        grid-template-columns: repeat(2, 1fr);
        margin-bottom: .5rem;
    }

    .banner-section {
        padding: 3rem 0 0.5rem;
    }

    /* CARD CAROUSEL */
    .card-carousel-slider .swiper-wrapper {
        transform: none !important;
        display: flex;
        flex-wrap: wrap;
    }

    .card-carousel-slider .swiper-slide {
        width: 100% !important;
    }

    .transp {
        display: none;
    }

    .cc-section {
        display: none;
    }

    .mcc-cards {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        margin-top: 1rem;
    }

    .cc-image {
        width: 224px;
    }

    .cc-box {
        height: 300px;
    }

    .cc-image img {
        max-height: 170px;
    }

    .cc-box-2 .cc-image img {
        max-height: 100%;
        height: 100%;
    }


    .cc-content h3 {
        font-size: 1rem;
        margin-bottom: .8rem;
    }

    /* FEATURES */
    .feature-row {
        gap: 1rem;
    }

    /* JUMB */
    .desktop-display {
        display: none;
    }

    .mobile-display {
        display: block;
    }

    .jumb {
        text-align: center;
    }

    .custom-btn-mobile-full-2 {
        width: 100%;
        text-align: center;
    }

    .jumb-image img {
        height: auto;
        max-height: 320px;
    }

    /* TAB CONTENTS */
    .tab-content {
        height: auto;
        padding: 1.75rem;
        padding-top: 0;
        padding-left: 0;
        padding-right: 0;
    }

    .tab-img {
        position: static;
        width: 100%;
        height: 200px;
        object-fit: cover;
        clip-path: polygon(0 0, 100% 0, 100% 88%, 76% 100%, 0 90%);
    }

    .tab-text {
        max-width: 100%;
        padding: 1rem;
        gap: .5rem;
    }

    .tab-products {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .tab-content .custom-btn {
        margin-left: 1rem;
        margin-right: 1rem;
        width: auto;
    }

    .tab-products {
        position: static;
        width: 100%;
        flex-direction: column;
    }

    .tab-headers {
        flex-direction: column;
        border-radius: 1.5rem;
        gap: 0.4rem;
    }

    .tab-title {
        padding: 0.4rem 1rem;
    }

    /* OFFER CARDS */
    .offer-cards {
        flex-direction: column;
    }

    .offer-card {
        padding: 0;
        height: auto;
    }

    .offer-content {
        width: 100%;
        padding: 1rem;
        align-items: center;
        gap: .5rem;
    }

    .offer-card img {
        position: static;
        width: 100%;
        height: 300px;
        clip-path: polygon(100% 0, 100% 50%, 100% 100%, 72% 92%, 0 100%, 0 0);

    }

    .offer-pill {
        position: absolute;
        top: 2rem;
        left: 2rem;
    }

    /* BLOGS */
    .blog-container {
        flex-direction: column;
        align-items: normal;
    }

.blog-card.popular-blog-small p {
-webkit-line-clamp: 3;
}



    .left-blog-div {
        width: 100%;
        text-align: center;

    }

    .right-blog-div {
        width: 100%;
    }

    .blog-buttons {

        bottom: 4.3rem;
        width: 100%;
    }

    .blog-slider {
        width: 100%;
    }

    .blog-button.swiper-button-next {
        left: auto;
        right: 2rem;
    }

    .faq-container {
        max-width: 720px;
    }

    .text-container {
        flex-direction: column;
        gap: 1rem;
    }

    .text-container-rev {
        flex-direction: column-reverse;
    }

    .text-image,
    .text-content {
        width: 100%;
    }

    .products {
        grid-template-columns: repeat(2, 1fr);
    }

    /*  */
    .page-banner h1 {
        font-size: 2.5rem;
    }

    .faq-example img {
        width: 54px;
    }

    .faq-example h3 {
        font-size: 1.05rem;
    }

    /*  */
    .popular-blogs {
        flex-direction: column;
        gap: 1rem;
    }

    .popular-blogs>div {
        width: 100%;
    }

    .popular-blog-smalls {
        gap: 1rem;
    }

    .popular-blog-small>a {
        width: 250px;
    }


    .blogs {
        grid-template-columns: repeat(2, 1fr);
    }

    /*  */
    .clipped-image {
        height: 60vh;
    }

    .pd.row-reverse,
    .contract-row {
        flex-direction: column-reverse;
        gap: 1rem;
    }

    .advantages-2 {
        grid-template-columns: repeat(2, 1fr);
    }

    /* HOW WORKS */
    .how-works {
        grid-template-columns: repeat(2, 1fr);
    }

    /*  */
    .jumb-2 .row {
        flex-direction: column-reverse;
        gap: 2rem;
    }

    .jumb-2 .title-group {
        text-align: center;
    }

    .jumb-2 img {
        max-height: 300px;
    }

}

@media screen and (max-width:768px) {
.product h2, .product h3{
font-size:1.2rem;
}
    .search-result-content {
        grid-template-columns: repeat(2, 1fr);
    }

    /* FOOTER */
    .footer-left {
        flex-wrap: wrap;
    }

    .footer-left>div {
        width: 48%;
    }

    /* PRODUCTS */
    .custom-btn-mobile-full {
        width: 100%;
    }

    .product-navs .swiper-navigation {
        display: none;
    }

    .product-navs {
        height: 60px;
        justify-content: center;
    }

    /*  */
    /* .blog-button.swiper-button-next {
        left: 88.3%;
    } */

    .faq-container {
        max-width: 540px;
    }

    /*  */
    .product-categories-list {
        gap: 0.3rem;
    }

    .faq-categories {
        gap: .5rem;
    }

    .faq-examples {
        grid-template-columns: repeat(2, 1fr);
        gap: .5rem;
    }

    /*  */
    .text-image img {
        height: 290px;
    }

    .fs-lg {
        font-size: 1.3rem;
    }

    .fs-md {
        font-size: 1.2rem !important;
    }

    .advantages {
        grid-template-columns: repeat(1, 1fr);
    }

    /*  */
    .sticky-price {
        padding: .5rem 1rem;
    }

    .sticky-price>div:first-child {
        display: none;
    }

    .sticky-price .df-between {
        width: 100%;
    }

    /*  */
    .steps {
        grid-template-columns: repeat(1, 1fr);
        gap: .5rem;
    }

    /* HOW WORKS */
    .works-item h3 {
        height: 44px;
    }

    /*  */
    .form-content.account-box {
        overflow-x: auto;
        scrollbar-width: thin;
        scrollbar-color: #ccc transparent;
    }

    .c-table {
        min-width: 700px;
    }

    .step {
        margin-bottom: 0.7rem;
    }

    .offer-card.offer-card-2 img {
        max-width: 190px;
    }

}

@media screen and (max-width:576px) {
    .modal-title {
        font-size: 1.25rem;
    }

    .custom-big {
        padding: 0.9rem 1.25rem;
    }

    footer {
        padding: 1rem;
    }

    /* KIT CATEGORIES */
    .kit-category {
        padding: .8rem;
        padding-right: 2.6rem;
    }

    .kit-cat-title {
        font-size: 1rem;
        line-height: 1.1;
        font-weight: 500;
    }

    .kit-cat-image {
        width: 45px;
        height: 45px;
    }

    .kit-category .kit-cat-icon {
        width: 20px;
        height: 20px;
        font-size: 0.7rem;
    }

    /* CAROUSEL CARDS */
    .title-group {
        margin-bottom: 2rem;
    }

    .mcc-cards {
        gap: .5rem;
    }

    .cc-box {
        height: 255px;
    }

    .cc-image img {
        max-height: 130px;
    }

    .cc-box-2 .cc-image {
        height: 60%;
    }

    /* FEATURES */
    .feature-item {
        padding: .5rem;
    }

    .feature-content img {
        max-height: 330px;
    }

    .feature-title>div {
        font-size: 1.25rem;
    }

    .feature-icon img {
        width: 32px;
        height: 32px;
    }

    .feature-item h3 {
        font-size: .9rem
    }

    .feature-item:hover h3 {
        font-size: 1rem;
    }

    .feature-item:hover .feature-title>div {
        font-size: 1.2rem;
    }

    /*  */

    .info-box {
        width: 100%;
    }

    .faq-question h3,
    .faq-question h2 {
        font-size: 1rem;
    }

    .faq-question i {
        font-size: 1rem;
    }

    /*  */
    .banner h1 {
        font-size: 2rem;
    }

    .rolling-list-cont {
        height: 40px;
    }

    .basket-modal .menu-modal-content {
        padding: 1rem;
    }

    /*  */
    .products {
        grid-template-columns: repeat(1, 1fr);
    }

    .product-2 {
        display: flex;
    }

    .product-2 .product-image {
        height: 190px;
        width: 150px;
        min-width: 150px;
    }

    .product-2 .product-text {
        text-align: start;
    }

    .product-2 .product-content {
        padding: 0rem .5rem 0 1rem;
height:190px;
    }

    /*  */
    .page-banner h1 {
        font-size: 2rem;
        margin-bottom: .5rem;
    }

    .faq-examples {
        gap: 0;
    }

    .faq-example img {
        width: 44px;
        margin-bottom: .5rem;
    }

    /*  */
    .blogs {
        grid-template-columns: repeat(1, 1fr);
    }

    .popular-blog-small {
        display: flex;
        flex-direction: column;
    }

    .blog-card.popular-blog-small>a {
        width: 100%;
        height: 165px;
    }

    .blog-card .blog-image {
        height: 165px;
    }

    .blog-body {
        padding: 0.75rem 12px;
    }

    /* .popular-blog-smalls .blog-card img {
        height: 150px;
    } */

    /*  */
    .text-image img {
        height: 240px;
    }

    .form-content {
        padding: 1rem;
        border-radius: 1rem;
    }

    /*  */
    .clipped-image {
        height: 40vh;
    }

    .custom-form input:not([type="checkbox"]),
    .custom-form textarea {
        width: 100%;
        padding: 0.55rem 0.8rem;
    }

    .fs-lg {
        font-size: 1.1rem;
    }

    .fs-md {
        font-size: 1.1rem !important;
    }

    .contact-icon {
        min-width: 46px;
        width: 46px;
        height: 46px;
        font-size: 1.1rem;
    }

    .advantage-icon img {
        width: 34px;
        height: 34px;
    }

    .pd-prev {
        left: 0.3rem;
    }

    .pd-next {
        right: 0.3rem;
    }

    .detail-box {
        padding: 1rem;
    }

    .pd-image img {
        height: 260px;
    }

    .pd-content h1 {
        font-size: 1.6rem;
    }

    /* ABOUT */
    .about-item {
        padding: 1rem 0;
    }

    /* HOW WORKS */
    .how-works {
        grid-template-columns: repeat(1, 1fr);
    }

    .works-item h3 {
        height: auto;
    }

    .works-image {
        height: 180px;
    }

    /* ACCOUNT */
    .acc-form-row {
        flex-direction: column;
        align-items: start;
    }

    .account-form>div>div {
        width: 100%;
        gap: 1rem;
    }

    .account-form {
        gap: .75rem;
    }

    /*  */

    .product-category-subitem {
        display: none;
        flex-wrap: nowrap;
        overflow-x: auto;
        gap: 1rem;
        padding-bottom: 1rem;
        scrollbar-width: thin;
        scrollbar-color: #ccc transparent;

    }


    .product-category-subitem div {
        flex: 0 0 auto;
        min-width: max-content;
        white-space: nowrap;
    }

    .product-category-subitem div:first-child {
        margin-left: 0;
    }

    .product-categories-sublist.show-arrow::before {
        content: "\f054";
    }


    .trust-img {
        height: 150px;
    }

    .birthdate-selects {
        gap: .5rem;
    }

    .cc-box:not(.cc-box-2) .cc-image {
        top: 15px;
    }

    .products>div {
        grid-column: span 1;
    }

    .p-options {
        flex-direction: column;
        margin-bottom: 1rem;
    }
}

@media screen and (max-width:480px) {
    .search-result-content {
        grid-template-columns: repeat(1, 1fr);
    }

    .cc-box {
        padding: .5rem .3rem;
    }

    .cc-content h3 {
        font-size: .9rem;
        margin-bottom: 0.6rem;
    }

    .product-categories-list div {
        padding: 0.5rem 0.6rem;
        font-size: 0.9rem;
    }

    .page-banner br {
        display: none;
    }


    .product .custom-btn {
        font-size: 0.9rem;
        margin-bottom: 0.6rem;
        padding: .4rem;
    }


    .cc-box .custom-btn {
        padding: 0.3rem 0.7rem;
        font-size: .9rem;
    }

    .cc-box-2 .cc-image {
        height: 67%;
    }

    .custom-big {
        padding: 0.9rem 1.25rem;
        font-size: 1rem;
    }

    .product-image {
        height: 210px;
    }

    .product h2,
    .product h3 {
        font-size: 1.25rem;
    }

    .blog-card h3 a {
        height: 44.16px;
        font-size: 1.15rem;
    }

    .section-p {
        padding: 2rem 0;
    }

    .section-m {
        margin: 2rem 0;
    }

    .sp2 {
        padding-top: 0;
    }

    .jumb {
        padding: 2.5rem 0;
    }

    .footer-copyright {
        align-items: start;
    }

    .copyright-text {
        width: 140px;
    }

    .half-input {
        width: 100% !important;
    }

    .kit-cat-title {
        font-size: .95rem;
    }



}

@media screen and (max-width:430px) {
    .card-margin {
        margin-top: 250px;
    }
}