@font-face {
    font-family: 'Monitorica';
    src: url('/fonts/Monitorica-Bd.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}


@font-face {
    font-family: 'Monitorica';
    src: url('/fonts/Monitorica-Rg.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}


@font-face {
    font-family: 'Montserrat';
    src: url('/fonts/Montserrat-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}


@font-face {
    font-family: 'Montserrat';
    src: url('/fonts/Montserrat-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}


@font-face {
    font-family: 'Inter';
    src: url('/fonts/Inter-VariableFont_opsz,wght.ttf') format('truetype-variations');
    font-weight: 100 900;
    font-style: normal;
}


@font-face {
    font-family: 'Roboto';
    src: url('/fonts/Roboto-VariableFont_wdth,wght.ttf') format('truetype-variations');
    font-weight: 100 900;
    font-style: normal;
}


@font-face {
    font-family: 'Roboto Slab';
    src: url('/fonts/RobotoSlab-VariableFont_wght.ttf') format('truetype-variations');
    font-weight: 100 900;
    font-style: normal;
}

:root {
    --header-height: 6.5rem;
}

[id] {
    scroll-margin-top: calc(var(--header-height) + 2rem);
}

@media (max-width: 850px) {
    [id] {
        scroll-margin-top: calc(var(--header-height) + 1.5rem);
    }
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Monitorica", Sans-serif, serif;
}

html, body {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    line-height: 1.6;
    color: #54595F;
}

html {
    scroll-behavior: smooth;
}

.mt-2 {
    margin-top: 2rem;
}

.main-sticky-header {
    position: fixed;
    top: 10px;
    left: 50%;
    transform: translateX(-50%) translateY(-150%);
    width: 99%;
    max-width: 1880px;
    height: var(--header-height);
    background-color: #1E8CD7;
    z-index: 1500;
    display: flex;
    align-items: center;
    transition: transform 0.8s ease-in-out;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border-radius: 15px;
}


@media (max-width: 850px) {
    :root {
        --header-height: 4.5rem !important;
    }
    .main-sticky-header {
        width: auto;
        left: auto;
        right: 10px;
        top: 10px;
        transform: translateY(-160%) !important;
        padding: 0 10px;
    }

    .main-sticky-header.is-visible {
        transform: translateY(0) !important;
    }

    .sticky-logo {
        display: none !important;
    }

    .sticky-content-wrapper {
        justify-content: center;
        padding: 0 !important;
    }


    .main-wrapper.with-offset {
        margin-top: 0 !important;
    }

    body {
        padding-top: 0 !important;
    }
}

.main-sticky-header.is-visible {
    transform: translateX(-50%) translateY(0);
}

.sticky-content-wrapper {
    width: 100%;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sticky-logo {
    height: calc(var(--header-height) - 1rem);
    background: white;
    padding: 5px 10px;
    border-radius: 10px;
    display: block;
    align-items: center;
}

.sticky-logo img {
    height: 100%;
    width: auto;
}

.sticky-menu-trigger {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    cursor: pointer;
    color: #ffffff;
    padding: 0.5rem 0;
}

.sticky-menu-label {
    font-family: 'Monitorica', sans-serif;
    font-size: 1.8rem;
    font-weight: bold;
    letter-spacing: 1px;
}

.sticky-hamburger {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.sticky-hamburger span {
    width: 24px;
    height: 2px;
    background-color: #ffffff;
    border-radius: 2px;
}

.side-panel-overlay {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background-color: #1e252d;
    z-index: 2500;
    transition: right 0.7s cubic-bezier(0.77, 0, 0.175, 1);
    padding: 2rem 4rem;
    overflow-y: auto;
}

@media (min-width: 769px) {
    .side-panel-overlay {
        width: 40rem;
        right: -40rem;
    }
}

.side-panel-overlay.is-active {
    right: 0;
}

.side-panel-inner * {
    font-family: 'Roboto', sans-serif;
    font-stretch: 75%;
    font-variation-settings: 'wdth' 75, 'wght' 400;
    letter-spacing: 0.02em;
}

.side-panel-header {
    display: flex;
    justify-content: flex-end;
}

.side-panel-close {
    background: none;
    border: none;
    color: #fff;
    font-size: 5rem;
    cursor: pointer;
    line-height: 1;
}

.side-panel-logo {
    background: transparent;
    display: inline-block;
    padding: 1rem;
    border-radius: 1rem;
    margin-bottom: 4rem;
}

.side-panel-logo img {
    width: 15rem;
}

.side-panel-nav {
    border-top: 1px #4b4b4b;
}

.side-panel-nav ul {
    list-style: none;
    margin-bottom: 4rem;
    border-top: 1px solid #ccc;
    padding-top: 1rem;
}

.side-panel-nav li {
    margin-bottom: 2rem;
}

.side-panel-nav a {
    color: #C4C4C4;
    font-size: 1.8rem;
    font-family: 'Monitorica', sans-serif;
    text-transform: uppercase;
    display: block;
}

.side-panel-nav a:hover {
    color: #fff;
}

.info-group {
    margin-bottom: 2.5rem;
}

.info-caption {
    display: block;
    color: #dbdfe4;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.info-group p {
    font-size: 1.8rem;
    color: #dbdfe4;
}

.info-link {
    display: block;
    color: #fff;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.side-panel-socials {
    display: flex;
    gap: 1.5rem;
    margin-top: 3rem;
}

.s-btn {
    width: 4.5rem;
    height: 4.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.s-btn img {
    width: 2.4rem;
    filter: brightness(0) invert(1);
}

@media (max-width: 850px) {
    body {
        padding-top: 4.5rem;
    }

    .sticky-content-wrapper {
        padding: 0 2rem;
    }
}


h1, .main-title {
    font-family: 'Monitorica', sans-serif;
    font-weight: bold;
}


a, p, .menu-links a {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    text-decoration: none;
}

html {
    background-color: #f7fafa;
    font-size: 10px;
}

.main-wrapper {
    margin: 0 auto;
    max-width: 1900px;
    padding: 0 1rem;
    transition: margin-top 0.8s ease-in-out;
    margin-top: 1rem!important;
}


@media (max-width: 850px) {
    .main-wrapper.with-offset {
        margin-top: 1rem;
    !important;
    }

    .main-wrapper {
        margin-top: 1rem;
    !important;
        transition: none;
    }

    body {
        padding-top: 0 !important;
    }
}


.main-banner {
    display: flex;
    min-height: 60rem;
    width: 100%;
    background: url('/images/blue_bg_main.jpg') no-repeat center / cover;
    border-radius: 3rem;
}


.content-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 7rem 7rem 7rem 7rem;
    color: #ffffff;
    width: 50%;

}

.logo {
    display: block;
    border-radius: 15px;
    background-color: white;
    width: 31rem;
    padding: 1rem;
}

.logo img {
    width: 29rem;
    height: auto;

}

.logo a {
    display: block;

}


.main-title {
    font-size: 4.4rem;
    font-weight: 800;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 1px;
}


.content-right {
    flex: 1;
    background: url('/images/main_photo_1280x854_02-1024x683.jpg') no-repeat center / cover;
    display: flex;
    justify-content: flex-end;
    padding: 7rem 7rem 7rem 7rem;
    border-radius: 3rem;
}

.contact-bar {
    margin-top: 4rem;
    font-style: normal;
}

.main-contacts {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    color: #54595F;
    font-size: 2.2rem;
    font-weight: 600;
    transition: opacity 0.3s;
}

.contact-link img {
    width: 3.6rem;
    height: 3.6rem;
}

.contact-link:hover {
    opacity: 0.8;
}

.social-grid {
    display: flex;
    gap: 1.2rem;
    flex-wrap: wrap;
}

.social-btn {
    width: 4rem;
    height: 4rem;


    border-radius: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.social-btn img {
    width: 3.6rem;
    height: 3.6rem;
    filter: brightness(0.95) invert(0.4);
}

.social-btn.max img {
    width: 3.6rem;
    height: 3.6rem;
    filter: brightness(0.95) invert(0.60);
}

.social-btn:hover {

    transform: translateY(-3px);
}


@media (max-width: 768px) {
    .contact-link {
        font-size: 1.8rem;
    }

    .social-btn {
        width: 4.5rem;
        height: 4.5rem;
    }
    .main-banner {
        min-height: auto;
    }
    .main-title {
        margin-top: 1rem;
        font-size: 3rem;
    }
}

@media (max-width: 850px) {
    .content-right {
        display: none !important;
    }

    .content-left {
        padding: 4rem;
    }

    .advantages-content, .faq {
        padding: 4rem !important;
    }
}


.side-menu {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    text-align: right;
}


.menu-label {
    font-size: 5rem;
    font-weight: bold;
    color: #54595F;
    text-transform: uppercase;
    letter-spacing: 0.2rem;
    margin-bottom: 2rem;
}


.menu-links {
    list-style: none;
}

.menu-links li {
    margin-top: 1.5rem;
}

.menu-links a {
    text-decoration: none;
    color: #54595F;
    font-size: 2rem;
    font-weight: 500;
    transition: color 0.3s ease, transform 0.3s ease;
    display: inline-block;
}


.menu-links a:hover {
    color: #323335;
    transform: translateX(-5px);
}

.separator {
    height: 4.4rem;
    margin: 1rem 0;
    width: 100%;
    display: flex;
    justify-content: center;
}

.separator img {
    height: 5.4rem;
    width: 18rem;
}

.block-info {
    background-color: #B6D9E7;
}


@media (max-width: 768px) {
    .main-banner {
        flex-direction: column;
    }

    .content-left, .content-right {
        width: 100%;
    }

    .content-left .logo {
        width: 100%;
        height: auto;
    }

    .content-left .logo img {
        width: 100%;
    }

    .content-right {
        height: 400px;
    }
}

.advantages-section {
    display: flex;
    min-height: 60rem;
}


.advantages-image {
    flex: 1;
    max-width: 50%;
    display: block;
    border-radius: 3rem;
}

.preem {
    background: url('/images/office_photo_1280x854_02.jpg') no-repeat center / cover;
}

.about {
    background: url('/images/office_photo_1280x854_01.jpg') no-repeat center / cover;
}

.oformlenie {
    background: url('/images/reg_houses_640x640_01.jpg') no-repeat center / cover;
}

.licvidaciya {
    background: url('/images/distroy_640x640_01.jpg') no-repeat center / cover;
}

.raspolozhenie {
    background: url('/images/shema_border_640x640_01.jpg') no-repeat center / cover;
}

.vynos {
    background: url('/images/vynos_bord_640x640_01.jpg') no-repeat center / cover;
}
.vidy-rabot {
    background: url('/images/all_kadastr_640x640_01.jpg') no-repeat center / cover;
}
.konsultaciya {
    background: url('/images/cons_kad_640x640_01.jpg') no-repeat center / cover;
}


.advantages-content, .faq {
    flex: 1;
    max-width: 50%;
    background-color: #B6D9E7;
    padding: 7rem;
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.faq {
    max-width: 100%;
}

.faq h2 {
    margin-top: 4rem;
}

.advantage-badge {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    color: #546e7a;
    display: flex;
    align-items: center;
    gap: 10px;
}

.badge-icon {
    font-size: 1.4rem;
    color: #455a64;
}


.advantage-title {
    font-family: 'Monitorica', sans-serif;
    font-weight: 400;
    font-size: 5rem;
    line-height: 1.1;
    color: #546e7a;
    text-transform: uppercase;
    letter-spacing: 1px;
}


.advantage-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    line-height: 1.5;
    color: #455a64;
    max-width: 90%;
}


@media (max-width: 1100px) {
    .advantage-title {
        font-size: 3.2rem;
    }

    .advantages-content {
        padding: 40px;
    }
}

@media (max-width: 850px) {
    .advantages-image {
        display: none;
    }

    .advantages-section {
        flex-direction: column;
        margin: 0;
        min-height: 40rem;
    }

    .advantages-content {
        max-width: 100%;
    }

    .services-header {
        padding: 4rem !important;
    }

}


.pro-section {
    background: url('/images/prin_bg_2560x854_01.jpg') no-repeat center / cover;
    color: #455a64;
    padding: 5rem;
    border-radius: 3rem;
    margin-top: 5rem;
}

.pro-header {
    margin-bottom: 60px;
}

.pro-info-line {
    display: flex;
    gap: 15px;
    font-size: 2.2rem;
    margin-bottom: 20px;
    line-height: 1.4;
}

.pro-square {
    font-size: 10px;
    margin-top: 3px;
    color: #546e7a;
}

.pro-main-title {
    font-family: 'Monitorica', sans-serif;
    font-size: 5rem;
    font-weight: 400;
    text-transform: uppercase;
}


.pro-slider {
    width: 100%;
    overflow: hidden;
}


.pro-card {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 30px;
    padding: 40px 30px;
    height: auto;
    min-height: 380px;
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
}

.pro-num {
    display: block;
    font-family: 'Monitorica', sans-serif;
    font-size: 3.5rem;
    margin-bottom: 5rem;
    opacity: 0.6;
}

.pro-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 2rem;
    margin-bottom: 2rem;
    line-height: 1.3;
}

.pro-card p {
    font-size: 1.8rem;
    line-height: 1.6;
}


.pro-pagination {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
}

.pro-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #546e7a;
    border-radius: 50%;
    opacity: 0.3;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pro-pagination .swiper-pagination-bullet-active {
    opacity: 1;
    background: #455a64;
    transform: scale(1.3);
}

.services-container {
}

.services-header {
    padding: 7rem 7rem 7rem 7rem;
    border-radius: 3rem;
    background-color: #B6D9E7;
    margin-bottom: 4rem;
}

.services-tag {
    color: #4b4b4b;
    font-size: 2.2rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.services-title-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 20px;
}

.services-main-title {
    font-size: 4.8rem;
    line-height: 1.1;
    text-transform: uppercase;
    font-family: 'Monitorica', sans-serif;
    margin: 0;
}

.discription-and-button {
    display: flex;
    justify-content: space-between;
    align-items: end;
}


.services-description {
    max-width: 50%;
    font-size: 1.8rem;
    line-height: 1.5;
    color: #555;
}

.services-nav {
    display: flex;
    gap: 10px;
}

.services-nav button {
    width: 7rem;
    height: 5rem;
    border: 1px solid #455a64;
    border-radius: 20px;
    background: none;
    cursor: pointer;
    color: #455a64;
    transition: 0.3s;
    font-size: 2.8rem;
}

.services-nav button:hover {
    background: #455a64;
    color: white;
}

.service-card {
    position: relative;
    border-radius: 3rem;
    overflow: hidden;
    aspect-ratio: 1 / 1;
}

.service-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-link-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: #fff;
    color: #455a64;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border-radius: 12px;
    z-index: 2;
    font-size: 2.4rem;
    transition: 0.3s;
}

.service-link-btn:hover {
    background: #455a64;
    color: #fff;
}

.service-content {
    position: absolute;
    bottom: 15px;
    left: 15px;
    right: 15px;
    padding: 25px 20px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 25px;
    min-height: 100px;
    display: flex;
    align-items: center;
}

.service-content h3 {
    margin: 0;
    font-size: 1.8rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: #333;
    line-height: 1.3;
}

@media (max-width: 765px) {
    .services-nav {
        margin-top: 2rem;
    }
}

@media (max-width: 768px) {
    .services-main-title {
        font-size: 3.2rem;
    }

    .services-title-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .pro-section, .services-container {
        padding: 4rem;
    }
}

.faq-container {
    margin-top: 1rem;
}

.faq-details {
    margin-top: 2rem;
    font-size: 2.0rem;
}

.faq-details h4 {
    font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
    font-weight: 400;
    font-size: 2.8rem;
}

.faq-details h5 {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 2.2rem;
}


.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary {
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: white;
    cursor: pointer;
    border-radius: 10px;
    font-weight: bold;
    transition: background 0.3s;
}

.faq-icon {
    font-size: 3rem;
    width: 3rem;
    height: 3rem;
    text-align: center;
}


.faq-icon img {
    width: 3rem;
    height: 3rem;
}


.faq-item .minus {
    display: none;
}

.faq-item[open] .minus {
    display: inline;
}

.faq-item[open] .plus {
    display: none;
}


.faq-answer {
    padding: 20px;
    background: transparent;
    border: 1px solid #f1f1f1;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.faq-inline-link {
    font: inherit;
    color: inherit;
    text-decoration: none;
    border-bottom: 2px solid rgba(69, 90, 100, 0.2);
    transition: all 0.3s ease;
}

.main-footer {
    background-color: #1e252d;
    border-radius: 3rem;
    margin: 2rem 0;
    padding: 6rem;
    color: #ffffff;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    gap: 4rem;
}

.footer-contacts {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.footer-logo img {
    width: 22rem;
    height: auto;

}

.contact-item {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.contact-icon {
    width: 5rem;
    height: 5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon img {
    width: 5rem;
}

.contact-item p, .footer-phone {
    font-size: 1.6rem;
    color: #cdcdcd;
    font-family: 'Montserrat', sans-serif;
}

.footer-phone {
    font-weight: 600;
    color: #fff;
    display: block;
}

.work-hours {
    font-size: 1.3rem;
    color: #6a7682;
    display: block;
}

.footer-nav {
    flex: 0 0 20%;
}

.footer-menu-title {
    font-family: 'Monitorica', sans-serif;
    font-size: 3rem;
    font-weight: 400;
    letter-spacing: 0.2rem;
    margin-bottom: 3rem;
    color: #ffffff;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 1.5rem;
}

.footer-links a {
    color: #cdcdcd;
    font-size: 1.8rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #ffffff;
}

.footer-map-container {
    flex: 1.5;
    height: 35rem;
    background: #fff;
    border-radius: 3rem;
    overflow: hidden;
    border: 1rem solid #fff;
}

.footer-map-container iframe {
    width: 100%;
    height: 100%;
    display: block;
}

.footer-socials {
    margin-top: 1rem;
    justify-content: flex-start;
}

.footer-socials .social-btn {
    width: 4.5rem;
    height: 4.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-socials .social-btn:hover {
    background: #ffffff;
}

.footer-socials .social-btn img {
    width: 2.2rem;
    height: 2.2rem;
    filter: brightness(0) invert(1);
}

.footer-socials .social-btn:hover img {
    filter: none;
}

.mail-footer {
    border: none !important;
}

.footer-contacts .contact-item .footer-phone {
    text-transform: none;
    font-size: 1.6rem;
}


.footer-contacts .contact-item:nth-child(4) .contact-icon img {
    filter: brightness(0) invert(1);
}

@media (max-width: 768px) {
    .footer-socials {
        justify-content: center;
    }
}

@media (max-width: 1024px) {
    .footer-container {
        flex-direction: column;
    }

    .footer-map-container {
        flex: none;
    }
}

@media (max-width: 768px) {
    .main-footer {
        padding: 4rem;
    }

    .services-header, .faq, .advantages-content {
        padding: 4rem !important;
    }

    .services-container {
        padding: 0;
    }

    .pro-main-title {
        font-size: 3.2rem;
    }

    .faq-question h4 {
        font-family: 'Roboto Slab', serif;
        font-size: 2.2rem;
    }

    .faq-question h5 {
        font-family: 'Inter', sans-serif;
        font-size: 2rem;
    }

    .discription-and-button {
        flex-direction: column;
    }

    .discription-and-button .services-description {
        align-content: normal;
        max-width: 100%;
    }

    .pro-section article {
        min-height: 100%;
    }

    .pro-section article h3 {
        font-size: 1.8rem;
    }

    .pro-container .swiper {
        align-content: stretch;
    }
}
