main {
    overflow: hidden;
}
.promo-block {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 50px;
    margin-bottom: 70px;
}
.promo-block h1 {
    font-weight: 600;
    font-size: 50px;
    line-height: 61px;
    max-width: 700px;
    color: var(--blue-100);
}
.promo-block img {
    max-width: 515px;
    max-height: 290px;
    width: 100%;
    border-radius: 20px;
}
.search {
    margin-bottom: 50px;
    position: relative;
}
.search form .input-wrapper {
    display: flex;
    align-items: center;
    width: 100%;
    position: relative;
}
.search form .input-wrapper::before {
    content: '\e004';
    font-family: 'icon';
    font-size: 25px;
    position: absolute;
    left: 25px;
    color: var(--blue-100);
}
.search form .input-wrapper input {
    width: 100%;
    padding: 20px 25px 20px 75px;
    background-color: var(--grey-100);
    border-radius: 10px;
    border: 1px solid var(--grey-100);
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    color: var(--blue-100);
}
.search form .input-wrapper input::placeholder {
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    color: var(--blue-100);
}
.search form .sub {
    position: absolute;
    top: calc(100% + 5px);
    padding: 10px 20px 25px 20px;
    border-radius: 20px;
    background: linear-gradient(135deg, #fff, #eae9e9);
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
    width: 100%;
    z-index: 10;
    display: none;
}
.search form .sub.show {
    display: flex;
}
.search form .sub .items {
    width: 100%;
    height: 100%;
    flex-direction: column;
}
.search form .sub .items .item {
    width: 100%;
    padding: 10px 0;
    border-bottom: 1px solid #e4e4e4;
    width: 100%;
}
.search form .sub .items .item p {
    display: flex;
    overflow: hidden;
    font-size: 12px;
    color: #95989a;
    opacity: 0.5;
    font-weight: 300;
}
.search form .sub .items .item p a {
    font-size: 12px;
    color: #95989a;
    opacity: 0.5;
    font-weight: 300;
    margin-right: 3px;
    text-decoration: underline;
    white-space: nowrap;
}
.search form .sub .items .item p a:nth-child(2) {
    color: var(--blue-100);
    margin-left: 3px;
}
.search form .sub .items .item h2 a {
    color: #6f6f6f;
    padding-left: 10px;
    font-size: 18px;
}
.search form .sub label {
    position: absolute;
    color: var(--blue-100);
    font-size: 14px;
    bottom: 4px;
    right: 20px;
}
.popular-service {
    overflow: scroll;
    margin-bottom: 100px;
}
.popular-service .items {
    display: flex;
    flex-wrap: wrap;
    gap: 30px 40px;
    width: 1355px;
}
.popular-service::-webkit-scrollbar {
    width: 0;
    height: 0;
}
.popular-service .item {
    display: block;
    background-color: var(--white);
    padding: 17px 28px;
    border: 1px solid var(--grey-100);
    border-radius: 15px;
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    color: var(--blue-100);
    transition: .3s linear;
    white-space: nowrap;
}
.popular-service .item:hover {
    border-bottom: 1px solid #666C83;
}
section.services {
    margin-bottom: 100px;
}
section.services h2 {
    font-weight: 600;
    font-size: 32px;
    line-height: 39px;
    margin-bottom: 65px;
}
section.services .items {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
}
section.services .items.center {
    justify-content: center;
    gap: 50px;
}
section.services .item {
    max-width: 200px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}
section.services .item img {
    width: 100%;
    border-radius: 20px;
}
section.services .item p {
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    color: #324359;
}
section.services .item a {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}
.services-new {
    margin-bottom: 150px;
    .title {
        font-weight: 600;
        font-size: 32px;
        line-height: 39px;
        margin-bottom: 75px;
    }
    .items {
        padding-left: 45px;
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 55px 130px;
        justify-content: center;
        .item {
            position: relative;
            & > a {
                font-weight: 500;
                font-size: 16px;
                line-height: 30px;
                color: #324359;
                transition: .3s linear;
                height: 60px;
                img {
                    position: absolute;
                    width: 26px;
                    height: 26px;
                    left: -45px;
                }
                &:hover {
                    text-decoration: underline;
                }
            }
            .subitem {
                margin-top: 10px;
                display: flex;
                flex-direction: column;
                gap: 10px;
                padding-left: 8px;
                transition: .3s linear;
                &.more {
                    max-height: 70px;
                }
                &.more.show {
                    max-height: 700px;
                }
                overflow: hidden;
                a {
                    font-size: 13px;
                    line-height: 13px;
                    color: #324359;
                    display: flex;
                    gap: 13px;
                    align-items: flex-start;
                    &:hover {
                        text-decoration: underline;
                    }
                    &::before {
                        content: '';
                        display: flex;
                        min-width: 4px;
                        max-width: 4px;
                        min-height: 4px;
                        max-height: 4px;
                        border-radius: 50%;
                        background: #324359;
                        position: relative;
                        bottom: -6px;
                    }
                }
            }
            .subitem.show + span::after {
                transform: rotate(180deg);
            }
            span {
                cursor: pointer;
                display: flex;
                justify-content: end;
                gap: 10px;
                align-items: center;
                margin-top: 35px;
                font-size: 12px;
                font-weight: 400;
                line-height: 10px;
                color: #324359;
                &::after {
                    content: '\e007';
                    font-family: 'icon';
                    font-size: 10px;
                    font-weight: 300;
                    display: flex;
                    transition: .3s linear;
                }
            }
        }
    }
}
.advantages {
    margin-bottom: 55px;
}
.advantages .title {
    font-weight: 600;
    font-size: 32px;
    line-height: 39px;
    margin-bottom: 55px;
    color: var(--blue-100);
}
.advantages .items {
    background: var(--grey-100);
    padding: 15px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin: 0 auto;
    gap: 80px;
    overflow-y: hidden;
    overflow-x: auto;
}
.advantages .items::-webkit-scrollbar {
    width: 0;
    height: 0;
}
.advantages .items p {
    font-size: 16px;
    font-weight: 400;
    line-height: 19px;
    display: flex;
    align-items: center;
    column-gap: 30px;
    color: var(--blue-100);
}
.advantages .items p::before {
    font-family: 'icon';
    font-size: 45px;
}
.advantages .items p:first-child {

    min-width: 210px;
    max-width: 210px;
}
.advantages .items p:last-child:before {
    content: '\e015';
}
.advantages .items p:nth-child(2) {
    min-width: 245px;
    max-width: 245px;
}
.advantages .items p:nth-child(2):before {
    content: '\e014';
}
.advantages .items p:nth-child(3) {
    min-width: 235px;
    max-width: 235px;
}
.advantages .items p:nth-child(3):before {
    content: '\e013';
}
.advantages .items p:last-child {
    min-width: 250px;
    max-width: 250px;
}
.advantages .items p:first-child:before {
    content: '\e012';
}
.question {
    background: #f4f6f8;
    display: flex;
    flex-direction: column;
    border-radius: 5px;
    margin-bottom: 100px;
}
.question .item {
    position: relative;
    transition: 0.3s 0.2s;
}
.question .item.show + .item {
    margin-top: 20px;
    transition: 0.3s;
}
.question .item .top {
    background: #fafafa;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 35px 12px 17px;
    cursor: pointer;
    color: #707070;
    border-radius: 5px;
    grid-gap: 40px;
}
.question .item .top:not(:last-child) {
    margin-bottom: 20px;
}
.question .item .top :is(p, span) {
    font-size: 17px;
    font-weight: normal;
    transition: 0.3s;
    text-shadow: 0 0 0 rgba(255, 255, 255, 0);
}
.question .item.show .top :is(p, span) {
    text-shadow: 1px 0 0px #707070;
}
.question .item .top::after {
    content: '\e945';
    font-family: 'icon-old';
    color: #646464;
    font-size: 16px;
    transition: 0.3s;
    transform: rotate(180deg);
}
.question .item.show .top::after {
    transform: rotate(0deg);
    font-weight: normal;
}
.question .item .sub {
    font-size: 16px;
    line-height: 25px;
    font-weight: 300;
    padding: 0 35px 0 17px;
    overflow: hidden;
    max-height: 0;
    transition: 0.4s;
    margin-bottom: 0;
}
.question .item .sub * {
    font-size: 14px;
    line-height: 25px;
    font-weight: 300;
}
.question .item.show .sub {
    max-height: 500px;
    transition: 0.5s;
}
.blog-section {
    margin-bottom: 100px;
}
.blog-section a.title {
    display: block;
    font-weight: 600;
    font-size: 32px;
    line-height: 39px;
    text-decoration: underline;
    margin-bottom: 65px;
    color: var(--blue-100);
}
.blog-section .items {
    display: flex;
    gap: 40px;
    overflow: scroll;
}
.blog-section .items::-webkit-scrollbar {
    width: 0;
    height: 0;
}
.blog-section .item {
    max-width: 485px;
    min-width: 485px;
    width: 485px;
    display: flex;
    gap: 25px;
    padding: 30px 25px 20px;
    background: #89C1D2;
    border-radius: 20px;
    position: relative;
}
.blog-section .item a {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}
.blog-section .item img {
    width: 150px;
    height: 150px;
    border-radius: 20px;
}
.blog-section .item p.title {
    font-weight: 600;
    font-size: 16px;
    line-height: 19px;
    text-decoration: underline;
    margin-bottom: 15px;
    margin-top: 10px;
    color: var(--blue-100);
}
.blog-section .item p:not(.title) {
    font-weight: 300;
    font-size: 12px;
    line-height: 15px;
    color: #000;
    margin-bottom: 25px;
}
.blog-section .item span {
    font-weight: 300;
    font-size: 12px;
    line-height: 15px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #334359;
    position: relative;
}
.blog-section .item span::after {
    content: '';
    width: calc(100% - 24px);
    height: 0.7px;
    background-color: #334359;
    position: absolute;
    top: calc(100% - 2px);
    right: 0;
}
.blog-section .item span::before {
    content: '\e008';
    font-family: 'icon';
    font-size: 17px;
}
.section-reviews {
    margin-bottom: 100px;
}
.section-reviews h2,
.section-reviews a.title {
    font-weight: 600;
    font-size: 32px;
    line-height: 39px;
    text-decoration: underline;
    margin-bottom: 65px;
    color: var(--blue-100);
    display: block;
}
.section-reviews .items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 8%;
    justify-content: space-between;
    padding-bottom: 65px;
    border-bottom: 0.5px solid #666C83;
    margin-bottom: 25px;
}
.section-reviews .user {
    display: grid;
    grid-template-columns: 60px auto;
    grid-template-rows: 40px 20px;
    gap: 25px 20px;
    margin-bottom: 40px;
}
.section-reviews .user img {
    grid-area: 1/1/3/2;
    height: 100%;
    width: 100%;
    border-radius: 5px;
}
.section-reviews .user p.title {
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    color: var(--blue-100);
}
.section-reviews .user p.title span {
    display: block;
    font-weight: 600;
    font-size: 16px;
    line-height: 19px;
}
.section-reviews .user .stars {
    display: flex;
    align-items: center;
    gap: 5px;
}
.section-reviews .user .stars span::before {
    content: '\e006';
    font-family: 'icon';
    color: hsla(50, 100%, 46%, 1);
}
.section-reviews .user .stars span.semi::before {
    content: '\e016';
}
.section-reviews .work {
    margin-bottom: 35px;
    display: flex;
    align-items: center;
    column-gap: 20px;
    font-weight: 400;
    font-size: 14px;
    line-height: 17px;
    color: var(--blue-100);
}
.section-reviews .work::before {
    content: '\e005';
    font-family: 'icon';
    font-size: 20px;
}
.section-reviews .text {
    display: flex;
    align-items: flex-start;
    column-gap: 20px;
    font-size: 14px;
    font-weight: 400;
    line-height: 25px;
    margin-bottom: 40px;
    color: var(--blue-100);
}
.section-reviews .text::before {
    content: '\e009';
    font-family: 'icon';
    font-size: 20px;
}
.section-reviews .author {
    margin-left: 40px;
    font-weight: 300;
    font-size: 13px;
    line-height: 16px;
}
.section-reviews .author span {
    display: block;
    font-weight: 300;
    font-size: 13px;
    line-height: 16px;
}
.section-reviews a.all {
    display: flex;
    justify-content: center;
    font-size: 18px;
    line-height: 22px;
    color: var(--blue-100);
}
.arange-services {
    margin-bottom: 80px;
}
.arange-services button {
    width: 100%;
    border: none;
    background: linear-gradient(93.88deg, #0B334F 0%, #77577F 100%);
    border-radius: 10px;
    color: var(--white);
    font-weight: 600;
    font-size: 20px;
    line-height: 24px;
    padding: 25px 0;
    cursor: pointer;
}
.ceo {
    margin-bottom: 45px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    color: var(--blue-100);
}
.requisites,
.ceo p {
    font-weight: 300;
    font-size: 12px;
    font-weight: 400;
    line-height: 18px;
    text-align: justify;
}
.requisites {
    color: var(--blue-100);
    margin-bottom: 45px;
}
@media screen and (max-width: 1355px) {
    .search form .sub {
        width: calc(100% - 40px);
    }
    .services-new {
        margin-bottom: 120px;
        .items {
            justify-content: start;
            padding-left: 0;
            gap: 30px 50px;
            .item {
                display: grid;
                grid-template-columns: 26px 1fr;
                grid-template-rows: 60px 1fr;
                gap: 10px;
                justify-content: start;
                & * {
                    grid-column: 2;
                }
                & > a {
                    grid-column: span 2;
                    display: flex;
                    gap: 10px;
                    img {
                        position: static;
                    }
                }
                .subitem {
                    margin-top: 0;
                    padding-left: 0;
                }
                span {
                    margin-top: 20px;
                }
            }
        }
    }
}
@media screen and (max-width: 1105px) {
    .promo-block {
        flex-direction: column;
        gap: 20px;
    }
    .promo-block h1 {
        text-align: center;
    }
    .section-reviews .items {
        grid-template-columns: 1fr;
        gap: 70px;
    }
    .popular-service {
        gap: 35px 7.6%;
    }
    .services-new {
        margin-bottom: 80px;
        .items {
            gap: 20px 50px;
            & .item {
                grid-template-rows: auto 1fr;
                & > a {
                    height: auto;
                }
                span {
                    margin-top: 16px;
                    font-size: 14px;
                    justify-content: start;
                }
                & .subitem {
                    &.more {
                        max-height: 60px;
                    }
                }
            }
        }
    }
}
@media screen and (max-width:568px) {
    .promo-block h1 {
        font-size: 24px;
        line-height: 32px;
    }
    section.services .items {
        justify-content: center;
        gap: 30px;
    }
    section.services .item {
        gap: 20px;
    }
    .arange-services button {
        padding: 10px 0;
        font-size: 16px;
    }
    .advantages .items {
        padding: 15px 5px;
        gap: 40px;
    }
    .advantages .items p {
        gap: 15px;
    }
    .advantages .items p:first-child {
        min-width: 190px;
        max-width: 190px;
    }
}