/*---RESET---*/
/* Box sizing rules */
*,
*::before,
*::after {
    box-sizing: border-box;
}

/* Remove default margin */
.post,
.page,
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
    margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul,
ol {
    margin: 0;
    list-style: none;
}

/* Set core root defaults */
html:focus-within {
    scroll-behavior: smooth;
}

/* Set core body defaults */
body {
    min-height: 100vh;
    text-rendering: optimizeSpeed;
    line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
    text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
    max-width: 100%;
    display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
    font: inherit;
}

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
    html:focus-within {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/*---RESET---*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Helvetica';
    color: #ffffff;
    font-style: normal;
    text-decoration: none;
    outline: none;
    user-select: none;
    font-size: 24px;
    line-height: 1em;
    font-weight: 400;
}

body {
    background-color: #ffffff;
}

#page {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1 0 auto;
}

footer {
    flex: 0 0 auto;
}

.container {
    max-width: 1812px;
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
}

.is-hidden {
    display: none !important;
}

header {
    display: flex;
    flex-direction: column;
}

header .top_line {
    background-color: #FFDF20;
    padding: 16px 0;
}

header .top_line .top_line-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

header .top_line .top_line-container a {
    font-weight: 700;
    font-size: 20px;
    color: #000000;
    display: flex;
    align-items: center;
    gap: 15px;
}

header .top_line .top_line-container a svg {
    width: 22px;
}

header .top_line .top_line-container .switch_page {
    text-align: center;
    padding: 9px 15px 10px;
}

header .top_line .top_line-container ul {
    display: flex;
    justify-content: space-between;
    gap: 45px;
}

header .main_line {
    padding: 16px 0;
}

header .main_line .main_line-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

header .main_line .main_line-container .logo {
    width: 121px;
}

header .main_line .main_line-container .header-navigation {
    display: flex;
    align-items: center;
    gap: 40px;
}

header .main_line .main_line-container .header-navigation a {
    color: #000000;
    font-weight: 400;
    font-size: 20px;
    transition: .3s;
}

header .main_line .main_line-container .header-navigation a:hover,
header .main_line .main_line-container .header-navigation .current-menu-item a {
    /*color: #FFDF20;*/
    border-bottom: 1px solid #000;
}

.main-banner_section {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    padding: 125px 0;
}

.main-banner_content {
    background-color: #15151524;
    backdrop-filter: blur(10px);
    padding: 55px 25px;
    border-radius: 35px;
    max-width: 931px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.main-banner_content h1 {
    font-weight: 700;
    font-size: 66px;
    text-align: center;
    color: #FFDF20;
}

.main-banner_content p {
    font-weight: 400;
    font-size: 36px;
    text-align: center;
}

.main-banner_content span {
    text-align: center;
    font-weight: 300;
    font-size: 25px;
    margin-top: 35px;
    margin-bottom: 35px;
}

.main-banner_content .main-btn {
    font-size: 18px;
}

.main-btn {
    background-color: #FFDF20;
    border-radius: 30px;
    padding: 17px 25px;
    font-weight: 700;
    font-size: 24px;
    color: #000000;
    width: fit-content;
    /*border: 1px solid #000;*/
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-align: center;
    transition: .3s;
}

.main-btn:hover {
    background-color: #3B3B3B;
    /*border-color: #3B3B3B;*/
    color: #FFDF20;
}

.main-btn svg path {
    transition: .3s;
}

.main-btn:hover svg path {
    fill: #FFDF20;
}

.white-btn {
    background-color: #FFFFFF;
    border-radius: 30px;
    padding: 17px 25px;
    font-weight: 700;
    font-size: 24px;
    color: #000000;
    width: fit-content;
    border: 1px solid #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-align: center;
    transition: .3s;
}

.white-btn:hover {
    background-color: #3B3B3B;
    border-color: #3B3B3B;
    color: #FFFFFF;
}

.transp-btn {
    border: 1px solid #fff;
    background-color: transparent;
    color: #fff;
    border-radius: 30px;
    padding: 17px 14px;
    font-weight: 700;
    font-size: 24px;
    display: block;
    width: fit-content;
    text-align: center;
    transition: .3s;
}

.transp-btn:hover {
    color: #FFDF20;
    border-color: #FFDF20;
}

.transp-black-btn {
    color: #000;
    border-color: #000;
}

.more-btn {
    background-color: #fff;
    font-size: 20px;
    font-weight: 400;
    padding: 10px;
    border-radius: 30px;
    color: #000000;
    width: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-align: center;
    transition: .3s;
}

.more-btn:hover {
    background-color: #FFDF20;
}

.more-btn svg path {
    transition: .3s;
}

.spacer_section {
    height: 180px;
}

.marquee-container {
    overflow: hidden;
    width: 100%;
    white-space: nowrap;
}

.marquee-track {
    display: inline-block;
    white-space: nowrap;
    will-change: transform;
}

.marquee-track span {
    display: inline-block;
}

.advantages-track {
    background-color: #FFDF20;
    padding: 55px 0;
}

.advantages-track span {
    color: #000000;
    font-weight: 700;
    font-size: 28px;
    text-align: center;
    text-transform: uppercase;
    text-decoration: underline;
    text-decoration-style: solid;
    position: relative;
    padding: 0 30px;
}

.advantages-track span:before {
    content: '';
    position: absolute;
    top: 0;
    left: -10px;
    bottom: 0;
    margin: auto;
    width: 12px;
    height: 12px;
    background-color: #FFFFFF;
    border-radius: 50%;
}

/*---DROPDOWN---*/
.dropdown-container {
    position: relative;
    display: inline-block;
    text-align: left;
    margin-right: auto;
}

.dropdown-label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
}

.select-dropdown-button {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: fit-content;
    border: 1px solid #000000;
    padding: 11px 9px;
    border-radius: 0;
    background-color: #fff;
    cursor: pointer;
    transition: background-color 0.15s ease-in-out;
    outline: none;
}

.select-dropdown-button:hover,
.select-dropdown-button:focus {
    border-color: #FFDF20;
}

.select-dropdown-button:hover .selected-value,
.select-dropdown-button:focus .selected-value {
    color: #FFDF20;
}

.select-dropdown-button:hover svg,
.select-dropdown-button:focus svg {
    transform: rotate(180deg);
}

.select-dropdown-button:hover svg path,
.select-dropdown-button:focus svg path {
    fill: #FFDF20;
}

.select-dropdown-button .selected-value {
    flex-grow: 1;
    text-align: left;
    text-transform: uppercase;
    color: #000;
    font-size: 20px;
}

