.backclear{
    display: none;
}

.page-content{
    padding-top: 0px;
}

.landing{
    font-size: 0;
    font-family: 'font', sans-serif;
    color: #1F1F1F;
    background-color: #F3F3EE;
}

.landing * {
    margin: 0;
    padding: 0;
    outline: none;
    box-sizing: border-box;
}

.wrapper{
    max-width: 1000px;
    padding: 0 20px;
    margin: 0 auto;
    box-sizing: content-box;
}

.banner{
    position: relative;
    background-color: #484848
}

.banner:before{
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    inset: 0;
    background: rgba(33, 41, 46, 0.3);
    z-index: 2;
}


.banner-background{
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.banner video{
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.banner-content{
    position: relative;
    z-index: 2;
}

.banner-block{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 30px 0 115px;
    min-height: calc(100vh - 88px);
    min-height: calc((var(--vh, 1vh) * 100) - 88px);
}

.banner-middle{
    color: #ffffff;
}

.banner-title{
    font-weight: 500;
    font-size: 40px;
    line-height: 120%;
    text-transform: uppercase;
}

.banner-text{
    font-weight: 700;
    font-size: 16px;
    line-height: 150%;
    max-width: 386px;
    margin: 32px auto 0;
}

.banner-button{
    margin-top: 40px;
}

.banner-button span{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    font-weight: 700;
    font-size: 14px;
    padding: 0 40px;
    text-transform: uppercase;
    border-radius: 60px;
    background-color: #E73280;
    transition: background 200ms;
    cursor: pointer;
}

.banner-button span:hover{
    background-color: #D5467F;
}

.banner-scroll{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    bottom: 30px;
    border: 1px dashed #FFFFFF;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    cursor: pointer;
    left: 50%;
    transform: translatex(-50%);
    transition: background 200ms, border 200ms;
}

.banner-scroll:hover{
    background-color: #db337b;
    border: 1px solid #db337b;
}

@media screen and (min-width: 483px){

}

@media screen and (min-width: 768px){
    .banner-title {
        font-size: 50px;
    }
}

@media screen and (min-width: 1024px){
    .banner-block{
        padding: 60px 0;
    }
    
    .banner-middle{
        position: relative;
        width: 100%;
    }

    .banner-block{
        text-align: left;
    }

    .banner-title {
        font-size: 60px;
    }

    .banner-text{
        margin-left: 240px;
    }

    .banner-button{
        margin-left: 240px;
    }

    .banner-scroll{
        top: 250px;
        left: 0px;
        transform: none;
    }
}

.menu{
    padding: 30px 0;
    margin-bottom: 30px;
    background-color: #EBEBE7;
}

.menu-wrapper{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.menu-item a{
    font-size: 18px;
    line-height: 140%;
    color: #4C4E52;
    transition: color 200ms;
}

.menu-item a:hover{
    color: #D5467F;
}

@media screen and (min-width: 768px){
    .menu {
        padding: 24px 0;
    }

    .menu-wrapper{
        flex-direction: row;
        justify-content: center;
        gap: 30px;
        white-space: nowrap;
    }
}

@media screen and (min-width: 1024px){
    .menu{
        margin-bottom: 60px;
    }

    .menu-wrapper{
        gap: 0;
    }

    .menu-item a{
        line-height: 47px;
    }

    .menu-item:not(:first-child){
        padding-left: 77px;
    }

    .menu-item:not(:last-child){
        padding-right: 77px;
    }

    .menu-item:first-child{
        border-right: 1px solid #ffffff;
    }

    .menu-item:last-child{
        border-left: 1px solid #ffffff;
    }
}

.map{
    padding: 30px 0;
}

.map-svg{
    position: absolute;
    inset: 20px;
    max-width: 650px;
    width: calc(100% - 40px);
    height: calc(100% - 40px);
    display: block;
    object-fit: contain;
    left: 50%;
    transform: translatex(-50%);
}

.map-block{
    position: relative;
    z-index: 1;
}

.map-wrapper{
    position: relative;
}

.map-label{
    margin-bottom: 14px;
}

.map-label span{
    display: inline-flex;
    align-items: center;
    height: 38px;
    padding: 0 16px;
    font-weight: 700;
    font-size: 14px;
    border-radius: 38px;
    text-transform: uppercase;
    color: #C7C7C0;
    background-color: #ffffff;
}

.map-title{
    font-weight: 500;
    font-size: 30px;
    line-height: 120%;
    text-transform: uppercase;
}

.map-title span{
    color: #D5467F;
}

.map-list{
    margin-top: 30px;
}

.map-item{
    display: flex;
    align-items: center;
    max-width: 425px;
    margin: 0 auto;
}

.map-item:first-child{
    margin-left: 0;
}

.map-item:last-child{
    margin-right: 0;
}

.map-item:not(:first-child){
    margin-top: 22px;
}

.map-item-num{
    text-align: center;
    font-weight: 300;
    font-size: 40px;
    text-transform: uppercase;
    color: #D5467F;
    width: 46px;
    margin-right: 12px;
    flex: none;
}

.map-item-text{
    font-weight: 700;
    font-size: 16px;
    line-height: 150%;
}

.map-item-text span{
    color: #D5467F;
}

.map-text{
    display: none;
}

.map-button{
    margin-top: 30px;
    text-align: center;
}

.map-button span{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    width: 100%;
    max-width: 290px;
    font-weight: 700;
    font-size: 14px;
    padding: 0 40px;
    text-transform: uppercase;
    border-radius: 60px;
    background-color: #E73280;
    color: #ffffff;
    transition: background 200ms;
    cursor: pointer;
}

.map-button span:hover{
    background-color: #D5467F;
}

@media screen and (min-width: 768px){
    .map-title {
        font-size: 40px;
    }

    .map-label {
        margin-bottom: 30px;
    }
}

@media screen and (min-width: 1024px){
    .map{
        padding: 60px 0;
    }

    .map-block{
        display: flex;
        flex-wrap: wrap;
        align-items: center;
    }

    .map-title {
        font-size: 50px;
    }

    .map-list{
        margin-top: 0;
        margin-left: auto;
        width: 100%;
        max-width: 500px;
    }

    .map-item:not(:first-child) {
        margin-top: 32px;
    }

    .map-text{
        display: block;
        width: 100%;
        margin-top: 40px;
        font-size: 16px;
        line-height: 150%;
        color: #4C4E52;
    }

    .map-text div{
        max-width: 600px;
    }

    .map-button{
        width: 100%;
        margin-top: 32px;
    }

    .map-svg {
        top: -80px;
    }
}

.photos{
    padding: 30px 0;
}

.photos-wrapper{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 275px;
}

.photos-container{
    width: 0;
    height: 0;
    position: relative;
}

.photos-item{
    position: absolute;
    transform: translatey(-50px);
    opacity: 0;
    transition: transform 1s, opacity 1s;
}

.photos-item span{
    position: relative;
    display: block;
    height: 0;
}

.photos-item img{
    display: block;
    border-radius: 10px;
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.photos-item-1 span{
    padding-top: 108.93333%;
}

.animation-start .photos-item{
    opacity: 1;
    transform: translatey(0);
}

.photos-item-2 span{
    padding-top: 100.98111%;
}

.photos-item-3 span{
    padding-top: 66.66777%;
}

.photos-item-4 span{
    padding-top: 100.88333%;
}

.photos-item-1{
    width: 117px;
    right: 55px;
    top: 10px;
    z-index: 1;
}

.photos-item-2{
    width: 206px;
    right: -90px;
    bottom: -90px;
    transition-delay: 300ms;
}

.photos-item-3{
    width: 115px;
    top: 40px;
    left: 40px;
    transition-delay: 600ms;
    z-index: 1;
}

.photos-item-4{
    width: 136px;
    bottom: 10px;
    left: 40px;
    transition-delay: 900ms;
}

@media screen and (min-width: 428px){
    .photos-item-1{
        right: 85px;
    }

    .photos-item-3 {
        left: 65px;
    }

    .photos-item-4 {
        left: 65px;
    }
}

@media screen and (min-width: 1024px){
    .photos {
        padding: 80px 0;
    }

    .photos-wrapper {
        height: 500px;
    }

    .photos-item img {
        border-radius: 15px;
    }

    .photos-item-1{
        width: 280px;
        top: -120px;
        right: 220px;
        bottom: auto;
    }

    .photos-item-2{
        width: 510px;
        right: -150px;
        bottom: -250px;
    }

    .photos-item-3{
        width: 252px;
        top: 110px;
        left: 90px;
    }

    .photos-item-4{
        width: 340px;
        left: 160px;
        bottom: -140px;
    }
}

.services-block{
    padding: 30px 0;
}

.services-label{
    margin-bottom: 14px;
}

.services-label span{
    display: inline-flex;
    align-items: center;
    height: 38px;
    padding: 0 16px;
    font-weight: 700;
    font-size: 14px;
    border-radius: 38px;
    text-transform: uppercase;
    color: #C7C7C0;
    background-color: #ffffff;
}

.services-title{
    font-weight: 500;
    font-size: 30px;
    line-height: 120%;
    max-width: 550px;
    text-transform: uppercase;
}

.services-title span{
    color: #D5467F;
}

.services-header{
    margin-bottom: 30px;
}

.services-list{
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.services-item{
    display: flex;
    background: #EBEBE7;
    border-radius: 15px;
    padding: 20px;
    gap: 20px;
}

.services-num{
    font-weight: 700;
    font-size: 18px;
    line-height: 150%;
    width: 32px;
    text-align: center;
    color: #D5467F;
    flex: none;
}

.services-item-content{
    color: #4C4E52;
}

.services-item-title{
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 10px;
    line-height: 150%;
}

.services-item-text{
    font-size: 14px;
    line-height: 150%;
}

.services-row{
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.services-row:not(:first-child){
    margin-top: 10px;
}

.services-picture{
    position: relative;
    height: 260px;
}

.services-picture img{
    position: absolute;
    border-radius: 20px;
    width: 100%;
    height: 100%;
    inset: 0;
    object-fit: cover;
}

@media screen and (min-width: 768px){
    .services-label {
        margin-bottom: 30px;
    }

    .services-title{
        font-size: 35px;
    }

    .services-header {
        margin-bottom: 50px;
    }

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

    .services-picture{
        width: 260px;
        height: auto;
        flex: none;
    }

    .services-row:last-child .services-list{
        order: 1;
    }
}

@media screen and (min-width: 1024px){
    .services-block {
        padding: 60px 0;
    }

    .services-list {
        gap: 5px;
    }

    .services-item {
        align-items: center;
        padding: 32px 40px;
    }

    .services-item-content{
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .services-item-title {
        font-size: 18px;
        margin-bottom: 0px;
        width: 200px;
        flex: none;
    }

    .services-item-text {
        font-size: 16px;
    }
}

.services-add{
    position: relative;
    padding: 60px 0;
    margin: 30px 0;
    background-color: #EBEBE7;
}

.services-add-background{
    position: absolute;
    width: 100%;
    height: 100%;
    inset: 0;
    object-fit: cover;
}

.services-add-wrapper{
    position: relative;
    z-index: 2;
}

.services-add-title{
    font-weight: 500;
    font-size: 30px;
    margin-bottom: 30px;
    line-height: 120%;
    text-align: center;
    text-transform: uppercase;
}

.services-add-title span{
    color: #D5467F;
}

.services-add-list{
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.services-add-item{
    position: relative;
    height: 400px;
    overflow: hidden;
    border-radius: 20px;
    transform: translatey(-50px);
    opacity: 0;
    transition: transform 1s, opacity 1s;
    cursor: pointer;
}

.services-add-item:nth-child(2){
    transition-delay: 300ms;
}

.services-add-item:nth-child(3){
    transition-delay: 600ms;
}

.animation-start .services-add-item{
    opacity: 1;
    transform: translatey(0);
}

.services-add-item:before{
    content: '';
    display: block;
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(108, 108, 108, 0) 0%, #161616 139.38%);
    width: 100%;
    height: 100%;
    z-index: 2;
}

.services-add-item img{
    position: absolute;
    width: 100%;
    height: 100%;
    inset: 0;
    z-index: 1;
    object-fit: cover;
}

.services-add-item span{
    position: absolute;
    font-size: 20px;
    line-height: 140%;
    color: #ffffff;
    inset: auto 20px 20px 20px;
    text-transform: uppercase;
    z-index: 3;
}

.services-add-button {
    margin-top: 40px;
    text-align: center;
}

.services-add-button span{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    width: 100%;
    max-width: 290px;
    font-weight: 700;
    font-size: 14px;
    padding: 0 40px;
    text-transform: uppercase;
    border-radius: 60px;
    background-color: #E73280;
    color: #ffffff;
    transition: background 200ms;
    cursor: pointer;
}

.services-add-button span:hover{
    background-color: #D5467F;
}

.services-footer{
    display: flex;
    flex-direction: column;
    margin-top: 40px;
    gap: 30px;
}

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

.services-footer-text{
    font-weight: 500;
    font-size: 30px;
    line-height: 120%;
    max-width: 420px;
    margin: 0 auto;
    text-transform: uppercase;
}

.services-footer-text span{
    color: #D5467F;
}

.services-footer-button span{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    width: 100%;
    max-width: 290px;
    font-weight: 700;
    font-size: 14px;
    padding: 0 40px;
    text-transform: uppercase;
    border-radius: 60px;
    background-color: #E73280;
    color: #ffffff;
    transition: background 200ms;
    cursor: pointer;
}

.services-footer-button span:hover{
    background-color: #D5467F;
}

@media screen and (min-width: 768px){
    .services-add-title{
        font-size: 40px;
    }

    .services-footer{
        margin-top: 50px;
    }

    .services-footer-text{
        font-size: 35px;
        max-width: 550px;
    }
}

@media screen and (min-width: 1024px){
    .services-add {
        padding: 80px 0;
        margin: 60px 0;
    }

    .services-add-title{
        margin-bottom: 50px;
    }

    .services-add-list{
        flex-direction: row;
        gap: 40px;
    }

    .services-add-item{
        flex: 1;
    }

    .services-add-item:nth-child(2){
        margin-top: 50px;
    }

    .services-add-button {
        margin-top: 60px;
    }

    .services-add-item span {
        font-size: 18px;
    }

    .services-footer{
        flex-direction: row;
        align-items: center;
    }

    .services-footer-text{
        margin: 0;
        text-align: left;
    }

    .services-footer-button{
        flex: none;
        width: 290px;
        margin-left: auto;
    }

    .services-footer {
        margin-top: 60px;
    }
}

.catalog{
    padding: 30px 0;
}

.catalog-label {
    margin-bottom: 14px;
}

.catalog-label span {
    display: inline-flex;
    align-items: center;
    height: 38px;
    padding: 0 16px;
    font-weight: 700;
    font-size: 14px;
    border-radius: 38px;
    text-transform: uppercase;
    color: #C7C7C0;
    background-color: #ffffff;
}

.catalog-header{
    display: flex;
    flex-direction: column;
    margin-bottom: 30px;
    gap: 30px;
}

.catalog-header-title{
    font-weight: 500;
    font-size: 30px;
    line-height: 120%;
    max-width: 550px;
    text-transform: uppercase;
}

.catalog-header-title span {
    color: #D5467F;
}

.catalog-header-button span{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    width: 100%;
    max-width: 290px;
    font-weight: 700;
    font-size: 14px;
    padding: 0 40px;
    text-transform: uppercase;
    border-radius: 60px;
    background-color: #E73280;
    color: #ffffff;
    transition: background 200ms;
    cursor: pointer;
}

.catalog-header-button span:hover{
    background-color: #D5467F;
}

.catalog-list{
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.catalog-item{
    opacity: 0;
    transition: transform 1s, opacity 1s;
}

div.catalog-item.animation-start{
    opacity: 1;
    transform: translate(0, 0);
}

.catalog-item-photo span{
    display: block;
    position: relative;
    height: 342px;
}

.catalog-item-photo img{
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border-radius: 15px;
    object-fit: cover;
}

.catalog-item-content{
    position: relative;
    background: #FFFFFF;
    box-shadow: 0px 15px 22px rgba(106, 106, 106, 0.13);
    color: #4C4E52;
    border-radius: 15px;
    padding: 25px 20px;
    margin-top: -72px;
    z-index: 1;
}

.catalog-item-title{
    font-weight: 700;
    font-size: 16px;
    line-height: 140%;
    margin-bottom: 16px;
}

.catalog-item-text{
    font-size: 14px;
    line-height: 150%;
}

@media screen and (max-width: 1023px){
    .catalog-item{
        transform: translatey(50px);
    }
}

@media screen and (max-width: 500px){
    .catalog-list{
        margin: 0 -20px;
    }
}

@media screen and (min-width: 768px){
    .catalog-label {
        margin-bottom: 30px;
    }

    .catalog-header-title {
        font-size: 35px;
        max-width: 630px;
    }

    .catalog-header{
        margin-bottom: 50px;
    }
}

@media screen and (min-width: 1024px){
    .catalog-block {
        padding: 60px 0;
    }

    .catalog-header{
        flex-direction: row;
        align-items: center;
    }

    .catalog-header-button{
        width: 290px;
        margin-left: auto;
    }

    .catalog-item:nth-child(1n){
        transform: translatex(-50px);
    }

    .catalog-item:nth-child(2n){
        transform: translatex(50px);
    }

    .catalog-item-photo{
        width: 510px;
        flex: none;
        margin-right: -60px;
    }

    .catalog-item{
        display: flex;
        align-items: center;
        justify-content: flex-end;
    }

    .catalog-item-content{
        display: flex;
        justify-content: center;
        flex-direction: column;
        margin-top: 0;
        padding: 40px 60px 40px 130px;
        min-height: 358px;
        width: 550px;
        flex: none;
    }

    .catalog-item-photo span{
        height: 0px;
        padding-top: 101.96111%;
    }

    .catalog-item-title {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .catalog-item-text {
        font-size: 16px;
    }
    
    .catalog-item:nth-child(2n){
        justify-content: flex-start;
    }

    .catalog-item:nth-child(2n) .catalog-item-content{
        padding-left: 60px;
        padding-right: 130px;
    }

    .catalog-item:nth-child(2n) .catalog-item-photo{
        order: 1;
        margin-right: 0;
        margin-left: -60px;
    }
}

.form{
    padding: 30px 0 60px;
}

.form-block{
    max-width: 380px;
    margin: 0 auto;
}

.form-title {
    display: flex;
    flex-direction: column;
    font-weight: 500;
    font-size: 30px;
    line-height: 120%;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.form-title span:first-child{
    text-align: left;
}

.form-title span:last-child{
    text-align: right;
    color: #D5467F;
}

.form-inputs{
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-input input{
    font-size: 16px;
    height: 50px;
    background-color: transparent;
    border: none;
    font-family: 'font', sans-serif;
    color: #1F1F1F;
    width: 100%;
    border-bottom: 1px solid #BDBDBD;
    transition: border 200ms;
}

.form-input input:focus{
    border-color: #D5467F;
}

.iti--separate-dial-code .iti__selected-flag {
    background-color: transparent;
}

.iti--allow-dropdown .iti__flag-container:hover .iti__selected-flag {
    background-color: transparent;
}

.iti__country{
    padding: 5px 10px;
}

.iti--allow-dropdown{
    width: 100%;
}

.iti__arrow{
    border-top-color: #D9D9D9;
    margin-left: 7px;
}

.iti__flag-box{
    margin-right: 10px;
}

.iti__dial-code{
    margin-left: 7px;
}

.iti--separate-dial-code .iti__selected-dial-code{
    font-size: 16px;
}

.form-button{
    text-align: center;
    margin-top: 30px;
}

.form-button button{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    width: 100%;
    max-width: 290px;
    font-weight: 700;
    font-size: 14px;
    padding: 0 40px;
    text-transform: uppercase;
    border-radius: 60px;
    background-color: #E73280;
    color: #ffffff;
    border: none;
    transition: background 200ms;
    cursor: pointer;
}

.form-button button.disabled:hover,
.form-button button.disabled:focus,
.form-button button[disabled]:hover,
.form-button button[disabled]:focus,
.form-button .button.disabled:hover,
.form-button .button.disabled:focus,
.form-button .button[disabled]:hover,
.form-button .button[disabled]:focus{
    background-color: #D5467F;
}

.form-button button:hover{
    background-color: #D5467F;
}

@media screen and (min-width: 768px){
    .form-title {
        font-size: 40px;
    }

    .form-block {
        max-width: 450px;
    }
}

@media screen and (min-width: 1024px){
    .form {
        padding: 60px 0 120px;
    }

    .form-title {
        font-size: 50px;
        text-align: left;
        margin-bottom: 0;
        flex: none;
    }

    .form-title span:last-child{
        text-align: left;
    }

    .form-block {
        display: flex;
        max-width: none;
        gap: 30px;
    }

    .form-content{
        width: 100%;
    }

    .form-content-block{
        margin: 0 auto;
        max-width: 320px;
    }

    .form-button {
        margin-top: 40px;
    }
}