/* ============================= */
/*          Fonts + Variables    */
/* ============================= */


@font-face {
    font-family: 'OverusedGrotesk-bold';
    src: url('/fonts/OverusedGrotesk-Bold-BF64eeac1756b57.otf') format('opentype');
    font-weight: 800;
    font-style: normal;
}

@font-face {
    font-family: 'OverusedGrotesk-light';
    src: url('/fonts/OverusedGrotesk-Light-BF64eeac17cade6.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'OverusedGrotesk-roman';
    src: url('/fonts/OverusedGrotesk-Roman-BF64eeac17dee17.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'HelloParis';
    src: url('./fonts-logo/Hello\ Paris\ Sans\ Medium.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

/* ============================= */
/*          Root Variables       */
/* ============================= */
:root {
    /* Base colors */
    --color-black: rgb(51, 51, 51);
    --color-white: rgb(255, 255, 255);
    --color-light-white: rgba(247, 242, 242, 0.877);
    --color-gray: rgba(179, 179, 179, 1);
    --color-light-blue: rgba(202, 217, 234, 1);

    /* Hover colors */
    --hover-black: #1a1a1a;
    --hover-white: #f2f2f2;
    --hover-gray: #666666;
    --hover-light-blue: #91c8f6;
}


/* ============================= */
/*          Preloader            */
/* ============================= */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-white);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.spinner {
    border: 6px solid var(--color-light-blue);
    border-top: 6px solid var(--color-black);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* ============================= */
/*          Base Styles          */
/* ============================= */
body,
html {
    overflow-x: hidden;
}

body {
    font-family: 'OverusedGrotesk', sans-serif;
    background: var(--color-white);
    margin: 0;
    padding: 0;
}

/* Burger menu */
.burger {
    position: relative;
    width: 50px;
    height: 35px;
    cursor: pointer;
}

.burger span {
    display: block;
    position: absolute;
    height: 4px;
    width: 100%;
    background: var(--color-white);
    border-radius: 8px;
    transition: 0.3s ease;
}

.burger span:nth-of-type(1) {
    top: 0;
}

.burger span:nth-of-type(2) {
    top: 50%;
    transform: translateY(-50%);
}

.burger span:nth-of-type(3) {
    top: 100%;
    transform: translateY(-100%);
}

.burger.open span:nth-of-type(1) {
    transform: rotate(45deg);
    top: 10px;
}

.burger.open span:nth-of-type(2) {
    opacity: 0;
}

.burger.open span:nth-of-type(3) {
    transform: rotate(-45deg);
    top: 10px;
}

.burger_nav_back {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: var(--color-white);
    transition: left 0.9s ease-in-out;
    z-index: 999;
}

.burger_nav_back.active {
    left: 0;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    overflow-y: auto;
}

.burger_nav {
    margin: 40px 0;
    padding: 0;
}

.burger_nav_text_wrapper {
    margin-top: 100px;
}

.burger_nav_container {
    margin-top: 40px;
}

.burger_nav_container ul {
    padding: 0 20px;
}

.burger_nav_container li {
    margin-top: 20px;
    list-style-type: none;
}

.burger_nav_container li>a {
    font-family: 'OverusedGrotesk-light';
    text-decoration: none;
    color: var(--color-black);
    font-size: 25px;
    text-transform: uppercase;
}

.burger_nav_button {
    font-family: 'OverusedGrotesk-roman';
    display: inline-block;
    width: auto;
    margin-left: 16px;
    background-color: var(--color-black);
    color: var(--color-white);
    padding: 14px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 30px;
    text-transform: uppercase;
}


.burger_nav_closed {
    width: 50px;
    height: 50px;
    position: absolute;
    right: 10px;
    top: 25px;
    cursor: pointer;
}

.burger_nav_closed img {
    width: 100%;
}


/* ============================= */
/*          Modal               */
/* ============================= */


.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal {
    background: var(--color-light-blue);
    padding: 50px 30px;
    border-radius: 10px;
    max-width: 400px;
    width: 90%;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}


body.modal-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
}



.modal h2 {
    margin-top: 0;
    font-size: 30px;
    color: var(--color-black);
}

.modal p {
    font-size: 18px;
    color: var(--color-black);
    margin: 18px 0;
    text-align: center;
}

.modal button {
    margin-top: 30px;
    background-color: var(--color-black);
    color: var(--color-white);
    border: none;
    padding: 15px 25px;
    font-size: 18px;
    border-radius: 5px;
    cursor: pointer;
}

.modal button:hover {
    background-color: rgb(49, 49, 49);
}

.modal-overlay.show {
    visibility: visible;
    opacity: 1;
}

/* ============================= */
/*          Header               */
/* ============================= */
.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 15px;
}

.header {
    position: relative;
    min-height: 800px;
    width: 100%;
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1000px;
    background: url('/images/alexander-krivitskiy-ia02GNY4pq0-unsplash.jpg') center/cover no-repeat;
    filter: blur(4px);
    z-index: -1;
}

.header_top {
    margin: 0 auto;
    padding: 30px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header__logo a {
    font-family: 'HelloParis', sans-serif;
    font-weight: 400;
    line-height: 24px;
    display: block;
    margin-left: 10px;
    text-decoration: none;
    color: var(--color-white);
    text-align: center;
    font-size: 40px;
}

/* ============================= */
/*          Header Hero          */
/* ============================= */
.header_hero {
    color: rgba(247, 242, 242, 0.877);
    margin-top: 250px;
    padding-bottom: 100px;
}

.typewriter {
    font-size: 4em;
    max-width: 90vw;
    white-space: normal;
    line-height: 50px;
}

.caret {
    display: inline-block;
    margin-left: 2px;
    animation: blink 1s step-end infinite;
    opacity: 0.8;
    font-size: 1em;
}

@keyframes blink {
    50% {
        opacity: 0;
    }
}

.header_hero h2 {
    font-family: 'OverusedGrotesk-light';
    font-size: 25px;
    font-weight: 400;
    margin-top: 25px;
}

.header_hero_button {
    margin-top: 50px;
}

.header_hero_button a {
    margin-top: 30px;
    padding: 12px 18px;
    border-radius: 5px;
    font-size: 20px;
    text-decoration: none;
    border: 2px solid var(--color-light-white);
    color: var(--color-light-white);
    transition: 0.3s ease-in;
    font-family: 'OverusedGrotesk-light';
}

.header_hero_button a:hover {
    background-color: var(--color-light-white);
    color: var(--color-black);
}

/* ============================= */
/*          Buttons              */
/* ============================= */
.info-button {
    cursor: pointer;
    margin-top: 20px;
    font-size: 20px;
    width: auto;
    border: 1px solid var(--color-black);
    background: none;
    color: var(--color-black);
    border-radius: 5px;
    padding: 10px 20px;
}

/* ============================= */
/*          About Me Section     */
/* ============================= */

.aboutMe-wrapper {
    margin-top: 150px;
    display: flex;
    align-items: center;
    padding-bottom: 150px;
    gap: 50px;
}

.aboutMe-wrapper-back {
    padding: 50px 0;
    background: var(--color-light-blue);
}

.aboutMe-image-wrapper {
    order: 2;
    height: 700px;
    width: 50%;
    overflow: hidden;
    object-fit: cover;
}

.aboutMe-image-wrapper img {
    display: block;
    object-fit: cover;
    width: 100%;
    border-radius: 10px;
    image-rendering: auto;
    max-height: 100%;
    overflow: hidden;
}

.aboutMe-text-wrapper {
    order: 1;
    width: 50%;
    padding: 0 5px;
    color: var(--color-black);
    font-size: 16px;
}

.aboutMe-text-wrapper h1 {
    font-size: 40px;
}

.aboutMe-text_transform {
    font-size: 20px;
    font-weight: bold;
}

.aboutMe-text-wrapper p {
    padding-top: 10px;
}



/* ============================= */
/*          Method Section       */
/* ============================= */
.method-wrapper-back {
    background: var(--color-light-blue);
    padding: 150px 0;
}

.method-wrapper-back>.container {
    display: flex;
    justify-content: space-between;
    gap: 100px;
}

.method-wrapper_image {
    height: 500px;
    width: 50%;
}

.method-wrapper_image img {
    height: 500px;
    width: 100%;
    border-radius: 10px;
    object-fit: cover;
}

.method-wrapper_text {
    color: var(--color-black);
    margin-top: 150px;
    margin-left: 100px;
    width: 40%;
}

.method-wrapper_text h1 {
    font-size: 30px;
}

.method-wrapper_text p {
    margin-top: 10px;
    font-size: 17px;
}


/* ============================= */
/*          Marquee / Slider     */
/* ============================= */
.marquee-container {
    overflow: hidden;
    white-space: nowrap;
    background: #ffffff;
    padding: 15px 0;
    position: relative;
}

.marquee-track {
    display: inline-flex;
    animation: scroll-left 50ms linear infinite;
}

.marquee-wrapper {
    display: flex;
    align-items: center;
    flex-direction: row;
}

.marquee-item {
    display: block;
    margin-right: 80px;
    font-size: 80px;
    font-weight: bolder;
    white-space: nowrap;
    text-transform: uppercase;
    color: var(--color-black);
}

.point {
    width: 50px;
    height: 50px;
    background-color: var(--color-black);
    border-radius: 100%;
}

.review-wrapper {
    margin: 100px 0;
    position: relative;
    z-index: 1;
}

.swiper {
    width: 100%;
    height: auto;
    margin-top: 50px;
}

.swiper_top_text h1 {
    color: var(--color-black);
}

.swiper-slide {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-height: 460px;
}

.swiper-image-wrapper {
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.swiper-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.swiper-slide-text {
    margin-top: 10px;
    width: 100%;
    text-align: left;
}

.swiper-slide-text p {
    text-transform: uppercase;
    font-size: 30px;
    color: rgba(34, 34, 34, 0.7);
}

.swiper-button-next,
.swiper-button-prev {
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.swiper-button-next::after,
.swiper-button-prev::after {
    content: url('/images/Arrow.png');

    .my-icon {
        filter: invert(96%) sepia(12%) saturate(200%) hue-rotate(15deg) brightness(105%) contrast(95%);
    }



}

.swiper-button-prev::after {
    transform: rotate(180deg);
}

.more-text-wrapper {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, opacity 0.5s ease;
}

.more-text-wrapper.open {
    max-height: 100%;
    opacity: 1;
}

/* ============================= */
/*          Organization         */
/* ============================= */
.organization-wrapper-text {
    margin-top: 30px;
    padding: 0 5px;
    color: var(--color-black);
    font-size: 16px;
}

.organization-wrapper-text h1 {
    font-size: 30px;
}

.organization-wrapper-text p {
    padding-top: 10px;
}

/* ============================= */
/*          Price Section        */
/* ============================= */
.price-wrapper {
    margin-top: 100px;
    background-color: var(--color-light-blue);
    padding: 30px 0;
}

.price-wrapper h1 {
    font-size: 30px;
    font-weight: bold;
    color: var(--color-black);
}

.price-wrapper-text {
    margin-top: 10px;
    color: var(--color-black);
}

.price-wrapper-text p {
    font-size: 20px;
}

.price-wrapper-text p:last-child {
    margin-top: 40px;
    font-size: 40px;
    font-weight: 600;
}

/* ============================= */
/*          Contact Form         */
/* ============================= */
.contact-wrapper {
    margin-top: 20px;
    padding: 30px 0;
    color: var(--color-black);
}

.contact-wrapper h1 {
    font-size: 30px;
    font-weight: bold;
}

.contact-info-wrapper ul {
    padding-left: 0;
}

.contact-info-wrapper li {
    margin-top: 15px;
    font-size: 20px;
    font-weight: 400;
    list-style-type: none;
    position: relative;
    padding-left: 45px;
}

.contact-info-wrapper li.mail::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 50px;
    height: 100%;
    background-image: url('/images/mail.png');
    background-size: contain;
    background-repeat: no-repeat;
    transform: translateY(-50%);
}

.contact-info-wrapper li.phone::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 50px;
    height: 100%;
    background-image: url('/images/phone.png');
    background-size: contain;
    background-repeat: no-repeat;
    transform: translateY(-50%);
}

.contact-social-wrapper {
    margin-top: 30px;
    color: var(--color-black);
}

.contact-social-wrapper h2 {
    font-size: 20px;
    font-weight: 400;
}

.contact-social-wrapper a {
    display: block;
    margin-top: 20px;
}

.contact-form-wrapper {
    margin-top: 50px;
}

.contact-form-wrapper form {
    margin-top: 20px;
}

.contact-form-wrapper .input-text {
    display: block;
    margin-top: 15px;
    border: none;
    border-bottom: 1px solid var(--color-gray);
    padding: 10px;
    width: 34%;
}

.contact-form-wrapper .input-text::placeholder {
    font-size: 20px;
    color: var(--color-gray);
}

.contact-form-wrapper .input-text:focus {
    outline: none;
    border-bottom: 1px solid var(--hover-gray);
}

.contact-form-checkbox {
    margin-top: 20px;
}

.contact-form-checkbox input {
    margin-right: 15px;
}

#form-message {
    margin-top: 12px;
    font-size: 15px;
    font-weight: 500;
}

#form-message.error {
    color: #c53030;
}

#form-message.success {
    color: #228B22;
}

