body {
    position: relative;
    margin: 0;
    font-family: 'Poppins', sans-serif;

    font-size: 16px;
    line-height: 1.6;
    color: #333;
}

body::-webkit-scrollbar {
    width: 6px;
}

body::-webkit-scrollbar-track {
    background: #333;
}

body::-webkit-scrollbar-thumb {
    background-color: #FFA902;
    border-radius: 20px;
    border: 1px solid #333;
}

*,
*:before,
*:after {
    box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
}

hr {
    display: block;
    width: 100%;
    height: 1px;
    margin: 40px 0;

    border: 0;
    background-color: #e5e5e5;
}

.bold {
    font-weight: 600;
}

.text-start {
    text-align: start;
}

/* Page */
.page {
    overflow: hidden;
}

/* Container */
.container {
    width: 100%;
    max-width: 1230px;
    padding: 0 15px;
    margin: 0 auto;
    z-index: 2;
}

.content_underline {
    margin: 60px 0;
    width: 100%;
    height: 1px;
    background-color: #e5e5e5;
}


/* Intro */

.intro {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;

    width: 100%;
    height: 100vh;
    min-height: 820px;
    overflow: hidden;

    background: url("../images/intro.jpg") center no-repeat;
    background-size: cover;

    .video-bg {
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        object-fit: cover;
        z-index: 1;
    }

    .video-bg__content {
        z-index: 2;
    }

    .bg-effects {
        position: absolute;
        top: 0;
        left: 0;
        z-index: 2;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.7);
    }
}

.intro_inner {
    width: 100%;
    max-width: 880px;
    margin: 200px auto 30px;
    text-align: center;
}

.intro_title {
    margin-bottom: 20px;
    font-family: 'Poppins', sans-serif;
    font-size: 56px;
    letter-spacing: 4px;
    line-height: 1;
    color: #fff;
    text-transform: uppercase;
}

.intro_title:after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    margin: 50px auto 50px;


    background-color: #fff;
}

.intro_text {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    color: #fff;
    letter-spacing: 1px;
}

.intro_text:before {
    content: "";
    display: inline-block;
    width: 2px;
    height: 18px;
    margin: auto 10px;
    vertical-align: middle;
    background-color: #FFA902;
}

.intro_text:after {
    content: "";
    display: inline-block;
    width: 2px;
    height: 18px;
    margin: auto 10px;
    vertical-align: middle;
    background-color: #FFA902;
}

.intro_subtitle {
    margin-top: 80px;
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    color: #fff;
    letter-spacing: 1px;
}

.messengers_wrapper {
    position: absolute;
    display: flex;
    align-items: center;
    left: 50%;
    bottom: 0;
    width: auto;
    height: 80px;
    background: rgba(255, 255, 255, .1);
    backdrop-filter: blur(10px);
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    transform: translateX(-50%);
    overflow: hidden;
}

.messengers_wrapper::before {
    content: "";
    position: absolute;
    left: -100%;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .4), transparent);
    transition: .8s;
}

.messengers_wrapper:hover::before {
    left: 100%;
}

.messengers_wrapper a {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100px;
    height: 100%;
    cursor: pointer;
    transition: .6s;

    .messenger {
        width: 36px;
        height: 36px;
        border: 1px solid #fff;
        border-radius: 50%;
        background-color: #fff;
        transition: background-color 0.3s linear, border-color 0.3s linear, transform 0.3s ease;;
    }
}

.messengers_wrapper a:hover {
    background: rgba(255, 255, 255, .4);
}

.messengers_wrapper a:hover .messenger {
    transform: scale(1.2);
}

.messenger_link {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 20px;
    cursor: pointer;

    a {
        width: 36px;
        height: 36px;
        border: 1px solid #fff;
        border-radius: 50%;
        background-color: #fff;
        transition: background-color 0.3s linear, border-color 0.3s linear;
    }
}

.messenger_link_logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    fill: #333;
    width: 20px;
    height: 20px;
    transition: fill 0.3s linear;
}

.messenger_link:hover a {
    background-color: #FFA902;
    border-color: #FFA902;
}