.select-dropdown-button svg {
    margin-left: 0.5rem;
    height: 16px;
    width: 16px;
}

.select-dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 0.5rem;
    width: 100%;
    border-radius: 0;
    background-color: #FFFFFF;
    border: 1px solid #000000;
    outline: none;
    z-index: 10;
    opacity: 0;
    transform: scale(0.9);
    transform-origin: top left;
    visibility: hidden;
    transition: opacity 0.2s ease-out, transform 0.2s ease-out, visibility 0s linear 0.2s;
}

.select-dropdown-content.show {
    visibility: visible;
    opacity: 1;
    transform: scale(1);
    transition: opacity 0.2s ease-out, transform 0.2s ease-out,
    visibility 0s linear;
}

.select-dropdown-content ul {
    list-style: none;
}

.select-dropdown-content a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 11px 9px;
    font-size: 20px;
    color: #000;
    text-decoration: none;
    font-weight: 500;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.15s ease-in-out, color 0.15s ease-in-out;
}

.select-dropdown-content .current-lang a,
.select-dropdown-content .select-option:hover {
    color: #FFDF20;
}

/*---DROPDOWN---*/

/*---MOBILE-MENU---*/
.burger {
    display: none;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    max-width: 100%;
    height: 100vh;
    background: #3B3B3B;
    padding: 90px 70px 35px;
    box-shadow: 8px 8px 30px 0 #00000066;
    transition: right 0.3s ease;
    z-index: 999;
    overflow: auto;
}

.mobile-menu.active {
    right: 0;
    width: 385px;
}

.close-menu {
    background: none;
    border: none;
    position: absolute;
    top: 25px;
    right: 25px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    color: #fff;
}

.close-menu svg {
    width: 90%;
    height: 90%;
}

/*---MOBILE-MENU---*/

.main-title {
    font-weight: 700;
    font-size: 48px;
    color: #ffffff;
    margin-bottom: 30px;
}

.main-description {
    font-weight: 300;
    font-size: 32px;
    color: #ffffff;
}

.services_section {
    background-color: #3B3B3B;
    padding: 110px 0;
}

.services_list {
    margin-top: 70px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, auto);
    width: 100%;
}

.services_list .item:nth-child(3n+1),
.services_list .item:nth-child(3n+2) {
    border-right: 1px solid #ffffff;
}

.services_list .item:nth-child(-n+3) {
    padding-bottom: 67px;
}

.services_list .item:nth-child(n+4):nth-child(-n+6) {
    padding-top: 67px;
}

.services_list .item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 50px;
}

.services_list .item .content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
    max-width: 420px;
}

.services_list .item .title {
    font-weight: 700;
    font-size: 24px;
}

.services_list .item .description {
    font-weight: 400;
    font-size: 22px;
}

.services_section .main-title {
    text-align: center;
}

.services_section .main-description {
    max-width: 80%;
    margin: 0 auto;
    text-align: center;
    font-size: 28px;
}

.benefits_section {
    background-color: #3B3B3B;
    background-image: url('/wp-content/uploads/2025/07/Rectangle-32-scaled.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    overflow-x: hidden;
}

.benefits_section .content {
    display: flex;
    position: relative;
}

.benefits_section .content .benefits-list {
    width: 50%;
    padding: 128px 0 148px;
}

.benefits_section .content .benefits-list .main-title {
    color: #FFDF20;
}

.benefits_section .content .benefits-list ul.custom-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 30px;
}

.benefits_section .content .benefits-list ul.custom-list li {
    position: relative;
    padding-left: 58px;
}

.benefits_section .content .benefits-list ul.custom-list li:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    margin: auto;
    width: 28px;
    height: 28px;
    background-image: url("../img/check.svg");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center center;
}

.benefits_section .content .benefits-bg {
    width: calc(50% + 60px);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    position: absolute;
    top: 0;
    height: 100%;
    right: -60px;
}

.stage_section .main-title {
    color: #000000;
    text-align: center;
    margin-bottom: 80px;
}

.stage-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(1, auto);
    gap: 30px;
}

.stage-list .item {
    background-color: #F7F4E2;
    border-radius: 32px;
    box-shadow: 0 0 12px 0 #5B58444D inset;
    padding: 50px 36px;
    position: relative;
}

.stage-list .item img {
    position: absolute;
    top: 50px;
    right: 36px;
    width: 47px;
    height: 47px;
    object-fit: contain;
}

.stage-list .item span {
    font-weight: 700;
    font-size: 64px;
    color: #000000;
    margin-bottom: 18px;
    display: block;
}

.stage-list .item p {
    font-weight: 300;
    font-size: 28px;
    color: #000000;
}

.experience_section {
    background: linear-gradient(to top, #FFDF20 0%, #FFFFFF 100%) 0 100% / 100% 70% no-repeat, #FFFFFF;
    padding-bottom: 85px;
}

.experience_section .content {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 auto;
    max-width: 1176px;
}

.experience_section .main-title {
    color: #000000;
    margin-bottom: 70px;
}

.experience_section p {
    color: #000000;
    font-weight: 700;
    font-size: 32px;
    text-align: center;
    margin-top: 50px;
    margin-bottom: 30px;
    max-width: 840px;
}

.experience_section span {
    color: #000000;
    font-weight: 400;
    font-size: 24px;
    text-align: center;
    margin-bottom: 50px;
    max-width: 880px;
}

.video-block {
    position: relative;
    width: 100%;
    max-width: 100%;
    aspect-ratio: 16/9;
    margin: 0 auto;
    overflow: hidden;
}

.video-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.video-poster {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 70px;
    height: 70px;
    transform: translate(-50%, -50%);
    background: url('../img/play.svg') no-repeat center center;
    background-size: contain;
    border: none;
    cursor: pointer;
    z-index: 2;
    transition: .3s;
}

.video-play-btn:hover {
    width: 70px;
    height: 70px;
    transform: translate(-50%, -50%);
    background: url('../img/play-yellow.svg') no-repeat center center;
    background-size: contain;
}

.partners_section .main-title {
    color: #000000;
    text-align: center;
}

.partners_section .main-description {
    color: #000000;
    text-align: center;
    max-width: 840px;
    margin: 0 auto 30px;
}

.partners-track span {
    padding: 0 15px;
    width: 272px;
    height: 160px;
}

.partners-track span a {
    display: block;
    width: 100%;
    height: 100%;
}

.partners-track span a img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.projects_section {
    padding: 110px 0;
    background-color: #FFDF20;
}

.projects_section .main-title {
    color: #000000;
    text-align: center;
}

.projects_section .main-description {
    color: #000000;
    text-align: center;
    max-width: 840px;
    margin: 0 auto 70px;
}

.project-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(1, auto);
    gap: 100px 30px;
}