.contact-form-button {
    margin-top: 30px;
    padding: 11px 30px;
    font-size: 20px;
    text-transform: uppercase;
    background-color: var(--color-black);
    color: var(--color-white);
    border-radius: 5px;
    border: none;
    cursor: pointer;
}

/* ============================= */
/*          Footer               */
/* ============================= */
.footer {
    margin-top: 50px;
    padding: 45px 0;
    border-top: 1px solid var(--color-gray);
    border-bottom: 1px solid var(--color-gray);
}

.footer_wrapper {
    display: flex;
    gap: 40px;
}

.footer_list h1 {
    font-size: 15px;
    text-transform: uppercase;
    color: var(--color-black);
}

.footer_link_list ul {
    padding: 0;
}

.footer_link_list li {
    list-style-type: none;
    margin-top: 10px;
}

.footer_link_list li>a {
    text-decoration: none;
    font-size: 15px;
    color: rgba(183, 183, 183, 1);
    text-transform: uppercase;
    transition: 0.3s ease-in;
}

.footer_link_list li>a:hover {
    color: rgb(135, 135, 135);
}

.footer_bottom_wrapper {
    padding: 20px 0;
}

.footer_bottom_wrapper p {
    display: block;
    margin-top: 30px;
    color: var(--color-black);
    font-size: 12px;
}

