body {
    color: #282728;
    font-size: 16px;
    font-family: gilroy;
    line-height: 1.15;
    margin: 0;
    padding-top: 140px;
}

* {
    font-family: gilroy;
    box-sizing: border-box;
    text-decoration: none;
    outline: none;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    color: #282728;
}

.btn {
    min-width: 200px;
    position: relative;
    background: #6b9f93;
    border: none;
    border-radius: 50px;
    padding: 18.5px 20px;
    display: inline-block;
    color: white;
    font-size: 13px;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    cursor: pointer;
    overflow: hidden;
}

.btn:after {
    content: "";
    margin-left: 60px;
    width: 30px;
    height: 300px;
    background: #fff;
    -webkit-animation-delay: 50ms;
    animation-delay: 50ms;
    position: absolute;
    left: -40px;
    top: -150px;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    -webkit-transition: all .1s;
    transition: all .1s;
    -webkit-animation-name: slideme;
    animation-name: slideme;
    -webkit-animation-duration: 3s;
    animation-duration: 3s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}
@keyframes slideme {
    0% {
        left: -30px;
        margin-left: 0
    }

    30% {
        left: 110%;
        margin-left: 80px
    }

    100% {
        left: 110%;
        margin-left: 80px;
        width: 23rem
    }
}

section {
    padding: 50px 0;
}

.wrapper {
    position: relative;
    max-width: 1570px;
    margin: 0 auto;
    padding-left: 15px;
    padding-right: 15px;
}


header {
    background: white;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 30px 0;
    z-index: 10;
}
header.fixed {
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.15);
}
.header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.header-logo img {
    width: 150px;
}
.logo-text {
    font-size: 20px;
    font-weight: bold;
}
.header-menu {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 0;
    margin: 0;
    list-style-type: none;
}
.header-menu li {
    margin: 0 15px;
}
.header-menu li a {
    font-size: 22px;
    font-weight: 600;
}
.header-menu li img {
    display: block;
}
.header-right {
    display: flex;
    align-items: center;
    gap: 30px;
}
.menu-btn {
    display: none;
    position: relative;
    width: 25px;
    height: 20px;
    cursor: pointer;
}
.menu-btn:before, .menu-btn:after {
    content: "";
}
.menu-btn:before, .menu-btn:after, .menu-btn span {
    position: absolute;
    width: 100%;
    height: 2px;
    -webkit-transition: all 0.4s;
}
.menu-btn span, .menu-btn:before, .menu-btn:after {
    background: #102694;
}
.menu-btn:after {
    bottom: 0;
}
.menu-btn span {
    top: 0;
    bottom: 0;
    margin: auto 0;
}
.menu-btn.active span {
    opacity: 0;
}
.menu-btn.active:before {
    transform: rotate(45deg);
    top: 7px;
}
.menu-btn.active:after {
    transform: rotate(-45deg);
    top: 7px;
}
.header-price__item {
    display: flex;
    align-items: center;
    gap: 15px;
}
.header-price__item:first-child {
    margin-bottom: 5px;
}
.header-price__img {
    width: 30px;
    position: relative;
}
.header-price__img::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #eaeaea;
}
.header-price__img img {
    width: 30px;
    display: block;
    position: relative;
}
.header-price__link {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.03em;
    border-bottom: 2px dotted #c2e6de;
}
.header-messenger__title {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.04em;
    margin-bottom: 8px;
}
.header-messenger .messengers {
    justify-content: center;
}
.messengers {
    display: flex;
    align-items: center;
    gap: 0 8px;
}
.messenger-link {
    background: #eaeaea;
    width: 51px;
    height: 51px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}
.messenger-link:hover {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}
.messenger-link.viber {
    background: #685FAB;
}
.messenger-link.telegram {
    background: #52BAEF;
}
.messenger-link.whatsapp {
    background: #4DA930;
}
.messenger-link.telephone {
    background: #d17557;
}
.header-time {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.04em;
    margin-bottom: 8px;
}
.phone-link {
    font-size: 21px;
    font-weight: 800;
    background: url(../images/phone.png) no-repeat left top;
    padding-left: 35px;
}
.header-email {
    margin-top: 5px;
}
.header-email a {
    background: url(../images/email.svg) no-repeat left 10px center;
    background-size: 17px;
    padding-left: 37px;
}
.circle {
    position: relative;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: #26AE3A;
    display: inline-block;
    transform: translateY(-50%);
    margin-right: 5px;
}
.circle::before {
    display: block;
    position: absolute;
    content: '';
    top: 50%;
    left: 50%;
    border-radius: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background-color: #12C868;
    opacity: 0.5;
    -webkit-animation: circle 2s infinite;
    animation: circle 2s infinite;
}
@keyframes circle {
    0% {
        -webkit-transform: translate(-50%, -50%) none;
        transform: translate(-50%, -50%) none;
    }
    100% {
        -webkit-transform: translate(-50%, -50%) scale(3);
        transform: translate(-50%, -50%) scale(3);
        opacity: 0;
    }
}

