:root{
    --default: #454545;
    --primary: #28A7FF;
    --blue: #0D86FF;
    --gray: #B5B5B5;
    --white: #FFF;
    --transition: .3s all ease;
}
*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
html{
    scroll-behavior: smooth;
    zoom: .7;
}
body{
    font-family: Roboto;
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    color: var(--default);
    background-color: var(--white);
}
body.loading .wrapper{
    opacity: 0;
    pointer-events: none;
}
.page-loader{
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    z-index: 9999;
}
body:not(.loading) .page-loader{
    display: none;
}
.btn-loading{
    position: relative;
    color: transparent !important;
    pointer-events: none;
}
.btn-loading::after{
    content: 'Отправляем...';
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: inherit;
}
.wrapper{
    overflow: hidden;
}
.container {
    max-width: 100%;
    width: 100%;
    padding-left: 12px;
    padding-right: 12px;
    margin: 0 auto;
}

button{
    font-family: Roboto;
}

@media (min-width: 576px) {
    .container {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .container {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}
@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
}
@media (min-width: 1600px) {
    .container {
        max-width: 1509px;
    }
}
@media (min-width: 1800px) {
    .container {
        max-width: 1740px;
    }
}
a{
    text-decoration: none;
}
ol, ul{
    list-style: none;
}
input{
    outline: none;
}
.header.absolute{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background-color: transparent;
}
.header-row{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 37px 0;
}
.header-right{
    display: flex;
    align-items: center;
    gap: 36px;
}
.header .brand-logo{
    width: 263px;
}
.brand-logo{
    display: flex;
}
.brand-logo img{
    max-width: 100%;
}
.header-links{
    display: flex;
    align-items: center;
    gap: 63px;
}
.header-link{
    font-family: Montserrat;
    font-size: 20px;
    font-weight: 500;
    line-height: 123.088%;
    color: #044DA1;
}
.basket{
    position: relative;
}
.badge{
    position: absolute;
    top: -1px;
    right: -6px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: var(--white);
    width: 17px;
    height: 17px;
    font-size: 10px;
    font-weight: 500;
    line-height: 123.088%; 
    color: #044DA1;
}
.call-btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 17px 42px;
    border-radius: 10px;
    background-color: var(--blue);
    font-size: 20px;
    font-weight: 600;
    line-height: 123.088%;
    color: var(--white);
}
.hamburger{
    display: none;
}
.menu-top{
    display: none;
}

.modal-back{
    position: fixed;
    inset: 0;
    visibility: hidden;
    opacity: 0;
    background: rgba(28, 46, 58, 0.70);
    backdrop-filter: blur(11px);
    transition: var(--transition);
    z-index: 3;
}
.modal-back.active{
    opacity: 1;
    visibility: visible;
}
@media(max-width: 1200px){
    .header .brand-logo {
        width: 200px;
    }
    .header-links{
        gap: 20px;
    }
    .call-btn{
        padding: 17px 30px;
    }
}
@media(max-width: 992px){
    .header-right{
        position: fixed;
        z-index: 4;
        right: -360px;
        top: 0;
        width: 360px;
        background-color: var(--white);
        flex-direction: column;
        align-items: flex-start;
        padding: 30px;
        height: 100svh;
        border-radius: 20px 0 0 20px;
        box-shadow: 0px 0px 10px rgba(0, 0, 0, .5);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
    }
    .header-right.active{
        right: 0px;
        opacity: 1;
        visibility: visible;
    }
    .header-links{
        flex-direction: column;
        align-items: flex-start;
    }
    .hamburger{
        display: flex;
        cursor: pointer;
    }
    .header-row{
        padding: 30px 0;
    }
    .hero {
        padding: 117px 0 0 0;
    }
    .menu-top{
        display: flex;
        align-items: center;
        gap: 10px;
        justify-content: space-between;
        width: 100%;
    }
    .menu-close{
        display: flex;
        cursor: pointer;
    }
    .call-btn{
        width: 100%;
    }
}