.footer_bottom_list a {
    text-decoration: none;
    color: var(--color-black);
    font-size: 15px;
    transition: 0.3s ease-in;
}

.footer_bottom_list a:hover {
    color: rgb(100, 100, 100);
}

.footer_bottom_list a:last-child {
    margin-left: 20px;
}



@media (max-width: 767px) {
    .header {
        position: relative;
        min-height: 400px;
        width: 100%;
        background-color: #00000048;
        z-index: 5;
    }

    .header::before {
        height: 100%;
    }

    .header_hero {
        margin-top: 100px;
    }

    .header_hero h2 {
        font-size: 18px;
        margin-top: 10px;
    }

    .typewriter {
        font-size: 2em;
        max-width: 90vw;
        white-space: normal;
        line-height: 50px;
    }

    .aboutMe-wrapper {
        margin-top: 50px;
        flex-direction: column !important;
        padding: 0;
    }

    .aboutMe-image-wrapper {
        height: 400px;
        order: 1;
        width: 100%;
    }

    .aboutMe-text-wrapper {
        order: 2;
        width: 100%;
        text-align: justify ;
    }

    .marquee-container {
        padding: 0;
    }

    .method-wrapper-back {
        background: var(--color-light-blue);
        padding: 50px 0;
    }

    .method-wrapper-back>.container {
        display: block;
        justify-content: space-between;
        gap: 100px;
    }

    .method-wrapper_image {
        height: 400px;
        width: 100%;
    }

    .method-wrapper_image img {
        height: 400px;
    }

    .method-wrapper_text {
        margin-top: 50px;
        margin-left: 0;
        width: 100%;
        text-align: justify;
    }
    .organization-wrapper-text{
        text-align: justify;
    }
    .swiper {
        margin-top: 20px;
    }

    .contact-form-wrapper .input-text {
        width: 100%;
    }



}