.title {
    font-size: 60px;
    font-weight: 600;
    margin: 0 0 40px;
}

.main {
    padding: 0;
}
.main-wrap {
    background: #EEF2F5;
    background-size: cover !important;
    border-radius: 25px;
    padding: 160px 80px;
}
.main-title {
    font-size: 65px;
    font-weight: 400;
    margin: 0 0 40px;
}
.main-title span {
    font-weight: 700;
}
.bg-adapt {
    display: none;
    border-radius: 10px;
    margin-bottom: 25px;
}
.main-subtitle {
    background: url(../images/free.png) no-repeat center left;
    padding-left: 35px;
    font-size: 30px;
    font-weight: 500;
    letter-spacing: .75px;
    margin-bottom: 40px;
}
.main-advant {
    max-width: 800px;
    display: grid;
    gap: 30px;
    grid-template-columns: 50% 50%;
    /*margin-bottom: 40px;*/
}
.advant-inner {
    display: flex;
    align-items: center;
    gap: 20px;
}
.advant-check {
    flex: 57px 0 0;
    width: 57px;
    height: 57px;
    border-radius: 50%;
    background: white url(../images/check.png) no-repeat center;
}
.advant-title {
    font-size: 18px;
    font-weight: 500;
    line-height: 26px;
    letter-spacing: .45px;
}
.advant-title span {
    font-weight: 700;
}
.main-footer {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}
.main-footer__item {
    background: white;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
}
.main-footer__title {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 13px;
}
.main-phone__time {
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 5px;
}
.main-form .form-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 11px;
}
.main-form .form-input {
    width: 220px;
}
.form-input {
    height: 53px;
    background-color: #f6f6f5;
    border-radius: 50px;
    border: 1px solid transparent;
    color: #282728;
    font-size: 13px;
    padding: 19px 25px;
}
.form-textarea {
    width: 100%;
    height: 150px;
    background-color: #f6f6f5;
    border-radius: 24px;
    border: 1px solid transparent;
    color: #282728;
    font-size: 13px;
    padding: 19px 25px;
    margin-bottom: 25px;
    resize: none;
}
.form-policy {
    font-size: 10px;
    color: #979696;
    font-weight: 500;
    letter-spacing: .25px;
}
.policy {
    color: #102694;
    text-decoration: underline;
    cursor: pointer;
}

.masters-photo {
    margin-bottom: 33px;
}
.masters-photo img {
    margin: 0 auto;
    display: block;
}
.masters-name {
    font-size: 30px;
    font-weight: 700;
    letter-spacing: .75px;
    text-align: center;
    margin-bottom: 13px;
}
.masters-advant {
    display: flex;
    justify-content: center;
    gap: 25px;
}
.masters-advant__number {
    color: #c2e6de;
    font-size: 48px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-align: center;
    margin-bottom: 10px;
}
.masters-advant__text {
    color: #8f8f8f;
    font-size: 14px;
    text-align: center;
    line-height: 17px;
    letter-spacing: .35px;
}
.masters-top {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 60px;
}
.masters-top .about-title {
    margin: 0;
}
.slider-arrows {
    width: 47px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.slick-arrow {
    padding: 0;
    margin: 0;
    border: none;
    font-size: 0;
    background: url(../images/arrow.png) no-repeat center;
    width: 11px;
    height: 25px;
    -webkit-filter: brightness(0) invert(.8);
    filter: brightness(0) invert(.8);
    -webkit-transition: .4s;
    transition: .4s;
    cursor: pointer;
}
.slick-arrow:hover {
    -webkit-filter: none;
    filter: none;
}
.slick-prev {
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1);
}
.slick-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 0;
    margin: 43px 0 0;
    list-style-type: none;
}
.slick-dots li button {
    background-color: #eee;
    width: 27px;
    height: 27px;
    border: 6px solid white;
    border-radius: 50%;
    padding: 0;
    font-size: 0;
    cursor: pointer;
    -webkit-transition: .4s;
    transition: .4s;
}
.slick-dots li.slick-active button {
    background-color: #102694;
    border-color: #adb6e5;
}
.about-row {
    display: grid;
    grid-template-columns: 50% auto;
    gap: 50px;
    margin-bottom: 100px;
}
.about-title {
    font-size: 36px;
    font-weight: 500;
    letter-spacing: .9px;
    margin-bottom: 22px;
}
.about-text {
    color: #8e8e8e;
    letter-spacing: .4px;
    line-height: 24px;
}
.about-text p {
    margin: 0 0 25px;
}
.certs-list {
    display: flex;
    flex-wrap: wrap;
}
.certs-item {
    width: 14%;
    padding: 2px;
}
.certs-item img {
    display: block;
}