.messenger_link:hover .messenger_link_logo {
    fill: #fff;
}

/* Header */
.header {
    width: 100%;
    padding-top: 30px;

    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.header.fixed {
    padding: 10px 0;

    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(6px); 
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);

    position: fixed;
    top: 0;
    left: 0;
    right: 0;

    transform: translate3d(0, 0, 0);
}

.header.active {
    background-color: #eb8b8d;
}

.header_inner {
    display: flex;
    justify-content: space-between;
    align-items: center;

}

.header_logo {
    font-family: 'Kaushan Script', cursive;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 26px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    cursor: pointer;
}

.header_logo p {
    font-size: 28px;
    margin: 0;
    margin-left: 10px;
    color: #FFA902;
}

.header_logo img {
    display: none;
}

.header_logo_short {
    display: none;
}

.header_underline {
    margin: 20px 0;
    width: 100%;
    height: 1px;
    background-color: #FFFFFF99;
}

.header.fixed .header_underline {
    margin: 10px 0;
}

.header_contacts {
    font-size: 14px;
    color: #fff;
}

.header_contacts_number {
    margin: 0 5px;
}

/* Nav */
.nav {
    display: flex;
    justify-content: center;
    font-size: 16px;
    font-weight: 400;
}

.nav_link {
    display: inline-block;
    vertical-align: top;
    margin: 0 15px;
    position: relative;

    color: #fff;
    text-decoration: none;

    transition: color .1s linear;
}

.nav_link:after {
    content: "";
    display: block;
    width: 100%;
    height: 3px;


    background-color: #fff;
    opacity: 0;

    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1;

    transition: opacity .1s linear;
}

.nav_link:hover {
    color: #FFA902;

}

.nav_link:hover:after {
    opacity: 1;
}

/* Nav-toggle*/
.nav-toggle {
    width: 30px;
    padding: 10px 0;
    display: none;

    font-size: 0;
    color: transparent;

    border: 0;
    background: none;
    cursor: pointer;

    position: absolute;
    top: 30px;
    right: 30px;
    z-index: 1;
}

.nav-toggle:focus {
    outline: 0;
}

.nav-toggle__item {
    display: block;
    width: 100%;
    height: 3px;

    background-color: #fff;

    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    margin: auto;

    transition: background-color .2s linear;
}

.nav-toggle.active .nav-toggle__item {
    background: none;
}

.nav-toggle__item:before,
.nav-toggle__item:after {
    content: "";
    width: 100%;
    height: 3px;

    background-color: #fff;

    position: absolute;
    left: 0;
    z-index: 1;


    transition: transform .2s linear;
}

.nav-toggle__item:before {
    top: -8px;
}

.nav-toggle__item:after {
    bottom: -8px;
}

.nav-toggle.active .nav-toggle__item:before {
    transform-origin: left top;
    transform: rotate(45deg) translate3d(0px, -3px, 0);
}

.nav-toggle.active .nav-toggle__item:after {
    transform-origin: left bottom;
    transform: rotate(-45deg) translate3d(0px, 3px, 0);
}

.navigation {
    display: none;
}

.toggle {
    display: none;
}

/* Section */

.section {
    padding: 60px 0;
    padding-top: 0;
}

.section--gray {
    background-color: #f5f5f5;
}

.section--pricing {
    background: #f5f5f5;
    background-size: cover;
    padding-bottom: 0;
}

.section--map {
    padding: 40px 0;
    background: #e6e6e6 url("../images/map-bg.png") center no-repeat;
    background-size: cover;
}

.section_header {
    width: 100%;
    max-width: 950px;
    margin: 0 auto 80px;
    text-align: center;
}

.section_header--first-item {
    margin-top: 80px;
}

.section_title {
    text-align: center;
    font-size: 30px;
    font-weight: 700;
    color: #333;
    text-transform: uppercase;
}

.section_title:after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    margin: 30px auto 30px;

    background-color: #FFA902;
}

.section_title--pricing {
    padding-top: 50px;
}

.section_suptitle {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    color: #333;
}

#about {
    padding: 0;
}

/* Features */
#features {
    padding: 0;
}

