* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

:root {
    --main: #8BAFF7;
    --secondary: #F4F4F4;
    --black: #000;
    --white: #FFF;
    --btn-hover: #333;
    --transition: .3s all ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "CoFo Sona";
    font-size: 18px;
    font-weight: 400;
    line-height: normal;
    font-style: normal;
    color: var(--black);
    background-color: var(--white);
}

.homs-wrapper {
    overflow: hidden;
}

.homs-container {
    max-width: 100%;
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
    margin: 0 auto;
}

@media (min-width: 640px) {
    .homs-container {
        max-width: 600px;
    }
}

@media (min-width: 768px) {
    .homs-container {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .homs-container {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .homs-container {
        max-width: 1140px;
    }
}

@media (min-width: 1440px) {
    .homs-container {
        max-width: 1380px;
    }
}

@media (min-width: 1640px) {
    .homs-container {
        max-width: 1600px;
    }
}

.homs-hero-bg {
    max-width: 1860px;
    width: calc(100% - 60px);
    margin: 30px auto 50px auto;
    border-radius: 50px;
    background-color: var(--secondary);
    padding: 30px 0 0 0;
}
.homs-header{
    z-index: 3;
}
.homs-header__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 26px 30px;
    border-radius: 20px;
    background-color: var(--white);
    box-shadow: 0px 4px 41.4px 0px rgba(0, 0, 0, 0.03);
}

.homs-header__logo {
    display: flex;
    max-width: 160px;
}

.homs-header__logo img {
    width: 100%;
}

.homs-header__right {
    display: flex;
    align-items: center;
    gap: 228px;
}

.homs-header__nav-list {
    display: flex;
    align-items: center;
    gap: 56px;
    list-style: none;
}

.homs-header__burger {
    display: none;
}

.homs-header__nav-item {
    font-size: 20px;
    line-height: 120%;
    color: var(--black);
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    white-space: nowrap;
    transition: var(--transition);
}
.homs-header__nav-item:hover{
    text-decoration: underline;
}
.homs-header__nav-dropdown {
    position: relative;
}

.homs-header__inner-nav {
    opacity: 0;
    visibility: hidden;
    padding: 24px;
    border-radius: 26px;
    border: 1px solid #F0F0F0;
    background-color: var(--white);
    box-shadow: 0px 4px 41.4px 0px rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    gap: 16px;
    list-style: none;
    position: absolute;
    left: 50%;
    transform: translate(-50%, 0);
    top: 63px;
    transition: var(--transition);
}

.homs-header__nav-dropdown:hover .homs-header__inner-nav {
    top: 79px;
    opacity: 1;
    visibility: visible;
}

.homs-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 41px;
    border: 1px solid var(--black);
    font-family: inherit;
    font-weight: 400;
    line-height: 120%;
    text-decoration: none;
    outline: none;
    transition: var(--transition);
}

.btn-default {
    color: var(--black);
}

.btn-default:hover {
    color: var(--white);
    background-color: var(--black);
}

.btn-primary {
    color: var(--white);
    background-color: var(--black);
}

.btn-primary:hover {
    color: var(--white);
    background-color: var(--btn-hover);
    border-color: var(--btn-hover);
}

.btn-big {
    padding: 24px 39px;
    font-size: 24px;
}

.btn-small {
    font-size: 20px;
    padding: 11px 18px;
    border: 2px solid rgba(0, 0, 0, 0.05);
}

.btn-default.btn-small:hover {
    border-color: var(--black);
}

.homs-header__actions {
    display: flex;
    gap: 16px;
}


/* HERO */
.homs-hero {
    padding: 50px 0 0 0;
}

.homs-hero-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 0 60px 0;
}

.homs-hero__title {
    max-width: 1116px;
    font-size: 90px;
    font-weight: 700;
    line-height: 100%;
    color: var(--black);
    text-align: center;
}

.homs-hero__title br {
    display: none;
}

.homs-hero__title span {
    color: var(--white);
    border-radius: 20px;
    background-color: var(--main);
    padding: 0 12px 6px;
    display: inline-flex;
    line-height: 110%;
}

.homs-hero__desc {
    font-size: 28px;
    line-height: 120%;
    letter-spacing: -0.8px;
    color: var(--black);
    text-align: center;
}

.homs-hero__title+.homs-hero__desc {
    margin: 26px 0 0 0;
}

.homs-hero__actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.homs-hero__desc+.homs-hero__actions {
    margin: 50px 0 0 0;
}

.homs-hero__btns {
    display: flex;
    gap: 24px;
}

.homs-hero__btns .homs-btn {
    height: 80px;
    width: 226px;
}

.homs-hero-btn__desc {
    letter-spacing: 0.8px;
    color: rgba(0, 0, 0, 0.40);
    margin: 0 0 0 14px;
}

.homs-hero-bottom {
    position: relative;
    display: flex;
    justify-content: center;
}

.homs-hero__left {
    position: absolute;
    z-index: 1;
    bottom: 0px;
    left: 6.5%;
}
.homs-hero__right {
    position: absolute;
    z-index: 1;
    bottom: 0px;
    right: 4.5%;
}
.homs-hero__left2,
.homs-hero__right2{
    display: none;
}

/* partners */
.homs-partners {
    margin: 0 0 210px 0;
}

.homs-partners__row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

/* STEPS */
.homs-steps {
    margin: 0 0 100px 0;
}

.homs-steps-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 60px;
}

.homs-title {
    font-size: 66px;
    font-weight: 700;
    line-height: 100%;
    color: var(--black);
    text-align: center;
}

.homs-steps__desc {
    font-size: 40px;
    font-weight: 400;
    line-height: 120%;
    color: var(--black);
    max-width: 1197px;
}

.homs-steps__desc span {
    border-radius: 12px;
    background: #8BAFF7;
    font-weight: 600;
    color: var(--white);
    padding: 0 7px 2px;
    white-space: nowrap;
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
}

.homs-steps__desc br {
    display: none;
}

.homs-link {
    display: inline-flex;
    font-size: 24px;
    font-weight: 400;
    line-height: 120%;
    color: var(--black);
    transition: var(--transition);
}

.homs-link:hover {
    color: var(--main);
}

/* tab */
.homs-tabs {
    margin: 0 0 200px 0;
}

.homs-tabs__nav {
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin: 0 0 65px;

}

.homs-tabs__btn {
    width: 25%;
    background: none;
    border: none;
    font-family: inherit;
    font-size: 24px;
    line-height: 120%;
    padding: 24px 30px;
    cursor: pointer;
    color: var(--black);
    border-bottom: 2px solid var(--secondary);
    transition: var(--transition);
}

.homs-tabs__btn.active {
    color: var(--main);
    border-color: var(--main);
}

.homs-tabs__content {
    position: relative;
}

.homs-tabs__pane {
    display: none;
    transition: opacity 0.3s ease;
}

.homs-tabs__pane.active {
    display: block;
}

.homs-tabs__row {
    display: flex;
    align-items: center;
    gap: 60px;
}

.homs-tabs__image {
    width: calc(50% - 30px);
}

.homs-tabs__text {
    width: calc(50% - 30px);
}

.homs-tabs__image img {
    max-width: 100%;
    height: auto;
}

.homs-tabs__title {
    font-size: 36px;
    font-weight: 700;
    line-height: 110%;
    margin-bottom: 24px;
}

.homs-tabs__desc {
    font-size: 28px;
    line-height: 120%;
}

.homs-tabs__text .homs-link {
    margin: 24px 0 0 0;
}


/* QUALITY */

.homs-quality {
    text-align: center;
    margin: 0 0 200px 0;
}

.homs-quality .homs-title {
    margin: 0 0 60px 0;
}

.homs-quality__subtitle {
    font-size: 40px;
    line-height: 130%;
    max-width: 1171px;
    margin: 0 auto 100px;
}

.homs-quality__subtitle span {
    background-color: var(--main);
    color: var(--white);
    padding: 0 12px 6px;
    border-radius: 12px;
    font-weight: 600;
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
}