.steps-list {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -25px;
}
.steps-item {
    width: 33.333%;
    padding: 0 25px;
}
.steps-inner {
    height: 100%;
    position: relative;
    background-color: #eaeaea;
    border-radius: 35px;
    padding: 70px;
}
.steps-number {
    width: 66px;
    height: 66px;
    border-radius: 50%;
    background-color: #6b9f93;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 17px;
    font-weight: 700;
    text-transform: uppercase;
    position: absolute;
    top: 30px;
    right: 35px;
}
.steps-title {
    font-size: 30px;
    letter-spacing: .75px;
    font-weight: 700;
    margin-bottom: 20px;
}
.steps-phone {
    margin-bottom: 69px;
}
.steps-text {
    font-weight: 500;
    line-height: 22px;
    letter-spacing: .4px;
    margin-bottom: 26px;
}
.steps-text span {
    font-weight: 700;
}
.steps-lists {
    padding: 0;
    margin: 0;
    list-style-type: none;
}
.steps-lists li {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: .49px;
    margin-bottom: 12px;
}
.steps-lists li:before {
    content: "";
    width: 40px;
    height: 40px;
    background: #6b9f93 url(../images/check-white.png) no-repeat center;
    border-radius: 50%;
}
.steps-active {
    background-color: #6b9f93;
    color: white;
}
.steps-active .steps-number {
    background-color: #fff;
    color: #6b9f93;
}
.steps-item form {
    max-width: 307px;
    margin: 0 auto;
}
.steps-item .form-input {
    width: 100%;
    height: 67px;
    background-color: #ffffff2E;
    border-radius: 50px;
    color: white;
    margin-bottom: 13px;
}
.steps-item .form-input::placeholder {
    color: white;
}
.steps-item .btn {
    width: 100%;
    background-color: #fff;
    color: #6b9f93;
    padding: 26px 20px;
    margin-bottom: 13px;
    cursor: pointer;
}
.steps-item .btn:after {
    background: #6b9f93;
    opacity: 0.5;
}
.steps-item .form-policy {
    text-align: center;
}
.steps-item .form-policy, .steps-item .policy, .steps-active a {
    color: white;
}
.steps-item .circle {
    background: white;
}
.steps-item .circle::before {
    background: white;
}
.steps-item .header-time {
    font-size: 13px;
}
.steps-item .phone-link {
    font-size: 23px;
    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
}

.projects-list .slick-arrow {
    position: absolute;
    top: 38%;
    z-index: 1;
    background: #102694 url(../images/arrow-white.png) no-repeat center;
    width: 57px;
    height: 57px;
    border-radius: 50%;
    -webkit-filter: none;
    filter: none;
}
.projects-list .slick-prev {
    left: -27px;
}
.projects-list .slick-next {
    right: -27px;
}
.projects-inner {
    display: flex;
    gap: 50px;
}
.projects-left {
    width: 50%;
    overflow: hidden;
}
.projects-right {
    width: 50%;
}
.projects-gallery {
    margin-bottom: 20px;
}
.projects-gallery img {
    width: 100%;
    height: 440px;
    object-fit: cover;
    border-radius: 16px;
}
.projects-title {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 20px;
}
.projects-info__item {
    display: flex;
    padding: 15px 0;
}
.projects-info__title {
    flex: 35% 0 0;
    font-size: 18px;
    font-weight: 500;
}
.projects-info__icon {
    display: inline-block;
    vertical-align: middle;
    margin-right: 15px;
}
.projects-info__icon img {
    width: 40px;
    height: 40px;
    display: block;
    border-radius: 50%;
}
.projects-info__text {
    line-height: 28px;
}
.projects-nav {
    margin: 0 -7px;
}
.projects-nav .gallery-item {
    padding: 0 7px;
}
.projects-nav .gallery-item img {
    width: 100%;
    height: 115px;
    object-fit: cover;
}
.projects-nav .gallery-inner {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
}
.projects-nav .gallery-inner:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #102694;
    opacity: 0;
    -webkit-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s;
}
.projects-nav .gallery-inner:hover:before {
    opacity: .8;
}
.projects-nav .gallery-item.slick-current .gallery-inner:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border: 2px solid #6b9f93;
    opacity: .8;
    -webkit-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s;
}

