
    @import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Merriweather:ital,wght@0,300;0,400;0,700;0,900;1,300;1,400;1,700;1,900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
    @import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Merriweather:ital,wght@0,300;0,400;0,700;0,900;1,300;1,400;1,700;1,900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

    :root {
            --primary-color: #1ABC9C;
            --text-color: #2C3E50;
            --background-color: #F9F9F9;
            --button-hover: #16A085;
        }

        body, html {
            margin: 0;
            padding: 0;
            font-family: 'Poppins', sans-serif;
            scroll-behavior: smooth;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box; /* Ensures padding is included in width/height */
        }

        .navbar {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            display: flex;
            align-items: center;
            padding: 20px 40px;
            background-color: transparent;
            z-index: 1000;
        }

        .hero {
            height: 100vh;
            background: linear-gradient(45deg, #ADB1C1, #BFC2CD);
            position: relative;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            overflow-x: hidden; /* Prevent horizontal scrolling if extra width appears */
        }

        .navbar .logo {
            font-size: 1.5rem;
            font-weight: bold;
            color: var(--primary-color);
            text-transform: uppercase;
        }

        .navbar .nav-links {
            display: flex;
            gap: 90px;
            margin: auto;
            width: 1048px;
        }

        .navbar .nav-links a {
            width: 190px;
            height: 57px;
            display: flex;
            text-decoration: none;
            font-family: 'Roboto';
            font-weight: bold;
            font-size: 20px;
            color: #B5E0D4;
            transition: background-color 0.3s ease;
            border-radius: 50px;

            span {
                margin: auto;
            }
        }

        .navbar .nav-links a:hover {
            background-color: #989FBB;
        }

        .mobile-menu {
            display: none;
        }

        /* Two-column Section */
        .two-column {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 40px;
            max-width: 1274px;
            width: 100%;
            padding: 20px;
            margin-top: 100px;
        }

        .two-column .image {
            flex: 1;
            width: 465px;
            min-width: 465px;
            max-width: 465px;
        }

        .two-column .image img {
            width: 100%;
            border-radius: 8px;
        }

        .two-column .content {
            flex: 1;
            width: 627px;
            min-width: 627px;
            max-width: 627px;
            margin: 20px 0 auto auto;
        }

        .two-column .content h1 {
            color: #4F5D75;
            font-family: 'Roboto';
            font-weight: bold;
            font-size: 100px;
            letter-spacing: 1.18px;
        }

        .two-column .content h2 {
            color: #4F5D75;
            font-family: 'Montserrat';
            font-style: italic;
            font-weight: 500;
            font-size: 40px;
            margin-bottom: 40px;
        }

        .two-column .content p {
            color: #4F5D75;
            font-family: 'Poppins';
            font-weight: 400;
            font-size: 22px;
            line-height: 1.5;
            margin-bottom: 50px;
            text-align: justify;
        }

        .two-column .content .buttons {
            display: flex;
            gap: 110px;
        }

        .two-column .content .buttons a {
            text-decoration: none;
            background-color: #7F859C;
            color: #B5E0D4;
            padding: 7px 7px 7px 25px;
            border: 1px solid #B5E0D4;
            border-radius: 50px;
            display: flex;
            align-items: center;
            gap: 15px;
            font-size: 1rem;
            font-weight: 500;
            transition: background-color 0.3s ease;
        }

        .two-column .content .buttons a:hover {
            background-color: var(--button-hover);
        }

        .two-column .content .buttons img {
            width: 36px;
            height: 36px;
        }

        .two-column .content .buttons span {
            height: 24px;
        }

        .sticky-left {
            position: fixed;
            top: 50%; /* Adjust to ensure the block stays visible on scroll */
            left: 20px;
            width: 74px;
            height: 150px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            align-items: center;
            margin-left: 40px; /* Space from the viewport edge */
            background-color: #7F859C; /* Optional: background for visibility */
            border-radius: 60px; /* Optional: rounded corners */
            box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); /* Optional: subtle shadow */
            z-index: 1000; /* Ensure it stays above other content */
            padding: 12px; /* Add padding for inner spacing */
        }

        .sticky-left a {
            display: flex;
            justify-content: center;
            align-items: center;
            width: 100%; /* Ensures icons stay inside the container */
        }

        .sticky-left img {
            will-change: transform;
            width: 50px; /* Adjust based on your SVG size */
            height: 50px;
            transition: transform 0.3s ease, opacity 0.3s ease; /* Smooth hover effects */
        }

        .sticky-left a:hover img {
            transform: scale(1.1); /* Slight zoom on hover */
            opacity: 0.8; /* Dim slightly for feedback */
        }

        .dotted-line {
            padding-top: 100px;
        }

        /* Section Styling */