.homs-quality__grid {
    display: grid;
    grid-template-columns: repeat(2, 2fr);
    gap: 80px 40px;
}

.homs-quality__item {
    text-align: left;
}

.homs-quality__icon {
    width: 80px;
    height: 80px;
    margin-bottom: 32px;
}

.homs-quality__item-title {
    font-size: 36px;
    font-weight: 700;
    line-height: 110%;
    margin-bottom: 24px;
}

.homs-quality__item-desc {
    font-size: 28px;
    line-height: 116%;
    color: var(--black);
}

.homs-quality__item:nth-child(2) .homs-quality__item-desc {
    max-width: 750px;
}

.homs-quality__item:nth-child(3) .homs-quality__item-desc {
    max-width: 620px;
}

.homs-quality__item:nth-child(4) .homs-quality__item-desc {
    width: 101%;
}

/* chat card */
.homs-chat_section {
    margin: 0 0 200px 0;
}

.homs-chat-card {
    background-color: var(--white);
    border-radius: 50px;
    border: 2px solid var(--secondary);
}

.homs-chat-card__header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    background-color: var(--secondary);
    padding: 32px 0;
    border-radius: 48px 48px 0 0;
}

.homs-chat-card__avatar {
    width: 93px;
    height: 93px;
    border-radius: 50%;
    object-fit: cover;
}

.homs-chat-card__name {
    font-size: 28px;
    line-height: 120%;
    color: var(--black);
}

.homs-chat-card__body {
    position: relative;
    padding: 60px 164px 188px 178px;
}

.homs-chat-card__message {
    background-color: var(--secondary);
    border-radius: 50px;
    padding: 40px 40px;
    font-size: 36px;
    line-height: 120%;
    letter-spacing: -0.7px;
    max-width: 874px;
}
.homs-chat-card__message br{
    display: none;
}
.homs-chat-card__button {
    font-family: inherit;
    font-size: 24px;
    line-height: 120%;
    background-color: var(--main);
    color: var(--white);
    position: absolute;
    right: 176px;
    bottom: 63px;
    padding: 31.6px 37px;
    border-radius: 50px;
    box-shadow: -121px 106px 64px 0px rgba(0, 0, 0, 0.01);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    z-index: 1;
}

.homs-chat-card__button::after {
    position: absolute;
    content: '';
    width: 58px;
    height: 59px;
    bottom: 0;
    right: -16px;
    z-index: -1;
    background-image: url(./wp-content/themes/yasna/assets/images/icon/card__button-union.svg);
    background-repeat: no-repeat;
    background-size: 100%;
}

.homs-chat-card__button:hover {
    transform: scale(1.1);
}

/* testimonials */

.homs-testimonials {
    text-align: center;
    margin: 0 0 200px 0;
}


.homs-testimonials__title {
    font-size: 20px;
    line-height: 120%;
    color: var(--black);
    background-color: var(--secondary);
    padding: 8px 14px;
    display: inline-block;
    border-radius: 999px;
    margin-bottom: 50px;
}

.homs-testimonials__list {
    display: grid;
    grid-template-columns: repeat(3, 3fr);
    gap: 40px;
}

.homs-testimonials__item {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 32px;
    height: 100%;
    text-align: left;
    padding: 40px 35px 38px 40px;
    border-radius: 34px;
    border: 2px solid var(--secondary);
}

.homs-testimonials__icon {
    height: 48px;
    width: auto;
    align-self: flex-start;
}

.homs-testimonials__quote {
    font-size: 36px;
    line-height: 110%;
    font-weight: 700;
    color: #000;
}
.homs-testimonials__quote br{
    display: none;
}
.homs-testimonials__author {
    display: flex;
    align-items: center;
    gap: 24px;
}

.homs-testimonials__avatar {
    width: 81px;
    height: 81px;
    border-radius: 12px;
    object-fit: cover;
}

.homs-testimonials__info {
    text-align: left;
}

.homs-testimonials__name {
    font-size: 28px;
    line-height: 120%;
    margin: 0 0 8px 0;
}

.homs-testimonials__role {
    font-size: 20px;
}


/* benefits */
.homs-benefits {
    margin: 0 0 200px 0;
}

.homs-benefits__wrapper {
    position: relative;
    width: 100%;
    max-width: calc(100% - 60px);
    margin: 0 auto;
    background-color: var(--secondary);
    border-radius: 50px;
    border: 2px solid var(--secondary);
    padding: 80px 0;
    z-index: 1;
}

.benefits-photo {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: -1;
    display: block;
    margin: 0 0 -2px 0;
}

.homs-benefits .homs-title {
    margin: 0 0 60px 0;
}

.homs-benefits__description {
    text-align: center;
    font-size: 40px;
    line-height: 140%;
    max-width: 1260px;
    margin: 0 auto 76px;
}

.homs-benefits__highlight {
    background-color: var(--main);
    color: var(--white);
    font-weight: 600;
    padding: 0 6px 2px;
    border-radius: 12px;
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
}

.homs-benefits__features {
    display: flex;
    justify-content: flex-end;
    gap: 40px;
    flex-wrap: wrap;
}

.homs-benefits__feature {
    background-color: #fff;
    border-radius: 34px;
    padding: 40px;
    box-shadow: 0px -5px 68.5px -14px rgba(0, 0, 0, 0.10);
    max-width: 405px;
    text-align: left;
}

.homs-benefits__icon {
    width: 60px;
    height: 60px;
    margin: 0 0 32px 0;
}

.homs-benefits__icon img {
    width: 100%;
}

.homs-benefits__feature-title {
    font-size: 36px;
    line-height: 110%;
    font-weight: 700;
    margin-bottom: 24px;
}

.homs-benefits__feature-text {
    font-size: 28px;
    line-height: 120%;
}

.homs-exploratory {
    margin: 0 0 200px 0;
}

@media (min-width: 1442px) {
    .homs-testimonials:has(+.homs-partners) {
        margin: 0 0 220px 0;
    }

    .homs-testimonials+.homs-partners {
        margin: 0 0 200px 0;
    }
}

.homs-exploratory .homs-title {
    margin: 0 0 60px 0;
}

.homs-exploratory__subtitle {
    font-size: 40px;
    max-width: 1315px;
    margin: 0 auto 60px;
    line-height: 140%;
    text-align: center;
}
.homs-exploratory__subtitle br{
    display: none;
}
.homs-exploratory__highlight {
    background-color: var(--main);
    color: var(--white);
    font-weight: 600;
    padding: 0 6px 2px;
    border-radius: 12px;
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
}

.homs-exploratory__playbook {
    margin-bottom: 100px;
    text-align: center;
}

.homs-exploratory__grid {
    display: grid;
    grid-template-columns: repeat(3, 3fr);
    gap: 40px;
    margin-bottom: 60px;
}

.homs-exploratory__card {
    text-align: center;
}

.homs-exploratory-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 0 35px 0;
}

.homs-exploratory__card-title {
    font-size: 40px;
    line-height: 120%;
    font-weight: 700;
    margin-bottom: 24px;
}

.homs-exploratory__card-text {
    font-size: 28px;
    line-height: 123%;
}

.homs-exploratory__cta {
    margin-top: 20px;
    text-align: center;
}

.homs-exploratory__button {
    display: inline-flex;
    justify-content: center;
    background-color: var(--white);
    border: 1px solid var(--black);
    padding: 25px 40px;
    border-radius: 41px;
    font-size: 24px;
    line-height: 117%;
    cursor: pointer;
    transition: background 0.3s ease;
    color: var(--black);
    text-decoration: none;
}

.homs-exploratory__button:hover {
    background-color: var(--black);
    color: var(--white);
}

.homs-data {
    margin: 0 0 200px 0;
}

.homs-data .homs-title {
    margin: 0 0 60px 0;
}

.homs-section__desc {
    font-size: 40px;
    line-height: 120%;
    margin: 0 auto 60px auto;
    text-align: center;
}
.homs-section__desc br{
    display: none;
}
.homs-data .homs-section__desc {
    max-width: 1245px;
}