.reviews-row {
    display: grid;
    grid-template-columns: 50% auto;
    gap: 50px;
}
.reviews-col {
    overflow: hidden;
}
.reviews-top {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
}
.reviews-title {
    font-size: 36px;
    font-weight: 500;
    letter-spacing: .9px;
    margin: 0;
}
.reviews-video .reviews-inner {
    position: relative;
    border-radius: 35px;
    overflow: hidden;
}
.reviews-video .reviews-image img {
    width: 100%;
    height: 510px;
    object-fit: cover;
    object-position: top;
}
.reviews-video .reviews-text {
    position: absolute;
    left: 0;
    bottom: 0;
    padding: 0 0 50px 60px;
}
.reviews-video .reviews-text p {
    font-size: 20px;
    font-weight: 500;
    letter-spacing: .5px;
    margin: 0 0 12px;
    color: #fff;
}
.reviews-video .reviews-text span {
    font-weight: 800;
}
.reviews-video .reviews-btn {
    width: 104px;
    height: 104px;
    background: #6b9f93 url(../images/play.png) no-repeat center;
    border-radius: 50%;
    position: absolute;
    right: 60px;
    bottom: 50px;
    cursor: pointer;
}
.thanks-inner {
    min-height: 510px;
    background-color: #f6f6f5;
    border-radius: 35px;
    padding: 50px;
    display: grid;
    gap: 50px;
    grid-template-columns: 60% auto;
}
.thanks-top {
    display: flex;
    gap: 33px;
    margin-bottom: 32px;
}
.thanks-photo img {
    width: 125px;
    height: 125px;
    object-fit: cover;
    border-radius: 50%;
}
.thanks-name {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: .6px;
    margin-bottom: 16px;
}
.thanks-df {
    display: flex;
    align-items: center;
    gap: 15px;
}
.thanks-rating {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #102694;
    font-weight: 600;
}
.thanks-title {
    font-size: 20px;
    letter-spacing: .5px;
    margin-bottom: 26px;
}
.thanks-title span {
    font-weight: 800;
}
.thanks-text {
    color: #a4a4a4;
    font-size: 15px;
    letter-spacing: .38px;
    line-height: 23px;
}
.thanks-reviews img {
    display: block;
    border-radius: 16px;
}

.subtitle {
    color: #9AA4B0;
    font-size: 25px;
    font-weight: 500;
    margin-bottom: 25px;
}
.services-hint {
    position: relative;
    display: inline-block;
    cursor: pointer;
    padding: 15px;
    border-radius: 16px;
}
.services-hint span {
    color: #102694;
    border-bottom: 2px dotted #102694; 
}
.services-hint img {
    display: inline-block;
    vertical-align: middle;
}
.hint-info {
    width: 320px;
    position: absolute;
    top: 50%;
    left: 100%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    font-size: 16px;
    background: white;
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.15);
    border-radius: 16px;
    display: none;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}
.hint-info li {
    margin-bottom: 5px;
}
.services-hint:hover .hint-info {
    display: block;
}
.services-list {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -25px;
}
.services-item {
    width: 33.333%;
    padding: 25px;
}
.services-inner {
    height: 100%;
    border: 2px solid #DCE5EF;
    border-radius: 16px;
    padding: 55px 50px;
}
.services-image {
    margin-bottom: 20px;
}
.services-image img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
    border-radius: 16px;
}
.services-title {
    font-size: 35px;
    letter-spacing: .75px;
    font-weight: 700;
    margin-bottom: 30px;
}
.services-lists {
    padding: 0;
    margin: 0 0 30px;
    list-style-type: none;
}
.services-lists li {
    color: #8e8e8e;
    font-size: 22px;
    font-weight: 500;
    letter-spacing: .4px;
    margin-bottom: 11px;
}
.services-text {
    color: #8e8e8e;
    font-size: 22px;
    font-weight: 500;
    letter-spacing: .4px;
    margin-bottom: 11px;
}
.services-more {
    color: #102694;
    font-size: 17px;
    font-weight: 500;
    display: inline-block;
    border-bottom: 2px dotted #102694;
    cursor: pointer;
}
.services-more img {
    -webkit-transition: 0.3s;
    transition: 0.3s;
    margin-left: 5px;
}
.services-more.active img {
    -webkit-transform: scaleY(-1);
    transform: scaleY(-1);
}
.services-info {
    display: none;
}
.services-info ul li {
    color: #8e8e8e;
    font-weight: 500;
    line-height: 28px;
    margin-bottom: 10px;
    letter-spacing: .4px;
}
.services-price {
    font-size: 45px;
    font-weight: 700;
    margin: 40px 0 30px;
}
/*.services-price span {
    font-size: 45px;
    font-weight: 700;
}*/
.services-btn {
    width: 100%;
    font-size: 16px;
    padding: 24.5px 20px;
}
/*#services .services-item:last-child .services-inner {
    background: url(../images/black-bg.jpg);
    border-color: transparent;
    color: white;
}*/

.advantages {
    background: #f6f6f5;
}
.advantages .title {
    font-size: 49px;
    margin-bottom: 50px;
}
.advantages-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.advantages-item:nth-child(odd) {
    width: 35.7%;
}
.advantages-item:nth-child(even) {
    width: 59.1%;
}
.advantages-top {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}
.advantages-icon {
    flex: 40px 0 0;
    width: 40px;
    height: 40px;
    background: #6b9f93 url(../images/check-white.png) no-repeat center;
    background-size: 12px;
    border-radius: 10px;
    margin-right: 20px;
}
.advantages-title {
    font-size: 30px;
    letter-spacing: .75px;
    font-weight: 700;
}
.advantages-text {
    color: #8e8e8e;
    font-size: 17px;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: .4px;
}
.advantages-text b {
    color: #282728;
}