/* hero */
.hero{
    padding: 150px 0 0 0;
    border-radius: 10px;
    background: linear-gradient(280deg, #B0D0EE 20.54%, #FFF 123.88%);
}
.hero-row{
    display: flex;
    align-items: flex-end;
}
.hero-left{
    padding: 0 0 65px 0;
}
.hero-title{
    font-size: 82px;
    font-weight: 600;
    line-height: 92%;
    color: var(--default);
    margin: 0 0 34px 0;
    max-width: 941px;
}
.hero-title span{
    color: #0097FF;
}
.hero-desc{
    font-family: Montserrat;
    font-size: 24px;
    font-weight: 400;
    line-height: 123.088%;
    max-width: 579px;
    margin: 0 0 72px 0;
}
.hero-desc span{
    font-weight: 500;
}
.hero-btn{
    font-size: 24px;
    font-weight: 600;
    line-height: 123.088%;
    color: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 21px 54px;
    border-radius: 10px;
    background: linear-gradient(101deg, #0D86FF -8.27%, #28A7FF 117.97%);
    border: none;
}
.hero-right{
    width: 36%;
    position: relative;
    display: flex;
    z-index: 1;
}
.doctor-img{
    width: 100%;
}
.certificate-img{
    width: 72%;
    position: absolute;
    right: -42%;
    top: 12%;
    z-index: -1;
    animation: rotate360 10s linear infinite;
    transition: var(--transition);
}
@keyframes rotate360 {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}
.catalog{
    padding: 38px 0 120px 0;
}
.search-form{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1;
    margin: 0 0 50px 0;
}
.search-icon{
    position: absolute;
    z-index: 1;
    top: 30px;
    left: 30px;
}
.search-input{
    width: 100%;
    font-family: Montserrat;
    font-size: 20px;
    font-weight: 400;
    line-height: 123.088%;
    color: var(--default);
    border-radius: 10px 10px 0 0;
    background: #EDEFF7;
    padding: 30px 17px 30px 76px;
    border: none;
}
.search-input::placeholder{
    color: #BCBFCC;
}
.search-btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 36px;
    border-radius: 5px;
    background-color: #4EA1FF;
    font-size: 20px;
    font-weight: 500;
    line-height: 123.088%;
    color: var(--white);
    border: none;
    position: absolute;
    right: 17px;
    top: 15px;
    z-index: 1;
}
@media(max-width: 1400px){
    .hero-title {
        font-size: 68px;
    }
}
@media(max-width: 1200px){
    .hero-title {
        font-size: 62px;
    }
}
@media(max-width: 992px){
    .hero{
        padding: 117px 0 0 0;
    }
    .hero-left {
        padding: 0 0 50px 0;
    }
    .hero-right{
        display: none;
    }
    .hero-title {
        font-size: 50px;
    }
    .hero-desc{
        font-size: 20px;
        margin: 0 0 50px 0;
    }
}
@media(max-width: 768px){
    .hero-title {
        font-size: 45px;
    }
}
@media(max-width: 576px){
    .hero-title {
        font-size: 32px;
    }
    .hero-btn{
        width: 100%;
        padding: 21px 10px;
        font-size: 20px;
    }
}



/* catalog */
.catalog-row{
    display: flex;
    align-items: flex-start;
    gap: 96px;
}
.catalog-left{
    flex: 0 0 auto;
    width: 395px;
    display: flex;
    flex-direction: column;
    gap: 70px;
    justify-content: space-between;
}
.products{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 70px;
    width: 100%;
}
.products-grid{
    display: grid;
    grid-template-columns: repeat(3, minmax(380px, 2fr));
    gap: 28px;
    width: 100%;
}

.product-item{
    border-radius: 10px;
    background: #F6F7FB;
    display: flex;
    flex-direction: column;
    gap: 30px;
    justify-content: space-between;
    padding: 55px 30px 30px;
    transition: var(--transition);
    border: 3px solid #F6F7FB;
    position: relative;
}
.product-item:hover{
    border-color: var(--primary);
}
.product-top{
    display: flex;
}
.product-img{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.product-img img{
    max-width: 100%;
}
.info{
    position: absolute;
    top: 30px;
    right: 30px;
    display: flex;
}
.product-title{
    font-size: 30px;
    font-weight: 600;
    line-height: 123.088%;
    color: var(--default);
}
.product-action{
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 10px;
}
.product-price{
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: flex-start;
}
.product-price p{
    font-family: Montserrat;
    font-size: 25px;
    font-weight: 400;
    line-height: 123.088%;
    color: #7C93C4;
}
.price-count{
    font-size: 36px;
    font-weight: 500;
    line-height: 123.088%;
    color: var(--default);
}
.order-btn{
    font-size: 24px;
    font-weight: 600;
    line-height: 123.088%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    border-radius: 10px;
    background: #28A7FF;
    padding: 21px 54px;
}
.order-btn[disabled]{
    background-color: #E7E6E6;
    color: var(--default);
}

.show-more{
    font-size: 21px;
    font-weight: 400;
    line-height: 123.088%;
    color: var(--default);
    border-radius: 48px;
    border: 2px solid #454545;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 16px 61px;
    transition: var(--transition);
}
.show-more:hover{
    background-color: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.catagories,
.filters{
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.filters #filters-container{
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.filters #filters-container .filter-group + .filter-group{
    margin-top: 10px;
}
.filter-top{
    display: flex;
    flex-direction: column;
    gap: 45px;
}
.filter-title{
    font-size: 30px;
    font-weight: 500;
    line-height: 123.088%;
    color: var(--default);
}
.filter-group{
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.filter-subtitle{
    font-size: 24px;
    font-weight: 500;
    line-height: 123.088%;
    color: var(--default);
}
.filter-items{
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.filter-item{
    display: flex;
    align-items: center;
    gap: 25px;
    position: relative;
    cursor: pointer;
}
.filter-item input{
    position: absolute;
    opacity: 0;
    visibility: hidden;
}
.checkmark{
    flex: 0 0 auto;
    display: flex;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.05);
    background-color: #EDEFF7;
    position: relative;
}
.checkmark::after{
    position: absolute;
    content: '';
    width: 12px;
    height: 12px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background-color: var(--blue);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}
.filter-item:has(input:checked) .checkmark::after{
    opacity: 1;
    visibility: visible;
}
.filter-item p{
    font-size: 24px;
    font-weight: 400;
    line-height: 123.088%;
    color: var(--default);
}
.price-filter .filter-subtitle{
    margin: 0 0 12px 0;
}
.price-inputs{
    display: flex;
    gap: 10px;
    margin: 0 0 30px 0;
}
.price-inputs input{
    width: calc(50% - 5px);
    font-size: 18px;
    font-weight: 400;
    line-height: 123.088%;
    color: var(--default);
    padding: 16px;
    border-radius: 4px;
    border: 1px solid rgba(0, 0, 0, 0.10);
    background: #EDEFF7;
}
.price-inputs input::placeholder{
    color: #BCBFCC;
}
.range-input input{
    width: 100%;
}
.filter-btn{
    display: none;
}
.filter-close{
    display: none;
}
.irs--flat .irs-bar,
.irs--flat .irs-from, .irs--flat .irs-to, .irs--flat .irs-single,
.irs--flat .irs-handle>i:first-child,
.irs--flat .irs-handle.state_hover>i:first-child, .irs--flat .irs-handle:hover>i:first-child{
    background-color: var(--blue);
}
.irs--flat .irs-from:before, .irs--flat .irs-to:before, .irs--flat .irs-single:before{
    border-top-color: var(--blue);
}
#product-status{
    font-family: Montserrat;
    font-size: 14px;
    font-weight: 400;
    width: 100%;
}


@media(max-width: 1800px){
    .catalog-row{
        gap: 70px;
    }
    .product-item{
        padding: 30px;
    }
    .product-title {
        font-size: 28px;
    }
    .price-count {
        font-size: 34px;
    }
    .order-btn{
        padding: 16px 34px;
    }
    .products-grid{
        grid-template-columns: repeat(2, minmax(380px, 2fr));
    }
    
}
@media(max-width: 1600px){
    .catalog-left{
        width: 340px;
    }
    .catalog-row {
        gap: 40px;
    }
    .product-item{
        gap: 15px;
    }
    .product-title {
        font-size: 22px;
    }
    .order-btn{
        font-size: 20px;
        padding: 16px 28px;
    }
    .price-count {
        font-size: 30px;
    }

    .filter-item p {
        font-size: 20px;
    }
    .filter-item{
        gap: 10px;
    }
    .filter-items{
        gap: 10px;
    }
    .filter-top{
        gap: 30px;
    }
    .catagories, .filters{
        gap: 20px;
    }
}
@media (max-width: 1400px){
    .catalog-left {
        width: 280px;
        gap: 30px;
    }
    .products{
        gap: 40px;
    }
    .catalog-row {
        gap: 30px;
    }
    .products-grid{
        gap: 25px 15px;
    }
    .product-item {
        padding: 20px 15px;
    }
    .product-title {
        font-size: 20px;
    }
    .price-count {
        font-size: 26px;
    }
    .product-price p{
        font-size: 20px;
    }
    .catalog {
        padding: 38px 0 100px 0;
    }
}
@media (max-width: 1200px){
    .products-grid{
        grid-template-columns: repeat(1, minmax(380px, 2fr));
    }
}
@media (max-width: 992px){
    .catalog-left{
        position: fixed;
        height: 100svh;
        overflow-x: auto;
        top: 0;
        left: 0;
        padding: 20px;
        z-index: 4;
        background: var(--white);
        border-radius: 0 20px 20px 0;
        box-shadow: 0px 0px 10px rgba(0, 0, 0, .5);
        left: -280px;
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
    }
    .catalog-left.active{
        left: 0px;
        opacity: 1;
        visibility: visible;
    }
    .products-grid{
        grid-template-columns: repeat(2, minmax(330px, 2fr));
    }
    .order-btn {
        font-size: 16px;
        padding: 14px 22px;
    }
    .price-count {
        font-size: 22px;
    }
    .product-title {
        font-size: 18px;
    }
    .filter-btn{
        display: inline-flex;
        align-items: center;
        gap: 10px;
        font-size: 24px;
        font-weight: 500;
        line-height: 123.088%;
        color: var(--default);
        margin: 0 0 30px 0;
        cursor: pointer;
    }
    .filters .filter-title{
        display: none;
    }
    .filter-title{
        display: flex;
        align-items: center;
        gap: 10px;
        justify-content: space-between;
        width: 100%;
    }
    .filter-close{
        display: flex;
        cursor: pointer;
    }
    .catalog {
        padding: 38px 0 60px 0;
    }
}
@media (max-width: 768px){
    .catalog {
        padding: 38px 0 50px 0;
    }
    .search-input{
        padding: 13px 17px 13px 40px;
        border-radius: 10px;
    }
    .search-icon{
        top: 16px;
        left: 10px;
        width: 20px;
    }
    .search-btn{
        position: unset;
        width: 100%;
        padding: 13px 36px;
    }
    .search-form{
        flex-direction: column;
        gap: 10px;
    }
    .show-more{
        font-size: 20px;
        padding: 11px;
        width: 100%;
    }
    .products-grid {
        grid-template-columns: repeat(1, minmax(300px, 2fr));
    }
}
@media (max-width: 576px){
    .products-grid {
        /* grid-template-columns: repeat(1, minmax(300px, 2fr)); */
    }
}



/* advantage */
.advantage{
    padding: 0 0 160px 0;
}
.sectop{
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin: 0 0 60px 0;
}
.sectitle{
    font-size: 60px;
    font-weight: 600;
    line-height: 92%; 
    color: var(--default);
    margin: 0 0 60px 0;
}
.sectop .sectitle{
    margin: 0;
}
.sec-link{
    font-size: 27px;
    font-weight: 500;
    line-height: 92%;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 20px;
}
.advantage-grid{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 3fr));
    gap: 30px;
}
.advantage-item{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    gap: 158px;
    padding: 40px;
    border-radius: 10px;
}
.advantage-item:first-child{
    background: #28A7FF;
}
.advantage-item:nth-child(2){
    background: #5170B1;
}
.advantage-item:nth-child(3){
    background: #044DA1;
}
.advantage-bottom{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
}
.advantage-title{
    font-size: 32px;
    font-weight: 600;
    line-height: 120%;
    color: var(--white);
}
.advantage-desc{
    font-family: Montserrat;
    font-size: 24px;
    font-weight: 400;
    line-height: 123.088%;
    color: var(--white);
}
@media(max-width: 1800px){
    .sectop{
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    .advantage{
        padding: 0 0 120px 0;
    }
}
@media(max-width: 1600px){
    .sectitle {
        font-size: 50px;
    }
}
@media(max-width: 1400px){
    .advantage-item{
        gap: 30px;
        padding: 30px;
    }
    .advantage-item img{
        width: 100px;
    }
    .advantage-bottom{
        gap: 20px;
    }
    .advantage-title {
        font-size: 26px;
    }
    .advantage-desc {
        font-size: 22px;
    }
    .sectitle {
        font-size: 40px;
    }
    .advantage{
        padding: 0 0 100px 0;
    }
}
@media(max-width: 1200px){
    .advantage{
        padding: 0 0 80px 0;
    }
}
@media(max-width: 992px){
    .sectitle {
        font-size: 34px;
        margin: 0 0 40px 0;
    }
    .sectop{
        margin: 0 0 40px 0;
    }
    .advantage{
        padding: 0 0 60px 0;
    }
}
@media(max-width: 768px){
    .advantage-grid{
        gap: 20px;
    }
    .sectitle {
        font-size: 30px;
        margin: 0 0 30px 0;
    }
}
@media(max-width: 576px){
    .advantage-item{
        padding: 20px;
    }
    .advantage-item img{
        width: 80px;
    }
    .advantage-title {
        font-size: 22px;
    }
    .advantage-desc {
        font-size: 18px;
    }
    .sec-link {
        font-size: 22px;
    }
    .advantage{
        padding: 0 0 50px 0;
    }
    .advantage-grid{
        grid-template-columns: repeat(auto-fit, minmax(300px, 2fr));
    }
}





/* catgories */
.categories{
    padding: 0 0 160px 0;
}
.categories-row{
    display: flex;
    flex-wrap: wrap;
    gap: 35px;
}
.category-item{
    position: relative;
    z-index: 1;
    display: flex;
    border-radius: 10px;
    overflow: hidden;
}
.category-title{
    font-size: 40px;
    font-weight: 500;
    line-height: 92%;
    color: var(--white);
    position: absolute;
    z-index: 1;
    left: 40px;
    right: 40px;
    top: 40px;
    width: calc(100% - 80px);
}
.category-bg{
    width: 100%;
    object-fit: cover;
    object-position: right;
}
.category-item:nth-child(1){
    width: calc(56.8% - 17.5px);
}
.category-item:nth-child(2){
    width: calc(43.2% - 17.5px);
}
.category-item:nth-child(3){
    width: calc(26.6% - 23.3px);
}
.category-item:nth-child(4) {
    width: calc(35.2% - 23.3px);
}
.category-item:nth-child(5) {
    width: calc(38.3% - 26.3px);
}
.category-item:nth-child(2) .category-title{
    color: var(--default);
}
.category-item:nth-child(4) .category-title{
    color: var(--default);
}

@media (max-width: 1800px){
    .categories{
        padding: 0 0 120px 0;
    }
}
@media (max-width: 1400px){
    .category-title{
        font-size: 32px;
        left: 30px;
        right: 30px;
    }
    .categories{
        padding: 0 0 100px 0;
    }
}
@media (max-width: 1200px){
    .categories{
        padding: 0 0 80px 0;
    }
    .categories-row{
        gap: 20px;
    }
    .category-item:nth-child(1){
        width: calc(56.8% - 10px);
    }
    .category-item:nth-child(2){
        width: calc(43.2% - 10px);
    }
    .category-item:nth-child(3){
        width: calc(26.6% - 13.3px);
    }
    .category-item:nth-child(4) {
        width: calc(35.2% - 13.3px);
    }
    .category-item:nth-child(5) {
        width: calc(38.1% - 13.3px);
    }
    .category-title{
        font-size: 30px;
        top: 20px;
        left: 20px;
        width: calc(100% - 40px);
    }
}
@media (max-width: 992px){
    .categories{
        padding: 0 0 60px 0;
    }
    .category-item:nth-child(1){
        width: 100%;
    }
    .category-item:nth-child(2){
        width: calc(50% - 10px);
    }
    .category-item:nth-child(3){
        width: calc(50% - 13.3px);
    }
    .category-item:nth-child(4) {
        width: calc(50% - 13.3px);
    }
    .category-item:nth-child(5) {
        width: calc(50% - 13.3px);
    }
    .category-title {
        font-size: 24px;
    }
}
@media (max-width: 768px){
    .category-item{
        width: 100% !important;
        height: 200px;
    }
    .category-bg{
        object-position: right top;
    }
}
@media (max-width: 576px){
    .categories{
        padding: 0 0 50px 0;
    }
}




/* review */
.review{
    padding: 0 0 100px 0;
}
.review-row{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 3fr));
    gap: 30px;
    margin: 0 0 60px 0;
}
.review-item{
    display: flex;
    flex-direction: column;
    border-radius: 10px;
    background: #EDEFF7;
    padding: 35px 30px 35px 35px;
}
.review-top{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
    width: 100%;
    margin: 0 0 13px 0;
}
.review-rating p{
    font-size: 20px;
    font-weight: 400;
    line-height: 153%;
    color: #7C869D;
}
.stars{
    display: flex;
    gap: 5px;
}
.user-name{
    font-size: 32px;
    font-weight: 600;
    line-height: 153%;
    color: var(--default);
}
.date{
    font-size: 20px;
    font-weight: 400;
    line-height: 153%;
    color: #7C869D;
    margin: 0 0 25px 0;
}
.review-body{
    font-family: Montserrat;
    font-size: 20px;
    font-weight: 400;
    line-height: 149%;
    color: var(--default);
    max-width: 442px;
}
.d-flex{
    display: flex;
}
.justify-center{
    justify-content: center;
}
@media (max-width: 1400px){
    .review-item{
        padding: 20px;
    }
    .avatar{
        width: 50px;
        height: 50px;
    }
    .stars img{
        width: 30px;
        height: 30px;
    }
    .user-name {
        font-size: 26px;
        line-height: 120%;
    }
    .date{
        margin: 0 0 20px 0;
    }
    .review-body{
        font-size: 18px;
        line-height: 120%;
    }
}
@media (max-width: 1200px){
    .review{
        padding: 0 0 80px 0;
    }
}
@media (max-width: 992px){
    .review{
        padding: 0 0 60px 0;
    }
}
@media (max-width: 768px){
    .review-row{
        gap: 20px;
    }
}
@media (max-width: 576px){
    .review{
        padding: 0 0 50px 0;
    }
    .review-row{
        grid-template-columns: repeat(auto-fit, minmax(300px, 3fr));
    }
}




