@font-face {
    font-family: 'Gotham';
    src: url('../fonts/Gotham-Bold.woff') format('woff') url('../fonts/Gotham-Bold.woff2') format('woff2');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'Gotham';
    src: url('../fonts/Gotham-Book.woff') format('woff') url('../fonts/Gotham-Book.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

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

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

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-thumb {
    background: #004172;
    border-radius: 6px;
}

::-webkit-scrollbar-track {
    background: #00022A;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: radial-gradient(circle, #001a33, #000814);
    color: #00FFA5;
    font-family: 'Gotham', sans-serif;
    height: 100vh;
    display: flex;
    flex-direction: column;
}

.bold {
    font-weight: bold;
}

.highlight {
    color: #00FFA5;
}

/* NAVBAR */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background-color: #0A0630;
}

.title {
    display: flex;
    align-items: center;
}

.title img {
    width: 250px;
    margin: 0;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 20px;
    font-weight: bold;
    transition: all 0.3s ease;
    margin: 0;
    padding: 0;
}

.nav-links a:hover,
.nav-links a:last-child {
    color: #00FFA5;
    font-weight: bold;
}

/* MAIN CONTAINER */
.main-section {
    background-image: url('/images/background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 92.8vh;
}

/* LEFT SIDE */
.left {
    flex: 1;
    text-align: left;
    margin-left: 200px;
}

.left h1 {
    font-family: 'Zentropa', serif;
    font-size: 300px;
    color: white;
    line-height: .85;
}

.left h3 {
    font-weight: normal;
    font-size: 14px;
    color: #00FFA5;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.start-btn {
    font-family: 'upheavtt';
    position: absolute;
    background: linear-gradient(180deg, #00FFA5, #006642);
    color: white;
    font-size: 40px;
    padding: 10px 22px;
    border-radius: 30px;
    text-decoration: none;
    border: solid white 2px;
    left: 34.5%;
    top: 79%;
    cursor: pointer;
}

.start-btn:hover {
    background: #004172;
}

/* RIGHT SIDE */
.right {
    flex: 1;
    text-align: left;
}

.logo-box {
    width: 150px;
    height: 150px;
    border-radius: 10px;
    margin-bottom: 15px;
    position: absolute;
    top: 28%;
}

.text-block {
    display: block;
    line-height: 1.5;
    color: white;
    position: relative;
    margin-top: 120px;
    margin-bottom: 30px;
    margin-left: 25px;
}

.text-block::before {
    content: "■";
    color: #00FFA5;
    font-size: 18px;
    position: absolute;
    left: 12px;
    top: 16%;
    transform: translateY(-50%);
}

.text-block p {
    font-family: 'Gotham', sans-serif;
    font-weight: normal;
    font-size: 18px;
    color: white;
    line-height: 1.5;
    margin-left: 40px;
    margin-top: 40px;
}

.right h2 {
    position: absolute;
    font-family: 'Zentropa', serif;
    font-size: 100px;
    color: #00FFA5;
    margin-top: 40px;
}

.right h2 span {
    color: white;
    background-color: #004172;
    padding: 10px;
    border-radius: 10px;
}

/* PARTNERS */

.partners-section {
    background: linear-gradient(45deg, #00022A, #000149);
}

.partners-container {
    display: flex;
    align-items: center;
    margin-block: 15px;
    margin-left: 80px;
    gap: 50px;
    height: 150px;
}

.partners-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
    gap: 10px;
    font-family: 'Zentropa', serif;
    font-size: 40px;
    line-height: .85;
    transform: rotate(-5deg) skewX(-6deg);
}

.partners-header p {
    color: #00FFA5;
    font-family: 'Gotham', sans-serif;
    font-weight: bold;
    font-size: 20px;
    text-transform: uppercase;
    letter-spacing: 5px;
}

.slider-divider {
    width: 10px;
    height: 120px;
    background: #00FFA5;
}

.slider {
    padding-block: 10px;
    overflow: hidden;
    user-select: none;
    display: flex;
    gap: 50px;
    -webkit-mask-image: linear-gradient(to right,
            transparent 0%,
            hsl(220, 15%, 10%) 10%,
            hsl(220, 15%, 10%) 90%,
            transparent 100%);
    mask-image: linear-gradient(to right,
            transparent 0%,
            hsl(220, 15%, 10%) 10%,
            hsl(220, 15%, 10%) 90%,
            transparent 100%);
}

.slider ul {
    list-style: none;
    flex-shrink: 0;
    height: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
    animation: scroll 40s linear infinite;
}

.slider:hover ul {
    animation-play-state: paused;
}

@keyframes scroll {

    to {
        transform: translateX(calc(-100% - 50px));
    }
}

.slider ul img {
    height: 80px;
    transition: all .3s ease;
}

.slider ul img:hover {
    scale: 1.2;
}

/* SERVICIOS */

.services-section {
    background-image: url('/images/ENJOY\ FOTOS-01.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    padding: 40px;
    min-height: 85vh;
}

.services-section h2 {
    font-family: 'Zentropa', serif;
    color: white;
    font-size: 100px;
    letter-spacing: 2px;
}

.button-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    padding: 20px;
    margin-left: 20px;
}

.button-column button {
    font-family: 'Gotham', sans-serif;
    font-weight: bold;
    width: 300px;
    padding: 12px 20px;
    font-size: 16px;
    background-color: #00FFA5;
    color: #0A0630;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.button-column button:hover {
    background-color: #004172;
    color: white;
}

.button-column img {
    position: absolute;
    height: 160px;
    width: auto;
    top: 188%;
    margin: 0;
    left: 85%;
}

/* CASES */

.cases-section {
    background-image: url('/images/background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 40px;
    min-height: 60vh;
    color: white;
}

.cases-section h2 {
    font-family: 'Zentropa', serif;
    color: white;
    font-size: 100px;
    letter-spacing: 2px;
    text-align: right;
}

.cases-column {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    align-items: center;
}

.case-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.case {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.case img {
    width: auto;
    height: 300px;
    object-fit: cover;
}

.case button {
    font-family: 'Gotham', sans-serif;
    font-weight: bold;
    width: 300px;
    padding: 12px 20px;
    font-size: 16px;
    background-color: #004172;
    color: white;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.case button:hover {
    background-color: #00FFA5;
    color: #0A0630;
}

.case p {
    font-size: 18px;
    margin-top: 15px;
}

/* CONTACT */

.contact-section {
    background-image: url('/images/ENJOY\ FOTOS-02.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    padding: 40px;
    min-height: 95vh;
}

.contact-section h2 {
    font-family: 'Zentropa', serif;
    color: white;
    font-size: 100px;
    letter-spacing: 2px;
}

.contact-column {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    padding: 20px;
    margin-left: 1450px;
}

.contact-column p {
    font-size: 16px;
    margin-bottom: 10px;
}

.contact-column button {
    font-family: 'Gotham', sans-serif;
    font-weight: bold;
    width: 300px;
    padding: 12px 20px;
    font-size: 16px;
    background-color: #00FFA5;
    color: #0A0630;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact-column button:hover {
    background-color: #004172;
    color: white;
}

.heart {
    position: absolute;
    height: 160px;
    width: auto;
    top: 352.5%;
    margin: 0;
    right: 85%;
}

.icons {
    display: flex;
    gap: 50px;
    margin-top: 20px;
}

.icons img {
    width: 100px;
}

/* FINAL */

.final-section {
    background: linear-gradient(45deg, #00022A, #000149);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.columns {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 120px 0;
}

/* LEFT SIDE */
.final-left {
    flex: 1;
    text-align: center;
    margin-left: 100px;
}

.final-section .final-left h1 {
    font-family: 'Zentropa', serif;
    font-size: 150px;
    color: white;
    line-height: 1;
    transform: rotate(-5deg) skewX(-6deg);
}

.final-section .final-left h3 {
    font-weight: normal;
    font-size: 30px;
    color: white;
    letter-spacing: 2px;
    transform: rotate(-5deg) skewX(-6deg);
}

/* RIGHT SIDE */
.final-right {
    flex: 1;
    text-align: left;
}

.text {
    display: block;
    line-height: 1.5;
    color: white;
    position: relative;
    margin-left: 25px;
    width: 750px;
}

.text::before {
    content: "■";
    color: #00FFA5;
    font-size: 18px;
    position: absolute;
    left: 0;
    top: 8%;
    transform: translateY(-50%);
}

.text p {
    font-family: 'Gotham', sans-serif;
    font-weight: normal;
    font-size: 20px;
    color: white;
    line-height: 1.5;
    margin-left: 30px;
}

.explainer {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(45deg, #00022A, #000149);
    text-align: center;
}

.explainer p {
    background-color: #00FFA5;
    color: #0A0630;
    width: 1710px;
    padding: 20px 35px;
    border-radius: 15px;
    font-size: 20px;
    margin-bottom: 50px;
    line-height: 1.2;
}

.social {
    margin-left: 100px;
}

.social p {
    margin-left: 52px;
    font-size: 20px;
}

.social-icons {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    width: 1710px;
    gap: 100px;
    margin-top: 25px;
    background-color: #00022A;
    padding: 20px;
    border-radius: 20px;
}

.social-icons img {
    width: 100px;
    transition: scale .3s;
}

.social-icons img:hover {
    scale: 1.1;
    filter: invert(58%) sepia(90%) saturate(700%) hue-rotate(122deg) brightness(138%) contrast(100%);
}

footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 50px;
    text-align: center;
    font-size: 20px;
}

footer a {
    text-decoration: none;
    color: white;
}

footer p {
    color: white;
    margin-bottom: 50px;
    line-height: 1.2;
}

footer img {
    width: 350px;
    margin-bottom: 50px;
}

.copyright::before {
    content: "\00A9  ";
    font-weight: bold;
}

/* General Popup Styling */
.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
}

.popup-content {
    width: 80%;
    background: #0A0630;
    padding: 0 20px 20px 20px;
    display: flex;
    flex-direction: column;
    border-radius: 10px;
}

/* Top Section */
.popup-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.popup-logo {
    width: 250px;
}

.popup-top span {
    font-size: 80px;
}

.close-btn {
    font-size: 24px;
    color: white;
    cursor: pointer;
}

/* Popup Body */
.popup-body {
    display: flex;
    gap: 50px;
    align-items: center;
}

/* Left Section */
.popup-left {
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.popup-left video {
    width: 100%;
    border-radius: 10px;
    background: none;
}

.popup-info {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: space-evenly;
}

.popup-info img {
    width: 30%;
}

.popup-info p {
    color: white;
    font-family: 'Zentropa', serif;
    font-size: 60px;
    line-height: .85;
    transform: rotate(-5deg) skewX(-6deg);
}

/* Vertical Divider */
.popup-divider {
    width: 2px;
    height: 150px;
    background: #00FF99;
}

/* Right Section */
.popup-right {
    width: 50%;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: 'Gotham', sans-serif;
    font-weight: normal;
    font-size: 20px;
    line-height: 1.2;
}

.popup-right ul {
    list-style-type: square;
    padding-left: 20px;
}

.popup-contact {
    font-family: 'Gotham', sans-serif;
    font-weight: normal;
    background: #00FF99;
    border: none;
    padding: 10px;
    cursor: pointer;
    font-size: 15px;
    border-radius: 5px;
    width: 50%;
    margin-top: 10px;
    transition: all .3s ease;
}

.popup-contact:hover {
    background-color: #004172;
    color: white;
}

.servpopup-body {
    display: flex;
    gap: 50px;
    align-items: center;
    justify-content: space-evenly;
}

.servpopup-left {
    padding-left: 20px;
    width: 60%;
    height: 600px;
    display: flex;
    flex-wrap: wrap;
    justify-content: left;
}

.servpopup-left h1 {
    color: white;
    font-family: 'Zentropa', serif;
    font-size: 100px;
    line-height: .85;
    transform: rotate(-5deg) skewX(-6deg);
    margin-left: 40px;
}

.servpopup-left p::before {
    content: "■";
    color: #00FFA5;
    font-size: 20px;
    position: fixed;
    left: 17%;
}

.servpopup-left p {
    color: white;
    font-size: 20px;
    margin-left: 120px;
}

.servpopup-buttons {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    justify-items: center;
    width: 100%;
}

.servpopup-left .btn {
    font-family: 'Gotham', sans-serif;
    font-weight: bold;
    text-transform: uppercase;
    width: 250px;
    padding: 10px 20px;
    font-size: 16px;
    background-color: #00FFA5;
    color: #0A0630;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.servpopup-left .btn:hover {
    background-color: #004172;
    color: white;
}

.servpopup-right {
    width: 40%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.servpopup-right img {
    max-width: 80%;
    height: auto;
}

.form-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
}

.form-popup-content {
    width: 80%;
    background: #0A0630;
    padding: 0 20px 20px 20px;
    display: flex;
    flex-direction: column;
    border-radius: 10px;
}

/* Top Section */
.form-popup-top {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 80px;
}

.form-popup-top span {
    font-size: 80px;
}

.form-close-btn {
    font-size: 24px;
    color: white;
    cursor: pointer;
}

/* Popup Body */
.form-popup-body {
    display: flex;
    gap: 50px;
    align-items: center;
}

/* Left Section */
.form-popup-left {
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.form-popup-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.form-popup-logo {
    width: 15%;
}

.form-text-logo {
    width: 40%;
}

.form-arrow {
    width: 15%;
    rotate: 90deg;
    margin-right: 500px;
}

.form-popup-info h1 {
    color: white;
    font-family: 'Zentropa', serif;
    font-size: 100px;
    line-height: .85;
    transform: rotate(-5deg) skewX(-6deg);
    margin-block: 100px;
}

.form-container {
    width: 500px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.form-container form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.form-container input,
.form-container textarea {
    font-family: 'Gotham', sans-serif;
    background-color: #004172;
    border: none;
    padding: 10px;
    color: white;
    font-size: 16px;
    text-align: center;
    width: 500px;
}

.form-container textarea {
    height: 250px;
    resize: none;
}

.form-container input::placeholder,
.form-container textarea::placeholder {
    color: white;
}

.form-container input:focus,
.form-container textarea:focus {
    border: none;
    outline: none;
}

.form-container button {
    font-family: 'Gotham', sans-serif;
    font-weight: bold;
    width: 250px;
    padding: 10px 20px;
    font-size: 16px;
    background-color: #00FFA5;
    color: #0A0630;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 20px;
}

.form-container button:hover {
    background-color: #004172;
    color: white;
}

.success-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
}

.success-popup-content {
    width: 70%;
    background: #0A0630;
    padding: 0 20px 20px 20px;
    display: flex;
    flex-direction: column;
    border-radius: 10px;
}

.success-popup-columns {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 50px;
}

/* Top Section */
.success-popup-top {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 80px;
    margin-bottom: 20px;
}

.success-popup-top span {
    font-size: 80px;
}

.success-close-btn {
    font-size: 24px;
    color: white;
    cursor: pointer;
}

/* Popup Body */
.success-popup-body {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

/* Left Section */
.success-popup-left {
    width: 32%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.success-popup-left img {
    width: 40%;
    margin-right: 150px;
}

.success-popup-left h1 {
    color: white;
    font-family: 'Zentropa', serif;
    font-size: 140px;
    line-height: .85;
    transform: rotate(-5deg) skewX(-6deg);
    margin-block: 40px;
}

.success-popup-left h3 {
    font-family: 'Gotham', serif;
    font-weight: normal;
    font-size: 12px;
    margin-left: 180px;
}

.success-popup-right {
    width: 50%;
    color: white;
}

.success-popup-bottom {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    margin-right: 100px;
    gap: 10px;
}

.success-popup-bottom span {
    width: 135px;
    font-size: 18px;
}

.success-popup-bottom img {
    width: 80px;
}

@media screen and (max-width: 1625px) {

    .title img {
        width: 200px;
    }

    .nav-links a {
        font-size: 16px;
    }

    .main-section {
        min-height: 80vh;
    }

    .left h1 {
        font-size: 220px;
    }

    .start-btn {
        font-size: 28px;
        top: 69%;
        left: 33%
    }

    .logo-box {
        width: 100px;
        height: 100px;
        top: 28%
    }

    .text-block p {
        font-size: 15px;
    }

    .right h2 {
        font-size: 60px;
        margin-top: 25px;
    }

    .services-section {
        padding: 30px;
    }

    .button-column img {
        height: 150px;
        top: 175%
    }

    .cases-section {
        padding: 30px;
        min-height: 58vh;
    }

    .cases-section h2 {
        font-size: 80px;
        margin-bottom: 1rem;
    }

    .case img {
        height: 200px;
    }

    .contact-section {
        padding: 30px;
    }

    .contact-column {
        margin-left: 1200px;
    }

    .heart {
        height: 150px;
        top: 340%
    }

    .final-left {
        margin-left: 80px;
    }

    .final-section .final-left h3 {
        font-size: 22px;
    }

    .final-section .final-left h1 {
        font-size: 110px;
    }

    .text p {
        font-size: 18px;
    }

    .explainer p {
        width: 1500px;
        font-size: 18px;
    }

    .social {
        margin-left: 100px;
    }

    .social-icons {
        width: 1400px;
    }

    .social-icons img {
        width: 80px
    }

    .popup-right {
        font-size: 14.5px;
    }

    .popup-contact {
        font-size: 14.5px;
    }
}

@media screen and (max-width: 1440px) {

    .title img {
        width: 200px;
    }

    .nav-links a {
        font-size: 16px;
    }

    .main-section {
        min-height: 80vh;
    }

    .left h1 {
        font-size: 200px;
    }

    .start-btn {
        font-size: 26px;
        top: 67%
    }

    .logo-box {
        width: 100px;
        height: 100px;
        top: 31%
    }

    .text-block p {
        font-size: 15px;
    }

    .right h2 {
        font-size: 60px;
        margin-top: 8px;
    }

    .services-section {
        min-height: 80vh;
    }

    .services-section h2 {
        font-size: 80px;
    }

    .button-column {
        margin-left: 10px;
    }

    .button-column button {
        width: 280px;
        font-size: 12px;
    }

    .button-column img {
        height: 130px;
        top: 170%
    }

    .cases-section {
        min-height: 55vh;
    }

    .cases-section h2 {
        font-size: 80px;
    }

    .case button {
        width: 300px;
        font-size: 14px;
    }

    .case p {
        font-size: 16px;
    }

    .contact-section h2 {
        font-size: 80px;
    }

    .contact-column {
        margin-left: 1075px;
    }

    .contact-column button {
        width: 280px;
        font-size: 12px;
    }

    .icons img {
        width: 80px;
    }

    .heart {
        height: 130px;
        top: 333%
    }

    .columns {
        margin: 100px 0;
    }

    .final-left {
        margin-left: 62px;
    }

    .final-section .final-left h3 {
        font-size: 18px;
    }

    .final-section .final-left h1 {
        font-size: 90px;
    }

    .explainer p {
        width: 1300px;
        font-size: 18px;
    }

    .social {
        margin-left: 70px;
    }

    .social-icons {
        width: 1300px;
    }

    .social-icons img {
        width: 60px;
    }

    .servpopup-left h1 {
        font-size: 80px;
    }

    .servpopup-left p::before {
        font-size: 16px;
    }

    .servpopup-left p {
        font-size: 16px;
        margin-left: 100px;
    }

    .servpopup-left .btn {
        font-size: 16px;
        width: 200px;
    }

    .popup-content {
        height: max-content
    }

    .popup-right {
        font-size: 14px;
    }

    .popup-contact {
        font-size: 14px;
    }

    .popup-info {
        margin-top: 60px;
    }
}

@media screen and (max-width: 1024px) {

    .title img {
        width: 150px;
    }

    .nav-links a {
        font-size: 12px;
    }

    .main-section {
        min-height: 65vh;
    }

    .left {
        margin-left: 100px
    }

    .left h1 {
        font-size: 160px;
    }

    .start-btn {
        font-size: 22px;
        top: 55%;
        left: 33%
    }

    .logo-box {
        width: 80px;
        height: 80px;
        top: 25.5%
    }

    .text-block {
        margin-top: 100px;
    }

    .text-block p {
        font-size: 12px;
    }

    .right h2 {
        font-size: 40px;
        margin-top: 10px;
    }

    .services-section {
        padding: 15px;
        min-height: 55vh;
    }

    .services-section h2 {
        font-size: 50px;
    }

    .button-column {
        padding: 5px;
    }

    .button-column button {
        width: 230px;
        font-size: 10px;
        padding: 8px 10px;
    }

    .button-column img {
        height: 100px;
        top: 136%;
    }

    .cases-section {
        min-height: 40vh;
    }

    .cases-section h2 {
        font-size: 50px;
    }

    .case img {
        height: 150px;
    }

    .case button {
        width: 230px;
        font-size: 12px;
        padding: 8px 10px;
    }

    .case p {
        font-size: 12px;
    }

    .contact-section {
        padding: 15px;
        min-height: 60vh;
    }

    .contact-section h2 {
        font-size: 50px;
    }

    .contact-column p {
        font-size: 12px;
    }

    .contact-column {
        padding: 5px;
        margin-left: 750px;
    }

    .contact-column button {
        width: 230px;
        font-size: 10px;
        padding: 8px 10px;
    }

    .icons {
        margin-top: 10px;
    }

    .heart {
        height: 100px;
        top: 244%;
    }

    .columns {
        flex-direction: column;
        margin: 0;
    }

    .final-left {
        margin: 60px 0;
    }

    .final-right {
        margin-bottom: 30px;
    }

    .text p {
        font-size: 15px;
    }

    .explainer p {
        width: 950px;
        font-size: 15px;
    }

    .social {
        margin-left: 50px;
    }

    .social p {
        font-size: 15px;
    }

    .social-icons {
        width: 920px;
        gap: 80px;
    }

    .social-icons img {
        width: 40px;
    }

    footer {
        font-size: 15px;
    }

    footer img {
        width: 300px;
    }

    .servpopup-left {
        height: 500px;
    }

    .servpopup-left h1 {
        font-size: 50px;
        position: absolute;
        display: flex;
        gap: 10px;
        transform: rotate(0) skewX(0);
        right: 33%;
    }

    .servpopup-left h1 br {
        display: none;
    }

    .servpopup-left p::before {
        display: none;
    }

    .servpopup-left p {
        font-size: 16px;
        margin-left: 40px;
        position: absolute;
        top: 38%;
        width: 35%;
    }

    .servpopup-buttons {
        position: absolute;
        top: 80%;
        right: 0%;
    }

    .servpopup-left .btn {
        font-size: 16px;
        width: 200px;
    }

    .servpopup-right {
        width: 45%;
    }

    .popup-right {
        font-size: 12px;
    }

    .popup-contact {
        font-size: 12px;
    }

    .popup-info {
        margin-top: 60px;
    }

    .popup-info p {
        font-size: 40px;
    }

    .form-popup-body {
        gap: 25px;
    }

    .form-popup-left {
        width: 60%;
    }

    .form-popup-left h1 {
        font-size: 60px;
    }

    .form-arrow {
        width: 20%;
        margin-right: 250px;
        margin-top: 100px;
    }

    .form-container {
        width: 400px;
    }

    .form-container input,
    .form-container textarea {
        width: 400px;
    }
}

@media screen and (max-width: 768px) {

    .title img {
        width: 100px;
    }

    .nav-links a {
        font-size: 10px;
    }

    .main-section {
        justify-content: center;
        align-items: center;
        min-height: 50vh;
    }

    .left {
        margin-left: 0px;
        text-align: center;
    }

    .left h3 {
        font-size: 10px;
    }

    .left h1 {
        font-size: 150px;
        margin-bottom: 15px;
    }

    .start-btn {
        font-size: 12px;
        position: initial;
    }

    .right {
        display: none;
    }

    .button-column img {
        height: 90px;
        top: 120%
    }

    .cases-section {
        min-height: 70vh;
    }

    .cases-column {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-column {
        margin-left: 500px;
    }

    .icons img {
        width: 60px;
    }

    .heart {
        height: 90px;
        top: 259%;
    }

    .text {
        width: 700px;
    }

    .text p {
        font-size: 14px;
    }

    .explainer p {
        width: 700px;
        font-size: 14px;
    }

    .social p {
        font-size: 14px;
    }

    .social-icons {
        width: 670px;
        gap: 40px;
    }

    footer {
        font-size: 14px;
    }

    footer img {
        width: 250px;
    }

    .servpopup-body {
        gap: 25px;
    }

    .servpopup-left {
        height: 500px;
        padding-left: 0;
        width: 55%;
    }

    .servpopup-left h1 {
        right: 30%;
    }

    .servpopup-left p {
        font-size: 14px;
        position: absolute;
        top: 40%;
        width: 35%;
    }

    .servpopup-buttons {
        position: absolute;
        top: 80%;
        right: 0%;
    }

    .servpopup-left .btn {
        font-size: 14px;
        width: 170px;
    }

    .servpopup-right {
        width: 45%;
    }

    .popup-right {
        font-size: 10px;
    }

    .popup-contact {
        font-size: 10px;
    }

    .form-container {
        width: 300px;
    }

    .form-popup-left {
        width: 40%;
    }

    .form-popup-logo {
        width: 25%;
    }

    .form-text-logo {
        width: 60%
    }

    .form-popup-left h1 {
        font-size: 40px;
    }

    .form-arrow {
        margin-right: 150px;
    }

    .form-container input,
    .form-container textarea {
        font-size: 12px;
        width: 300px;
    }

    .form-container textarea {
        height: 200px;
    }
}

@media screen and (max-width: 430px) {

    .title img {
        width: 100px;
    }

    .navbar {
        padding: 20px;
    }

    .nav-links {
        gap: 15px;
    }

    .nav-links a {
        font-size: 8px;
    }

    .main-section {
        min-height: 35vh;
    }

    .left h3 {
        font-size: 6px;
    }

    .left h1 {
        font-size: 90px;
    }

    .services-section {
        background-position: left;
    }

    .button-column img {
        display: none;
    }

    .cases-section {
        display: flex;
        flex-direction: column;
        align-items: center;
        min-height: max-content;
    }

    .cases-section h2 {
        font-size: 30px;
    }

    .case img {
        height: 100px;
    }

    .case button {
        width: 195px;
        font-size: 10px;
    }

    .case p {
        font-size: 10px;
    }

    .contact-section {
        background-position: calc(100% + 50px) center;
    }

    .contact-column {
        margin-left: 160px;
    }

    .heart {
        display: none;
    }

    .final-section .final-left h3 {
        font-size: 12px;
    }

    .final-section .final-left h1 {
        font-size: 60px;
    }

    .text {
        width: 350px;
        margin: 0;
    }

    .text::before {
        font-size: 12px;
        left: 0%;
        top: 5%;
    }

    .text p {
        font-size: 12px;
        margin-left: 15px;
    }

    .explainer p {
        width: 380px;
        font-size: 12px;
    }

    .social {
        margin-left: 25px;
    }

    .social-icons {
        width: 370px;
        gap: 20px;
    }

    .social-icons img {
        width: 20px;
        ;
    }

    footer {
        font-size: 12px;
    }

    footer img {
        width: 200px;
    }

    .servpopup-left {
        padding: 0;
        width: 100%;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .servpopup-left h1 {
        font-size: 40px;
        left: 12%;
        top: 31%;
    }

    .servpopup-left p {
        font-size: 12px;
        margin: 0;
        width: 70%;
    }

    .servpopup-buttons {
        flex-direction: column;
        gap: 10px;
        top: 67%;
    }

    .servpopup-left .btn {
        font-size: 11px;
        width: 150px;
    }

    .servpopup-right {
        display: none;
    }

    .popup-top {
        margin-top: 10px;
    }

    .popup-logo {
        width: 180px;
    }

    .popup-top span {
        font-size: 40px;
    }

    .close-btn {
        margin-top: -10px;
    }

    .popup-left {
        width: 100%;
    }

    .popup-info {
        margin-top: 30px;
    }

    .popup-info p {
        font-size: 30px;
    }

    .popup-divider {
        height: 100px;
    }

    .popup-right {
        display: none;
    }

    .form-popup-left {
        display: none;
    }
}

@media screen and (max-width: 375px) {

    .title img {
        width: 80px;
    }

    .nav-links {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .nav-links a {
        font-size: 7px;
    }

    .main-section {
        min-height: 40vh;
    }

    .left h3 {
        font-size: 6px;
    }

    .left h1 {
        font-size: 90px;
    }

    .services-section h2 {
        font-size: 30px;
    }

    .case button {
        width: 160px;
        font-size: 8px;
    }

    .case p {
        font-size: 8px;
    }

    .contact-column {
        margin-left: 110px;
    }

    .final-section .final-left h3 {
        font-size: 8px;
    }

    .final-section .final-left h1 {
        font-size: 50px;
    }

    .text {
        width: 300px;
        margin-left: 10px;
    }

    .text::before {
        font-size: 10px;
        top: 6%;
    }

    .text p {
        font-size: 10px;
        margin-left: 20px;
    }

    .explainer p {
        width: 340px;
        font-size: 10px;
    }

    .social {
        margin-left: 15px;
    }

    .social p {
        font-size: 10px;
    }

    .social-icons {
        width: 340px;
    }

    footer {
        font-size: 10px;
    }

    .popup-logo {
        width: 200px;
    }

    .popup-top span {
        font-size: 50px;
    }

    .servpopup-left h1 {
        left: 7%;
        top: 30%;
    }

    .servpopup-left p {
        font-size: 12px;
        top: 39%;
    }

    .servpopup-buttons {
        top: 68%;
    }

    .servpopup-left .btn {
        font-size: 12px;
    }

    .popup-info {
        margin-top: 20px;
    }

    .popup-info p {
        font-size: 20px;
    }

    .popup-divider {
        height: 60px;
    }

    .form-container,
    .form-container input,
    .form-container textarea {
        width: 260px;
    }

    .form-container input,
    .form-container textarea {
        font-size: 10px;
    }
}