@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter-VariableFont_opsz,wght.ttf') format('truetype');
    font-display: swap;
}
@font-face {
    font-family: 'Manrope';
    src: url('../fonts/Manrope-VariableFont_wght.ttf') format('truetype');
    font-display: swap;
}
@font-face {
    font-family: 'Roboto';
    src: url('../fonts/Roboto-VariableFont_wdth,wght.ttf') format('truetype');
    font-display: swap;
}
:root{
    --container:36px;
    --medium-font:calc(20px + 4*(100vw - 360px) / 1560);
    --small-font:calc(14px + 2*(100vw - 360px) / 1560);
}
html{
    scroll-behavior: smooth;
    scroll-padding-top: 124px;
}
body{
    color: #191919;
    font-size: 16px;
    font-family: 'Roboto';
}
body.noscroll{
    overflow-y: hidden;
}
h1{
    font-size:calc(44px + 32*(100vw - 360px) / 1560);
}
.h1{
    font-size:calc(44px + 32*(100vw - 360px) / 1560);
}
h2{
    font-size:calc(44px + 24*(100vw - 360px) / 1560);
}
.h2{
    font-size:calc(44px + 24*(100vw - 360px) / 1560);
}
h3{
    font-size:calc(40px + 20*(100vw - 360px) / 1560);
}
.h3{
    font-size:calc(40px + 20*(100vw - 360px) / 1560);
}
.h4{
    font-size:calc(18px + 6*(100vw - 360px) / 1560);
}
h4{
    font-size:calc(18px + 6*(100vw - 360px) / 1560);
}
.modal-wrapper{
    display: none;
}
.page-404
{
margin: 0 auto;
    text-align: center;
}

.page-404__img
{

}

.page-404__title
{
    font-size: 120px;
}

.page-404__text
{
    font-size: 24px;
    margin-top: 16px;

}

.page-404__notice
{
    font-size: var(--small-font);
    text-align: center;
    margin-top: 12px;
}

.page-404__link
{
    font-size: 16px;
    background-color: #191919;
    text-align: center;
    color: white;
    padding: 14px 20px;
    margin: 0 auto;
    margin-top: 29px;
    display: block;
    width: fit-content;
    border-radius: 100px;

}
.cookie
{
    position: fixed;
    left: var(--container);
    bottom: var(--container);
    background-color: #fff;
    border-radius: 16px;
    padding: 32px;
    max-width: 334px;
    box-sizing: border-box;
    z-index: 5;
}

.cookie-text
{

}

.cookie-accept
{
    margin-top: 20px;
    border-radius: 100px;
    color: white;
    background-color: #191919;
    padding: 12px 20px;
    width: fit-content;
    cursor: pointer;
}
.preloader{
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: gray;
    transition: .5s;
    z-index: 100;
}
.preloader-fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .3s;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 5px solid #ccc;
    border-top-color: #3498db;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

header{

}
.header {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    z-index: 70;
    background-color: #fff;
    padding: 20px var(--container);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}
.header.active{
    background-color: #ED2B35;
}
.header.active .header-burger svg path:first-child{
    stroke: white;
}
.header.active .header-burger svg path:nth-of-type(2){
    stroke: white;
}
.header.active .header-contacts__callback{
    color: white;
    border-color: white;
}
.header.active .header-contacts__phone{
    color: white;
    border-color: white;
}
.header.active .header-logo svg path.letter{
    fill: white;
}
.header.active .header-logo svg path.first{
    fill: #191919;
}
.header.active .header-logo svg path.second{
    fill: white;
}
.header.active .header-socials svg rect{
    stroke: white;
    fill: #ED2B35;
}
.header.active .header-socials svg path{
    fill: white;
}
.header__nav {
    scrollbar-width: thin;             /* Firefox */
    scrollbar-color: black transparent;
}

/* Chrome, Edge, Safari */
.header__nav::-webkit-scrollbar {
    height: 3px;
}

.header__nav::-webkit-scrollbar-track {
    background: transparent;
}

.header__nav::-webkit-scrollbar-thumb {
    background-color: black;
    border-radius: 2px;
}

/* Убираем стрелки прокрутки (Chrome/Edge) */
.header__nav::-webkit-scrollbar-button {
    display: none;
}
.header-logo {flex-shrink: 0}
.header-nav {
    overflow-x: auto;
    white-space: nowrap;
    -ms-overflow-style: none;  /* для IE и Edge */
    scroll-direction: horizontal;
}
.header-nav ul {
    display: flex;
    gap: 10px 20px;

}
.header-nav ul::-webkit-scrollbar {
    display: none;             /* для Chrome, Safari и Opera */
}
.header-nav ul li {}
.header-nav ul li a {
    border: 1px solid #191919;
    border-radius: 100px;
    padding: 14px 20px;
    white-space: nowrap;
    display: block;
    line-height: 100%;
}
.header-links {
    display: flex;
    gap: 40px;
    align-items: center;
}
.header-socials {
    display: flex;
    gap: 16px;
}
.header-socials a {}
.header-socials a svg{
    display: block;
}
.header-contacts {
    display: flex;
    gap: 26px;
}
.header-contacts__phone {
    padding: 14px 20px;
    white-space: nowrap;
    border-radius: 100px;
    border: 1px solid #191919;

}
.header-contacts__callback {
    color: white;
    background-color: #191919;
    padding: 14px 20px;
    white-space: nowrap;
    border-radius: 100px;
    cursor: pointer;
}
.header-burger {
    display: none;
}
.header-burger svg{
    display: block;
    transition: .5s;
}
.header-burger svg path:first-child{
transition: .5s;
}
.header-burger svg path:nth-child(2) {
    transition: .5s;

}
.header-burger.active svg path:first-child{
    transform: rotate(45deg) translate(9px, -15px);
    transition: .5s;

}
.header-burger.active svg path:nth-child(2){
    transform: rotate(-45deg) translate(-22px, 1px);
    transition: .5s;

}
footer{
    margin-top: 100px;
}
.footer
{
    background-color: #9B9B9B;
    padding: 40px var(--container);
    display: flex;
    flex-direction: column;
    gap: 46px;
}