/* license */
.license{
    padding: 0 0 100px 0;
}
.license-grid{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 3fr));
    gap: 30px;
}
.license-item{
    display: flex;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    z-index: 1;
}
.license-item::before{
    position: absolute;
    content: '';
    inset: 0;
    z-index: 1;
    border-radius: 10px;
    background: linear-gradient(0deg, rgba(237, 239, 247, 0.50) 0%, rgba(237, 239, 247, 0.50) 100%);
    transition: var(--transition);
    opacity: 1;
}
.license-item:hover::before{
    opacity: 0;
}
.license-img{
    width: 100%;
    object-fit: cover;
}
.zoom-icon{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}
@media (max-width: 1200px){
    .license{
        padding: 0 0 80px 0;
    }
}
@media (max-width: 992px){
    .license{
        padding: 0 0 60px 0;
    }
}
@media (max-width: 768px){
    .zoom-icon{
        width: 50px;
    }
    .license-grid{
        gap: 20px;
    }
}
@media (max-width: 576px){
    .license{
        padding: 0 0 50px 0;
    }
    .license-grid{
        grid-template-columns: repeat(auto-fit, minmax(300px, 3fr));
    }
}


/* partners */
.partners{
    padding: 0 0 176px 0;
}
.partner-swiper .swiper-slide{
    display: flex;
    align-items: center;
    width: auto;
    height: auto;
}
.partner-swiper .swiper-slide img{
    object-fit: cover;
    width: 100%;
    height: auto;
    max-height: max-content;
}
.partner-swiper .swiper-wrapper{
    transition-timing-function: linear;
}
@media (max-width: 1600px){
    .partners{
        padding: 0 0 150px 0;
    }
}
@media (max-width: 1400px){
    .partners{
        padding: 0 0 120px 0;
    }
}
@media (max-width: 1200px){
    .partners{
        padding: 0 0 80px 0;
    }
}
@media (max-width: 992px){
    .partners{
        padding: 0 0 60px 0;
    }
}
@media (max-width: 576px){
    .partners{
        padding: 0 0 50px 0;
    }
}
@media(max-width: 576px){
    .partner-swiper .swiper-slide img{
        max-width: 100px;
    }
}