.section-two {
    height: 110vh; /* Full screen height */
    background: url('../images/background-section2.png') no-repeat center center;
    background-size: cover;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* Content Container */
.section-content {
    width: 100%;
    height: 100%;
    padding: 20px;
    position: relative;
}

/* Quote Styling */
.quote {
    position: absolute;
    top: 100px;
    right: 120px;
    text-align: right;
    font-size: 56px;
    font-weight: bold;
    font-family: 'Poppins';
    font-style: italic;
    text-transform: uppercase;
    color: #B5E0D4;
    line-height: 1;
    text-shadow: 0px 0 50px rgb(255 255 255 / 90%), 0 0 10px rgb(0 0 0 / 56%);
}

/* Transparent Section for Images */
.image-row {
    width: 1274px; /* Adjust to fit within the section */
    margin: auto;
    padding: 15px;
    background-color: rgba(0, 0, 0, 0.4); /* Transparent white background */
    border-radius: 45px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px; /* Adds spacing between images */
    position: absolute;
    top: 57%;
    left: 50%;
    transform: translate(-50%, -47%);
    backdrop-filter: blur(16px);
}

.image-row img {
    will-change: transform;
    flex: 1;
    width: 300px;
    height: 450px;
    border-radius: 33px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.image-container .image {
    position: relative;
    border-radius: 45px;
    height: 450px;
    transition: transform 0.3s ease;
}

/* Overlay Styling */
.overlay {
    will-change: transform;
    position: absolute;
    top: 0;
    left: 0;
    width: 300px;
    height: 450px;
    background-color: rgba(0, 0, 0, 0.24); /* Semi-transparent black */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    opacity: 0;
    color: #fff;
    padding: 10px;
    transition: opacity 0.3s ease;
    border-radius: 33px;
}

/* Show Overlay on Hover */
.image:hover .overlay {
    opacity: 1;
}

/* Text Styling */
.overlay h3 {
    font-size: 1.2rem;
    margin: 5px 0;
}

.overlay p {
    font-size: 1rem;
    margin: 5px 0;
}

.overlay span {
    font-size: 0.9rem;
    margin-top: 10px;
    font-style: italic;
}


/* Section 3 Styling */
.section-three {
    height: 150vh; /* Full screen height */
    background: url('../images/background-section3.png') no-repeat center center;
    background-size: cover;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.section-three .section-content {
    width: 100%;
    top: 53%;
    left: 50%;
    position: absolute;
    transform: translate(-50%, -48%);
    height: auto;
}

/* Quote Styling */
.section-three .quote {
    position: absolute;
    top: 150px;
    position: absolute;
    left: 50%;
    width: 100%;
    transform: translate(-50%, -50%);
    text-align: center;
    font-size: 96px;
    font-weight: bold;
    font-style: italic;
    color: #4F5D75;
    font-family: 'Poppins';
    line-height: 1.5;
    -webkit-text-stroke: 2px #B5E0D4;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.5);
}

.blocks {
    background: black;
    padding: 30px;
    border-radius: 50px;
    background-color: rgba(0, 0, 0, 0.01);
    backdrop-filter: blur(15px);
    box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.42);
    width: 1076px;
    margin: auto;
}

/* Blocks Layout */
.blocks .row {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 30px;
}

.blocks .block {
    flex: 1;
    max-width: calc(33.333% - 20px);
    background: rgba(255, 255, 255, 0.9);
    padding: 20px;
    border-radius: 30px;
    box-shadow: 0px 3px 3px rgba(0, 0, 0, 0.25);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 5px solid #B5E0D4;
    height: 406px;
}

.blocks .row:last-child {
    justify-content: center;
}

/* Block Hover Effect */
.blocks .block:hover {
    transform: translateY(-5px);
    box-shadow: 0px 8px 12px rgba(0, 0, 0, 0.2);
}

/* Block Content */
.blocks .block img {
    width: 50px;
    height: 50px;
}

.blocks .block h3 {
    font-size: 26px;
    color: #1ABC9C;
    margin-left: 10px;
    text-align: center;
    height: 26px;
    margin: auto auto auto 10px;
    line-height: 1;
}

.blocks .block p {
    font-size: 12px;
    color: #0E1638;
    font-weight: 500;
    font-family: 'Poppins';
    text-align: left;
    width: 226px;
    margin: auto auto 30px auto;
}

.blocks .block ul {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 226px;
    margin-left: 30px;
}

.blocks .block ul li {
    font-size: 13px;
    color: #0E1638;
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
    text-align: left;
    font-weight: 600;
    font-family: 'Poppins';
}

/* Custom Bullet Points */
.blocks .block ul li:before {
    content: '•';
    color: #B5E0D4;
    font-size: 20px;
    height: 21px;
    position: absolute;
    left: 0;
    top: -6px;
}

.first-line {
    display: flex;
    margin-bottom: 40px;
}

/* Section Background */
.section-four {
    background: url('../images/background-contact.png') no-repeat center center;
    background-size: cover;
    padding: 100px 20px;
    color: #fff;
    text-align: center;
    position: relative;
}

.section-four .background h2 {
    font-size: 96px;
    font-weight: bold;
    color: #B5E0D4;
    font-style: italic;
    margin-bottom: 100px;
    text-shadow: 0px 0 10px rgb(255 255 255 / 50%);
    text-align: left;
    padding-left: 180px;
    line-height: 1;

    span {
        font-size: 77px;
    }
}

/* Contact Section */
.contact {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 40px;
    background-color: rgb(0 0 0 / 34%);
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    width: 1076px;
    margin: auto;
    backdrop-filter: blur(7px);
    border-right: 10px solid #B5E0D4;
}

/* Contact Image */
.contact-image img {
    max-width: 100%;
    box-shadow: 5px 4px 11px rgba(0, 0, 0, 0.72);
    display: block;
    clip-path: inset(0 -15px 0 0);
    max-height: 700px;
}

/* Contact Form */
.contact-form {
    flex: 1;
    max-width: 600px;
    padding: 50px 50px 0;
    max-height: 700px;
}

.contact-form h3 {
    font-size: 40px;
    color: #1ABC9C;
    margin-bottom: 35px;
    text-align: left;
}

.contact-form .form-row {
    display: flex;
    margin-bottom: 20px;
    justify-content: space-between;
}

.contact-form .form-group {
    width: 100%;
    margin-bottom: 10px;
}

.contact-form .form-group label {
    display: block;
    font-size: 14px;
    margin-bottom: 8px;
    text-align: left;
    color: #B5E0D4;
    font-family: 'Montserrat';
    font-weight: 600;
}

.contact-form .form-group input,
.contact-form .form-group textarea {
    width: 100%;
    padding: 10px 10px 10px 15px;
    font-size: 14px;
    border: none;
    border-radius: 10px;
    outline: none;
    transition: border-color 0.3s ease;
    background: rgb(0 0 0 / 35%);
    font-family: Inter;
    color: #fff;
}

.contact-form .form-group input::placeholder,
.contact-form .form-group textarea::placeholder {
    font-size: 12px;
    color: #555555;
}

.contact-form .form-group input:focus,
.contact-form .form-group textarea:focus {
    border-color: #1ABC9C;
}

.contact-form .form-group textarea {
    resize: none;
}

.form-row:first-child .form-group  {
    text-align: left;
    width: 234px;
}

.last-row {
    padding-top: 15px;
}

.last-row .form-group{
    display: flex;
    margin: auto;

    label {
        line-height: 1;
        margin: auto 0 auto;
    }
}

.contact-form .form-group input[type="checkbox"] {
    width: auto;
    margin-right: 10px;
}

.contact-form .form-row button {
    padding: 10px 20px;
    font-size: 1rem;
    font-weight: bold;
    color: #4f5d75;
    background-color: #1ABC9C;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact-form .form-row button:hover {
    background-color: #16A085;
}


footer {
    height: auto;
    background-color: #181818;
    color: white;
    font-family: Inter;
    box-shadow: 0px -10px 30px rgb(0 0 0 / 45%);


    h4 {
        font-size: 24px;
        font-weight: 600;
        margin: 0;
        color: #B5E0D4;
        margin-bottom: 25px;
    }

    a {
        font-size: 16px;
        text-decoration: none;
        font-weight: 200;
        font-family: Inter;
        color: #B5E0D4;
    }

    p {
        font-size: 16px;
        text-decoration: none;
        font-weight: 200;
        font-family: Inter;
    }

    ul {
        padding: 0;
        margin: 0;
        color: #B5E0D4;

    }

    li {
        list-style: none;
        margin: 0 0 22px;
    }

    li:last-child {
        margin: 0;
    }
}

.footer {
    display: block;
    padding: 70px 200px 60px;
}

.footer-blocks {
    display: flex;
    margin-bottom: 45px;
}

.footer-blocks2 {
    display: flex;
}

.footer-infos {
    display: block;
    width: 100%;
}

.footer-section:nth-child(1) {
    width: 80%;
}

.footer-section:nth-child(2) {
    width: 25%;
}

.footer-section:nth-child(3) {
    width: 20%;
}

.footer-section2 {
    width: 100%;
    display: flex;
    margin-top: 50px;

    ul {
        margin: auto 0 auto auto;
        display: flex;
    }

    li {
        margin: 0 0 0 20px;
    }

    li:last-child {
        margin: 0 0 0 20px;
    }
}

.footer-tm {
    color: #888888;
    font-size: 14px;
    font-family: Inter;
    margin: 0;

    a {
        font-size: 14px;
        color: #505050;
    }
}

.footer-divide {
    height: 1px;
    background-color: #3C3C3C;
}

.footer-image {
    width: 40%;
    text-align: center;
}

.footer-img {
    height:400px;
    margin: auto 50px 0;
    opacity: 0.9;
}

.socials {
    width: 54px;
}

.socials2 {
    height: 50px;
}

.grecaptcha-badge {
    visibility: hidden;
}

@media screen and (max-width: 1080px) {

    .footer {
        padding: 70px 0 60px;
    }

    .footer-infos {
        width: 80%;
        margin: auto;
    }

    .footer-blocks {
        display: flex;
        margin-bottom: 45px;
        flex-direction: column;
        text-align: center;
    }

    .footer-section:nth-child(1) {
        width: 100%;
    }
    
    .footer-section:nth-child(2) {
        width: 100%;
        margin: 50px auto;
    }
    
    .footer-section:nth-child(3) {
        width: 100%;
    }

    footer li {
        margin: 0 0 15px;
    }

    .footer-divide {
        width: 75%;
        margin: auto;
    }

    .footer-blocks2 {
        width: 75%;
        margin: auto;
    }

    .socials2 {
        height: 20px;
        width: 20px;
    }

}

#formMessage {
    margin-top: 15px;
    color: #1abc9c;
    font-size: 12px;
}

.burger-menu {
    display: none;
}

/* Define the animation */
@keyframes fadeInSlideIn {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
      transform: translateY(0); /* Final position */
    }
  }
  
  /* Apply the animation to elements */
  .fade-slide-in {
    opacity: 0; /* Ensure it's initially hidden */
    animation: fadeInSlideIn 1s ease-in-out forwards; /* Animation applied on page load */
  }
  