.footer-content
{
    display: flex;
    gap: 20px;
    justify-content: space-between;
    flex-wrap: wrap;

}

.footer-content__left
{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.footer-content__block
{
    display: flex;
    gap: 132px;
}

.footer-menu
{
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: fit-content;
}

.footer-menu li
{
    white-space: nowrap;
}

.footer-menu li a
{
    color: white;
    font-size: var(--medium-font);

}

.footer-links
{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.footer-phone
{
    color: white;
display: block;
}

.footer-mail
{
    color: white;
    text-transform: uppercase;
    display: block;

}

.footer-socials
{
    display: flex;
    gap: 16px;
}
.footer-socials > a{
    display: block;
    flex: 1 1;
    background-color: #fff;
    border-radius: 100px;
    padding: 14px 20px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-content__addresses
{
    display: flex;
    gap: 56px;
    margin-top: 10px;
    color: white;
    font-family: 'Manrope';
}

.footer-bottom
{
    font-family: 'Manrope';
    background-color: #F6F6F6;
    border-radius: 16px;
    padding: 20px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;

}

.footer-bottom__left
{

}

.footer-copyright
{
    display: flex;
    gap: 8px;
}

.footer-details
{
    display: flex;
    gap: 8px;
}

.footer-bottom__center
{

}

.footer-lp
{

}

.footer-bottom__right
{
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.footer-personal
{

}

.footer-policy
{

}

.scroll-button
{
    display: none;
    position: fixed;
    bottom: 30px;
    right: var(--container);
    z-index: 2;

}
.scroll-button.scroll
{
    display: block;
}
.modal-wrapper
{
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 15;
    height: 100vh;
    background-color: #06181E4D;
}
#callback-modal.active{
    display: block;
    backdrop-filter: blur(3px);
    z-index: 70;
}
#menu-modal{
    left: -100%;
    transition: .5s;
    display: block;
}
#menu-modal.active{
    backdrop-filter: blur(3px);
    z-index: 12;
    height: calc(100% - 116px);
    top: 116px;
    background-color: #ED2B35;
    left: 0;
    transition: .5s;
}
.menu-modal
{
padding: 30px var(--container) 0px;
}
.menu-modal .footer-socials{
    margin-top: 32px;
}
.mobile-menu
{

}

.mobile-menu li
{

}

.mobile-socials
{

}

.mobile-socials a
{

}
.modal-wrapper {}
.menu-modal {}
.mobile-menu {}
.mobile-menu li {}
.mobile-socials {}
.mobile-socials a {}
.scroll-button{
    display: none;
}
main{
    margin-top: 125px;
}
.benefits
{
    margin-top: 100px;
    padding: 0px var(--container);
}

.benefits-heading
{
    text-transform: uppercase;

}

.benefits-list
{
    margin-top: 32px;
    display: flex;
    gap: 24px;
}

.benefits-item
{
    flex: 1 1;
    border-radius: 16px;
    transition: .3s;
    padding: 20px 0px;
    background-color: #F6F6F6;
    position: relative;
    overflow: hidden;
}
.benefits-item-mask{
    display: none;
    position: absolute;
    background-color: black;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    opacity: 40%;
    transition: .3s;
}
.benefits-item__img
{
    width: 100%;
}

.benefits-item__name
{
    font-family: 'Manrope';
    margin-top: 20px;
    padding: 0px 20px;
    font-weight: 600;
}

.benefits-item__text
{
    font-family: 'Manrope';
    padding: 0px 20px;
    margin-top: 12px;
    font-size: var(--small-font);
}
.quiz
{
    padding: 40px;
    margin: 30px var(--container) 0px;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    background: linear-gradient(180deg, #FC3029 0%, #FC2922 100%);

}

.quiz-heading
{
    color: white;
    text-transform: uppercase;

}

.quiz-form
{
    display: flex;
    gap: 20px;
}
.quiz-form select{
    width: 266px;
    border-radius: 12px;
    border: 1px solid #C2C2C266;
    background-color: #fff;
    padding: 12px 16px;
    font-size: var(--small-font);
    font-family: 'Manrope';

}
.quiz-form input{
    width: 266px;
    border-radius: 12px;
    border: 1px solid #C2C2C266;
    background-color: #fff;
    padding: 12px 16px;
    font-size: var(--small-font);
    font-family: 'Manrope';
}
.quiz-form input::placeholder{
    color: #191919;

}
.quiz-body
{
    display: flex;
    gap: 32px;
}

.quiz-content
{
    border-radius: 16px;
    background-color: #fff;
    padding: 32px;
    display: flex;
    gap: 40px;
    align-items: center;
}

.quiz-content__summary
{
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.quiz-content__summary-text
{
    color: #4B4B4B;
    font-size: var(--medium-font);
}
.quiz-content__summary-total
{
    white-space: nowrap;
    font-size: 49px;
}
.quiz-content__list
{
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.quiz-content__item
{
    width: 320px;
    background-color: #C2C2C266;
    border-radius: 16px;
    padding: 16px;
    display: flex;
    box-sizing: border-box;
    justify-content: space-between;
}

.quiz-content__item-left
{
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.quiz-content__item-name
{
    color: #4B4B4B;
    font-size: var(--font-small);
}

.quiz-content__item-value
{
    font-size: var(--medium-font);
}

.quiz-content__item-image
{

}

.quiz-callback
{
    max-width: 488px;
    background-color: white;
    border-radius: 16px;
    width: 100%;
    padding: 20px;
    gap: 36px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-sizing: border-box;
}

.quiz-callback__header
{
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.quiz-callback__name
{
    font-size: var(--medium-font);
    font-weight: 600;
}

.quiz-callback__text
{
    color: #4B4B4B;
}

.quiz-callback__footer
{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.quiz-callback__btn
{
    background-color: #191919;
    border-radius: 100px;
    color: white;
    padding: 14px 20px;
    display: flex;
    width: fit-content;
    cursor: pointer;

}
.quiz-callback__btn svg{
    margin-left: 8px;
}

.services
{
    margin-top: 100px;
    padding: 0 var(--container);
    overflow-x: hidden;
    position: relative;
}

.services-heading
{
    text-transform: uppercase;
}

.services-list
{
    margin-top: 32px;
    padding-bottom: 16px;
}
.services-list .swiper-scrollbar{
    bottom: 0px;
    background-color: #F6F6F6;
    left: var(--container);
    right: var(--container);
    width: unset;
}
.services-list .swiper-scrollbar-drag{
    background-color: #ED2B35;
}
.services-list .swiper-wrapper{
    gap: unset;
}
.services-item
{
    border-radius: 16px;
    height: auto;
    width: calc((100% - 72px) / 4);
    box-sizing: border-box;
}
.services-item-inner{
    width: 100%;
    /*height: 100%;*/
    position: relative;
    transition: .5s;
    transform-style: preserve-3d;
}
.services-item-front
{
    background-color: #F6F6F6;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 12px;
    height: 100%;
    padding: 16px;
    -webkit-backface-visibility: hidden; /* Safari */
    backface-visibility: hidden;
    border-radius: 16px;
}

.services-item__header
{
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.services-item__img
{

}

.services-item__name
{
    font-family: 'Manrope';
    font-size: var(--medium-font);
    font-weight: 600;
}

.services-item__footer
{
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.services-item__footer ul{
    list-style: disc;
    margin-left: 16px;
}
.services-item__footer ul li::marker{
    color: #ED2B35;
}
.services-item__footer ul li:not(:first-of-type){
    margin-top: 8px;
}
.services-item__footer ul li{
    position: relative;
}
.services-item__description
{

}

.services-item__btn
{
    background-color: #191919;
    border-radius: 100px;
    color: white;
    text-align: center;
    padding: 14px 20px;
    font-family: 'Manrope';
    cursor: pointer;

}

.services-item-back
{
    background-color: #ED2B35;
    max-height: 100%;
    display: flex;
    flex-direction: column;
    padding: 16px;
    top: 0;
    gap: 20px;
    left: 0;
    position: absolute;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    border-radius: 16px;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform: rotateY(180deg);
    justify-content: space-between;
}
.services-item__content{
    overflow-y: auto;
}
.advantages
{
    margin: 100px var(--container) 0px;
}

.advantages-heading
{
    text-transform: uppercase;
}
.advantages-heading-mobile
{
    display: none;
    text-transform: uppercase;
}
.advantages-list
{
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.advantages-row{
    display: flex;
}
.advantages-list .advantages-row:first-of-type{
    gap: 24px;
}
.advantages-list .advantages-row:nth-of-type(2){
    gap: 24px;

}
.advantages-item
{

}
.advantages-list .advantages-row:first-of-type .advantages-item:first-of-type{
    width: calc((100% - 24px) / 2);
    border-radius: 24px;
    padding: unset;
    flex-shrink: 0;
}
.advantages-list .advantages-row:first-of-type .advantages-item:first-of-type .advantages-item__img{
    object-fit: cover;
    border-radius: 24px;
    height: 360px;
    margin: unset;
}
.advantages-list .advantages-row:first-of-type .advantages-item:not(first-of-type){
    border-radius: 16px;
    background-color: #F6F6F6;
    width: calc((50% - 24px) / 2);
    padding: 16px;

}

.advantages-list .advantages-row:nth-of-type(2) .advantages-item{
    border-radius: 16px;
    background-color: #F6F6F6;
    width: calc((50% - 24px) / 2);
    padding: 16px;

}
.advantages-list .advantages-row:nth-of-type(2) .advantages-item:nth-of-type(3){
    flex-shrink: 0;
    width: calc((100% - 24px) / 2);
    border-radius: 24px;
    box-sizing: border-box;

}
.advantages-list .advantages-row:nth-of-type(2) .advantages-item:nth-of-type(3) {

}
.advantages-item{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.advantages-item__img
{
    display: block;
    margin: 0 auto;
}

.advantages-item__name
{
    font-weight: 600;
    font-family: 'Manrope';
}

.advantages-item__text
{
    margin-top: 12px;
    font-family: 'Manrope';

}
.banner
{
    margin: 0px var(--container);
    display: flex;
    gap: 24px;
}

.banner-left
{
    width: 50%;
    margin-top: 80px;
}
.banner-left h1{
    text-transform: uppercase;
}
.banner-left h1 span{
    background-color: #ED2B35;
    color: white;
    border-radius: 16px;
    padding: 0px 10px;
}
.banner-left__heading-mobile
{
    display: none;
    color: white;
    text-transform: uppercase;
}

.banner-left__text
{
    margin-top: 20px;
}

.banner-left__btn
{
    margin-top: 100px;
    background-color: #191919;
    color: white;
    display: flex;
    align-items: center;
    width: fit-content;
    border-radius: 100px;
    padding: 16px 32px;
    font-size: var(--medium-font);
    cursor: pointer;
}

.banner-right
{
    width: 50%;

}

.banner-right__image
{
    border-radius: 16px;
    object-fit: cover;
}
.banner-right__image-mobile{
    display: none;
    object-fit: cover;
    border-radius: 16px;

}
.h-line{
    margin-top: 20px;
    background-color: #191919;
    overflow: hidden;
    padding: 16px 0px 16px 52px;
}
.h-line__list{
    display: flex;
    gap: 52px;
    align-items: center;
}
.h-line__list-item{
    text-transform: uppercase;
    color: white;
    position: relative;
}
.h-line__list-item:not(:first-of-type):before{
    content: '';
    position: absolute;
    display: block;
    width: 20px;
    height: 20px;
    background-color: #C2C2C2;
    opacity: 0.4;
    border-radius: 100px;
    top: 50%;
    transform: translateY(-50%);
    left: -36px;
}
.callback-modal
{
    position: relative;
    max-width: 824px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 32px;
    border-radius: 16px;
    box-sizing: border-box;
}
.callback-modal.red{
    background: linear-gradient(180deg, #FC3029 0%, #FC2922 100%);
}
.callback-modal.black{
    background-color: #191919;
}
.modal-header{
    position: relative;
}
.callback-heading
{
    text-transform: uppercase;
    color: white;
}
.modal-close{
    position: absolute;
    right: 0;
    top: 12px;
    right: 12px;
    cursor: pointer;
}
.modal-wrapper .callback-modal{
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}
.error{
    color: #191919;
}
.modal-wrapper .error{
    color: #ED2B35;
}
.callback-form
{

}
.form-body{
    display: flex;
    gap: 20px;
}
.form-body input{
    border-radius: 12px;
    border: 1px solid #C2C2C266;
    padding: 13px 16px;
    font-size: 16px;
}
.checkbox-wrapper
{
    display: flex;
    align-items: center;
    gap: 7px;
    box-sizing: border-box;
    position: relative;
    color: white;
    font-size: 10px;
}
.checkbox-wrapper input[type="checkbox"]{
    opacity: 0;
    position: absolute;
    width: auto;
}
.checkbox-wrapper label{
    position: relative;
    padding-left: 30px;
    cursor: pointer;
    display: inline-block;
    font-size: 10px;
}
.checkbox-wrapper label::before{
    border: 2px solid white;
    box-sizing: border-box;
    transform: translateY(-50%);
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 20px;
    height: 20px;
    border-radius: 3px;
    background-color: #fff;

}

.checkbox-wrapper input[type="checkbox"]:checked + label::after{
    transform: translateY(-50%) scale(1);
}
.checkbox-wrapper label::after {
    box-sizing: border-box;
    content: url("data:image/svg+xml,%0A%3Csvg width='12' height='10' viewBox='0 0 12 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 1.99961L10.6 0.599609L4 7.19961L1.4 4.59961L0 5.99961L4 9.99961L12 1.99961Z' fill='%230068B4'/%3E%3C/svg%3E%0A");
    position: absolute;
    left: 4px;
    top: 50%;
    transform: translateY(-50%) scale(0);
    border-radius: 1px;
    background-color: transparent;
    transition: .3s;
}

.checkbox-wrapper label a{
    color: white;
}
.form-footer{
    margin-top: 32px;
    display: flex;
    gap: 32px;
    align-items: center;
}
.form-footer button{
    background-color: #fff;
    border-radius: 100px;
    color: #191919;
    padding: 17px 22.5px;
    white-space: nowrap;
}

.reviews
{
    margin: 36px 0px;
    padding: 0px var(--container);
    overflow: hidden;
    position: relative;

}

.reviews-heading
{
    text-transform: uppercase;
}
.reviews-heading-mobile{
    text-transform: uppercase;
    display: none;
}
.reviews-list
{
    margin-top: 32px;
    position: relative;
    padding-bottom: 16px;
}
.reviews-list .swiper-wrapper{
    gap: 0px;

}
.reviews-list .swiper-scrollbar{
    bottom: 0px;
    background-color: #F6F6F6;
}
.reviews-list .swiper-scrollbar-drag{
    background-color: #ED2B35;
}
.swiper-wrapper
{

}

.reviews-item
{
    border-radius: 24px;
    border: 1px solid #C2C2C266;
    position: relative;
    background-color: #fff;
    height: 260px;
    box-sizing: border-box;
    overflow: hidden;

}
.reviews-item.show{
    height: auto;
    background-color: #F6F6F6;
}
.reviews-item__close
{
    position: absolute;
    right: 14px;
    top: 16px;
    z-index: 1;
    transition: .3s;

}
.reviews-item__close > svg{
    display: block;
}
.reviews-item__img
{
    position: absolute;
    object-fit: cover;
    top: 50%;
    transform: translateY(-50%);
}

.reviews-item__content
{
    margin: 100px 16px 0px;
    display: none;
    -webkit-line-clamp: 6; /* Количество строк */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.reviews-item.show .reviews-item__content{
    display: block;
}
.reviews-item.show .reviews-item__img{
    display: none;
}
.reviews-item.show .reviews-item__close{
    transform: rotate(45deg);
    transition: .3s;
}
.reviews-item.show .reviews-item__more{
    display: block;
}
.reviews-item__more
{
    margin: 12px 16px 16px;
    display: none;
    cursor: pointer;
    color: #ED2B35;
    text-decoration: underline;
}

.about
{
margin: 100px var(--container) 0px;
    border-radius: 24px;
    background-color: #F6F6F6;
    padding: 40px;
}

.about-top
{
    display: flex;
    gap: 64px;
}

.about-img
{
    max-width: 880px;
    border-radius: 24px;
}

.about-content
{
    max-width: 640px;
    padding-top: 22px;
    font-family: 'Manrope';
}
.about-content h2{
    text-transform: uppercase;
    margin-bottom: 32px;
}
.about-more-block
{
    display: none;
}

.about-more
{
margin-top: 8px;
    color: #ED2B35;
    text-decoration: underline;
    cursor: pointer;
}

.about-numbers
{
    margin-top: 80px;
}

.about-numbers__heading
{
    text-transform: uppercase;
}

.about-numbers__list
{
    margin-top: 32px;
    display: flex;
    gap: 20px;
}

.about-numbers__list-item
{
    background-color: #fff;
    border-radius: 16px;
    padding: 16px;
    width: calc((100% - 60px) / 4);
    display: flex;
    flex-direction: column;
    align-items: center;
    box-sizing: border-box;
}

.about-numbers__list-item__top
{
    display: flex;
    gap: 16px;
    align-items: center;
}
.about-numbers__list-item__top > div:nth-of-type(2){
    font-size: var(--medium-font);
}
.about-numbers__list-item__bottom
{
    max-width: 264px;
    margin-top: 12px;
    text-align: center;
    font-family: 'Manrope';
    color: #4B4B4B;
}
.workflow
{
    background-color: #191919;
    border-radius: 16px;
    padding: 40px;
    margin: 100px var(--container) 0px;
}

.workflow-heading
{
    text-transform: uppercase;
    color: white;

}

.workflow-list
{
    display: flex;
    margin-top: 32px;
    flex-wrap: wrap;
}

.workflow-line
{
    display: flex;
}

.workflow-item
{
    transition: .3s;
    display: flex;
    align-items: center;
    width: 55%;
    gap: 20px;
    position: relative;
}
.workflow-item-container{
    width: calc(100% / 2);
}
.workflow-item-container:nth-of-type(1){
    justify-content: left;
    display: flex;
    order: 4;
}
.workflow-item-container:nth-of-type(2){
    justify-content: right;
    display: flex;
    order: 1;
}
.workflow-item-container:nth-of-type(1) .workflow-item__marker{
    top: -21px;
    left: 0;
}
.workflow-item-container:nth-of-type(2) .workflow-item__marker{
    bottom: -24px;
    left: 0;
}
.workflow-item-container:nth-of-type(3){
    margin-top: 16px;
    order: 5;
}
.workflow-item-container:nth-of-type(4){
    margin-top: 16px;
    order: 2;
    justify-content: right;
    display: flex;
}
.workflow-item-container:nth-of-type(5){
    margin-top: 16px;
    order: 2;
    justify-content: right;
    display: flex;
}
.workflow-item-container:nth-of-type(4) .workflow-item__marker{
    bottom: -25px;
    left: 0;
}
.workflow-item-container:nth-of-type(3) .workflow-item__marker{
    top: -36px;
    left: 0;
}
.workflow-item__marker
{
    position: absolute;
    width: 24px;
    height: 24px;
    z-index: 2;
}
.workflow-item__marker svg{
    background-color: #191919;
}
.workflow-item__number
{

}

.workflow-item__content
{

}

.workflow-item__name
{
    font-family: 'Manrope';
    color: white;
    opacity: 0.6;
}

.workflow-item__text
{
font-family: 'Manrope';
    color: #F6F6F6;
    margin-top: 12px;
    opacity: 0.6;
}
.workflow-item.active .workflow-item__text{
    opacity: 1;
}
.workflow-item.active .workflow-item__name{
    opacity: 1;
}
.workflow-item.active .workflow-item__marker svg circle:nth-of-type(2){
    fill: #ED2B35;
}
.workflow-item.active .workflow-item__number svg path{
    fill: white;
}
.workflow-hr
{
    border-top: 1px solid white;
    width: 100%;
    margin: 8px 0px;
    order: 3;
}
.ss-main{
    font-family: 'Manrope';
    color: #191919;
    padding: 13px 16px;
}
.ss-main .ss-values .ss-single{
    font-size: var(--small-font);
    font-family: 'Manrope';
}
.ss-content .ss-list .ss-option{
    font-size: var(--small-font);
    font-family: 'Manrope';
}
@media (hover: hover){
    .benefits-item-mask{
        display: block;
    }
    .footer-menu li a:hover{
        color: #ED2B35;
    }
    .benefits-item:hover{
        transition: .3s;
        transform: translateY(-20px);
    }
    .benefits-item:hover .benefits-item__name{
        color: #ED2B35;
    }
    .benefits-item:hover .benefits-item-mask{
        opacity: 0;
        transition: .3s;
    }
    .footer-socials > a:hover {
        background-color: #ED2B35;
    }
    .footer-socials > a:hover svg path{
        fill: white;
    }
    .header-socials svg:hover rect{
        stroke: #ED2B35;
        fill: #ED2B35;
    }
    .header-socials svg:hover path{
        fill: white;
    }
    .services-item:hover .services-item-inner{
        transform: rotateY(180deg);
    }
    .services-item:hover .services-item__btn{
        background-color: white;
        color: #191919;
    }
    .services-item:hover .services-item-back{

    }
    .reviews-item:hover{
        background-color: #F6F6F6;
    }
    .reviews-item:hover .reviews-item__img{
display: none;
    }
    .reviews-item:hover .reviews-item__content{
        display: -webkit-box;
    }
    .reviews-item.show:hover .reviews-item__content{
        display: block;
    }
    .reviews-item:hover .reviews-item__more{
        display: block;
    }

}





@media (max-width: 1600px) {
    .about-img{
        max-width: unset;
        width: 50%;
        object-fit: contain;
    }
    .about-content{
        max-width: unset;
        width: 50%;
    }
    .about-numbers__list{
        flex-wrap: wrap;
    }
    .about-numbers__list-item{
        box-sizing: border-box;
        width: calc(50% - 20px);
    }
}
@media (max-width: 1440px) {
    .banner-right{
        z-index: 1;
        right: 0;
        display: flex;
        align-items: center;
    }
    .banner-left{
        z-index: 2;
    }
    .workflow-item{
        width: 70%;
    }
    .workflow-item-container:nth-of-type(4) .workflow-item__marker{
        right: 0;
        left: unset;
    }
    .workflow-item-container:nth-of-type(3) .workflow-item__marker{
        left: 50%;
    }
    .workflow-item-container:nth-of-type(2) .workflow-item__marker{
        left: 50%;
    }
    .workflow-item-container:nth-of-type(1) .workflow-item__marker{
        left: 0;
    }
}
@media (max-width: 1200px) {
    .banner-left__btn{
        margin-top: 10px;
    }
    .benefits-item{
        width: calc(50% - 12px);
        flex: unset;
    }
    .benefits-list{
        flex-wrap: wrap;
    }
    .quiz-body{
        flex-direction: column;
    }
    .quiz-callback{
        max-width: unset;
    }
    .advantages-row{
        flex-wrap: wrap;
    }
    .advantages-list .advantages-row:first-of-type .advantages-item:first-of-type{
        width: 100%;
    }
    .advantages-list .advantages-row:first-of-type .advantages-item:first-of-type .advantages-item__img{
        margin: unset;
    }
    .advantages-list .advantages-row:first-of-type .advantages-item:not(first-of-type){
        width: calc((100% - 24px) /2);
        box-sizing: border-box;
    }
    .advantages-list .advantages-row:nth-of-type(2) .advantages-item{
        width: calc((100% - 24px) /2);
        box-sizing: border-box;
    }
    .advantages-list .advantages-row:nth-of-type(2) .advantages-item:nth-of-type(3){
        width: 100%;
    }
}
@media (max-width: 1024px) {
    .banner-right__image{
        display: none;
    }
    .banner-right__image-mobile{
        display: block;
    }
    .banner-right{
        display: flex;
        justify-content: right;
    }

}
@media (max-width: 1023px) {
    :root{
        --container: 16px;
    }
    main{
        margin-top: 81px;
    }
    .header{
        padding: var(--container);
    }
    .header-nav{
        display: none;
    }
    .header-burger{
        display: block;
    }

    .header-contacts__callback {
        background-color: transparent;
        color: unset;
        border: 1px solid #191919;
    }
    .about-top{
        gap: 20px;
        flex-direction: column;
    }
    .about-img{
        width: unset;
    }
    .about-content{
        width: unset;
        padding-top: unset;
    }
    .quiz-content{
        flex-wrap: wrap;
        gap: 16px;
    }
    .about-content h2{
        margin-bottom: 20px;
    }

}
@media (max-width: 991px) {
    html{
        scroll-behavior: smooth;
        scroll-padding-top: 81px;
    }
    #menu-modal.active{
    top: 81px;
        height: calc(100% - 81px);
    }
    .workflow-item-container{
        width: unset;
    }
    .modal-wrapper .form-footer{
        flex-direction: column-reverse;
    }
    .workflow-item{
        width: unset;
        margin-left: 48px;
    }
    .workflow-item-container:nth-of-type(1){
        order: 1;
    }
    .workflow-item-container:nth-of-type(2){
        order: 2;
    }
    .workflow-item-container:nth-of-type(3){
        order: 3;
    }
    .workflow-item-container:nth-of-type(4){
        order: 4;
    }
    .workflow-item-container:nth-of-type(1) .workflow-item__marker{
        top: 50%;
        transform: translateY(-50%);
        left: -35px;
    }
    .workflow-item-container:nth-of-type(2) .workflow-item__marker{
        top: 50%;
        transform: translateY(-50%);
                left: -35px;
    }
    .workflow-item-container:nth-of-type(3) .workflow-item__marker{
        top: 50%;
        transform: translateY(-50%);
                left: -35px;
    }
    .workflow-item-container:nth-of-type(4) .workflow-item__marker{
        top: 50%;
        transform: translateY(-50%);
                left: -35px;
    }
    .workflow-item__number{
        width: 32px;
        height: 64px;
        flex-shrink: 0;
    }
    .workflow-list{
        flex-direction: column;
        gap: 95px;
        position: relative;
    }
    .header-nav{
        display: none;
    }
    .about-numbers{
        margin-top: 52px;
    }
    .quiz-body{
        gap: 20px;
    }
    .about{
        margin-top: 52px;
    }
    .quiz-callback{
        padding: 12px;
    }
    .h-line{
        padding: 16px 0px 16px 16px;
    }
    .header-logo svg{
        width: 99px;
        height: 44px;
        display: block;
    }
    footer .callback-modal{
        max-width: unset;
        border-radius: unset;
    }
    .footer-content{
        flex-direction: column-reverse;
        gap: 0px;
    }
    .benefits-item{
        padding: 16px 0px;
    }
    .benefits-item__name{
        padding: 0px 8px;
    }
    .benefits-item__text{
        padding: 0px 8px;

    }
    .quiz{
        padding: 20px 16px;
        gap: 20px;
    }
    .quiz-form{
        flex-wrap: wrap;
        gap: 16px;
    }
    .footer{
        padding: unset;
        gap: unset;
    }
    .footer-content__left{
        padding: 40px 12px;
    }
    .footer-bottom{
        border-radius: unset;
    }
    .footer-phone{
        font-size: 18px;
    }
    .footer-mail{
        font-size: 18px;
    }
    .form-body{
        flex-wrap: wrap;
    }
    .form-body input{
        flex: 1 1;
    }
    .footer-links{
        justify-content: unset;
        gap: 20px;
    }
    .footer-socials > a{
        width: 120px;
    }
    .quiz-content__list{
        justify-content: center;
    }
    .quiz-content{
        justify-content: center;
        padding: 30px 12px;
    }
    .benefits{
        margin-top: 52px;
    }
    .services{
        margin-top: 52px;
    }
    .workflow{
        margin-top: 52px;
        padding: 20px 12px 52px;
    }
    .advantages{
        margin-top: 52px;

    }
    .workflow-hr{
        width: 1px;
        background-color: #fff;
        position: absolute;
        left: 24px;
        top: 50%;
        transform: translateY(-50%);
    }

    .reviews{
        margin-top: 52px;

    }
    .quiz{
        margin: 52px var(--container) 0px;
    }
    .quiz-form input{
        width: 100%;
    }
    .quiz-form{
        flex-wrap: wrap;
    }
    .ss-main{
        width: 100%;
    }
    .about-top{

    }
}
@media (max-width: 767px) {
    .about{
        padding: unset;
        background-color: #fff;
        margin: 52px 0px 0px;

    }
    .modal-wrapper .form-footer button{
        width: 100%;
    }
    .modal-wrapper .callback-modal{
        width: calc(100% - var(--container));
    }
    .form-body input{
        flex: unset;
        width: 100%;
    }
    .about-content{
        margin: 0px var(--container);
    }
    .about-numbers{
        margin: 52px var(--container) 0px;
    }
    .about-img{
        border-radius: unset;
    }
    .about-numbers__list-item{
        background-color: #F6F6F6;
        width: 100%;
    }

    .about-numbers__list{
        margin-top: 20px;
        gap: 12px;
    }
    .header-socials{
        display: none;
    }
    .benefits-list{
        flex-wrap: nowrap;
        gap: 8px;
        flex-direction: column;
    }
    .benefits-item{
        width: 100%;
    }
    .banner-right__image-mobile{
        display: none;
    }
    .banner-right__image{
        display: block;
        object-fit: cover;
        height: 100%;
        width: 100%;
    }
    .banner-left{
        margin-bottom: 20px;
        width: 70%;
    }
    .banner-right{
        position: absolute;
        width: 100%;
        height: 100%;
        left: 0;
         top: 0;
    }
    .footer-content__block{
        flex-direction: column;
        gap: 32px;
    }
    .footer-links{
        flex-direction: column-reverse;
    }
    .footer-content__addresses{
        gap: 3px;
        flex-wrap: wrap;
        justify-content: space-between;
    }
    .banner-left h1{
        color: white;
    }
    .banner-left__text{
        color: white;
    }
    .banner{
        position: relative;
        margin: 0px;
        padding: 0px var(--container);
    }
}
@media (max-width: 576px) {
    .header-contacts__phone{
        display: none;
    }
    .reviews-heading
    {
        display: none;
    }
    .reviews-heading-mobile{
        display: block;
    }
    .workflow{
        margin: 52px 0px 0px;
        border-radius: 0px;
    }
    .advantages{
        margin-top: 0px;
    }
    .form-footer{
        flex-direction: column;
        gap: 26px;
    }
    .form-footer button{
        width: 100%;
    }
    .footer-bottom{
        gap: 24px;
    }
    .footer-bottom__left{
        display: flex;
        flex-direction: column;
        gap: 24px;
    }
    .footer-bottom__right{
        gap: 24px;
    }
    .advantages-list .advantages-row:first-of-type .advantages-item:not(first-of-type){
        width: 100%;
    }
    .advantages-list .advantages-row:nth-of-type(2) .advantages-item{
        width: 100%;
    }
    .advantages-list .advantages-row:first-of-type .advantages-item:first-of-type{
        margin: 0px -16px;
        border-radius: 0px;
        height: 360px;
        width: calc(100% + 32px);
    }
    .advantages-heading{
        display: none;
    }
    .advantages-heading-mobile{
        display: block;
        margin: 8px 0px;
    }
    .advantages-list .advantages-row:first-of-type{
        gap: 12px;
    }
    .advantages-list .advantages-row:nth-of-type(2){
        gap: 12px;
    }
    .advantages-list{
        gap: 12px;
        margin-top: 0px;
    }
    .advantages-item__name{
        margin-left: 56px;
        margin-top: 8px;
    }
    .advantages-item__img:not(:first-of-type){
        position: absolute;
    }
    .advantages-item__img{
        position: absolute;
    }
    .advantages-list .advantages-row:first-of-type .advantages-item:first-of-type .advantages-item__img{
        border-radius: unset;
    }
    .advantages-list .advantages-row:nth-of-type(2) .advantages-item:nth-of-type(3){
        border-radius: 16px;
    }
    footer{
        margin-top: 52px;
    }
}
@media (max-width: 480px) {
    .banner-left__btn{
        background-color: white;
        font-size: 16px;
        padding: 14px 20px;
        color: #191919;
        gap: 8px;
    }
    .footer-links__contacts{
        display: flex;
        flex-direction: column;
        gap: 6px;
    }
    .footer-details{
        display: block;
    }
    .footer-socials > a{
        width: auto;
        padding: 10px 20px;
    }
    footer .callback-modal{
        width: 100%;
    }
    .quiz-content__item{
        width: 100%;
    }
    .quiz-content__item-image{
        height: fit-content;
    }
    .benefits-item{
        padding: 16px 82px 16px 8px;
        position: relative;
        box-sizing: border-box;
    }
    .benefits-item__name{
        margin-top: unset;
    }
    .benefits-item__img{
        position: absolute;
        height: 66px;
        right: 0px;
        top: 50%;
        transform: translateY(-50%);
        width: unset;
    }
    .benefits-item__text{
        margin-top: 6px;
    }
    .banner{
        height: 460px;
    }
    .banner-left__btn svg path{
        stroke: #191919;
    }
    .banner-left__btn{
        margin-top: 32px;
    }
    .banner-left__text{
        display: none;
    }
    .banner-left__btn svg{
        width: 20px;
        height: 20px;
    }
    .about-numbers__list-item__top .h1{
        position: absolute;
        left: 12px;
        top: 12px;
    }
    .about-numbers__list-item{
        position: relative;
        align-items: unset;
    }
    .about-numbers__list-item__bottom{
        max-width: unset;
        text-align: unset;
    }
    .about-numbers__list-item__top > div:nth-of-type(2){
        font-weight: 600;
    }
    .banner-right__image-mobile{
        display: block;
        height: 100%;
        width: 100%;
        border-radius: unset;
    }
    .banner-left{
        width: unset;
        position: absolute;
        bottom: 20px;
        margin: unset;
    }
    .banner-right__image{
        display: none;
    }
    .banner-left h1{
        display: none;
    }
    .banner-left__heading-mobile{
        display: block;
    }
}

@keyframes spin {
    to { transform: rotate(360deg); }
}