.features_wrapper {
    margin: 0px 0 0;
}

.features_header {
    margin-bottom: 20px;
    text-align: center;
    font-size: 24px;
}

.features {
    display: flex;
    flex-wrap: wrap;
}

.features_item {
    width: 33.33333%;
    padding: 0 40px;
    margin: 25px 0;

    text-align: center;
}

.features_icon {
    margin-bottom: 25px;
}

.features_text {
    font-size: 14px;
    color: #333;
    font-weight: 700;
    text-transform: uppercase;

    margin-bottom: 20px;
}

/* Photo */

.photos_second {
    padding-bottom: 0;
}

.photos {
    display: flex;
}

.photos_big_photo {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 12000;
    background: rgba(0, 0, 0, .8);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}

.photos_big_photo.active {
    opacity: 1;
    visibility: visible;
}

.photos_big_photo_img {
    position: absolute;
    top: 50%;
    left: 50%;
    max-width: 96vw;
    max-height: 96vh;
    transform: translate(-50%, -50%);
    object-fit: cover;
    border: 3px solid #FFA902;
    cursor: pointer;
}

.photos_big_photo_img_long {
    position: absolute;
    top: 50%;
    left: 50%;
    max-width: 96vw;
    max-height: 96vh;
    transform: translate(-50%, -50%);
    object-fit: cover;
    border: 3px solid #FFA902;
    cursor: pointer;
}

.photos_big_photo_img,
.photos_big_photo_img_long {
    animation: fadeIn 0.4s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.photos_col {
    flex: 1 1 0;
}

.photos_item {
    position: relative;
    background: rgba(0, 0, 0, .9);
    outline: 2px solid #333;
    cursor: pointer;
    height: 20vw;
    overflow: hidden;
}

.photos_item:hover .photos_image {
    opacity: .1;
}

.photos_item:hover .photos_info {
    opacity: 1;
}

.photos_long_item {
    display: flex;
    height: 100%;
}

.photos_image {
    position: absolute;
    object-fit: cover;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: block;
    max-width: 100%;
    min-height: 100%;
    transition: opacity .2s linear;
}

.photos_info {
    width: 100%;
    padding: 0 15px;

    text-align: center;
    color: #fff;
    opacity: 0;

    position: absolute;
    top: 50%;
    left: 0;
    z-index: 1;

    transform: translate3d(0, -50%, 0);
    transition: opacity .2s linear;
}

.photos_hover_img {
    width: 60px;
    height: 60px;
}

/* Video */
#video {
    padding-bottom: 80px;
}

.video-section {
    padding: 80px 20px;
    text-align: center;
}

.video-title {
    font-size: 32px;
    color: #333;
    margin-bottom: 40px;
    font-weight: bold;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.video-wrapper {
    position: relative;
    padding-top: 56.25%; /* 16:9 ratio */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    border-radius: 12px;
    overflow: hidden;
    background-color: #000;
    transition: transform 0.3s ease, box-shadow 0.3s ease;

    .video {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
        cursor: pointer;

        img {
            width: 100%;
            height: 100%;
        }
    }
}

.video-wrapper:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 12px;
}