@media (max-width: 1600px) and (min-width: 1366px) {
    /* Styles for medium laptops */

    .dotted-line {
        display: none;
    }

    .two-column {
        width: 80%;
        flex-wrap: unset;
        max-width: unset;
        margin-top: 0;
    }
    
    .two-column .image {
        width: 40%;
        min-width: 40%;
        max-width: 40%;
    }

    .two-column .content {
        padding: 0 40px;
        width: 60%;
        min-width: 60%;
        max-width: 60%;
    }

    .two-column .content h1 {
        font-size: 80px;
    }

    .two-column .content h2 {
        font-size: 35px;
    }

    .two-column .content p {
        width: 80%;
        font-size: 18px;
    }

    .two-column .content .buttons {
        gap: 50px;
    }

    .two-column .content .buttons a {
        font-size: 16px;
    }

    .two-column .content .buttons img {
        width: 30px;
        height: 30px;
    }
}

@media (max-width: 1366px) and (min-width: 1024px) {
    /* Styles for small laptops */
    .navbar .nav-links {
        width: 70%;
        gap: 0px;
        justify-content: right;
    }

    .navbar .nav-links a {
        font-size: 15px;
    }

    .navbar .logo img {
        width: 70px;
        height: 70px;
    }

    .two-column {
        width: 80%;
        flex-wrap: unset;
    }

    .two-column .image {
        width: 40%;
        min-width: 40%;
        max-width: 40%;
    }

    .two-column .content {
        width: 60%;
        min-width: 60%;
        max-width: 60%;
    }

    .two-column .content h1 {
        font-size: 50px;
    }

    .two-column .content h2 {
        font-size: 25px;
    }

    .two-column .content p {
        width: 80%;
        font-size: 14px;
    }

    .two-column .content .buttons {
        gap: 21px;
    }

    .two-column .content .buttons a {
        font-size: 12px;
    }

    .two-column .content .buttons img {
        width: 25px;
        height: 25px;
    }

    .two-column .content .buttons span {
        height: auto;
    }

    .dotted-line {
        display: none;
    }

    .section-two {
        height: 100vh;
    }

    .image-row {
        width: auto;
    }

    .image-container .image {
        height: 250px;
    }

    .image-row img {
        width: 175px;
        height: 250px;
    }

    .overlay {
        width: 175px;
        height: 250px;
    }

    .sticky-left {
        position: fixed;
        top: 50%;
        left: 20px;
        width: 50px;
        height: 100px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
        margin-left: 0;
        background-color: #7F859C;
        border-radius: 60px;
        box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        padding: 8px;
    }

    .sticky-left a {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
    }

    .sticky-left img {
        will-change: transform;
        width: 35px;
        height: 35px;
        transition: transform 0.3s ease, opacity 0.3s ease;
    }

    .section-three .quote {
        font-size: 70px;
        top: 100px;
    }

    .section-three .section-content {
        top: 50%;
        transform: translate(-50%, -50%);
    }

    .blocks .block {
        height: 350px;
    }

    .blocks .block h3 {
        font-size: 20px;
    }
    
    .first-line {
        margin-bottom: 20px;
    }

    .blocks .block p {
        font-size: 10px;
        height: 120px;
        width: auto;
        margin: auto;
    }

    .blocks .block ul {
        list-style: none;
        padding: 0;
        margin: 0;
        width: auto;
    }

    .blocks .block ul li {
        font-size: 12px;
        margin-bottom: 6px;
    }

    .quote {
        font-size: 30px;
    }

    .blocks {
        width: 80%;
    }

    .contact {
        width: 80%;
        gap: 0px;
    }

    .contact-image {
        width: 40%;
    }

    .contact-form {
        width: 60%;
        padding: 30px 60px 0;
    }

    .contact-form h3 {
        font-size: 30px;
        margin-bottom: 25px;
    }

    .form-row:first-child .form-group {
        width: 45%;
    }

    .contact-form .form-row {
        margin-bottom: 0px;
    }

    .contact-form .form-group {
        margin-bottom: 10px;
    }

    .contact-form .form-group label {
        font-size: 12px;
    }

    .contact-form .form-row button {
        font-size: 13px;
    }

    .footer {
        padding: 70px 100px 60px;

        a {
            font-size: 13px;
        }
    }

    .footer-section:nth-child(2) {
        width: 30%;
    }

    .footer-section:nth-child(3) {
        width: 25%;
    }
}