.project-list .item {
    display: flex;
    flex-direction: column;
}

.project-list .item .image {
    height: 100%;
    margin-bottom: 30px;
    border-radius: 25px;
    overflow: hidden;
    position: relative;
    max-height: 450px;
}

.project-list .item .image img {
    border-radius: 25px;
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.project-list .item .image .label {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: #00000066;
    backdrop-filter: blur(20px);
    padding: 22px 16px 19px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.project-list .item .image .label .info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.project-list .item .image .label .info .title {
    font-size: 28px;
}

.project-list .item .image .label .info .hidden {
    display: flex;
    align-items: center;
    gap: 15px;
}

.project-list .item .image .label .info .hidden .price,
.project-list .item .image .label .info .hidden .time,
.project-list .item .image .label .info .hidden .square {
    font-size: 22px;
}

.project-list .item p {
    font-size: 28px;
    color: #000000;
    margin-bottom: 15px;
}

.project-list .item span {
    color: #000000;
    font-size: 20px;
}

.project-list + .white-btn {
    margin: 70px auto 0;
}

.project-list .item .image .label .info .hidden,
.project-list .item .image .label .more-btn {
    display: none;
}

.project-list .item:hover .image .label .info .hidden,
.project-list .item:hover .image .label .more-btn {
    display: flex;
}

.book_section {
    padding: 110px 0 135px;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

.book_section .content {
    max-width: 725px;
    margin-left: auto;
}

.book_section .content .main-description {
    font-weight: 300;
    font-size: 24px;
    margin-bottom: 30px;
}

.buttons {
    display: flex;
    align-items: center;
    gap: 30px;
}

.contact-form_section .content {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 95px;
    max-height: 745px;
    height: 100vh;
}

.contact-form_section .content .form_image {
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    flex: 1;
}

.contact-form_section .content .form {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 705px;
    position: relative;
}

.contact-form_section .content .form .main-title {
    color: #000;
    text-align: center;
}

.contact-form_section .content .form form {
    display: flex;
    flex-wrap: wrap;
    gap: 20px 30px;
}

.contact-form_section .content .form form p {
    width: 100%;
}

.contact-form_section .content .form form p:nth-child(4),
.contact-form_section .content .form form p:nth-child(5) {
    width: calc((100% / 2) - 15px);
}

.contact-form_section .content .form br {
    display: none;
}

.contact-form_section .content .form input,
.contact-form_section .content .form textarea {
    border: 1px solid #000;
    background-color: #fff;
    border-radius: 10px;
    padding: 20px 25px;
    font-size: 18px;
    line-height: 24px;
    color: #000;
    width: 100%;
}

.contact-form_section .content .form textarea {
    max-height: 210px;
    resize: none;
}

.contact-form_section .content .form input::placeholder {
    color: #000000;
}

.contact-form_section .content .form input[type=submit] {
    background-color: #3B3B3B;
    color: #fff;
    font-weight: 700;
    font-size: 20px;
    line-height: 1.5;
    transition: .3s;
    cursor: pointer;
    border: none;
}

.contact-form_section .content .form input[type=submit]:hover {
    background-color: #FFDF20;
    color: #000000;
}

.contact-form_section .cf7-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    align-items: center;
    justify-content: center;
}

.contact-form_section .cf7-modal__content {
    background: #fff;
    padding: 40px;
    max-width: 651px;
    position: relative;
}

.contact-form_section .cf7-modal__close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 20px;
    cursor: pointer;
    color: #000;
}

.contact-form_section #cf7-modal-message {
    color: #000;
}

.wpcf7-not-valid-tip {
    font-size: 14px;
    margin-top: 2px;
}

.wpcf7 form .wpcf7-response-output {
    margin: 0 auto;
    color: #000;
    text-align: center;
    font-size: 16px;
}

.why_section {
    padding: 180px 0 200px;
}

.why_section .container {
    display: flex;
    flex-direction: column;
    gap: 300px;
}

.why_section .why_item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 75px;
}

.why_section .why_item .info {
    max-width: 725px;
    width: 100%;
}

.why_section .why_item .info .main-title,
.why_section .why_item .info .main-description p,
.why_section .why_item .info ul li {
    color: #000000;
}

.why_section .why_item .info .buttons {
    margin-top: 60px;
}

.why_section .why_item .info .buttons a {
    margin: 0;
}

.why_section .why_item .info .main-description p,
.why_section .why_item .info .main-description li {
    font-size: 24px;
    font-weight: 300;
}

.why_section .why_item .info .main-description li {
    position: relative;
    padding-left: 30px;
}

.why_section .why_item .info .main-description li * {
    color: #000;
}

.why_section .why_item .info .main-description li:before {
    content: '';
    position: absolute;
    top: 0;
    left: 8px;
    bottom: 0;
    margin: auto;
    width: 6px;
    height: 6px;
    background-color: #000;
    border-radius: 50%;
}

.why_section .why_item .info ul.custom-list {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.why_section .why_item .info ul.custom-list li {
    position: relative;
    padding-left: 58px;
}

.why_section .why_item .info ul.custom-list li:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    margin: auto;
    width: 28px;
    height: 28px;
    background-image: url(../img/check-black.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center center;
}

.why_section .why_item .info .main-btn {
    margin-top: 70px;
}

.why_section .why_item .image {
    max-width: 875px;
    height: 500px;
    border-radius: 25px;
    overflow: hidden;
}

.why_section .why_item .image img {
    height: 100%;
    object-fit: cover;
}

.why_section .why_item .swiper,
.why_section .why_item .swiper .swiper-slide img {
    height: 100%;
    width: 100%;
}

.why_section .why_item .swiper .swiper-slide img {
    object-fit: cover;
}

.why_section .why_item .documents-list {
    max-width: 875px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px 40px;
}

.why_section .why_item .documents-list .item {
    background-color: #E9E6D0;
    border-radius: 40px;
    padding: 24px 18px;
}

.why_section .why_item .documents-list .item .title {
    color: #000;
    font-size: 28px;
    margin-bottom: 15px;
}

.why_section .why_item .documents-list .item .description {
    color: #5C5C5C;
    font-size: 24px;
    font-weight: 300;
    margin-bottom: 65px;
}

.why_section .why_item .documents-list .item .item-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.why_section .why_item .documents-list .item .item-info .item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    padding: 0;
}

.why_section .why_item .documents-list .item .item-info p {
    color: #000;
    font-size: 16px;
}