/* Card */
.card {
    margin: 80px -15px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.card__item {
    width: 33.33333%;
    padding: 0 15px;
}

.card__inner {
    position: relative;
    background-color: #95e1d3;
}

.card__inner:hover .card__img {
    transform: translate3d(-10px, -10px, 0);
}

.card__inner:hover .card__img img {
    opacity: .1;

}

.card__inner:hover .card__text {
    opacity: 1;
}

.card__img {
    background: linear-gradient(to bottom, #f38181, #fce38a);

    transition: transform .2s linear;
}

.card__img img {
    display: block;
    max-width: 100%;
    height: auto;
    transition: opacity .1s linear;
}

.card__text {
    width: 100%;
    font-size: 18px;
    color: #fff;
    text-transform: uppercase;
    font-weight: 700;
    text-align: center;
    opacity: 0;

    position: absolute;
    top: 50%;
    left: 0;
    z-index: 2;
    transform: translate3d(0, -50%, 0);

    transition: opacity .2s linear;
}

.card__info {
    margin-top: 20px;
    text-align: center;
}

.card__name {
    margin-bottom: 5px;

    font-size: 14px;
    color: #333;
    text-transform: uppercase;
}

.card__prof {
    font-size: 15px;
    font-style: italic;
    font-weight: 300;
    color: #999;
}

/* Team */

#team {
    padding: 0;
}

.team {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
    min-height: 700px;
}

.team_item {
    position: relative;
    width: 50%;
    min-height: 500px;
    padding: 0 15px;
}

.team_img {
    position: absolute;
    right: 10vw;
    display: block;
    height: 100%;
    max-height: 500px;
    max-width: 100%;
}

/* Reviews */

.reviews {
    position: relative;
}

.reviews .slick-slider {
    padding: 0 110px;
}

.reviews__item {
    min-height: 210px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.reviews__text {
    margin-bottom: 15px;

    padding: 0 30px;
    text-align: justify;
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    font-style: italic;
    font-weight: 300;
    color: #333;
}

.reviews__text span {
    font-style: normal;
}

.reviews__autor {
    font-family: 'Kaushan Script', cursive;
    font-size: 24px;
    color: #333;

}

.reviews__autor:before {
    content: "";
    display: inline-block;
    vertical-align: middle;
    width: 60px;
    height: 3px;
    margin-right: 10px;

    background-color: #FFA902;
}

.slick-arrow {
    font-size: 0;
    color: transparent;

    border: 0;
    background: none;
    cursor: pointer;

    position: absolute;
    top: 50%;
    z-index: 1;
    transform: translateY(-50%);
}

.slick-arrow:focus {
    outline: 0;
}

.slick-arrow:after {
    content: "";
    display: block;
    width: 16px;
    height: 16px;

    border-top: 2px solid #ccc;
    border-left: 2px solid #ccc;

    top: 50%;
    right: 20px;
    z-index: 1;
}

.slick-prev {
    left: 0;
    transform: rotate(-45deg);
}

.reviews__btn--next,
.slick-next {
    right: 0;
    transform: rotate(135deg);
}

/* Accordion */

.accordion {
    min-height: 800px;

    .accordion_item {
        list-style: none;
        width: 100%;
        margin: 20px;
        padding: 15px 20px;
        border-radius: 8px;
        border: 1px solid #e5e5e5;
        background: #fff;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08), 0 4px 6px rgba(0, 0, 0, 0.05);
        transition: background-color 0.3s;

        .accordion_header {
            display: flex;
            align-items: center;
            padding: 15px 20px 15px 55px;
            position: relative;
            cursor: pointer;

            .accordion_icon {
                width: 36px;
                position: absolute;
                top: 50%;
                left: 8px;
                z-index: 1;

                transform: translateY(-50%);
            }

            .accordion_title {
                font-size: 14px;
                font-weight: 600;
                color: #333;
                text-transform: uppercase;
            }
        }
    }

    .accordion_item:hover {
        background-color: #fce38a 
    }

    .accordion_item:has(input[type="radio"]:checked):hover {
        background-color: transparent;
    }

    input[type="radio"] {
        display: none;
    }

    .accordion_content {
        display: flex;
        justify-content: space-between;
        padding: 0 20px;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.5s, padding 0.5s;

        .accordion_content_text {
            display: flex;
            flex-direction: column;
            gap: 20px;
            width: 45%;
            text-align: justify;
            font-size: 14px;
            font-weight: 300;
            color: #333;

            p {
                margin: 0;
            }
        }

        
        .accordion_content_icon {
            width: 50%;
            max-height: 400px;
            object-fit: cover;
            border-radius: 20px;
        }
    }

     input[type="radio"]:checked + label + .accordion_content {
        max-height: 400px;
        padding: 10px 10px 20px;
    }
}

/* Social */

.social {
    display: flex;
    justify-content: center;
}

.social__item {
    width: 55px;
    height: 55px;
    padding: 12px 10px;

    background-color: #fce38a;
    border-right: 1px solid #f38181;

    font-size: 30px;
    text-decoration: none;
    color: #f38181;
    line-height: 1;

    transition: background-color .1s linear, color /1s linear;
}

.social__item:last-child {
    border-right: 0;
}

.social__item:hover {
    color: #fff;
    background-color: #f38181;
}

/* Pricing */
.pricing {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    row-gap: 100px;
    padding-bottom: 80px;
}

.pricing_item {
    width: 45%;
    padding: 0 10px;
    position: relative;
}

.pricing_item > div {
    background-color: #fce38a;
    border-radius: 10px;
    padding: 20px;
    box-shadow:
    0 1px 3px rgba(0, 0, 0, 0.08),
    0 4px 6px rgba(0, 0, 0, 0.05);
}

.pricing_item:first-child > div,
.pricing_item:nth-last-child(2) > div {
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
}

.pricing_header {
    margin-bottom: 5px;
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.pricing_item_info {
    display: flex;
    justify-content: space-between;
    align-items: end;
    font-size: 16px;
    font-weight: 600;
}

.pricing_item_options {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-top: 12px;
}

.pricing_item_total {
    position: absolute;
    right: 24px;
    bottom: 10px;
    font-size: 16px;
    font-weight: 600;
}

.pricing_content {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 15px;

    .pricing_img {
        width: 16px;
        height: 16px;
    }

    .pricing_content span {
        color: #333;
        max-width: 75%;
    }
}

.pricing_subtitle_wrapper {
    margin-top: -40px;
    padding: 0 10px;

    .pricing_subtitle {
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 14px;
        font-style: italic;
        color: #333;
    
        .pricing_subtitle_img {
            width: 24px;
            height: 24px;
        }
    
        .pricing_subtitle_text {
            span {
                font-weight: bold;
            }
        }
    }
}

/* Footer */
.footer {
    padding-top: 45px;
    background-color: #FFA902;
}

.footer_inner {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 20px;
    padding-bottom: 25px;
}

.footer_social {
    display: flex;
    flex-direction: column;
    font-size: 16px;
    color: #333;
}

.footer_social_item {
    display: flex;
    align-items: center;
    margin: 4px 0;
}

.footer_social_image {
    width: 25px;
}

.footer_social_text {
    color: #333;
    margin: 0 10px;
}

.footer_messenger_link_wrapper {
    display: flex;
    justify-content: center;
    transform: translateX(-20px);
}

.footer_messenger_link:last-child {
    margin-right: 0;
}

.footer_messenger_link:hover a {
    background-color: #333;
    border-color: #333;
}

/* Contact Form Button */
.contact_form_btn {
    position: fixed;
    right: 60px;
    bottom: 40px;
    width: 80px;
    height: 80px;
    cursor: pointer;
    transition: transform 0.3s ease;
    z-index: 100;
    filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.6));
}

.contact_form_btn img {
    width: 100%;
    height: 100%;
}

.contact_form_btn:hover,
.contact_form_btn.hover {
    transform: scale(1.2);
}

/* Close Button */
.contact_form_close_btn {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 60px;
    height: 60px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact_form_close_btn img {
    width: 26px;
    height: 26px;
    transition: 0.5s;
}

.contact_form_close_btn:hover img {
    width: 30px;
    height: 30px;
}

.mobile_contact_form_close_btn {
    display: none;
}

/* Modal */
#contactFormModal {
    position: fixed;
    bottom: -100%;
    right: 1vw;
    width: 450px;
    height: 600px;
    border-radius: 10px 10px 0 0;
    background: linear-gradient(135deg, #fff1c1, #FFA902);
    box-shadow: 0 1px 3px rgba(0,0,0,0.1), 0 4px 8px rgba(0,0,0,0.05);
    transition: 0.5s;
    z-index: 1000;
    visibility: hidden;
}

#contactFormModal.active {
    visibility: visible;
    bottom: 0;
}

#contactFormModal .contact_form_content {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

/* Form Container */
.contact_form_container {
    min-width: 70%;
}

.contact_form_container .contact_form {
    display: flex;
    flex-direction: column;
    padding-top: 30px;
}

.contact_form_container .form-group {
    position: relative;
    margin-bottom: 35px;
}

.contact_form_container .form-group input,
.contact_form_container .form-group textarea {
    width: 100%;
    padding: 5px 0;
    font-size: 16px;
    font-weight: 300;
    font-family: monospace;
    color: #333;
    border: none;
    border-bottom: 1px solid #333;
    background: transparent;
    outline: none;
    resize: none;
    transition: 0.3s;
}

.contact_form_container .form-group textarea {
    height: 30px;
}

.contact_form_container .form-group textarea:focus {
    height: 150px;
}

/* Labels */
.contact_form_container .form-group label {
    position: absolute;
    left: 0;
    padding: 5px 0;
    pointer-events: none;
    font-size: 16px;
    font-weight: 400;
    transition: 0.3s;
}

.contact_form_container .form-group input.filled ~ label,
.contact_form_container .form-group input:focus ~ label,
.contact_form_container .form-group textarea.filled ~ label,
.contact_form_container .form-group textarea:focus ~ label {
    transform: translateY(-25px);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1px;
    color: #fff;
}

/* Scrollbar for textarea */
.contact_form_container .form-group textarea::-webkit-scrollbar {
    width: 4px;
}

.contact_form_container .form-group textarea::-webkit-scrollbar-track {
    background: #333;
}

.contact_form_container .form-group textarea::-webkit-scrollbar-thumb {
    background-color: #fff;
    border-radius: 20px;
    border: 1px solid #333;
}

/* Validation */
.contact_form_container .form-group.invalid input,
.contact_form_container .form-group.invalid textarea {
    border-bottom: 1px solid #ff4d4f;
}

.contact_form_container .form-group .error-message {
     color: #ff4d4f;
    font-size: 12px;
    margin-top: 4px;
    visibility: hidden;
    opacity: 0;
    height: 16px;
    transition: opacity 0.3s ease;
}

.contact_form_container .form-group.invalid .error-message {
    visibility: visible;
    opacity: 1;
}

/* Submit Button */
.contact_form_container .contact_form button[type="submit"] {
    border: none;
    padding: 12px;
    font-size: 18px;
    font-weight: 400;
    cursor: pointer;
    transition: 0.3s;
}

.contact_form_container .contact_form button[type="submit"]:not(:disabled) {
    background-color: #333;
    color: #fff;
}

.contact_form_container .contact_form button[type="submit"]:not(:disabled):hover {
    background-color: #fff;
    color: #333;
}

.contact_form_container .contact_form button[type="submit"]:disabled {
    background-color: light-dark(rgba(239, 239, 239, 0.3), rgba(19, 1, 1, 0.3));;
    color: #888;
    cursor: not-allowed;
}


/* Desktops media queries */
@media (max-width: 1200px) {
    .intro_title {
        font-size: 52px;
        letter-spacing: 3px;
    }

    .intro_title:after {
        margin: 40px auto 40px;
    }

    .header_inner {
        padding: 0 30px;
    }

    .section_header {
        padding: 0 20px;
    }

    .accordion {
        .accordion_item {
            margin-left: 0;
        }
    }

    .reviews__text {
        font-size: 18px;
    }

    .reviews__autor {
        font-size: 22px;
    }

    .footer_inner {
        padding: 0 30px;
        padding-bottom: 25px;
    }
}

/* Tablets and laptops media queries */
@media (max-width: 992px) {
    .nav_link {
        text-align: center;
    }

    .intro_title {
        font-size: 48px;
        letter-spacing: 2px;
    }

    .intro_text {
        font-size: 16px;
    }

    .intro_subtitle {
        margin-top: 60px;
        font-size: 22px;
    }

    .section_header {
        margin-bottom: 60px;
    }

    .section_title {
        font-size: 28px;
    }

    .section_suptitle {
        font-size: 22px;
    }

    .team_img {
        right: 2vw;
        top: 10vh;
        max-height: 470px;
    }

    .accordion {
        min-height: 730px;

        input[type="radio"]:checked + label + .accordion_content {
            padding: 10px 5px 20px;
        }

        .accordion_item {
            .accordion_header {
                padding-right: 50px;

                .accordion_icon {
                    left: 0;
                } 
            }

            .accordion_content {
                .accordion_content_text {
                    text-align: left;
                    font-size: 13px;
                }
            }
        }

       
    }

    .pricing {
        row-gap: 60px;

        .pricing_item {
            width: 48%;

            .pricing_item_info  {
                font-size: 15px;
            }

            .pricing_content {
                font-size: 14px;
            }

            
        }

    }

    .pricing_subtitle_wrapper  {
        .pricing_subtitle {
            font-size: 12px;
        }
    }

    .footer_inner {
        gap: 10px;
    }

    .footer_social {
        font-size: 14px;
    }
}

@media (max-width: 768px) {

    /*Nav */
    .nav {
        display: none;
        width: 100%;

        position: absolute;
        top: 100%;
        left: 0;
    }

    .nav.active {
        display: block;
    }

    .nav-toggle {
        display: block;
    }

    /* Header */
    .header_logo {
        font-size: 18px;
    }

    .header_logo p {
        font-size: 20px;
    }

    .header_contacts {
        margin-right: 120px;
    }

    /* Navigation */
    .navigation {
        display: block;
        position: fixed;
        top: 143px;
        right: -75px;
        bottom: 20px;
        width: 70px;
        border-radius: 10px;
        box-sizing: initial;
        background: #FFA902;
        transition: width 0.5s;
        overflow: hidden;
        z-index: 20000;
    }

    .navigation.active {
        width: 450px;
    }

    .navigation ul {
        width: 100%;
        padding-left: 5px;
    }

    .navigation ul li {
        position: relative;
        list-style: none;
        width: 100%;
        border-top-left-radius: 20px;
        border-bottom-left-radius: 20px;
    }

    .navigation ul li.active {
        background: #fff;
    }

    .navigation ul li b:nth-child(1) {
        position: absolute;
        top: -20px;
        height: 20px;
        width: 100%;
        background: #fff;
        display: none;
    }

    .navigation ul li b:nth-child(1):before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border-bottom-right-radius: 20px;
        background: #FFA902;
    }

    .navigation ul li b:nth-child(2) {
        position: absolute;
        bottom: -20px;
        height: 20px;
        width: 100%;
        background: #fff;
        display: none;
    }

    .navigation ul li b:nth-child(2):before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border-top-right-radius: 20px;
        background: #FFA902;
    }

    .navigation ul li.active b:nth-child(1),
    .navigation ul li.active b:nth-child(2) {
        display: block;
    }

    .navigation ul li a {
        position: relative;
        display: flex;
        align-items: center;
        width: 100%;
        min-height: 80px;
        font-size: 16px;
        font-weight: 600;
        text-decoration: none;
        color: #fff;
    }

    .navigation ul li.active a {
        color: #333;
    }

    .navigation ul li a .icon {
        position: relative;
        display: block;
        min-width: 60px;
        height: 60px;
        line-height: 70px;
        text-align: center;
    }

    .navigation ul li a .icon ion-icon {
        font-size: 1.5em;
    }

    .navigation ul li a .title {
        position: relative;
        display: block;
        padding-left: 10px;
        height: 60px;
        line-height: 60px;
        white-space: normal;
    }

    .block {
        width: 100%;
        height: 180px;
        background-color: rgba(255, 255, 255, .2);
        margin-left: -5px;
    }

    .toggle {
        position: absolute;
        right: 20px;
        width: 40px;
        height: 40px;
        background: #FFA902;
        border-radius: 10px;
        cursor: pointer;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .toggle.active {
        background: #fff;
    }

    .toggle ion-icon {
        position: absolute;
        color: #333;
        font-size: 28px;
        display: none;
    }

    .toggle ion-icon.open,
    .toggle.active ion-icon.close {
        display: block;
    }

    .toggle ion-icon.close,
    .toggle.active ion-icon.open {
        display: none;
    }

    /* Section */
    .section {
        padding: 40px 0;
    }

    .section_header--first-item {
        margin-top: 60px;
    }

    .section_suptitle {
        font-size: 18px;
    }
    
    .photos_col:nth-last-child(2) {
        display: none;
    }

    .photos_col:last-child {
        display: none;
    }

    .photos_col  .photos_item {
        height: 30vw;
    }



    /* Team */

    .team .team_item:first-child {
        display: none;
    }

    .team_img {
        display: none;   
    }

    .team_item {
        width: 100%;
        padding: 0 20px;
    }

    .accordion {
        padding-left: 0;
    }

    .video-grid {
        gap: 40px;
        padding: 0 30px;
    }

    .video-wrapper {
        border-radius: 8px;
    }


    /* Pricing */
    .pricing {
        padding-bottom: 60px;
        row-gap: 30px;

        .pricing_item {
            width: 100%;
        }

        .pricing_subtitle_wrapper {
            margin: 0;
        }
    }


    .section_title--pricing {
        padding-top: 30px;
    }

    .contact_form_close_btn {
        display: none;
    }

    .mobile_contact_form_close_btn {
        display: inherit;
        position: absolute;
        top: 0;
        right: 0;
        left: 0;
        background-color: #333;
        min-height: 40px;

        img {
            position: absolute;
            width: 30px;
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%);
        }
    }

    /* Footer */
    .footer {
        padding-top: 20px;
    }

    .footer_messenger_link {
        margin: 0;
    }
}