@media (max-width: 768px) {
    .hero {
        height: auto;
    }
    .navbar {
        display: none;
    }

    .mobile-menu {
            display: none;
    }

    .sticky-left {
        display: none;
    }

    .image-row {
        flex-direction: column;
        width: auto;
        position: unset;
        transform: none;
        margin-bottom: 100px;
        max-width: 350px;
        border-radius: 45px;
    }

    .image-row a {
        width: 100%;
    }

    .image-container .image {
        width: 100%;
    }

    .image-row img {
        width: 100%;
        height: 100%;
    }

    .overlay {
        width: 100%;
        height: 100%;
        opacity: 1;
    }

    .blocks {
        width: auto;
        padding: 20px;
    }

    .blocks .row {
        flex-direction: column;
    }

    .blocks .row:last-child {
        margin: 0;
    }

    .blocks .block {
        max-width: 100%;
        min-height: 406px;
    }

    .dotted-line {
        display: none;
    }

    .two-column {
        margin: 0 auto 50px;
    }

    .two-column .image {
        width: 100%;
        min-width: 100%;
        max-width: 100%;
    }

    .two-column .content {
        width: 100%;
        min-width: 100%;
        max-width: 100%;
    }

    .two-column .content h1 {
        font-size: 50px;
    }

    .two-column .content h2 {
        font-size: 25px;
    }

    .two-column .content p {
        font-size: 16px;
    }

    .two-column .content .buttons {
        gap: 25px;
        flex-direction: column;
        align-items: center;
    }

    .two-column .content .buttons a {
        width: 225px;
        justify-content: space-between;
    }

    .section-two {
        height: auto;
    }

    .section-content {
        padding: 50px 20px;
    }

    .section-two .quote {
        position: unset;
        text-align: right;
        font-size: 25px;
        margin: 50px 0;

        br {
            display: none;
        }
    }

    .section-three {
        height: auto;
    }

    .section-three .section-content {
        position: unset;
        transform: none;
    }

    .section-three .quote {
        position: unset;
        transform: none;
        font-size: 54px;
        margin: 50px;
    }

    .contact {
        width: auto;
        flex-direction: column;
        gap: 0;
    }

    .contact-form {
        width: 100%;
        padding: 40px 20px;
        max-height: 100%;
    }

    .section-four {
        padding: 75px 20px;
    }

    .section-four .background h2 {
        padding: 0;
        font-size: 50px;
        text-align: center;
        margin-bottom: 75px;

         span {
            font-size: 50px;
         }
    }

    .contact-image img {
        box-shadow: none;
    }

    .contact-form h3 {
        font-size: 35px;
    }

    .contact-form .form-row {
        flex-direction: column;
    }

    .form-row:first-child .form-group {
        width: auto;
        margin-bottom: 20px;
    }

    .form-row:first-child .form-group:last-child {
        margin-bottom: 0;
    }

    .last-row .form-group {
        margin-bottom: 20px;
    }

    .blocks .block ul {
        margin: 0;
    }

    .burger-menu {
        width: 100%;
        display: flex;
        justify-content: space-between;
        padding: 20px 30px;

        img {
            height: 50px;
            width: 50px;
        }
    }

    .mobile-menu {
        position: absolute;
        top: 0;
        right: 0;
        background: #7f859c;
        height: 200px;
        width: 200px;
        padding: 20px;
        padding: 30px 40px;
        height: 100vh;
        width: 100vw;

        ul {
            margin-top: 125px;
            display: flex;
            flex-direction: column;
            gap: 30px;
            text-align: right;
        }

        a {
            font-family: 'Inter';
            font-size: 32px;
            text-decoration: none;
            color: #B5E0D4;
        }
    }

    #cross-menu {
        margin: auto 0 auto auto;
        margin-right: 0;
        display: block;
    }
}