.why_section .why_item .documents-list .item .item-info a {
    width: 47px;
    height: 47px;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .3s;
}

.why_section .why_item .documents-list .item .item-info a:hover {
    background-color: #FFDF20;
}

.faqs_section .main-title {
    color: #000000;
    text-align: center;
}

.faq {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-question {
    cursor: pointer;
    padding: 20px 25px;
    background: #3B3B3B;
    border-radius: 10px;
    font-weight: bold;
}

.faq-answer {
    display: none;
    padding: 10px 15px 0;
    color: #000000;
    font-size: 18px;
}

.faq-question.active {
    background: #FFDF20;
    color: #000000;
}

.swiper .swiper-button-next, .swiper .swiper-button-prev {
    width: 52px;
    height: 52px;
}

.subbanner_section {
    padding: 185px 0 85px;
}

.subbanner_section .title {
    color: #3b3b3b;
    font-size: 80px;
    margin-bottom: 34px;
}

.subbanner_section .description {
    color: #000;
    font-weight: 400;
    font-size: 24px;
    line-height: 1.3;
    max-width: 725px;
}

.subbanner_section .main-btn {
    margin-top: 50px;
}

.subbanner_section .meta-info {
    display: flex;
    flex-direction: column;
    gap: 7px;
    margin-top: 30px;
}

.subbanner_section .meta-info li {
    padding: 7px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    color: #000;
}

.guarantees-main .subbanner_section {
    border-bottom: 1px solid #000;
}

.photos_section {
    overflow: hidden;
    padding: 140px 0;
    background-color: #F7F4E2;
}

.photos_wrapper {
    overflow: hidden;
    position: relative;
}

.photos_wrapper img {
    max-height: 515px;
    width: 100%;
    object-fit: cover;
    border-radius: 30px;
}

.portfolio_section {
    background-color: #3B3B3B;
    padding: 110px 0 120px;
}

.portfolio_section .main-title,
.portfolio_section .main-description {
    text-align: center;
}

.portfolio_section .main-description {
    margin-bottom: 70px;
}

.portfolio-tab .tab-panel {
    display: none;
}

.portfolio-tab .tab-panel.active {
    display: block;
}

.portfolio-tab .tab-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 70px;
}

.portfolio-tab .tab-buttons button {
    color: #fff;
    font-size: 24px;
    background-color: transparent;
    border: none;
    cursor: pointer;
    padding: 15px;
}

.portfolio-tab .tab-buttons button:hover,
.portfolio-tab .tab-buttons button.active {
    text-decoration: underline;
}

.portfolio-main .project-list .item p,
.portfolio-main .project-list .item span {
    color: #fff;
}

.blog-main .subbanner_section {
    border-bottom: 1px solid #000000;
}

.main-grid_section {
    padding: 180px 0;
}

.main_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 100px 30px;
}

.main_grid .item {
    box-shadow: -1px 4px 4px 0 #00000040;
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: stretch;
}

.main_grid .item .image,
.main_grid .item .image img {
    height: 325px;
}

.main_grid .item .image img {
    border-radius: 30px;
    object-fit: cover;
    width: 100%;
}

.main_grid .item .info {
    background-color: #FFFFFF;
    padding: 45px 35px;
    border-radius: 30px;
    margin-top: -65px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
    height: 100%;
}

.main_grid .item .info .title {
    font-weight: 700;
    font-size: 32px;
    color: #000;
}

.main_grid .item .info .description {
    font-size: 20px;
    color: #000;
}

.main_grid .item .info .main-btn {
    font-size: 20px;
    font-weight: 400;
    padding: 10px;
}

.contacts-main .subbanner_section {
    border-bottom: 1px solid #000;
}

.contacts_section {
    padding: 180px 0;
}

.contacts-content {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 50px;
}

.contacts-content .contacts-support {
    background-color: #3B3B3B;
    padding: 100px 60px;
    max-width: 675px;
}

.contacts-content .contacts-support .title {
    font-weight: 700;
    font-size: 36px;
    margin-bottom: 70px;
}

.contacts-content .contacts-support ul {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.contacts-content .contacts-support ul li a {
    display: flex;
    align-items: center;
    gap: 15px;
    transition: .3s;
}

.contacts-content .contacts-support ul li a svg path {
    transition: .3s;
}

.contacts-content .contacts-support ul li a:hover {
    color: #FFDF20;
}

.contacts-content .contacts-support ul li a:hover svg path {
    fill: #FFDF20;
}

.contacts-content .contacts-map {
    width: fit-content;
}

.services-main .subbanner_section {
    border-bottom: 1px solid #000000;
}

.services-main .item .more-btn {
    background-color: #FFDF20;
}

.services-main .item .more-btn:hover {
    background-color: #3B3B3B;
    color: #FFDF20;
}

.services-main .item .more-btn:hover svg path {
    fill: #FFDF20;
}

.partners-main .subbanner_section {
    border-bottom: 1px solid #000;
}

.partners-list_section {
    background-color: #F7F4E2;
    padding: 50px 0;
}

.partners-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 100px 30px;
}

.partners-list .item {
    display: flex;
    flex-direction: column;
}

.partners-list .item .image {
    height: 305px;
    border-radius: 30px;
    background-color: #757575;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 35px;
}

.partners-list .item .image img {
    width: 80%;
    height: 80%;
    object-fit: contain;
}

.partners-list .item .title {
    font-weight: 700;
    font-size: 32px;
    color: #000;
    margin-bottom: 15px;
}

.partners-list .item .description {
    font-size: 20px;
    color: #000;
    margin-bottom: 25px;
}

.partners-list .item .main-btn {
    font-size: 20px;
    padding: 12px 10px;
}

.single-service .subbanner_section {
    border-bottom: 1px solid #000;
}

.single-service .title {
    max-width: 1025px;
    font-size: 64px;
    color: #000;
}

.single-service .stage-list {
    padding-bottom: 64px;
    border-bottom: 1px solid #000;
}

.single-service .stage-list .item {
    background-color: #3B3B3B;
    box-shadow: 0 4px 4px 0 #00000040 inset;
}

.single-service .stage-list .item span {
    color: #FFFFFF;
}

.single-service .stage-list .item p {
    color: #FFFFFF;
}

.single-service .stage-list .item img {
    opacity: .5;
}