.questions-row {
    display: flex;
    gap: 50px;
}
.questions-col {
    width: 100%;
}
.questions-inner {
    border-top: 1px solid #EEF2F5;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}
.questions-item:first-child .questions-inner {
    border-color: transparent;
}
.questions-title {
    font-size: 25px;
    font-weight: 500;
    padding: 30px;
    padding-left: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}
.questions-arrow {
    background: #EFEFEF;
    flex: 40px 0 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.questions-arrow svg {
    -webkit-transition: 0.3s;
    transition: 0.3s;
}
.questions-arrow svg path {
    fill: #ACACAC;
}
.questions-text {
    max-width: 600px;
    padding: 30px;
    line-height: 24px;
    padding-top: 0;
    display: none;
}
.questions-item.active .questions-inner {
    background: #f8f8f8;
    border-radius: 25px;
    border-color: transparent;
}
.questions-item.active .questions-title {
    padding-left: 30px;
}
.questions-item.active .questions-arrow {
    background: #6b9f93;
}
.questions-item.active .questions-arrow svg {
    transform: rotateX(-180deg);
}
.questions-item.active .questions-arrow svg path {
    fill: white;
}
.questions-item.active + div .questions-inner {
    border-color: transparent;
}

.bg {
    overflow: hidden;
}

.calc-list {
    margin-bottom: 100px;
}
.calc-item {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}
.calc-icon {
    flex: 40px 0 0;
    width: 40px;
    height: 40px;
    background: #6b9f93 url(../images/check-white.png) no-repeat center;
    border-radius: 50%;
}
.calc-title {
    font-size: 25px;
    font-weight: 500;
}
.calc-title .phone, .calc-title span {
    font-weight: 700;
}
.consult-form {
    position: relative;
    width: 80%;
    min-height: 344px;
    border-radius: 35px;
    background-color: #f1f7fa;
    padding: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.consult-title {
    font-size: 30px;
    font-weight: 500;
    text-align: center;
    margin-bottom: 20px;
}
.consult-title span {
    font-weight: 700;
}
.consult-inputs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 13px;
}
.consult-form .form-input {
    width: 300px;
    height: 67px;
    background: white;
}
.consult-form .btn {
    padding: 26px 20px;
}
.consult-img {
    position: absolute;
    left: 0;
    bottom: 0;
}
.consult-img img {
    display: block;
}
.consult-bg {
    position: absolute;
    top: -120px;
    right: -45.5%;
}

.contacts-row {
    display: grid;
    grid-template-columns: 270px 470px auto;
    gap: 50px;
}
/*.contacts-row .contacts-col:first-child {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}*/
.contacts-subtitle {
    font-size: 25px;
    font-weight: 700;
    margin-bottom: 20px;
}
.contacts-list {
    margin-bottom: 40px;
}
.contacts-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}
.contacts-icon {
    flex: 20px 0 0;
    width: 20px;
}
.contacts-icon img {
    display: block;
}
.contacts-phone {
    font-size: 21px;
    font-weight: 800;
}
.contacts-messengers {
    margin-bottom: 40px;
}
.contacts-images {
    height: 248px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: space-between;
    margin-bottom: 20px;
}
.contacts-images.mb-0 {
    margin-bottom: 0;
}
.contacts-images a:first-child {
    width: 60%;
    height: 248px;
    margin-right: 15px;
}
.contacts-images a:nth-child(2), .contacts-images a:nth-child(3) {
    width: 37%;
    height: 117px;
}
.contacts-images img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.contacts-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}
.contacts-heading .contacts-subtitle {
    margin-bottom: 0;
}
.line-dotted {
    color: #6b9f93;
    font-size: 18px;
    font-weight: 700;
    border-bottom: 1px dotted #102694;
}
#map {
    width: 100%;
    height: 565px;
    background: #ccc;
}

.portfolio {
    background-color: rgb(246 246 245 / 40%);
}
.portfolio-list {
    margin: 0 -15px;
}
.portfolio-item {
    padding: 0 15px;
}
.portfolio-image {
    overflow: hidden;
    border-radius: 16px;
    margin-bottom: 20px;
}
.portfolio-image img {
    width: 100%;
    height: 334px;
    object-fit: cover;
    transition: 0.3s;
}
.portfolio-image img:hover {
    transform: scale(1.1);
}
.portfolio-title {
    font-size: 25px;
    letter-spacing: .75px;
    font-weight: 700;
    margin-bottom: 15px;
}
.portfolio-text {
    color: #8e8e8e;
    font-size: 18px;
    font-weight: 500;
}
.portfolio-list .slick-arrow {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    filter: none;
    position: absolute;
    top: 30%;
    z-index: 1;
}
.portfolio-list .slick-prev {
    background: #6b9f93 url(../images/slider-prev.svg) no-repeat center;
    left: -80px;
    -webkit-transform: none;
    transform: none;
}
.portfolio-list .slick-next {
    background: #6b9f93 url(../images/slider-next.svg) no-repeat center;
    right: -80px;
}
.portfolio-list .slick-dots li button {
    width: 15px;
    height: 15px;
    border: none;
}