.homs-section__desc span {
    display: inline-block;
    font-weight: 600;
    background-color: var(--main);
    color: var(--white);
    border-radius: 12px;
    padding: 2px 6px;
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
}

.homs-link__wrap {
    text-align: center;
}

/* FEATURED */
.homs-features{
    margin: 0 0 200px 0;
}
.homs-features .homs-title {
    margin-bottom: 60px;
}

.homs-features__grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 60px;
}

.homs-features__group {
    background: var(--white);
    border-radius: 34px;
    padding: 40px 39px;
}

.homs-features__group:first-child,
.homs-features__group:last-child{
    width: calc(58.5% - 20px);
    background-color: var(--secondary);
    box-shadow: -121px 106px 64px 0px rgba(0, 0, 0, 0.01);
}
.homs-features__group:nth-child(2),
.homs-features__group:nth-child(3){
    width: calc(41.5% - 20px);
    border: 2px solid var(--secondary);
    box-shadow: -121px 106px 64px 0px rgba(0, 0, 0, 0.01);
}

.homs-features__group-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 25px;
    text-align: center;
}

.homs-features__list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 20px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.homs-features__item {
    background-color: #fff;
    padding: 14.5px 20px;
    border-radius: 400px;
    font-size: 28px;
    line-height: 120%;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    position: relative;
}
.homs-features__group:nth-child(2) .homs-features__item,
.homs-features__group:nth-child(3) .homs-features__item{
    background-color: var(--secondary);
}

.homs-features__tag {
    position: absolute;
    right: -8px;
    top: -12px;
    transform: rotate(15deg);
    background-color: #EDA16A;
    color: var(--white);
    font-size: 18px;
    line-height: 120%;
    padding: 5px 10px;
    border-radius: 400px;
}