.full-image_section {
    height: 900px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.full-image_section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.full-image_section .container {
    position: relative;
    height: 100%;
}

.full-image_section .full-image_description {
    position: absolute;
    top: 0;
    left: 15px;
    bottom: 0;
    margin: auto;
    background-color: #FFFFFFE5;
    padding: 30px;
    border-radius: 30px;
    max-width: 688px;
    width: calc(100% - 30px);
    height: fit-content;
}

.full-image_section .full-image_description * {
    color: #000;
}

.full-image_section .full-image_description .title {
    font-weight: 700;
    font-size: 32px;
    line-height: 1.3;
    margin-bottom: 25px;
}

.post-content {
    display: flex;
    gap: 180px;
}

.post-content .last_posts {
    width: 100%;
    max-width: 573px;
}

.post-content .last_posts .main_grid {
    grid-template-columns: 1fr;
}

.post-content .content * {
    color: #000;
    font-size: 20px;
}

.post-content .content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.post-content .content .wp-block-heading {
    font-weight: 700;
    font-size: 36px;
}

.post-content .content .wp-block-list {
    display: flex;
    flex-direction: column;
    list-style: revert;
    padding: revert;
}

.single-project .why_section {
    background-color: #F7F4E2;
}

.progress_list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px 30px;
}

.progress_list .item {
    background-color: #3B3B3B;
    box-shadow: 0 4px 4px 0 #00000040 inset;
    border-radius: 30px;
    padding: 57px 54px;
}

.progress_list .item .title {
    font-weight: 700;
    font-size: 34px;
    line-height: 1.3;
    margin-bottom: 30px;
}

.progress_list .item p {
    font-size: 22px;
    line-height: 1.3;
}

.before-after {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px 30px;
}

.before-after .item {
    max-width: calc(50% - 20px);
    width: 100%;
    margin: 0 auto;
}

.before-after .item .main-title {
    text-align: center;
    color: #000;
    margin-bottom: 30px;
}

.before-after .item img {
    height: 500px;
    width: 100%;
    object-fit: cover;
}

.instagram_section {
    background-color: #F7F4E2;
    padding: 50px 0;
}

.instagram_section .main-title {
    color: #000;
}

.instagram-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.instagram-info .instagram-header {
    display: flex;
    align-items: center;
    gap: 25px;
}

.instagram-info .instagram-header img {
    height: 80px;
    width: 80px;
    border-radius: 50%;
}

.instagram-info .instagram-header a {
    font-weight: 700;
    font-size: 24px;
    color: #000000;
}

.instagram-info .transp-btn {
    border-color: #000000;
    color: #000000;
}

.instagram-info .transp-btn:hover {
    border-color: #FFDF20;
    color: #FFDF20;
}

footer {
    background-color: #3B3B3B;
    padding: 110px 0 140px;
}

footer .site-info {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 50px;
}

footer .site-info .item {
    max-width: 270px;
}

footer .site-info .title {
    font-size: 32px;
    margin-bottom: 30px;
}

footer .site-info .col-title {
    position: relative;
    margin-bottom: 50px;
    text-transform: uppercase;
}

footer .site-info .col-title:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    height: 1px;
    background-color: #fff;
    width: 100%;
}

footer .site-info ul {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

footer .site-info .item.item-menu {
    max-width: 430px;
    width: 100%;
}

footer .site-info .item.item-menu ul {
    flex-wrap: wrap;
    height: 320px;
}

footer .site-info ul li a {
    font-weight: 300;
    font-size: 24px;
    transition: .3s;
}

footer .site-info ul li a svg {
    width: 32px;
    height: 32px;
}

footer .site-info .social {
    margin-top: 30px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 30px;
}

footer .site-info .social li a svg path {
    transition: .3s;
}

footer .site-info ul li a:hover {
    color: #FFDF20;
}

footer .site-info .social li a:hover svg path {
    fill: #FFDF20;
}

footer .copyright a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    font-size: 16px;
}

.fade-text {
    opacity: 0;
    transition: opacity 1s ease;
}

.fade-text.visible {
    opacity: 1;
}

.fade-block {
    opacity: 0;
    transform: translateY(100px);
    transition: opacity 1s ease, transform 1s ease;
}

.fade-block.visible {
    opacity: 1;
    transform: translateY(0);
}

.popmake-content .form {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 675px;
    position: relative;
    background-color: #fff;
    padding: 25px;
    border-radius: 25px;
}

.popmake-content .form .main-title {
    color: #000;
    text-align: center;
}

.popmake-content .form form {
    display: flex;
    flex-wrap: wrap;
    gap: 20px 30px;
}

.popmake-content .form form p {
    width: 100%;
}

.popmake-content .form form p:nth-child(4),
.popmake-content .form form p:nth-child(5) {
    width: calc((100% / 2) - 15px);
}

.popmake-content .form br {
    display: none;
}

.popmake-content .form input,
.popmake-content .form textarea {
    border: 1px solid #000;
    background-color: #fff;
    border-radius: 10px;
    padding: 20px 25px;
    font-size: 18px;
    line-height: 24px;
    color: #000;
    width: 100%;
}

.popmake-content .form textarea {
    max-height: 210px;
    resize: none;
}

.popmake-content .form input::placeholder {
    color: #000000;
}

.popmake-content .form input[type=submit] {
    background-color: #3B3B3B;
    color: #fff;
    font-weight: 700;
    font-size: 20px;
    line-height: 1.5;
    transition: .3s;
    cursor: pointer;
    border: none;
}

.popmake-content .form input[type=submit]:hover {
    background-color: #FFDF20;
    color: #000000;
}

@media screen and (max-width: 1599px) {
    .why_section .why_item .documents-list {
        gap: 15px 20px;
    }

    .post-content {
        gap: 80px;
    }

    .post-content .last_posts {
        max-width: 475px;
    }
}