.reviews-list {
    margin: 0 -15px;
}
.reviews-list .slick-track {
    display: flex !important;
}
.reviews-list .slick-arrow {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    filter: none;
    position: absolute;
    top: 30%;
    z-index: 1;
}
.reviews-list .slick-prev {
    background: #6b9f93 url(../images/slider-prev.svg) no-repeat center;
    left: -80px;
    -webkit-transform: none;
    transform: none;
}
.reviews-list .slick-next {
    background: #6b9f93 url(../images/slider-next.svg) no-repeat center;
    right: -80px;
}
.reviews-item {
    padding: 0 15px;
    height: inherit;
}
.reviews-inner {
    height: 100%;
    padding: 50px;
    background-color: #f6f6f5;
    border-radius: 35px;
}
.reviews-info {
    display: flex;
    align-items: center;
    gap: 30px;
}
.reviews-photo {
    margin-bottom: 20px;
}
.reviews-photo img {
    width: 75px;
    display: block;
}
.reviews-name {
    font-size: 25px;
    letter-spacing: .75px;
    font-weight: 700;
    margin-bottom: 15px; 
}
.reviews-text {
    color: #8e8e8e;
    font-size: 18px;
    font-weight: 500;
}
.reviews-list .slick-dots li button {
    width: 15px;
    height: 15px;
    border: none;
}
.reviews-add {
    display: table;
    margin: 0 auto;
    margin-top: 40px;
}

footer {
    background: #f6f6f5;
    padding: 50px 0;
}
.footer-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
.footer-privacy {
    color: #102694;
    text-decoration: underline;
    cursor: pointer;
}

.scroll-up {
    position: fixed;
    right: 25px;
    bottom: 25px;
    background: #6b9f93;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
}
.scroll-up svg {
    transform: scale(1.5);
}
.scroll-up svg path {
    fill: white;    
}

.popup-form {
    width: 400px;
    max-width: 100%;
    padding: 50px;
    border-radius: 25px;
    display: none;
}
.popup-title {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 20px;
}
.popup-text {
    font-size: 18px;
    font-weight: 500;
    line-height: 24px;
    margin-bottom: 20px;
}
.popup-form .form-label {
    color: #8e8e8e;
    margin-bottom: 13px;
}
.popup-form .form-input, .popup-form .btn {
    width: 100%;
    margin-bottom: 13px;
}
.popup-form .form-policy {
    font-size: 13px;
}

.wpcf7-spinner, .wpcf7-not-valid-tip, .wpcf7-response-output {
    display: none !important;
}
.wpcf7-not-valid {
    border-color: red;
}

#popup-done, #reviews-done {
    text-align: center;
}
#popup-policy {
    width: 700px;
    max-width: 100%;
    display: inline-block;
}

.cookie-notify {
    position: fixed;
    display: none;
    left: 50%;
    bottom: 20px;
    transform: translateX(-50%);
    width: 420px;
    max-width: 90%;
    background: #fff;
    border-radius: 40px;
    box-shadow: 0 1px 25px -10px rgb(23 59 145 / 50%);
    padding: 15px 25px;
    z-index: 1000;
}
.cookie-notify__content {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: space-between;
    color: #252525;
    line-height: 1.2;
    font-size: clamp(0.875rem, 0.85rem + 0.13vw, 1rem);
}
.cookie-notify__btn {
    background: #6b9f93;
    color: white;
    padding: 12px 15px;
    border-radius: 50px;
    display: inline-block;
    cursor: pointer;
    transition: all .3s ease;
}
.cookie-notify__btn:hover {
    opacity: 0.8;
}

.consult {
    background-color: #f6f6f5;
}
.consult .main-footer {
    gap: 30px;
    display: grid;
    grid-template-columns: 35% 1fr;
}
.consult .main-footer__item {
    width: 100%;
    background-color: #fff;
    padding: 40px;
    border-radius: 25px;
}
/*.consult .main-form .form-input {
    background-color: #fff;
}*/
.consult .phone-link {
    font-size: 23px;
}
.consult .main-phone__time {
    font-size: 14px;
    margin-bottom: 10px;
}

@media (max-width: 1500px) {
    .projects-list .slick-prev {
        left: -15px;
    }
    .projects-list .slick-next {
        right: -15px;
    }

    .consult-bg {
        right: -65%;
    }
    .consult-form {
        width: 100%;
    }


    .portfolio-list .slick-arrow, .reviews-list .slick-arrow {
        width: 50px;
        height: 50px;
    }
    .portfolio-list .slick-prev, .reviews-list .slick-prev {
        left: 0;
    }
    .portfolio-list .slick-next, .reviews-list .slick-next {
        right: 0;
    }
}