@media (max-width: 560px) {
    body {
        font-size: 14px;
    }

    .section {
        padding: 20px 0;
    }

    .section_title {
        font-size: 24px;
    }

    .navigation {
        border-bottom-left-radius: 0;
        bottom: 0;
    }

    /* Header */
    .header_inner {
        padding: 0 10px;
    }

    .header_logo {
        display: flex;
        flex-direction: column;
        align-items: flex-start;

        p {
            margin-left: 0;
        }
    }

    .header_contacts {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 2px;
        width: 100%;
        margin-right: 0;
        padding-right: 10vw;
        font-size: 12px;
    }

    /* Intro */
    .intro {
        min-height: auto;
    }

    .intro_inner {
        margin-top: 40px;
    }

    .intro_title {
        font-size: 40px;
        letter-spacing: 2px;
    }

    .intro_title:after {
        margin: 28px auto 28px;
    }

    .intro_subtitle {
        margin-top: 35px;
    }

    .intro_text {
        display: none;
        font-size: 14px;
    }

    .intro_inner p.intro_text:nth-of-type(1) {
        display: inherit;
    }

    .intro_inner p.intro_text:nth-of-type(2) {
        display: inherit;
    }

    .intro_text::after {
        margin-left: 0;
    }

    .intro_text::before {
        margin-right: 0;
    }
    
    .contact_form_btn {
        left: -40px;
        bottom: 20vh;
    }

    .messengers_wrapper {
        width: 100%;
        left: 0;
        right: 0;
        border-radius: 0;
        transform: none;
    }

    .messengers_wrapper a {
        width: 33.3333333333%;
    }

    .section_suptitle {
        font-size: 16px;
    }

    .features_item {
        width: 50%;
    }

    .features_text {
        font-size: 12px;
        margin-bottom: 10px;
    }

    .pricing {
        flex-direction: column;
    }

    .pricing_item {
        width: 100%;
    }

    .reviews__text {
        padding: 0;
        font-size: 14px;
    }

    .footer_messenger_link_wrapper {
        display: none;
    }

    .footer_address {
        font-size: 14px;
    }

    .footer_inner {
        padding: 0 10px;
        padding-bottom: 10px;
    }

    .footer_social {
        font-size: 14px;
    }

    #contactFormModal {
        width: auto;
        right: 0;
        left: 0;
        border-radius: 0;

        .contact_form_container {
            min-width: 80%;
        }
    }
}

@media (max-width: 476px) {
    .intro_text {
       display: none;
    }

    .intro_inner p.intro_text:nth-of-type(1) {
        display: none;
    }

    .intro_inner p.intro_text:nth-of-type(2) {
        display: none;
    }
}


@media (max-width: 420px) {
    #reviews {
        display: none;
    }

    #photos {
        padding: 0;
    }

    #video {
        padding-top: 40px;
        padding-bottom: 80px;
    }
}