@media screen and (max-width: 1299px) {
    .select-dropdown-button .selected-value {
        font-size: 18px;
    }

    .spacer_section {
        height: 130px;
    }

    header .main_line .main_line-container .header-navigation {
        gap: 15px;
    }

    header .main_line .main_line-container .header-navigation a,
    header .top_line .top_line-container a {
        font-size: 18px;
    }

    .main-banner_section {
        padding: 120px 0;
    }

    .main-banner_content h1 {
        font-size: 66px;
    }

    .main-banner_content p {
        font-size: 36px;
    }

    .main-banner_content span {
        font-size: 25px;
    }

    .main-btn,
    .white-btn,
    .transp-btn {
        font-size: 18px;
    }

    .advantages-track {
        padding: 40px 0;
    }

    .advantages-track span {
        font-size: 23px;
        padding: 0 25px;
    }

    .services_section {
        padding: 80px 0;
    }

    .main-title {
        font-size: 34px;
        margin-bottom: 25px;
    }

    .main-description {
        font-size: 24px !important;
    }

    .services_list {
        margin-top: 60px;
    }

    .services_list .item img {
        width: 42px;
    }

    .services_list .item .title {
        font-size: 22px;
    }

    .services_list .item .description {
        font-size: 18px;
    }

    .services_list .item {
        padding: 0 20px;
    }

    .services_list .item:nth-child(-n+3) {
        padding-bottom: 40px;
    }

    .services_list .item:nth-child(n+4):nth-child(-n+6) {
        padding-top: 40px;
    }

    .benefits_section .content .benefits-list {
        padding: 78px 0 98px;
    }

    .benefits_section .content .benefits-list ul {
        gap: 20px;
    }

    .benefits_section .content .benefits-list ul li {
        font-size: 20px;
    }

    .stage_section .main-title {
        margin-bottom: 60px;
    }

    .stage-list {
        gap: 20px;
    }

    .stage-list .item {
        padding: 36px 25px;
    }

    .stage-list .item img {
        top: 36px;
        right: 36px;
        width: 38px;
        height: 38px;
    }

    .stage-list .item span {
        font-size: 46px;
    }

    .stage-list .item p {
        font-size: 22px;
    }

    .experience_section {
        padding-bottom: 60px;
    }

    .experience_section .main-title {
        margin-bottom: 60px;
    }

    .experience_section p {
        font-size: 26px;
        margin-top: 42px;
        margin-bottom: 25px;
    }

    .experience_section span {
        font-size: 18px;
        margin-bottom: 40px;
    }

    .partners-track span {
        padding: 0 10px;
        width: 172px;
        height: 105px
    }

    .projects_section {
        padding: 95px 0;
    }

    .projects_section .main-description {
        margin: 0 auto 60px;
    }

    .project-list .item .image {
        margin-bottom: 20px;
        max-height: 350px;
    }

    .project-list .item .image .label .info .title {
        font-size: 22px;
    }

    .project-list .item .image .label .info .hidden .price,
    .project-list .item .image .label .info .hidden .time,
    .project-list .item .image .label .info .hidden .square {
        font-size: 18px;
    }

    .project-list .item .image .label .more-btn {
        font-size: 14px;
    }

    .project-list .item p {
        font-size: 23px;
        margin-bottom: 10px;
    }

    .project-list .item span {
        font-size: 16px;
    }

    .project-list + .main-btn {
        margin: 50px auto 0;
    }

    .book_section {
        padding: 95px 0 95px;
    }

    .contact-form_section .content {
        gap: 65px;
    }

    .contact-form_section .content .form {
        max-width: 600px;
    }

    .why_section {
        padding: 130px 0 160px;
    }

    .why_section .container {
        gap: 150px;
    }

    .why_section .why_item .info ul.custom-list {
        gap: 20px;
    }

    .why_section .why_item .info ul.custom-list li {
        font-size: 20px;
    }

    .why_section .why_item .info,
    .why_section .why_item .image {
        width: 50%;
    }

    .why_section .why_item .documents-list {
        grid-template-columns: repeat(2, 1fr);
    }

    .why_section .why_item .documents-list .item .title {
        font-size: 22px;
    }

    .why_section .why_item .documents-list .item .item-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .why_section .why_item .documents-list .item .item-info p {
        font-size: 14px;
    }

    .why_section .why_item .documents-list .item .description {
        font-size: 18px;
        margin-bottom: 45px;
    }

    .faq-question {
        font-size: 20px;
    }

    .subbanner_section {
        padding: 115px 0 65px;
    }

    .subbanner_section .title {
        font-size: 55px;
    }

    .subbanner_section .description {
        font-size: 20px;
    }

    .portfolio_section {
        padding: 80px 0 90px;
    }

    .portfolio_section .main-description {
        margin-bottom: 35px;
    }

    .portfolio-tab .tab-buttons {
        margin-bottom: 50px;
    }

    .project-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 65px 30px;
    }

    .photos_section {
        padding: 100px 0;
    }

    .main-grid_section {
        padding: 130px 0;
    }

    .main_grid .item .info .main-btn {
        font-size: 14px;
    }

    .main_grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 65px 30px;
    }

    .main_grid .item .image,
    .main_grid .item .image img {
        height: 275px;
    }

    .main_grid .item .info {
        padding: 35px 30px;
    }

    .main_grid .item .info .title {
        font-size: 24px;
    }

    .main_grid .item .info .description {
        font-size: 16px;
    }

    .contacts_section {
        padding: 130px 0;
    }

    .contacts-content .contacts-support {
        padding: 60px 40px;
    }

    .contacts-content .contacts-support .title {
        font-size: 28px;
        margin-bottom: 50px;
    }

    .contacts-content .contacts-support ul {
        gap: 25px;
    }

    .contacts-content .contacts-support ul li a {
        font-size: 21px;
    }

    .partners-list {
        gap: 65px 30px;
    }

    .partners-list .item .image {
        height: 210px;
    }

    .partners-list .item .title {
        font-size: 24px;
    }

    .partners-list .item .description {
        font-size: 16px;
    }

    .partners-list .item .main-btn {
        font-size: 16px;
    }

    .full-image_section {
        height: 585px;
    }

    .post-content {
        gap: 50px;
    }

    .post-content .last_posts {
        max-width: 375px;
    }

    .post-content .content * {
        font-size: 16px;
    }

    .post-content .content {
        gap: 35px;
    }

    .post-content .content .wp-block-heading {
        font-size: 28px;
    }

    .full-image_section .full-image_description .title {
        font-size: 26px;
        margin-bottom: 20px;
    }

    .full-image_section .full-image_description * {
        font-size: 20px;
    }

    .progress_list .item {
        padding: 37px 34px;
    }

    .progress_list .item .title {
        font-size: 26px;
    }

    .progress_list .item p {
        font-size: 16px;
    }

    .before-after .item img {
        height: 390px;
    }

    .instagram-info .instagram-header a {
        font-size: 18px;
    }

    footer {
        padding: 95px 0 130px;
    }

    footer .site-info .item.item-menu {
        max-width: 275px;
    }

    footer .site-info .title {
        font-size: 26px;
    }

    footer .site-info .col-title {
        font-size: 22px;
    }

    footer .site-info ul {
        gap: 15px;
    }

    footer .site-info ul li a {
        font-size: 20px;
    }
}