@media (max-width: 1280px) {
    section {
        padding: 25px 0;
    }
    .header-price, .header-messenger {
        display: none;
    }
    .header-menu li {
        margin: 0 10px;
    }
    .main-wrap {
        padding: 30px;
    }
    .main-title {
        font-size: 40px;
        margin-bottom: 20px;
    }
    .main-subtitle {
        font-size: 16px;
        margin-bottom: 25px;
    }
    .main-advant {
        gap: 30px;
        /*margin-bottom: 25px;*/
    }
    .advant-inner {
        gap: 15px;
    }
    .advant-check {
        flex: 40px 0 0;
        width: 40px;
        height: 40px;
        background-size: 13px;
    }
    .advant-title {
        line-height: 1.3;
    }
    .main-footer__title {
        font-size: 20px;
    }

    .about-title {
        font-size: 25px;
    }
    .about-row {
        gap: 30px;
    }
    .masters-name {
        font-size: 20px;
    }
    .masters-advant__number {
        font-size: 30px;
    }
    .slick-dots {
        margin-top: 25px;
    }

    .steps-list {
        margin: 0 -10px;
    }
    .steps-item {
        padding: 0 10px;
    }
    .steps-inner {
        padding: 30px;
    }
    .steps-title {
        font-size: 25px;
    }
    .steps-phone {
        margin-bottom: 30px;
    }
    .steps-item .phone-link {
        font-size: 18px;
    }
    .steps-number {
        width: 40px;
        height: 40px;
        right: 30px;
        font-size: 14px;
    }

    .reviews-row {
        gap: 20px;
    }
    .reviews-title {
        font-size: 25px;
    }
    .reviews-video .reviews-text {
        padding: 0 0 30px 30px;    
    }
    .reviews-video .reviews-text p {
        font-size: 16px;
    }
    .reviews-video .reviews-btn {
        width: 60px;
        height: 60px;
        background-size: 12px;
        right: 30px;
        bottom: 30px;
    }

    .thanks-inner {
        gap: 20px;
        padding: 30px;
    }
    .thanks-top {
        gap: 20px;
        margin-bottom: 20px;
    }
    .thanks-photo img {
        flex: 80px 0 0;
        width: 80px;
        height: 80px;
    }
    .thanks-name {
        font-size: 18px;
        margin-bottom: 12px;
    }
    .thanks-name br {
        display: none;
    }
    .thanks-title {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .title {
        font-size: 25px;
        margin-bottom: 25px;
    }
    .subtitle {
        font-size: 16px;
    }

    .steps-lists li:before {
        flex: 30px 0 0;
        width: 30px;
        height: 30px;
        background-size: 12px;
    }

    .projects-inner {
        gap: 20px;
    }
    .projects-title {
        font-size: 25px;
    }

    .services-list {
        margin: 0 -10px;
    }
    .services-item {
        padding: 10px;
    }
    .services-inner {
        padding: 20px;
    }
    .services-image img {
        height: 250px;
    }
    .services-title {
        font-size: 25px;
        margin-bottom: 20px;
    }
    .services-lists {
        margin-bottom: 20px;
    }
    .services-price {
        font-size: 25px;
        margin: 30px 0;
    }
/*    .services-price span {
       
    }*/
    .services-btn {
        padding: 18px;
    }

    .advantages .title {
        font-size: 25px;
        margin-bottom: 25px;
    }
    .advantages-top {
        margin-bottom: 20px;
    }
    .advantages-title {
        font-size: 18px;
    }
    .advantages-icon {
        margin-right: 15px;
    }
    .advantages-text {
        font-size: 16px;
    }

    .questions-row {
        gap: 20px;
    }
    .questions-title {
        font-size: 18px;
        padding: 15px;
    }
    .questions-text {
        padding: 15px;
    }
    .questions-item.active .questions-title {
        padding-left: 15px;
    }
    .questions-item:first-child .questions-inner {
        border-color: #EEF2F5;    
    }

    .calc-title {
        font-size: 18px;
    }
    .consult-title {
        font-size: 25px;
    }

    .popup-form {
        padding: 30px;
    }
    .popup-title {
        font-size: 25px;
    }

    .contacts-row {
        gap: 30px;
    }
    .contacts-subtitle {
        font-size: 18px;
    }
    .line-dotted {
        font-size: 16px;
    }

    .portfolio-list {
        margin: 0 -10px;
    }
    .portfolio-item {
        padding: 0 10px;
    }
    .portfolio-image img {
        height: 250px;
    }
    .portfolio-list .slick-arrow {
        top: 26%;
    }
    .reviews-list .slick-arrow {
        top: 0;
        bottom: 0;
        margin: auto 0;
    }
    .portfolio-title {
        font-size: 20px;
    }
    .portfolio-text {
        font-size: 16px;
    }

    .reviews-inner {
        padding: 30px 40px;
    }
    .reviews-photo img {
        width: 60px;
    }
    .reviews-info {
        gap: 15px;
    }
    .reviews-name {
        font-size: 20px;
    }
    .reviews-text {
        font-size: 16px;
    }

    .consult .main-footer {
        gap: 20px;
    }
    .main-footer__title {
        font-size: 20px;
    }
    .consult .phone-link {
        font-size: 21px;
    }
}

@media (max-width: 1024px) {
    .main-advant {
        grid-template-columns: 100%;
    }
    .main-footer__item {
        width: 100%;
        padding: 20px;
    }

    .about-row {
        grid-template-columns: 100%;
        margin-bottom: 50px;  
    }
    .masters-photo img {
        height: 50vw;     
    }

    .projects-inner {
        flex-wrap: wrap;
    }
    .projects-left, .projects-right {
        width: 100%;
    }

    .reviews-row {
        grid-template-columns: 100%;    
    }
    .reviews-video .reviews-image img {
        height: 50vw;
    }

    .services-item {
        width: 100%;
    }

    .steps-item {
        width: 100%;
        margin-bottom: 20px;
    }
    .steps-item form {
        max-width: 100%;
        margin: 0;
    }

    .projects-gallery img {
        height: 50vw; 
    }
    .projects-nav .gallery-item img {
        height: 19vw;
    }

    .calc-list {
        margin-bottom: 50px;
    }
    .consult-img, .consult-bg {
        display: none;
    }
    .consult-form {
        padding: 30px;
        min-height: auto;
    }

    .contacts-row {
        grid-template-columns: 100%;    
    }
    .contacts-list {
        margin-bottom: 0;
    }
    .contacts-messengers {
        margin-bottom: 20px;
    }
    .contacts-images img {
        border-radius: 16px;
    }
    #map {
        height: 280px;
        border-radius: 16px;
        overflow: hidden;
    }

    .consult .main-footer {
        grid-template-columns: 100%;
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 70px;
    }
    header {
        padding: 15px 0;
    }
    .menu-btn {
        display: block;
    }
    .header-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #f6f6f5;
        width: 100%;
        height: 100vh;
        padding: 30px;
        z-index: 2;
        transform: translateY(15px);
    }
    .header-menu {
        margin-bottom: 20px;
    }
    .header-menu li {
        width: 100%;
        margin: 0 0 15px;
    }
    .header-menu li a {
        font-size: 20px;
    }
    .header-price {
        display: block;
        margin-bottom: 25px;
    }
    .header-messenger__title {
        text-align: center;
    }
    .header-messenger {
        display: block;
    }

    .main-title {
        font-size: 25px;
    }
    .main-title br {
        display: none;
    }
    .main-advant {
        gap: 20px;
    }
    .advant-title {
        font-size: 16px;
    }

    .questions-row {
        flex-wrap: wrap;
        gap: 0;
    }

    .thanks-inner {
        grid-template-columns: 100%;
        gap: 20px;    
    }
    .thanks-reviews img {
        height: 50vw;
        margin: 0 auto;    
    }

    .advantages-item {
        margin-bottom: 20px;
    }
    .advantages-item:nth-child(odd), .advantages-item:nth-child(even) {
        width: 100%;
    }

    .footer-row {
        justify-content: center;
    }
}