.homs-features__link {
    display: block;
    text-align: center;
    font-weight: 500;
    text-decoration: underline;
    font-size: 0.95rem;
    color: #007aff;
}
.homs-advantage{
    margin: 0 0 200px 0;
}
.homs-advantage__wrapper{
    max-width: calc(100% - 60px);
    margin: 0 auto;
    background-color: var(--secondary);
    border-radius: 50px;
    padding: 80px 0 0 0;
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.homs-advantage .homs-container{
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.homs-advantage__title{
    font-size: 90px;
    line-height: 100%;
    font-weight: 700;
    margin: 0 0 50px 0;
}
.homs-advantage__actions{
    width: max-content;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    margin: 0 0 18px 0;
}
.homs-advantage__subtext{
    font-size: 20px;
    color: rgba(0, 0, 0, 0.40);
    width: 50%;
}

.homs-hero__map-layer{
    margin: 50px 0 0 0;
}
.homs-advantage__person{
    display: block;
}
.homs-advantage__bg{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}
.homs-advantage__bg2{
    display: none;
}
.homs-advantage__pin{
    position: absolute;
    z-index: -1;
}
.homs-advantage__pin:nth-child(1){
    left: 11.5%;
    bottom: 67%;
}
.homs-advantage__pin:nth-child(2){
    left: 27%;
    bottom: 51%;
}
.homs-advantage__pin:nth-child(3){
    left: 16%;
    bottom: 39%;
}
.homs-advantage__pin:nth-child(4){
    left: 28%;
    bottom: 16%;
}
.homs-advantage__pin:nth-child(5){
    right: 30%;
    bottom: 58%;
}
.homs-advantage__pin:nth-child(6){
    right: 7%;
    bottom: 54%;
}
.homs-advantage__pin:nth-child(7){
    right: 22%;
    bottom: 37%;
}
.homs-advantage__pin:nth-child(8){
    right: 15%;
    bottom: 11%;    
}


/* footer */

.homs-footer {
    padding: 0 0 30px;
    position: relative;
    font-size: 0.95rem;
    color: var(--black);
}

.homs-footer__logo {
    width: 160px;
}
.homs-footer__logo img{
    width: 100%;
}

.homs-footer__top {
    display: flex;
    flex-direction: column;
    gap: 60px;
    margin: 0 0 60px 0;
}

.homs-footer__columns {
    display: flex;
    align-items: flex-start;
    gap: 123px;
}

.homs-footer__column {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 24px 40px;
}
.homs-footer__column:first-child{
    max-width: 500px;
}
.homs-footer__column:first-child li{
    width: calc(50% - 20px);
}
.homs-footer__column:last-child li{
    width: 138px;
}
.homs-footer__right .homs-footer__column{
    flex-direction: column;
    width: 138px;
    flex: 0 0 auto;
}
.homs-footer__right .homs-footer__column li{
    width: 100%;
}
.homs-footer__right{
    display: flex;
    gap: 40px;
    align-items: flex-start;
}
.homs-footer__inner{
    display: flex;
    flex-direction: column;
    gap: 22px;
    flex-wrap: wrap;
    align-items: flex-start;
}

.homs-footer__column a,
.homs-footer__inner a,
.homs-footer__inner-column a {
    font-size: 20px;
    line-height: 120%;
    color: var(--black);
    text-decoration: none;
    transition: var(--transition);
}
.homs-footer__inner-column a{
    color: rgba(0, 0, 0, 0.40);
}
.homs-footer__column a:hover,
.homs-footer__inner a:hover,
.homs-footer__inner-column a:hover{
    text-decoration: underline;
}

.homs-footer__column a:hover {
    color: #555;
}
.homs-footer__inner-column{
    list-style: none;
    display: grid;
    gap: 25px 44px;
    grid-template-columns: repeat(4, 4fr);
}
.homs-logo__big{
    width: 100%;
    height: auto;
}
.homs-footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    border-top: 2px solid var(--secondary);
    padding-top: 28px;
}

.homs-footer__copyright {
    font-size: 20px;
    line-height: 120%;
    color: var(--black);
}
.homs-footer__socials{
    display: flex;
    gap: 16px;
}
.homs-footer__socials a {
    display: flex;
    width: 50px;
    height: 50px;
}

.homs-footer__socials img {
    width: 100%;
}
@media (max-width: 1640px) {
    .homs-hero-bg {
        width: calc(100% - 40px);
        margin: 20px auto 50px auto;
        border-radius: 44px;
    }

    .homs-header__row {
        padding: 21px 24px;
    }

    .homs-header__logo {
        max-width: 140px;
    }

    .homs-header__nav-list {
        gap: 50px;
    }

    .homs-header__nav-item {
        font-size: 18px;
    }

    .homs-header__right {
        gap: 185px;
    }
    .homs-header__actions {
        gap: 12px;
    }
    .btn-small{
        padding: 11px 16px;
    }

    .homs-header__inner-nav {
        gap: 12px;
        padding: 20px;
        border-radius: 22px;
    }

    .btn-small {
        font-size: 18px;
    }

    .homs-hero__title {
        font-size: 78px;
    }

    .homs-hero__desc {
        font-size: 24px;
    }

    .homs-hero__btns .homs-btn {
        height: 74px;
        width: 197px;
    }

    .btn-big {
        padding: 19px 33px;
        font-size: 22px;
    }

    .homs-hero-btn__desc {
        letter-spacing: -0.2px;
        margin: 0 0 0 9px;
    }

    .homs-hero__left {
        width: 39%;
        left: 8%;
    }

    .homs-hero__phone {
        width: 28%;
        margin: -1% 2% 0 0;
    }

    .homs-hero__right {
        width: 41%;
        right: 8%;
    }

    .homs-partners__row img:nth-child(1) {
        width: 151px;
    }

    .homs-partners__row img:nth-child(2) {
        width: 150px;
    }

    .homs-partners__row img:nth-child(3) {
        width: 106px;
    }

    .homs-partners__row img:nth-child(4) {
        width: 95px;
    }

    .homs-partners__row img:nth-child(5) {
        width: 93px;
    }

    .homs-partners__row img:nth-child(6) {
        width: 108px;
    }

    .homs-partners__row img:nth-child(7) {
        width: 128px;
    }

    .homs-partners__row img:nth-child(8) {
        width: 108px;
    }

    .homs-partners {
        margin: 0 0 170px 0;
    }

    .homs-steps {
        margin: 0 0 70px 0;
    }

    .homs-title {
        font-size: 56px;
    }

    .homs-steps__desc {
        font-size: 34px;
        max-width: 1032px;
    }

    .homs-steps-row {
        gap: 50px;
    }

    .homs-steps__desc span {
        border-radius: 10px;
    }

    .homs-link {
        font-size: 22px;
    }

    .homs-tabs {
        margin: 0 0 170px 0;
    }

    .homs-tabs__nav {
        margin: 0 0 50px 0;
    }

    .homs-tabs__btn {
        font-size: 20px;
        padding: 23px 30px;
    }

    .homs-tabs__row {
        gap: 50px;
    }

    .homs-tabs__title {
        font-size: 32px;
        margin: 0 0 20px 0;
    }

    .homs-tabs__desc {
        font-size: 24px;
    }

    .homs-tabs__text .homs-link {
        margin: 20px 0 0 0;
    }

    .homs-tabs__image {
        width: calc(51% - 25px);
    }

    .homs-tabs__text {
        width: calc(49% - 25px);
    }


    .homs-quality {
        margin: 0 0 170px 0;
    }

    .homs-quality .homs-title {
        margin: 0 0 46px 0;
    }

    .homs-quality__subtitle {
        font-size: 34px;
        max-width: 1120px;
        margin: 0 auto 65px;
    }

    .homs-quality__grid {
        gap: 70px;
    }

    .homs-quality__icon {
        width: 70px;
        height: 70px;
        margin-bottom: 28px;
    }

    .homs-quality__item-title {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .homs-quality__item-desc {
        font-size: 24px;
    }

    .homs-quality__item:nth-child(3) .homs-quality__item-desc {
        max-width: 520px;
    }

    .homs-quality__item:nth-child(4) .homs-quality__item-desc {
        width: 103%;
    }

    .homs-chat-card__header {
        padding: 28px 0;
        gap: 17px;
    }

    .homs-chat-card__name {
        font-size: 24px;
    }

    .homs-chat-card__avatar {
        width: 80px;
        height: 80px;
    }

    .homs-chat-card__body {
        padding: 48px 0 165px 155px;
    }

    .homs-chat-card__message {
        max-width: 760px;
        padding: 34px;
        font-size: 32px;
    }

    .homs-chat-card__button {
        font-size: 20px;
        right: 152px;
        bottom: 48px;
        padding: 28.6px 32px;
    }

    .homs-chat-card__button::after {
        right: -14px;
    }


    .homs-chat_section {
        margin: 0 0 170px 0;
    }

    .homs-testimonials {
        margin: 0 0 170px 0;
    }

    .homs-testimonials__title {
        font-size: 16px;
        padding: 7px 12px;
    }

    .homs-testimonials__list {
        gap: 34px;
    }

    .homs-testimonials__item {
        padding: 36px 10px 30px 34px;
        gap: 30px;
    }

    .homs-testimonials__icon {
        height: 48px;
    }

    .homs-testimonials__quote {
        font-size: 32px;
    }

    .homs-testimonials__avatar {
        width: 70px;
        height: 70px;
        border-radius: 10.5px;
    }

    .homs-testimonials__author {
        gap: 20px;
    }

    .homs-testimonials__name {
        font-size: 24px;
        margin: 0 0 7px 0;
    }

    .homs-testimonials__role {
        font-size: 16px;
    }

    .homs-benefits {
        margin: 0 0 170px 0;
    }

    .homs-benefits__wrapper {
        max-width: calc(100% - 40px);
        border-radius: 44px;
        padding: 70px 0;
    }

    .homs-benefits .homs-title {
        margin: 0 0 50px 0;
    }

    .homs-benefits__description {
        font-size: 34px;
        max-width: 995px;
        margin: 0 auto 70px;
    }

    .homs-benefits__features {
        gap: 34px;
    }

    .homs-benefits__feature {
        width: 352px;
        padding: 34px;
        border-radius: 30px;
    }

    .homs-benefits__icon {
        width: 54px;
        height: 54px;
        margin: 0 0 28px 0;
    }

    .homs-benefits__feature-title {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .homs-benefits__feature-text {
        font-size: 24px;
    }

    .benefits-photo {
        left: -6%;
        width: 46%;
    }

    .homs-exploratory {
        margin: 0 0 170px 0;
    }

    .homs-exploratory .homs-title {
        margin: 0 0 50px 0;
    }

    .homs-exploratory__subtitle {
        font-size: 34px;
        max-width: 1168px;
        margin: 0 auto 50px;
    }

    .homs-exploratory__highlight {
        border-radius: 10px;
    }

    .homs-exploratory__playbook {
        margin-bottom: 70px;
    }

    .homs-exploratory__grid {
        margin-bottom: 50px;
    }

    .homs-exploratory-img {
        width: 70px;
        height: 70px;
        margin: 0 0 34px 0;
    }

    .homs-exploratory__card-title {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .homs-exploratory__card-text {
        font-size: 24px;
        line-height: 119%;
    }

    .homs-exploratory__button {
        padding: 23px 34px;
        font-size: 22px;
    }

    .homs-data {
        margin: 0 0 170px 0;
    }

    .homs-data .homs-title {
        margin: 0 0 50px 0;
    }

    .homs-data .homs-section__desc {
        max-width: 1150px;
    }

    .homs-section__desc {
        font-size: 34px;
        margin: 0 auto 50px auto;
    }
    .homs-features{
        margin: 0 0 170px 0;
    }
    .homs-features__group{
        padding: 34px 51px;
    }
    .homs-features__group-title {
        font-size: 32px;
    }
    .homs-features__list{
        gap: 16px;
    }
    .homs-features__item{
        font-size: 20.9px;
        padding: 10.5px 16px;
        gap: 7px;
    }
    .homs-features__item svg{
        width: 17px;
        height: 17px;
    }
    .homs-features__tag{
        font-size: 13px;
    }
    .homs-features .homs-title {
        margin-bottom: 52px;
    }
    .homs-features__grid{
        gap: 32px 40px;
        margin-bottom: 48px;
    }

    .homs-advantage {
        margin: 0 0 170px 0;
    }
    .homs-advantage__wrapper{
        max-width: calc(100% - 40px);
        padding: 70px 0 0 0;
        border-radius: 44px;
    }
    .homs-advantage__title {
        font-size: 78px;
    }
    .homs-advantage__actions{
        gap: 20px;
        margin: 0 0 13px 0;
    }
    .homs-hero__map-layer {
        margin: 46px 0 0 0;
    }
    .homs-advantage__pin {
        width: 72px;
        height: 90px;
    }
    .homs-advantage__person {
        display: block;
        width: 73%;
        margin: 0 auto;
    }
    .homs-advantage__pin:nth-child(1) {
        left: 9.5%;
        bottom: 61%;
    }
    .homs-advantage__pin:nth-child(2) {
        left: 25%;
        bottom: 46%;
    }
    .homs-advantage__pin:nth-child(3) {
        left: 14%;
        bottom: 33%;
    }
    .homs-advantage__pin:nth-child(4) {
        left: 26%;
        bottom: 10%;
    }
    .homs-advantage__pin:nth-child(5) {
        right: 30%;
        bottom: 52%;
    }
    .homs-advantage__pin:nth-child(6) {
        right: 6%;
        bottom: 48%;
    }
    .homs-advantage__pin:nth-child(7) {
        right: 21%;
        bottom: 31%;
    }
    .homs-advantage__pin:nth-child(8) {
        right: 14%;
        bottom: 4%;
    }
    .homs-advantage__subtext {
        font-size: 18px;
    }
    .homs-footer__logo {
        width: 140px;
    }
    .homs-footer__top{
        gap: 48px;
        margin: 0 0 46px 0;
    }
    .homs-footer__column a, .homs-footer__inner a, .homs-footer__inner-column a {
        font-size: 18px;
    }
    .homs-footer__columns{
        gap: 84px;
    }
    .homs-footer__inner-column{
        gap: 25px 35px;
    }
    .homs-footer__right .homs-footer__column{
        width: 88px;
    }
    .homs-footer__copyright {
        font-size: 18px;
    }
    .homs-footer__socials {
        gap: 12px;
    }
    .homs-footer__socials a {
        width: 44px;
        height: 44px;
    }
    .homs-footer__bottom{
        padding-top: 20px;
        margin: 6px 0 0 0;
    }
    .homs-footer{
        padding: 0 0 23px 0;
    }
    .homs-footer__column{
        gap: 23px 4px;
    }
    .homs-footer__column:first-child {
        max-width: 490px;
    }
    .homs-footer__right{
        gap: 25px;
    }
}

@media (max-width: 1439px) {
    .homs-header__logo {
        max-width: 120px;
    }

    .homs-header__right {
        gap: 186px;
    }

    .homs-hero__title {
        font-size: 78px;
    }

    .homs-testimonials__list {
        grid-template-columns: repeat(2, 3fr);
        gap: 32px;
    }
}

@media (max-width: 1200px) {
    .homs-hero-bg {
        border-radius: 40px;
        padding: 20px 0 0 0;
    }

    .homs-header__right {
        gap: 40px;
    }

    .homs-header__nav-list {
        gap: 30px;
    }

    .homs-hero__title {
        font-size: 60px;
    }

    .homs-hero__title span {
        border-radius: 16px;
    }

    .homs-hero__desc {
        font-size: 22px;
    }

    .homs-partners__row {
        flex-wrap: wrap;
        gap: 30px 60px;
        justify-content: center;
    }

    .homs-tabs__title {
        font-size: 30px;
    }

    .homs-tabs__desc {
        font-size: 22px;
    }

    .homs-quality__grid {
        gap: 60px;
    }

    .homs-quality__item-title {
        font-size: 30px;
    }

    .homs-quality__item-desc {
        font-size: 22px;
    }

    .homs-chat-card__header {
        padding: 32px 0;
        gap: 16px;
    }

    .homs-chat-card__avatar {
        width: 70px;
        height: 70px;
    }

    .homs-chat-card__message {
        max-width: 600px;
        padding: 40px;
        font-size: 30px;
        border-radius: 40px;
    }

    .homs-chat-card__body {
        padding: 32px 0 146px 32px;
    }

    .homs-chat-card__button {
        right: 42px;
        bottom: 32px;
    }

    .homs-exploratory__subtitle {
        font-size: 32px;
    }

    .homs-exploratory__grid {
        grid-template-columns: repeat(2, 3fr);
    }

    .homs-section__desc {
        font-size: 32px;
        margin: 0 auto 40px auto;
    }

    .homs-data .homs-title {
        margin: 0 0 40px 0;
    }

    .homs-section__desc span {
        padding: 0 4px;
        border-radius: 8px;
    }

    .homs-features__group-title {
        font-size: 30px;
    }
    .homs-features__group {
        padding: 32px 32px;
        border-radius: 30px;
    }
    .homs-advantage__title {
        font-size: 64px;
    }
}

@media (max-width: 992px) {
    .homs-hero-bg {
        position: relative;
        padding: 0;
    }

    .homs-header {
        width: 100%;
        position: absolute;
        top: 20px;
    }

    .homs-header__row {
        flex-wrap: wrap;
        padding: 29.6px 25px;
        box-shadow: 0px 4px 41.4px 0px rgba(0, 0, 0, 0.15);
        transition: var(--transition);
    }

    .homs-header__row:has(.active) {
        padding: 30px 25px;
    }

    .homs-header__nav {
        width: 100%;
        background-color: var(--white);
    }

    .homs-header__right {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 40px;
        order: 3;
        height: 0;
        overflow: hidden;
        transition: var(--transition);
    }

    .homs-header__right.active {
        margin: 40px 0 0 0;
    }

    .homs-header__nav-list {
        flex-wrap: wrap;
        gap: 34px 40px;
    }

    .homs-header__nav-dropdown {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
        justify-content: flex-start;
    }

    .homs-header__nav-item img {
        display: none;
    }

    .homs-header__inner-nav {
        transform: none;
        opacity: 1;
        visibility: visible;
        position: unset;
        padding: 0;
        border: none;
        border-radius: 0;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 16px 24px;
        box-shadow: none;
    }

    .homs-header__inner-nav li {
        width: calc(33.3% - 16px);
    }

    .homs-header__nav-item {
        justify-content: flex-start;
        font-size: 20px;
    }

    .homs-header__inner-nav .homs-header__nav-item {
        color: rgba(0, 0, 0, 0.40);
    }

    .homs-header__actions {
        width: 100%;
        gap: 12px;
    }

    .homs-header__actions .homs-btn {
        width: calc(50% - 6px);
        padding: 15px 14px;
    }

    .btn-small {
        padding: 14px 17px;
    }

    .homs-header__burger {
        display: flex;
        background-color: transparent;
        border: none;
        outline: none;
        cursor: pointer;
    }
    .homs-header__burger svg{
        overflow: visible;
    }
    .homs-header__burger line{
        transition: var(--transition);
    }
    .homs-header__burger.active line{
        stroke-opacity: .15;
    }
    .homs-header__burger.active line:first-child{
        transform: rotate(-45deg) translate(-7px, 10px);
    }
    .homs-header__burger.active line:last-child{
        transform: rotate(45deg) translate(5px, -15px);
    }

    .homs-hero {
        padding: 156px 0 0 0;
    }

    .homs-hero__title {
        font-size: 54px;
        line-height: 110%;
    }
    .homs-hero__title+.homs-hero__desc {
        margin: 24px 0 0 0;
    }

    .homs-hero__btns {
        gap: 16px;
    }

    .homs-partners {
        margin: 0 0 127px 0;
    }

    .homs-hero__left {
        width: 50%;
        left: 0%;
    }

    .homs-hero__right {
        width: 50%;
        right: 0%;
    }
    .homs-hero__left1,
    .homs-hero__right1{
        display: none;
    }
    .homs-hero__left2,
    .homs-hero__right2{
        display: block;
    }
    .homs-steps {
        margin: 0 0 60px 0;
    }

    .homs-title {
        font-size: 50px;
    }

    .homs-steps .homs-title {
        max-width: 463px;
    }

    .homs-steps-row {
        gap: 40px;
    }

    .homs-steps__desc {
        font-size: 32px;
        line-height: 126%;
    }

    .homs-steps__desc span {
        border-radius: 8px;
    }

    .homs-link {
        font-size: 20px;
    }

    .homs-tabs {
        margin: 0 0 113px 0;
    }

    .homs-tabs__nav {
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 16px;
        margin: 0 0 40px 0;
    }

    .homs-tabs__btn {
        width: calc(50% - 8px);
    }

    .homs-tabs__row {
        flex-direction: column-reverse;
        gap: 40px;
    }

    .homs-tabs__image {
        width: 100%;
    }

    .homs-tabs__text {
        width: 100%;
    }

    .homs-tabs__title {
        font-size: 28px;
    }

    .homs-quality {
        margin: 0 0 120px 0;
    }

    .homs-quality .homs-title {
        margin: 0 auto 40px auto;
        max-width: 469px;
    }

    .homs-quality__subtitle {
        font-size: 32px;
        line-height: 124%;
        max-width: 482px;
        margin: 0 auto 60px;
    }
    .homs-quality__subtitle span{
        padding: 0 7px 1px;
        border-radius: 8px;
    }
    .homs-quality__grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .homs-quality__icon {
        width: 60px;
        height: 60px;
    }

    .homs-quality__item-title {
        font-size: 28px;
    }

    .homs-quality__item-desc {
        line-height: 115%;
    }

    .homs-quality__item:nth-child(3) .homs-quality__item-desc {
        max-width: 525px;
    }

    .homs-chat_section {
        margin: 0 0 120px 0;
    }

    .homs-chat-card__message {
        max-width: 433px;
        font-size: 28px;
    }


    .homs-testimonials {
        margin: 0 0 120px 0;
    }

    .homs-testimonials__list {
        grid-template-columns: repeat(1, 3fr);
    }

    .homs-testimonials__title {
        font-size: 16px;
        padding: 8px 14px;
        margin: 0 0 40px 0;
    }

    .homs-testimonials__item {
        padding: 30px 32px;
        border-radius: 30px;
        gap: 24px;
    }

    .homs-testimonials__icon {
        height: 40px;
    }

    .homs-testimonials__quote {
        font-size: 28px;
    }

    .homs-testimonials__author {
        gap: 16px;
    }

    .homs-testimonials__avatar {
        width: 60px;
        height: 60px;
        border-radius: 9px;
    }

    .homs-testimonials__name {
        font-size: 22px;
        margin: 0 0 6px 0;
    }

    .homs-benefits {
        margin: 0 0 120px 0;
    }

    .homs-benefits__wrapper {
        border-radius: 40px;
        padding: 50px 0 0 0;
    }

    .homs-benefits .homs-title {
        margin: 0 0 40px 0;
    }

    .homs-benefits__description {
        font-size: 32px;
        line-height: 124%;
        margin: 0 auto 50px;
    }

    .homs-benefits__features {
        gap: 32px;
    }

    .homs-benefits__features {
        justify-content: flex-start;
        margin: 0 0 70px 0;
    }

    .homs-benefits__feature {
        max-width: 100%;
        width: 100%;
        padding: 32px;
    }

    .homs-benefits__icon {
        width: 50px;
        height: 50px;
        margin: 0 0 24px 0;
    }

    .homs-benefits__feature-title br {
        display: none;
    }

    .homs-benefits__feature-title {
        font-size: 28px;
        margin-bottom: 16px;
    }

    .homs-benefits__feature-text {
        font-size: 22px;
        max-width: 86%;
    }

    .homs-benefits__highlight {
        padding: 1px 4px;
        border-radius: 8px;
    }

    .benefits-photo {
        position: relative;
        left: -11%;
        bottom: 0%;
        width: 120%;
    }

    .homs-exploratory {
        margin: 0 0 120px 0;
    }

    .homs-exploratory .homs-title {
        margin: 0 0 45px 0;
    }

    .homs-exploratory__grid {
        grid-template-columns: repeat(1, 3fr);
        margin-bottom: 60px;
    }

    .homs-exploratory__subtitle {
        margin: 0 auto 40px;
        max-width: 530px;
        line-height: 124%;
    }

    .homs-exploratory__playbook {
        margin-bottom: 60px;
    }

    .homs-exploratory-img {
        width: 60px;
        height: 60px;
        margin: 0 0 32px 0;
    }

    .homs-exploratory__card-title {
        font-size: 28px;
        margin-bottom: 12px;
    }

    .homs-exploratory__card-text {
        font-size: 22px;
    }

    .homs-exploratory__button {
        width: 100%;
    }

    .homs-data .homs-title {
        margin: 0 0 32px 0;
    }

    .homs-data {
        margin: 0 0 120px 0;
    }

    .homs-features {
        margin: 0 0 120px 0;
    }
    .homs-features__grid{
        flex-direction: column;
        margin-bottom: 38px;
        gap: 40px;
    }
    .homs-features__group{
        padding: 33px 29px;
    }
    .homs-features__group:first-child, .homs-features__group:last-child{
        width: 100%;
    }
    .homs-features__group:nth-child(2), .homs-features__group:nth-child(3){
        width: 100%;
    }
    .homs-features__group:first-child,
    .homs-features__group:nth-child(3){
        background-color: var(--secondary);
    }
    .homs-features__group:nth-child(2),
    .homs-features__group:last-child{
        background-color: var(--white);
        border: 2px solid var(--secondary);
    }
    .homs-features__group:nth-child(1) .homs-features__item, 
    .homs-features__group:nth-child(3) .homs-features__item{
        background-color: var(--white);
    }
    .homs-features__group:nth-child(2) .homs-features__item, 
    .homs-features__group:nth-child(4) .homs-features__item{
        background-color: var(--secondary);
    }
    .homs-features__group-title {
        font-size: 28px;
        margin-bottom: 28px;
    }
    .homs-features__item {
        font-size: 20px;
        padding: 11px 15px;
    }
    .homs-features .homs-title {
        margin-bottom: 43px;
    }
    .homs-advantage__wrapper{
        border-radius: 40px;
        padding: 50px 0 0 0;
    }
    .homs-advantage__title {
        font-size: 54px;
        padding: 0 70px;
        margin: 0 0 40px 0;
    }
    .homs-advantage__top{
        width: 100%;
    }
    .homs-advantage__actions{
        width: 100%;
        gap: 16px;
        margin: 0 0 14px 0;
    }
    .homs-hero__map-layer {
        margin: 50px 0 0 0;
    }
    .homs-advantage__actions .homs-btn{
        width: calc(50% - 8px);
    }
    .homs-advantage__subtext {
        width: 48%;
        font-size: 16px;
    }
    .homs-advantage__person{
        width: 60%;
    }
    .homs-advantage__pin {
        width: 39px;
        height: 42px;
    }
    .homs-advantage__pin:nth-child(1) {
        left: 1.5%;
        bottom: 49%;
    }
    .homs-advantage__pin:nth-child(2) {
        left: 21%;
        bottom: 39%;
    }
    .homs-advantage__pin:nth-child(3) {
        left: 7%;
        bottom: 31%;
    }
    .homs-advantage__pin:nth-child(4) {
        left: 23%;
        bottom: 16%;
    }
    .homs-advantage__pin:nth-child(5) {
        right: 23%;
        bottom: 43%;
    }
    .homs-advantage__pin:nth-child(6){
        display: none;
    }
    .homs-advantage__pin:nth-child(7) {
        right: 12%;
        bottom: 30%;
    }
    .homs-advantage__pin:nth-child(8) {
        right: 3%;
        bottom: 13%;
    }
    .homs-advantage__bg {
        top: unset;
        height: auto;
        left: -86px;
        bottom: 42px;
        width: 131%;
    }
    .homs-advantage {
        margin: 0 0 120px 0;
    }

    .homs-footer__columns{
        flex-direction: column-reverse;
        gap: 40px;
    }
    .homs-footer__logo {
        width: 120px;
    }
    .homs-footer__top {
        gap: 40px;
        margin: 0 0 38px 0;
    }
    .homs-footer__right{
        flex-direction: column;
    }
    .homs-footer__column:first-child {
        max-width: 535px;
    }
    .homs-footer__column{
        gap: 28px 40px;
    }
    .homs-footer__right .homs-footer__column{
        flex-direction: row;
        width: 100%;
        gap: 24px 28px;
    }
    .homs-footer__right .homs-footer__column li {
        width: 21%;
    }
    .homs-footer__column a, .homs-footer__inner a, .homs-footer__inner-column a {
        font-size: 20px;
    }
    .homs-footer__right{
        gap: 22px;
    }
    .homs-footer__inner-column {
        grid-template-columns: repeat(3, 3fr);
        gap: 16px 28px;
    }
    .homs-footer__bottom {
        padding-top: 20px;
        margin-top: 15px;
    }
    .homs-footer__socials {
        gap: 13px;
    }
    .homs-footer__socials a {
        width: 40px;
        height: 40px;
    }
    .homs-footer__copyright {
        font-size: 16px;
    }
    .homs-data .homs-section__desc{
        margin: 0 auto 45px auto;
    }
}

@media (max-width: 768px) {
    .homs-hero-bg {
        margin: 20px auto 154px auto;
    }

    .homs-hero__actions {
        width: 100%;
        gap: 12px;
    }

    .homs-hero__btns .homs-btn {
        width: calc(50% - 8px);
        height: 70px;
    }

    .btn-big {
        padding: 22px 10px;
        font-size: 20px;
    }

    .homs-hero__title span {
        border-radius: 10px;
    }

    .homs-hero-btn__desc {
        margin: 0 0 0 57px;
        font-size: 16px;
    }

    .homs-hero-top {
        margin: 0 0 160px 0;
    }

    .homs-hero__left {
        width: 69%;
        left: -2%;
        bottom: 2%;
    }

    .homs-hero__phone {
        width: 53%;
        margin: 1% 0% 0 0;
    }

    .homs-hero__right {
        width: 70%;
        right: -1%;
        bottom: 23%;
    }

    .homs-partners__row img:nth-child(1) {
        width: 161px;
    }

    .homs-partners__row img:nth-child(2) {
        width: 161px;
    }

    .homs-partners__row img:nth-child(3) {
        width: 113px;
    }

    .homs-partners__row img:nth-child(4) {
        width: 102px;
    }

    .homs-partners__row img:nth-child(5) {
        width: 99px;
    }

    .homs-partners__row img:nth-child(6) {
        width: 115px;
    }

    .homs-partners__row img:nth-child(7) {
        width: 137px;
    }

    .homs-partners__row img:nth-child(8) {
        width: 110px;
    }
}

@media (max-width: 639px) {
    .homs-hero-bg {
        margin: 10px auto 100px auto;
        width: calc(100% - 20px);
        border-radius: 24px;
    }

    .homs-header {
        top: 10px;
    }

    .homs-header .homs-container {
        padding-left: 10px;
        padding-right: 10px;
    }

    .homs-header__row {
        padding: 21px 15px;
        border-radius: 14px;
        box-shadow: 0px 4px 41.4px 0px rgba(0, 0, 0, 0.15);
    }

    .homs-header__row:has(.active) {
        padding: 20px 15px;
    }

    .homs-header__logo {
        max-width: 80px;
    }

    .homs-header__burger {
        width: 30px;
    }

    .homs-header__burger svg {
        width: 100%;
    }

    .homs-header__nav-list {
        gap: 26px;
        justify-content: space-between;
    }

    .homs-header__nav-item {
        font-size: 16px;
    }
    .homs-header__inner-nav li:nth-child(1) {
        order: 1;
    }
    .homs-header__inner-nav li:nth-child(2) {
        order: 3;
    }
    .homs-header__inner-nav li:nth-child(3) {
        order: 5;
    }
    .homs-header__inner-nav li:nth-child(4) {
        order: 7;
    }
    .homs-header__inner-nav li:nth-child(5) {
        order: 2;
    }
    .homs-header__inner-nav li:nth-child(6) {
        order: 4;
    }
    .homs-header__inner-nav li:nth-child(7) {
        order: 6;
    }
    .homs-header__nav-dropdown {
        gap: 20px;
    }

    .homs-header__inner-nav {
        gap: 20px 25px;
    }

    .homs-header__inner-nav li {
        width: calc(50% - 12.5px);
    }

    .homs-header__actions {
        flex-direction: column;
    }

    .homs-header__actions .homs-btn {
        width: 100%;
        padding: 8px 14px;
    }

    .btn-small {
        font-size: 16px;
        padding: 8.4px 17px;
    }

    .homs-hero {
        padding: 94px 0 0 0;
    }

    .homs-hero .homs-container {
        padding-left: 10px;
        padding-right: 10px;
    }

    .homs-hero__title {
        font-size: 34px;
    }

    .homs-hero__title br {
        display: block;
    }

    .homs-hero__title span {
        border-radius: 8px;
        padding: 0 6px 3px;
    }

    .homs-hero__desc {
        font-size: 18px;
        letter-spacing: 0px;
        padding: 0 10px;
    }

    .homs-hero__title+.homs-hero__desc {
        margin: 25px 0 0 0;
    }

    .homs-hero__desc+.homs-hero__actions {
        margin: 30px 0 0 0;
    }

    .homs-hero__btns {
        flex-direction: column;
        gap: 41px;
    }

    .homs-hero__btns .homs-btn {
        width: 100%;
        height: 60px;
    }

    .homs-hero-btn__desc {
        margin: -104px auto 0 auto;
        font-size: 14px;
    }

    .btn-big {
        font-size: 18px;
    }

    .homs-hero-top {
        margin: 0 0 179px 0;
    }

    .homs-hero__left {
        bottom: 2%;
    }
    .homs-hero__right {
        bottom: 23%;
    }


    .homs-partners__row {
        gap: 20px 36px;
    }

    .homs-partners__row img:nth-child(1) {
        width: 96px;
    }

    .homs-partners__row img:nth-child(2) {
        width: 96px;
    }

    .homs-partners__row img:nth-child(3) {
        width: 68px;
    }

    .homs-partners__row img:nth-child(4) {
        width: 61px;
    }

    .homs-partners__row img:nth-child(5) {
        width: 59px;
    }

    .homs-partners__row img:nth-child(6) {
        width: 69px;
    }

    .homs-partners__row img:nth-child(7) {
        width: 82px;
    }

    .homs-partners__row img:nth-child(8) {
        width: 65px;
    }

    .homs-partners {
        margin: 0 0 100px 0;
    }


    .homs-steps {
        margin: 0 0 50px 0;
    }

    .homs-steps .homs-container {
        padding-left: 10px;
        padding-right: 10px;
    }

    .homs-title {
        font-size: 34px;
    }

    .homs-steps-row {
        gap: 32px;
    }

    .homs-steps .homs-title {
        max-width: 312px;
        margin: 0 20px;
    }

    .homs-steps__desc {
        font-size: 24px;
        line-height: 135%;
    }

    .homs-steps__desc span {
        border-radius: 6px;
        padding: 0 6px 2px;
    }

    .homs-steps__desc br {
        display: block;
    }

    .homs-link {
        font-size: 18px;
    }


    .homs-tabs {
        margin: 0 0 96px 0;
    }

    .homs-tabs__nav {
        margin: 0 0 32px 0;
    }

    .homs-tabs__btn {
        font-size: 18px;
        padding: 18px 10px;
    }

    .homs-tabs__title {
        font-size: 24px;
        margin: 0 0 16px 0;
    }

    .homs-tabs__desc {
        font-size: 20px;
    }

    .homs-tabs__row {
        gap: 32px;
    }

    .homs-tabs__text .homs-link {
        margin: 16px 0 0 0;
    }


    .homs-quality {
        margin: 0 0 100px 0;
    }

    .homs-quality .homs-title {
        margin: 0 auto 32px auto;
        padding: 0 10px;
    }

    .homs-quality__subtitle {
        font-size: 26px;
        line-height: 125%;
        margin: 0 auto 50px;
    }

    .homs-quality__grid {
        gap: 50px;
    }

    .homs-quality__icon {
        width: 50px;
        height: 50px;
        margin-bottom: 24px;
    }

    .homs-quality__item-title {
        font-size: 24px;
        margin-bottom: 16px;
    }

    .homs-quality__item-desc {
        line-height: 115%;
        font-size: 20px;
    }

    .homs-chat_section {
        margin: 0 0 100px 0;
    }

    .homs-chat-card {
        border-radius: 20px;
    }

    .homs-chat-card__header {
        border-radius: 18px 18px 0 0;
        padding: 20px 0;
        gap: 12px;
    }

    .homs-chat-card__avatar {
        width: 50px;
        height: 50px;
    }

    .homs-chat-card__name {
        font-size: 20px;
    }

    .homs-chat-card__body {
        padding: 20px 25px 104px 20px;
    }

    .homs-chat-card__message {
        max-width: 100%;
        font-size: 22px;
        padding: 22px;
        border-radius: 20px;
        letter-spacing: normal;
    }
    .homs-chat-card__message br{
        display: block;
    }
    .homs-chat-card__button {
        right: 22px;
        bottom: 20px;
        font-size: 18px;
        padding: 18.6px 23px;
    }

    .homs-chat-card__button::after {
        right: -9px;
        width: 43px;
        height: 44px;
    }


    .homs-testimonials {
        margin: 0 0 100px 0;
    }

    .homs-testimonials__title {
        font-size: 14px;
        margin: 0 0 32px 0;
    }

    .homs-testimonials__list {
        gap: 26px;
    }

    .homs-testimonials__item {
        padding: 26px 28px 28px;
        border-radius: 20px;
        gap: 20px;
    }

    .homs-testimonials__icon {
        height: 34px;
    }

    .homs-testimonials__quote {
        font-size: 24px;
        letter-spacing: -0.6px;
    }
    .homs-testimonials__quote br{
        display: block;
    }
    .homs-testimonials__avatar {
        width: 50px;
        height: 50px;
        border-radius: 7px;
    }

    .homs-testimonials__author {
        gap: 12px;
    }

    .homs-testimonials__name {
        font-size: 20px;
    }

    .homs-testimonials__role {
        font-size: 14px;
    }

    .homs-benefits {
        margin: 0 0 100px 0;
    }

    .homs-benefits .homs-container {
        padding-left: 10px;
        padding-right: 10px;
    }

    .homs-benefits__wrapper {
        max-width: calc(100% - 20px);
        padding: 40px 0 0 0;
        border-radius: 24px;
    }

    .homs-benefits .homs-title {
        padding: 0 47px;
        margin: 0 0 32px 0;
    }

    .homs-benefits__description {
        font-size: 26px;
        line-height: 124%;
        margin: 0 auto 27px;
    }

    .homs-benefits__highlight {
        border-radius: 6px;
        padding: 0 6px 0;
    }

    .homs-benefits__feature {
        padding: 28px;
        border-radius: 20px;
    }

    .homs-benefits__features {
        gap: 10px;
        margin: 0 0 40px 0;
    }

    .homs-benefits__icon {
        width: 40px;
        height: 40px;
    }

    .homs-benefits__feature-title {
        font-size: 24px;
    }

    .homs-benefits__feature-text {
        font-size: 20px;
    }

    .benefits-photo {
        left: -18%;
        width: 133%;
    }

    .homs-exploratory {
        margin: 0 0 100px 0;
    }

    .homs-exploratory .homs-title {
        margin: 0 0 32px 0;
    }

    .homs-exploratory__subtitle {
        margin: 0 auto 32px;
        line-height: 127%;
        font-size: 26px;
    }
    .homs-exploratory__subtitle br{
        display: block;
    }
    .homs-exploratory__highlight {
        border-radius: 6px;
        padding: 0 6px 2px;
    }

    .homs-exploratory__playbook {
        margin-bottom: 50px;
    }
    .homs-exploratory__grid{
        margin-bottom: 50px;
    }
    .homs-exploratory-img {
        width: 50px;
        height: 50px;
        margin: 0 0 18px 0;
    }

    .homs-exploratory__card-title {
        font-size: 24px;
        margin-bottom: 16px;
    }

    .homs-exploratory__card-text {
        font-size: 20px;
    }

    .homs-exploratory__button {
        width: 100%;
        display: inline-flex;
        justify-content: center;
        text-align: center;
        padding: 19.5px 5px;
        font-size: 16px;
    }

    .homs-data {
        margin: 0 0 100px 0;
    }
    .homs-features {
        margin: 0 0 100px 0;
    }

    .homs-section__desc {
        font-size: 26px;
        margin: 0 auto 32px auto;
    }
    .homs-section__desc br{
        display: block;
    }
    .homs-section__desc span {
        padding: 0 6px 2px;
        border-radius: 6px;
    }
    .homs-features .homs-title {
        margin-bottom: 32px;
    }
    .homs-features .homs-title {
        margin-bottom: 32px;
    }
    .homs-features__grid{
        gap: 32px;
        margin-bottom: 32px;
    }
    .homs-features__group {
        padding: 26px 28px;
        border-radius: 20px;
    }
    .homs-features__group-title {
        font-size: 24px;
        margin-bottom: 24px;
    }
    .homs-features__item {
        font-size: 18px;
        padding: 10px 12px 10.5px;
    }
    .homs-features__item svg {
        width: 16px;
        height: 16px;
    }
    .homs-features__tag {
        font-size: 10px;
    }

    .homs-advantage{
        margin: 0 0 100px 0;
    }
    .homs-advantage .homs-container{
        padding-left: 10px;
        padding-right: 10px;
    }
    .homs-advantage__wrapper{
        border-radius: 24px;
        max-width: calc(100% - 20px);
        padding: 40px 0 0 0;
    }
    .homs-advantage__title{
        font-size: 34px;
        margin: 0 0 34px 0;
        padding: 0 34px;
    }
    .homs-advantage__actions{
        flex-direction: column;
        gap: 41px;
        margin: 0 0 18px 0;
    }
    .homs-advantage__actions .homs-btn{
        width: 100%;
        padding: 19px 10px;
    }
    .homs-advantage__subtext {
        width: 100%;
        font-size: 14px;
        margin: -110px 0 0 0;
    }
    .homs-advantage__person {
        width: 82%;
    }
    .homs-hero__map-layer {
        margin: 114px 0 0 0;
    }
    .homs-advantage__bg{
        height: auto;
        left: 0px;
        bottom: 10px;
        width: 100%;
    }
    .homs-advantage__bg1{
        display: none;
    }
    .homs-advantage__bg2{
        display: block;
    }
    .homs-advantage__pin {
        width: 29px;
        height: 31px;
    }
    .homs-advantage__pin:nth-child(1) {
        left: -0.5%;
        bottom: 33%;
    }
    .homs-advantage__pin:nth-child(2) {
        left: 19%;
        bottom: 27%;
    }
    .homs-advantage__pin:nth-child(3) {
        left: 6%;
        bottom: 21%;
    }
    .homs-advantage__pin:nth-child(5) {
        right: 23%;
        bottom: 29%;
    }
    .homs-advantage__pin:nth-child(7) {
        right: 12%;
        bottom: 21%;
    }
    .homs-advantage__pin:nth-child(8) {
        right: 3%;
        bottom: 9%;
    }

    .homs-footer__column a, .homs-footer__inner a, .homs-footer__inner-column a {
        font-size: 18px;
    }
    .homs-footer__right .homs-footer__column li {
        width: auto;
    }
    .homs-footer__right .homs-footer__column{
        justify-content: space-between;
    }
    .homs-footer__right {
        width: 100%;
        gap: 25px;
    }
    .homs-footer__inner-column{
        width: 100%;
        gap: 20px 20px;
    }
    .homs-footer__inner-column {
        grid-template-columns: repeat(2, 3fr);
        justify-content: space-between;
        gap: 20px 57px;
    }
    .homs-footer__inner-column li:nth-child(1){
        order: 1;
    }
    .homs-footer__inner-column li:nth-child(2){
        order: 3;
    }
    .homs-footer__inner-column li:nth-child(3){
        order: 5;
    }
    .homs-footer__inner-column li:nth-child(4){
        order: 7;
    }
    .homs-footer__inner-column li:nth-child(5){
        order: 2;
    }
    .homs-footer__inner-column li:nth-child(6){
        order: 4;
    }
    .homs-footer__inner-column li:nth-child(7){
        order: 6;
    }
    .homs-footer__column {
        gap: 21px 29px;
    }
    .homs-footer__column:first-child li:nth-child(5){
        margin: -20px 0 0 0;
    }
    .homs-footer__top{
        margin: 0 0 40px 0;
    }
    .homs-footer__socials a {
        width: 32px;
        height: 32px;
    }
    .homs-footer__socials {
        gap: 10px;
    }
    .homs-footer__bottom {
        padding-top: 20px;
        margin-top: 16px;
    }
    .homs-footer__copyright {
        font-size: 14px;
    }
    .homs-footer {
        padding: 0 0 20px 0;
    }
    .homs-quality__subtitle span{
        border-radius: 6px;
    }
}