@media screen and (max-width: 992px) {
    .burger {
        display: flex;
    }

    .mobile-menu ul {
        display: flex;
        flex-direction: column;
        gap: 24px;
    }

    .mobile-menu ul li a {
        font-size: 16px;
        transition: .3s;
    }

    .mobile-menu ul .current_page_item a:hover,
    .mobile-menu ul .current_page_item a {
        color: #FFDF20;
    }

    header {
        flex-direction: column-reverse;
    }

    header .top_line .top_line-container a {
        font-size: 16px;
    }

    header .main_line .main_line-container .logo {
        width: 80px;
    }

    .select-dropdown-button .selected-value {
        font-size: 16px;
    }

    [class*="menu-header-menu"] {
        display: none;
    }

    .mobile-menu [class*="menu-header-menu"] {
        display: block;
    }

    .services_list {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, auto);
    }

    .services_list .item:nth-child(3n+1), .services_list .item:nth-child(3n+2) {
        border: none;
    }

    .services_list .item:nth-child(n+4):nth-child(-n+6) {
        padding-top: 0;
    }

    .stage-list {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(2, auto);
    }

    .project-list .item .image {
        max-height: 350px;
    }

    .project-list .item .image img {
        object-fit: cover;
        object-position: center;
        height: 100%;
        width: 100%;
    }

    .book_section {
        position: relative;
    }

    .book_section:after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: #000000B2;
    }

    .book_section .content {
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        z-index: 1;
        position: relative;
    }

    .contact-form_section .content {
        gap: 35px;
        max-height: 550px;
    }

    .contact-form_section .content .form {
        max-width: 400px;
    }

    .contact-form_section .content .form input, .contact-form_section .content .form textarea {
        padding: 14px 16px;
        font-size: 16px;
    }

    .contact-form_section .content .form input[type=submit] {
        font-size: 16px;
    }

    .contact-form_section .content .form textarea {
        max-height: 150px;
    }

    .why_section .why_item {
        flex-direction: column;
        gap: 60px;
    }

    .why_section .why_item:nth-child(2) {
        flex-direction: column-reverse;
    }

    .why_section .why_item .info,
    .why_section .why_item .image {
        width: 100%;
    }

    .why_section .why_item .info {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .why_section .why_item .info .main-description {
        text-align: center;
    }

    .why_section .why_item .info ul.custom-list {
        margin-top: 10px;
    }

    .why_section .why_item .documents-list {
        max-width: 100%;
        width: 100%;
    }

    .photos_section {
        padding: 80px 0;
    }

    .main_grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .contacts-content {
        flex-direction: column;
    }

    .contacts_section .container {
        padding: 0;
    }

    .contacts-content .contacts-support {
        margin: 0 15px;
        max-width: 100%;
    }

    .contacts-content .contacts-map, .contacts-content .contacts-map iframe {
        width: 100%;
    }

    .partners-list {
        grid-template-columns: repeat(3, 1fr);
    }

    .post-content {
        flex-direction: column-reverse;
    }

    .post-content .last_posts {
        max-width: 100%;
    }

    .progress_list {
        grid-template-columns: repeat(1, 1fr);
    }

    .before-after .item {
        width: 100%;
        max-width: 100%;
    }

    footer .site-info {
        flex-direction: column;
        align-items: center;
        gap: 60px;
    }

    footer .site-info .item {
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    footer .site-info .item.item-menu ul {
        width: 100%;
        height: 225px;
    }

    footer .site-info .item:nth-child(2),
    footer .site-info .item:nth-child(4) {
        text-align: center;
    }

    footer .site-info .col-title {
        margin-bottom: 20px;
    }

    footer .site-info .col-title:after {
        display: none;
    }

    .popmake-content .form {
        max-width: 350px;
    }

    .popmake-content .form input, .popmake-content .form textarea {
        padding: 14px 16px;
        font-size: 16px;
    }

    .popmake-content .form input[type=submit] {
        font-size: 16px;
    }

    .popmake-content .form textarea {
        max-height: 150px;
    }
}

@media screen and (max-width: 767px) {

    .spacer_section {
        height: 80px;
    }

    header .top_line {
        padding: 13px 0;
    }

    header .top_line .top_line-container ul {
        flex-direction: column;
        gap: 14px;
    }

    header .top_line .top_line-container a {
        font-size: 12px;
    }

    header .top_line .top_line-container a svg {
        width: 16px;
    }

    .main-banner_section {
        padding: 85px 0;
    }

    .main-banner_content h1 {
        font-size: 30px;
    }

    .main-banner_content p {
        font-size: 24px;
        margin-bottom: 25px;
    }

    .main-banner_content span {
        font-size: 18px;
    }

    .main-btn,
    .white-btn,
    .transp-btn {
        font-size: 14px;
    }

    .advantages-track {
        padding: 28px 0;
    }

    .advantages-track span {
        font-size: 18px;
        padding: 0 20px;
    }

    .services_section {
        padding: 50px 0;
    }

    .main-title {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .main-description {
        font-size: 16px !important;
    }

    .services_list {
        margin-top: 50px;
        grid-template-columns: repeat(1, 1fr);
        grid-template-rows: repeat(5, auto);
    }

    .services_list .item img {
        width: 31px;
    }

    .services_list .item .title {
        font-size: 18px;
    }

    .services_list .item .description {
        font-size: 12px;
    }

    .services_list .item {
        padding: 0 5px 30px !important;
    }

    .benefits_section .content {
        flex-direction: column-reverse;
    }

    .benefits_section .content .benefits-bg {
        height: 215px;
        top: 0;
        left: -15px;
        width: calc(100% + 30px);
    }

    .benefits_section .content .benefits-bg img {
        object-fit: cover;
    }

    .benefits_section .content .benefits-list {
        padding: 245px 0 30px;
        margin: 0 auto;
        width: fit-content;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .benefits_section .content .benefits-list ul {
        gap: 10px;
    }

    .benefits_section .content .benefits-list ul li {
        padding-left: 46px;
    }

    .benefits_section .content .benefits-list ul.custom-list li:before {
        width: 16px;
        height: 16px;
    }

    .benefits_section .content .benefits-list ul li {
        font-size: 14px;
    }

    .stage_section .main-title {
        margin-bottom: 35px;
    }

    .stage-list .item {
        padding: 22px 15px;
    }

    .stage-list .item img {
        top: 22px;
        right: 15px;
        width: 28px;
        height: 28px;
    }

    .stage-list .item span {
        font-size: 28px;
    }

    .stage-list .item p {
        font-size: 12px;
    }

    .experience_section {
        padding-bottom: 35px;
    }

    .experience_section .main-title {
        margin-bottom: 35px;
    }

    .experience_section p {
        font-size: 20px;
        margin-top: 35px;
        margin-bottom: 20px;
    }

    .experience_section span {
        font-size: 14px;
        margin-bottom: 30px;
    }

    .partners-track span {
        padding: 0 5px;
        width: 70px;
        height: 50px;
    }

    .projects_section {
        padding: 80px 0;
    }

    .projects_section .main-description {
        margin: 0 auto 60px;
    }

    .project-list {
        gap: 30px;
        grid-template-columns: repeat(1, 1fr);
        grid-template-rows: repeat(3, auto);
    }

    .project-list .item .image {
        margin-bottom: 10px;
    }

    .project-list .item .image img {
        border-radius: 15px;
    }

    .project-list .item .image .label {
        padding: 7px 14px;
        border-radius: 15px;
    }

    .project-list .item .image .label .info .title {
        font-size: 16px;
    }

    .project-list .item .image .label .info .hidden,
    .project-list .item .image .label .more-btn {
        display: flex;
    }

    .project-list .item .image .label .info .hidden .price,
    .project-list .item .image .label .info .hidden .time,
    .project-list .item .image .label .info .hidden .square {
        font-size: 14px;
    }

    .project-list .item .image .label .more-btn {
        font-size: 12px;
        padding: 5px;
    }

    .project-list .item p {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .project-list .item span {
        font-size: 12px;
    }

    .project-list .item .image {
        max-height: 165px;
    }

    .project-list + .main-btn {
        margin: 30px auto 0;
    }

    .book_section {
        padding: 75px 0 50px;
        background-position: 20% 100%;
    }

    .book_section .content .main-description {
        font-size: 16px;
    }

    .buttons {
        gap: 20px;
    }

    .contact-form_section .content {
        justify-content: center;
    }

    .contact-form_section .content .form_image {
        display: none;
    }

    .contact-form_section .content .form input, .contact-form_section .content .form textarea {
        padding: 9px 15px;
        font-size: 12px;
    }

    .contact-form_section .content .form {
        max-width: calc(100% - 35px);
    }

    .why_section {
        padding: 80px 0 120px;
    }

    .why_section .container {
        gap: 100px;
    }

    .why_section .why_item {
        gap: 30px;
    }

    .why_section .why_item .info .main-description {
        font-size: 16px;
    }

    .why_section .why_item .info ul.custom-list {
        gap: 10px;
    }

    .why_section .why_item .info ul.custom-list li {
        font-size: 16px;
        padding-left: 46px;
    }

    .why_section .why_item .info ul.custom-list li:before {
        width: 16px;
        height: 16px;
    }

    .why_section .why_item .image {
        height: 350px;
    }

    .why_section .why_item .documents-list .item {
        border-radius: 20px;
        padding: 15px 10px;
    }

    .why_section .why_item .documents-list .item .title {
        font-size: 16px;
    }

    .why_section .why_item .documents-list .item .description {
        font-size: 12px;
        margin-bottom: 30px;
    }

    .why_section .why_item .documents-list .item .item-info p {
        font-size: 12px;
    }

    .why_section .why_item .documents-list .item .item-info a {
        width: 31px;
        height: 31px;
    }

    .why_section .why_item .documents-list .item .item-info a svg {
        width: 13px;
    }

    .faq-question {
        padding: 15px 20px;
        font-size: 18px;
    }

    .faq-answer {
        font-size: 16px;
    }

    .subbanner_section {
        padding: 65px 0 40px;
    }

    .subbanner_section .title {
        font-size: 30px;
        margin-bottom: 30px;
    }

    .subbanner_section .description {
        font-size: 14px;
    }

    .portfolio_section {
        padding: 50px 0;
    }

    .portfolio_section .main-description {
        margin-bottom: 15px;
    }

    .portfolio-tab .tab-buttons {
        margin-bottom: 45px;
    }

    .portfolio-tab .tab-buttons button {
        font-size: 18px;
    }

    .photos_section {
        padding: 60px 0;
    }

    .main-grid_section {
        padding: 80px 0;
    }

    .main_grid {
        gap: 35px 30px;
    }

    .main_grid .item .image,
    .main_grid .item .image img {
        height: 225px;
    }

    .main_grid .item .info {
        padding: 20px;
    }

    .main_grid .item .info .title {
        font-size: 16px;
    }

    .main_grid .item .info .description {
        font-size: 12px;
    }

    .main_grid .item .info .main-btn {
        font-size: 12px;
        padding: 5px;
    }

    .contacts-main .subbanner_section {
        border-bottom: 0;
        padding-bottom: 0;
    }

    .contacts_section {
        padding: 0 0 80px;
    }

    .contacts-content .contacts-support {
        padding: 20px;
    }

    .contacts-content .contacts-support .title {
        margin-bottom: 30px;
        font-size: 20px;
    }

    .contacts-content .contacts-support ul {
        gap: 15px;
    }

    .contacts-content .contacts-support ul li a {
        font-size: 14px;
    }

    .contacts-content .contacts-support ul li a svg {
        width: 17px;
    }

    .partners-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 20px;
    }

    .partners-list .item .image {
        height: 115px;
        margin-bottom: 10px;
    }

    .partners-list .item .title {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .partners-list .item .description {
        font-size: 12px;
        margin-bottom: 15px;
    }

    .partners-list .item .main-btn {
        font-size: 13px;
        padding: 7px;
    }

    .subbanner_section .meta-info {
        gap: 0;
    }

    .subbanner_section .meta-info li {
        font-size: 14px;
    }

    .full-image_section {
        height: 275px;
    }

    .post-content .content * {
        font-size: 14px;
    }

    .post-content .content .wp-block-heading {
        font-size: 20px;
    }

    .full-image_section .container {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .full-image_section .full-image_description {
        padding: 15px;
        position: unset;
    }

    .full-image_section .full-image_description .title {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .single-project .full-image_section {
        height: fit-content;
        padding: 135px 0;
    }

    .progress_list .item {
        padding: 20px;
    }

    .progress_list .item .title {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .progress_list .item p {
        font-size: 12px;
    }

    .before-after .item img {
        height: 225px;
    }

    .instagram-info .instagram-header img {
        height: 50px;
        width: 50px;
    }

    footer {
        padding: 80px 0;
    }

    footer .site-info .title {
        font-size: 20px;
        margin-bottom: 20px;
    }

    footer .site-info .col-title {
        font-size: 20px;
    }

    footer .site-info ul li a {
        font-size: 16px;
    }

    footer .site-info .social li a svg {
        height: 22px;
    }
}

@media screen and (max-width: 479px) {
    .instagram-info {
        flex-direction: column;
    }
}