@media (max-width: 550px) {


    .main-wrap {
        background: #f3f1ed;
        border-radius: 16px;
    }
    .main-subtitle {
        font-weight: 600;
    }
    .main-title, .main-subtitle {
        line-height: 1.4;
    }
    .bg-adapt {
        display: block;
    }

    .projects-info__item {
        flex-wrap: wrap;
        padding: 10px 0;
    }
    .projects-info__title {
        font-size: 16px;
        flex: 100% 0 0;
        margin-bottom: 12px;
    }

    .reviews-video .reviews-image img {
        height: 300px;
    }
    .reviews-video .reviews-btn {
        top: 30px;
        bottom: auto;
    }

    .slick-dots {
        gap: 10px;
    }

    .consult-form .btn, .consult-form .form-input, .consult-form [data-name="your-phone"] {
        width: 100%;
    }

    .header-logo img {
        width: 70px;
    }
    .header-time {
        font-size: 12px;
    }
    .phone-link {
        font-size: 18px;
        background-position: left top -5px;
    }

    .hint-info {
        left: 0;
        right: 0;
        font-size: 12px;
    }

    .contacts-heading {
        flex-wrap: wrap;
        gap: 10px;
    }

    .reviews-name {
        font-size: 18px;
    }
}

.grecaptcha-badge {
    width: 70px !important;
    overflow: hidden !important;
    transition: all .3s ease !important;
    left: 4px !important;
    bottom: 4px !important;
    z-index: 9;
}
.grecaptcha-badge:hover {
    width: 256px !important;
}