/* contact */
.contact{
    padding: 0 0 110px 0;
}
.contact-row{
    display: flex;
    gap: 80px;
}
.contact-left{
    width: calc(38% - 40px);
}
.contact-item{
    margin: 0 0 65px 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.contact-item:last-child{
    margin: 0;
}
.contact-title{
    font-size: 40px;
    font-weight: 500;
    line-height: 92%;
    color: var(--default);
}
.contact-desc{
    font-size: 30px;
    font-weight: 400;
    line-height: 137%;
    color: var(--default);
}
.map{
    width: calc(62% - 40px);
    border-radius: 20px;
    overflow: hidden;
    display: flex;
}
@media(max-width: 1200px){
    .contact{
        padding: 0 0 100px 0;
    }
    .contact-left{
        width: calc(38% - 20px);
    }
    .map{
        width: calc(62% - 20px);
    }
    .contact-item{
        margin: 0 0 40px 0;
    }
    .contact-title{
        font-size: 32px;
    }
    .contact-desc{
        font-size: 24px;
    }
}
@media(max-width: 992px){
    .contact{
        padding: 0 0 80px 0;
    }
    .contact-row{
        flex-direction: column;
        gap: 20px;
    }
    .contact-left{
        width: 100%;
    }
    .map{
        width: 100%;
        height: 400px;
    }
    .contact-item{
        margin: 0 0 30px 0;
        gap: 15px;
    }
    .contact-title{
        font-size: 26px;
    }
    .contact-desc{
        font-size: 18px;
    }
}
@media(max-width: 768px){
    .contact{
        padding: 0 0 60px 0;
    }
    .map{
        height: 300px;
        border-radius: 10px;
    }
}
@media(max-width: 576px){
    .contact{
        padding: 0 0 50px 0;
    }
}



/* question */
.question{
    padding: 0 0 75px 0;
}
.question-form{
    padding: 60px 70px 60px 60px;
    border-radius: 10px;
    background: #E9F2FB;
}
.form-title{
    font-size: 48px;
    font-weight: 600;
    line-height: 92%;
    color: var(--default);
    margin: 0 0 40px 0;
}
.question-row{
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin: 0 0 20px 0;
}
.form-control{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    width: calc(30% - 10px);
}
.text-input{
    width: 100%;
}
.text-input,
.textarea{
    font-family: Montserrat;
    font-size: 20px;
    font-weight: 500;
    line-height: 150%;
    color: var(--default);
    padding: 22px 25px;
    border-radius: 10px;
    background: #FFF;
    border: none;
}
.text-input::placeholder,
.textarea::placeholder{
    color: #B5B5B5;
}
.textarea{
    height: 265px;
    width: calc(70% - 10px);
    resize: vertical;
}
.submit-form{
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 22px 10px;
    font-size: 24px;
    font-weight: 500;
    line-height: 150%;
    color: #EDEFF7;
    border-radius: 15px;
    background: #044DA1;
    width: 100%;
    border: none;
    margin: 0 0 24px 0;
}
.agree{
    display: flex;
    align-items: center;
    gap: 14px;
    position: relative;
    cursor: pointer;
}
.agree input{
    opacity: 0;
    visibility: hidden;
    position: absolute;
}
.agree p{
    font-family: Montserrat;
    font-size: 20px;
    font-weight: 500;
    line-height: 150%;
    color: #B5B5B5;
}
.agree a{
    color: #2E90FF;
}
.checkbox-area{
    position: relative;
    width: 29px;
    height: 29px;
    display: flex;
    flex: 0 0 auto;
    border-radius: 8px;
    border: 1px solid #B5B5B5;
    background: #FFF;
}
.checkbox-area::after{
    position: absolute;
    content: '';
    width: 16px;
    height: 9px;
    top: 50%;
    left: 50%;
    border-left: 3px solid var(--blue);
    border-bottom: 3px solid var(--blue);
    transform: translate(-50%, -70%) rotate(-45deg);
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
}
.agree:has(input:checked) .checkbox-area::after{
    opacity: 1;
    visibility: visible;
}
@media(max-width: 1400px){
    .form-control{
        width: calc(40% - 10px);
    }
    .textarea{
        width: calc(60% - 10px);
    }
}
@media(max-width: 1200px){
    .question-form{
        padding: 40px;
    }
    .form-title {
        font-size: 42px;
    }
}
@media(max-width: 992px){
    .question-row{
        flex-direction: column;
    }
    .form-control{
        width: 100%;
    }
    .textarea{
        width: 100%;
    }
    .textarea {
        height: 200px;
    }
    .submit-form{
        font-size: 20px;
        padding: 20px 10px;
    }
}

@media(max-width: 768px){
    .question-form{
        padding: 20px;
    }
    .form-title {
        font-size: 32px;
    }
    .text-input, .textarea{
        padding: 15px 20px;
    }
    .textarea {
        height: 150px;
    }
    .submit-form{
        padding: 15px 10px;
    }
    .agree p{
        font-size: 14px;
    }
    .question{
        padding: 0 0 60px;
    }
}
@media(max-width: 576px){
    .question{
        padding: 0 0 50px 0;
    }
}



/* FOOTER */
.footer{

}

.footer-top{
    background: #E9F2FB;
    padding: 75px 0 150px 0;
}
.footer .brand-logo{
    width: 407px;
}
.footer-row{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
}
.footer-links{
    display: flex;
    align-items: flex-start;
    gap: 130px;
}
.footer-col{
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.footer-title{
    font-family: Montserrat;
    font-size: 24px;
    font-weight: 700;
    line-height: 149%;
    color: var(--default);
}
.footer-col ul{
    display: flex;
    flex-direction: column;
    gap: 19px;
}
.footer-col ul a{
    font-family: Montserrat;
    font-size: 24px;
    font-weight: 500;
    line-height: 149%;
    color: var(--default);
}
.social{
    display: flex;
    align-items: center;
    gap: 45px;
}
.social a{
    display: flex;
}

.footer-bottom{
    padding: 44px 0;
}
.footer-bottom-row{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}
.footer-bottom-row a{
    font-family: Montserrat;
    font-size: 20px;
    font-weight: 500;
    line-height: 149%;
    color: #7C93C4;
}
.footer-bottom-row span{
    width: 2px;
    height: 30px;
    display: flex;
    background-color: #7C93C4;
}

@media(max-width: 1600px){
    .footer-top {
        padding: 75px 0 100px 0;
    }
    .footer-row{
        gap: 20px;
    }
    .footer .brand-logo {
        width: 300px;
    }
    .footer-links{
        gap: 100px;
    }
}

@media (max-width: 1400px){
    .footer .brand-logo {
        width: 200px;
    }
    .footer-links {
        gap: 50px;
    }
    .social img{
        max-width: 50px;
    }
    .footer-bottom-row a{
        font-size: 16px;
    }
    .footer-bottom-row span{
        height: 25px;
    }
}
@media (max-width: 1200px){
    .footer-title{
        font-size: 20px;
    }
    .footer-col ul a{
        font-size: 20px;
    }
    .footer-col{
        gap: 20px;
    }
    .footer-col ul{
        gap: 16px;
    }
    .footer-top {
        padding: 50px 0 75px 0;
    }
}
@media(max-width: 992px){
    .footer-row{
        flex-direction: column;
    }
    .footer-links{
        width: 100%;
        justify-content: space-between;
    }
    .footer-top {
        padding: 40px 0 50px 0;
    }
    .footer-bottom-row{
        flex-direction: column;
        align-items: flex-start;
    }
    .footer-bottom-row span{
        display: none;
    }
    .footer-bottom{
        padding: 30px;
    }
}
@media(max-width: 768px){
    .footer-links{
        flex-direction: column;
        gap: 20px;
    }
    .footer-col {
        gap: 10px;
    }
    .footer-title{
        font-size: 18px;
        line-height: 120%;  
    }
    .footer-col ul{
        gap: 5px;
    }
    .footer-col ul a {
        font-size: 18px;
        line-height: 120%;
    }
    .social img {
        max-width: 30px;
    }
}
@media(max-width: 576px){
    .footer-bottom{
        padding: 20px 0;
    }
}


/* product-single */

.product-single{
    padding: 0 0 160px 0;
}
.product-card{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 86px;
}
.product-photo{
    /* max-width: 625px; */
    width: calc(52% - 43px);
    border-radius: 10px;
    background: #F6F7FB;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 47px 0;
}
.product-photo img{
    max-width: 100%;
    height: auto;
}
.product-info{
    width: calc(48% - 43px);
}

.product-name{
    font-size: 55px;
    font-weight: 600;
    line-height: 92%;
    color: var(--default);
    margin: 0 0 33px 0;
}
.product-info .product-price{
    font-size: 46px;
    font-weight: 600;
    line-height: 92%;
    color: var(--blue);
    margin: 0 0 48px 0;
}
.product-desc{
    font-family: Montserrat;
    font-size: 24px;
    font-weight: 400;
    line-height: 123.088%;
    color: var(--default);
    margin: 0 0 70px 0;
}
.product-action{
    display: flex;
    flex-wrap: wrap;
    gap: 17px;
}
.input-phone{
    position: relative;
    width: calc(50% - 17px/2);
}
.input-phone input{
    border-radius: 20px;
    background: #F1F1F5;
    font-family: Montserrat;
    font-size: 20px;
    font-weight: 400;
    line-height: normal;
    border: none;
    width: 100%;
    padding: 29px 0 29px 104px;
    color: var(--default);
}
.input-phone input::placeholder{
    color: rgba(28, 34, 88, 0.40);
}
.input-phone img{
    position: absolute;
    left: 49px;
    top: 50%;
    transform: translate(0, -50%);
}
.nice-select{
    width: calc(50% - 17px/2);
    border-radius: 20px;
    background: #F1F1F5;
    height: 83px;
    padding: 0 0 0 49px;
}
.nice-select .current{
    font-family: Roboto;
    font-size: 20px;
    font-weight: 400;
    color: #9093AE;
    height: 83px;
    display: flex;
    align-items: center;
}
.nice-select .list{
    width: 100%;
}
.product-action .agree{
    width: calc(50% - 17px/2);
}
.product-action .agree p{
    font-family: Montserrat;
    font-size: 14px;
    font-weight: 400;
    color: #1C2258;
}
.product-action .agree a{
    color: #1C2258;
    text-decoration: underline;
}
.product-action .hero-btn{
    padding: 21px 5px;
    width: calc(50% - 17px/2);
}
.nice-select:after{
    display: none;
}
.nice-select::before{
    position: absolute;
    content: '';
    right: 50px;
    top: 50%;
    transform: translate(0, -50%);
    width: 26px;
    height: 12px;
    background-image: url(../src/img/icon/icon-down.svg);
    background-size: 100%;
    background-repeat: no-repeat;
}
@media(max-width: 1600px){
    .product-card{
        gap: 40px;
    }
    .product-photo {
        width: calc(52% - 20px);
    }
    .product-info {
        width: calc(48% - 20px);
    }
    .product-name {
        font-size: 50px;
    }    
    .input-phone input{
        padding: 29px 0 29px 60px;
    }
    .input-phone img{
        left: 20px;
    }
    .product-single {
        padding: 0 0 120px 0;
    }
    .nice-select{
        padding: 0 0 0 20px;
    }
}
@media(max-width: 1400px){
    .product-photo {
        width: calc(40% - 20px);
    }
    .product-info {
        width: calc(60% - 20px);
    }
    .product-name{
        margin: 0 0 25px 0;
    }
    .product-price {
        font-size: 38px;
        margin: 0 0 30px 0;
    }
    .product-desc {
        font-size: 20px;
        margin: 0 0 30px 0;
    }
    .product-single {
        padding: 0 0 100px 0;
    }
}
@media(max-width: 1200px){
    .product-name {
        font-size: 42px;
    }
    .product-single {
        padding: 0 0 80px 0;
    }
}
@media(max-width: 992px){
    .product-card{
        align-items: center;
        flex-direction: column;
    }
    .product-photo {
        width: 60%;
    }
    .product-info {
        width: 100%;
    }
    .product-single {
        padding: 0 0 60px 0;
    }
}
@media(max-width: 768px){
    .input-phone,
    .nice-select,
    .product-action .agree,
    .product-action .hero-btn{
        width: 100%;
    }
    .input-phone input {
        padding: 13px 0 13px 60px;
        border-radius: 10px;
    }
    .nice-select .current{
        height: 50px;
    }
    .nice-select{
        height: 50px;
        border-radius: 10px;
    }
    .product-name {
        font-size: 28px;
    }
    .product-price {
        font-size: 28px;
        margin: 0 0 20px 0;
    }
    .product-desc {
        font-size: 16px;
        margin: 0 0 20px 0;
    }
}

@media(max-width: 576px){
    .product-photo{
        width: 100%;
    }
    .product-single {
        padding: 0 0 50px 0;
    }
}

/* modal */
.modal{
    position: fixed;
    z-index: 4;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 1400px;
    width: 100%;
    height: auto;
    max-height: 100%;
    overflow-y: auto;
    border-radius: 40px;
    background: #FFF;
    -ms-overflow-style: none;
    padding: 44px 85px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}
.modal.active{
    opacity: 1;
    visibility: visible;
}
.modal::-webkit-scrollbar {
    display: none;
}
.modal-title{
    font-size: 45px;
    font-weight: 500;
    line-height: 92%;
    color: var(--default);
    margin: 0 0 50px 0;
}
.modal .product-card{
    gap: 96px;
    margin: 0 0 40px 0;
}
.modal-desc{
    font-size: 44px;
    font-weight: 300;
    line-height: 92%;
    text-align: center;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.10);
}
.modal .product-photo{
    width: calc(34.5% - 43px);
    padding: 22px 10px;
}
.modal .product-info{
    width: calc(65.5% - 43px);
}
.modal .product-name{
    font-size: 46px;
    font-weight: 500;
    margin: 0 0 20px 0;
}
.modal .product-price{
    font-size: 39px;
    margin: 0 0 38px 0;
}

@media (max-width: 992px) {
    .modal {
        width: 80%;
    }
    .modal .product-info {
        width: 100%;
    }
    .modal .product-photo {
        width: 380px;
    }
    .modal .product-card{
        gap: 40px;
    }
    .modal .product-name {
        font-size: 42px;
    }
    .modal .product-price {
        font-size: 32px;
    }
    .modal-desc {
        font-size: 36px;
    }
    .modal-title {
        font-size: 36px;
    }
}
@media (max-width: 768px){
    .modal{
        border-radius: 20px;
        padding: 30px 40px;
    }
    .modal .product-card {
        gap: 20px;
        margin: 0 0 40px 0;
    }
    .modal-title{
        margin: 0 0 20px 0;
    }
    .modal .product-name {
        font-size: 36px;
    }
    .modal .product-price {
        font-size: 28px;
        margin: 0 0 20px 0;
    }
    .modal-desc {
        font-size: 32px;
    }
    .modal-title {
        font-size: 32px;
    }
}
@media (max-width: 578px){
    .modal {
        width: calc(100% - 40px);
        padding: 20px 25px; 
    }
    .modal .product-name {
        font-size: 28px;
    }
    .modal .product-price {
        font-size: 24px;
    }
    .modal-desc {
        font-size: 24px;
    }
    .modal-title {
        font-size: 28px;
    }
}
