@import url('https://fonts.googleapis.com/css2?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&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=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&display=swap');

:root {
    --primary: #c169b8;
    --secondary: #0a5c0a;
    --dark-primary: #4d1744;
    --darker-primary: #230c2b;
    --white: #fffbf3;
    --black: #120610;
    --gray: #c2c2c2;
    --primary-text-dark: #1c0a19;
    --primary-text-light: white;
    --text-light: rgb(202, 202, 202);
    --text-very-light: rgb(228, 228, 228);
    --btn: ;
    --btn-hover: ;

    --dark-voily: #512e59;
    --primary-voily: #d1aada;
    --secondary-voily: #35592e;
    
}

.bg-darker {
    background-color: var(--darker-primary);
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Inter';
    background-color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3 {
    font-family: 'Poppins';
    font-weight: 600;
}

h2 {
    font-weight: 700;
}

p {
    color: gray;
    text-wrap-style: pretty;
}

.link {
    text-decoration: none;
    color: var(--white);
    display: inline-block;

    a {
        text-decoration: none;
        color: var(--white);
    }
}

.no-deco-link {
    text-decoration: none;
    color: initial;
}

.container {
    max-width: 1400px;
}

.primary-btn {
    background-color: var(--primary);
    color: white;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 1rem;
}

.secondary-btn {
    background-color: var(--secondary-voily);
    color: white;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 1rem;
}

.dark-btn {
    background-color: var(--dark-voily);
    color: white;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 1rem;
}

/* BLOCKS */

#main-banner {
    background-image: radial-gradient(circle at top, black 1%, #511247 80%);
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    min-height: 100dvh;
    position: relative;
}

.menu-wrapper {
    width: 100vw;
    height: 100vh;
    top: 0;
    position: fixed;
    z-index: 1000;
    right: -100vw;
    transition: all 0.3s ease-in-out;

    opacity: 0;
}
.menu-wrapper.open {
    right: 0;
    transition: all 0.3s ease-in-out;

    opacity: 1;
}
.menu-open-wrap {
    display: flex;

    .menu-open {
        background-color: var(--white);
        height: 100vh;
        width: 85vw;
    }

    .menu {
        display: flex;
        flex-direction: column;

        img {
            height: 2rem;
        }

        .header {
            padding: 1rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
            color: var(--black);
            font-size: 2rem;
        }

        .content {
            display: flex;
            flex-direction: column;
            align-self: center;
            padding: 5vh 8vw 0;

            a {
                color: var(--dark-primary);
                font-size: 1.3rem;
                text-decoration: none;
                display: flex;
                gap: 0.25rem;
                display: flex;
                align-items: center;
                font-weight: 600;
                border-bottom: solid 1px #4d174438;
                padding: 1rem 1rem;
                transition: all 0.2s ease-in-out;

                i:not(.right-arr) {
                    font-size: 1rem;
                    margin-right: 1rem;
                }
                i.right-arr {
                    font-size: 1rem;
                    margin-left: auto;
                    padding-left: 5vw;
                    transition: all 0.2s ease-in-out;
                }
            }
            a:hover {
                background-color: var(--dark-voily);
                color: white;
                transition: all 0.2s ease-in-out;
            }
            a:hover > i.right-arr {
                transform: translateX(5px);
                transition: all 0.2s ease-in-out;
            }
        }
        
    }
}
.menu-open-wrap .black-bg {
    background-color: rgba(0, 0, 0, 0.432);
    height: 100vh;
    width: 15vw;
    z-index: 1000;
}

#navbar {
    padding: 0.5rem;
    min-width: 80vw;
    border-bottom: solid 1px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    height: 2.5rem;
    padding: 0.25rem 0;
}

.title-banner {
    padding: 2rem 1.5rem 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;

    h1 {
        text-transform: uppercase;
        max-width: 70vw;
        font-weight: 600;
        letter-spacing: 1px;
        text-wrap-style: balance;
        text-align: center;
        font-size: 1.75rem;
    }

    .hl {
        color: rgb(211, 158, 241);
    }

    p {
        text-align: center;
        text-wrap-style: balance;
        margin-top: 0;
    }
}

.light-banner {
    background-color: var(--white);
    padding: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.black-banner {
    background-color: var(--black);
    color: var(--white);
    padding: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.procedure {
    display: flex;
    flex-direction: column;

    div {
        display: flex;
        flex-direction: column;

        a {
            color: var(--primary);
        }

        p {
            font-size: 1.25rem;
        }
    }

    .arrow {
        color: var(--dark-voily);
    }
}

.dark-banner {
    background-color: var(--darker-primary);
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;

    > div {

        div {

            a {
                margin: 1.5rem 0;
                width: fit-content;
            }

            p {
                font-size: 1.25rem;
                color: var(--text-very-light);
            }
        }
    }

    h2 {
        color: var(--primary-text-light);
        font-size: 2rem;
        margin: 0.25rem 0 ;
        line-height: 120%;
    }
}

.gray-banner {
    background-color: var(--gray);
    padding: 4rem 3rem 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;

    > div {

        div {

            a {
                margin: 1.5rem 0;
                width: fit-content;
            }

            p {
                font-size: 1.25rem;
                color: var(--text-light);
            }
        }
    }

    h2 {
        color: var(--primary-text-light);
        font-size: 2rem;
        margin: 0.25rem 0 ;
        line-height: 120%;
    }
}

.radius-banner {
    background-color: var(--black);
    padding: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 1.6rem 1.6rem 0 0;

    > div {
        display: flex;
        flex-direction: column;

        div {
            display: flex;
            flex-direction: column;

            a {
                margin: 1.5rem 0;
                width: fit-content;
            }

            p {
                font-size: 1.15rem;
                color: var(--text-light);
            }
        }
    }

    h2 {
        color: var(--primary-text-light);
        font-size: 2rem;
        margin: 0.25rem 0 ;
        line-height: 120%;
    }
}

.procedure {
    display: flex;
    gap: 1rem;

    > div {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    img {
        height: 3.5rem;
        align-self: center;
    }

    i {
        font-size: 3rem;
    }
}

.boxed {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;

    > div {
        background-color: var(--dark-voily);
        color: white;
        padding: 1rem 2rem;
    }

    i {
        font-size: 2rem;
    }
}

#pricing {
    margin: 1rem 0;
}


.price-info {
    background-color: var(--white);
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;

    .icon {
        color: var(--dark-voily);
        padding-right: 1rem;
        border-right: 1px solid var(--dark-voily);
        font-size: 2rem;
    }

    .text {
        padding-left: 0.75rem;
        font-size: 1.35rem;

        .side-info {
            margin: 0.25rem 0;
            color: gray;
            font-size: 0.85rem;

            .hl {
                font-weight: initial;
                color: var(--dark-voily);
            }
        }
    }

    .hl {
        color: var(--dark-voily);
        font-weight: 600;
    }
}

.pricing {
    display: flex;
    flex-direction: column;
    color: #ededed;
    padding: 1rem 2rem;
    background-color: #ffffff0d;

    > div {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0.5rem 0.75rem;
        border-bottom: 1px solid #ffffff12;

        .number {
            display: flex;
            gap: 0.5rem;
        }

        .info {
            font-size: 0.85rem;
            color: #ffffff6b;
            text-align: center;
            padding: 0 0.5rem;
        }
    }
    > div:last-child {
        border-bottom: none;
    }
}

#popup {
    z-index: 1000;
}

#popup.hide:not(.hidden) {
    display: flex;
    position: fixed;
    top: 1svh;
    margin: 0 5vw;
    padding: 0.5rem;
    border-radius: 1rem;
    box-shadow: #00000052 0px 1px 7px;
    background-color: #4d17447d;
    backdrop-filter: blur(9px);
    animation: popupHide 1.5s ease-out;
    opacity: 0;
    display: none;
}

#popup.active:not(.hidden) {
    display: flex;
    position: fixed;
    top: 1svh;
    margin: 0 5vw;
    padding: 0.5rem;
    border-radius: 1rem;
    box-shadow: #00000052 0px 1px 7px;
    background-color: #4d1744b0;
    backdrop-filter: blur(9px);
    animation: popup 1.5s ease-in-out;
    width: 80vw;
    left: 50vw;
    transform: translateX(-50%);
    margin: 0;
}

#popup .close-btn {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    color: var(--text-light);
    font-size: 1.25rem;
    cursor: pointer;
}

#popup .close-btn {
    display: none;
}

#popup.active .close-btn {
    display: block;
}

@keyframes popup {
    0% {
        opacity: 0;
        top: -100%;
    }
    100% {
        opacity: 1;
        top: 1svh;
    }
}

@keyframes popupHide {
    0% {
        display: flex;
        opacity: 1;
        top: 1svh;
    }
    100% {
        opacity: 0;
        top: -100%;
        display: none;
    }
}

#popup.hidden {
    opacity: 1 !important;

    img {
        filter: invert(0);
        mix-blend-mode: normal;
    }

    .text {
        color: var(--black);
        border-left: 1px solid var(--darker-primary);

        > .hl {
            color: var(--primary);
        }
    }

    i {
        display: none !important;
    }
}

.transport-price {
    display: flex;
    align-items: center;
    flex-direction: row !important;
    gap: 1rem;

    img {
        height: 5rem;
        width: fit-content;
        filter: invert(0.9);
        mix-blend-mode: lighten;
    }

    .text {
        padding: 1rem 1.5rem;
        border-left: 1px solid #ececec;
        font-size: 1rem;
        color: rgb(255 255 255 / 82%);

        > .hl {
            color: rgba(255, 255, 255, 0.932);
            font-weight: 600;
        }
    }
}

.map-container {
    .grid {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;

        .map-content {
            padding: 2rem;
            width: calc(100% - 4rem);
            h2 {
                text-align: center;
                margin: 0;
            }
            p {
                text-align: center;
            }
        }

        > div {
            width: 100%;
            height: auto;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        img.map-graphics {
            width: 100%;
        }
    }
}

#map {
    width: 100%;
    height: 40vh;
}

.slogan {
    padding: 4rem 0;
    text-align: center;
    color: var(--text-light);
    background-color: var(--dark-voily);
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 1.3rem;
}

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

    .heading {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 1rem;

        h3 {
            display: flex;
            width: fit-content;
        }
    }

    p {
        margin: 0.5rem 0;
    }

    img {
        height: 2rem;
        width: fit-content;
    }

    a {
        background-color: var(--dark-voily);
        display: flex;
        gap: 0.5rem;
        margin-top: 2rem;
    }
}

.support-btn {
    margin-top: 3rem;
    padding-top: 1rem;
    text-align: center;
    text-wrap-style: pretty;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-top: #bebebe 1px solid;

    h2 {
        font-size: 1.35rem;
    }

    p {
        margin: 0 0 1rem;
    }

    a {
        display: flex;
        gap: 0.5rem;
        font-size: 1.1rem;
        padding: 0.75rem 2rem;
    }
}

#cancelOrder {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;

    h2 {
        margin: 0;
    }

    p {
        color: var(--text-light);
        font-size: 0.95rem;
        padding: 1rem;
    }

    form#cancel_order_form {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }

    .formail {
        position: relative;
        display: flex;
        align-items: center;
        border: 1px solid rgba(255, 255, 255, 0.448);
        padding: 0.5rem;

        input[type=email] {
            background-color: transparent;
            border: none;
            width: 100%;
            color: var(--text-light);
            height: 100%;
            outline: none;
            font-size: 0.8rem;
            display: flex;
        }

        label {
            position: absolute;
            transition: all 0.3s;
            pointer-events: none;
            font-size: 0.9rem;
        }
        
        input:focus + label, input:not(:placeholder-shown) + label {
            top: 0;
            transform: translateY(calc(-0.5rem - 1px));
            font-size: 0.8rem;
            background-color: var(--dark-voily);
            padding: 0 0.25rem;
        }
    }

    label.r_code {
        margin-top: .5rem;
    }

    #inputs {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr 1fr;
        gap: 0.5rem;
        margin: 0.5rem;
    }

    .code-input {
        width: 8vw;
        font-size: 1.75rem;
        padding: 0.3rem 0.1rem;
        color: white;
        background-color: rgba(0, 0, 0, 0);
        border: solid rgba(255, 255, 255, 0.448) 1.5px;
        border-radius: 4px;
        text-align: center;
    }

    .submit {
        padding: 0.75rem 2rem;
        background-color: white;
        border: 0;
        border-radius: 1rem;
        cursor: pointer;
        color: var(--dark-voily);
        transition: all 0.2s ease-in-out;
    }
    .submit:hover {
        background-color: var(--primary);
        transition: all 0.2s ease-in-out;
    }
}

#captchaWrapper {
    margin: 10px auto;
    display: flex;
    align-items: center;
    justify-content: center;
}


#footer {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    color: gray;
    padding: 2rem;
}

#footer > div {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-text-wrap {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin: 2rem 0 2rem;

    div:has(> i) {
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

    a {
        color: gray;
    }
}

#footer .terms {
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;

    a {
        color: #977894;
    }
}

#footer .copyright {
    margin-top: 2rem;
    width: 50%;

    p {
        margin: 0;
        display: flex;
    }
}

/* FORM */

.loading-form {
    display: none;
    height: 2rem;
    align-items: center;
    justify-content: center;
}

#errorMessage {
    display: none;
    position: fixed;
    bottom: 5vh;
    right: 0;
    padding: 0.5rem 1rem;
    background-color: #fabebe;
    color: rgb(163, 0, 0);
    border: 1px solid rgb(163, 0, 0);
    border-right: none;
    max-width: 80vw;
    border-radius: 8px 0 0 8px;

    opacity: 0;
    right: -100%;

    .container {
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }
    
    .close-btn {
        display: inline-block;
        right: 0.5rem;
        color: var(--dark-voily);
        font-size: 1.25rem;
        cursor: pointer;
    }
}

#formBanner {
    background-color: var(--white);
    padding: 2rem 5vw;
}

.form-banner {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem 8vw;
    background-color: var(--text-very-light);
    border-radius: 2rem;
    box-shadow: 0px 0px 10px #00000073;

    .container {
        max-width: 100%;
    }
}

.main-heading {
    text-align: center;
    font-weight: 800;
    font-size: 2.1rem;
}

.main-subheading {
    font-family: 'Poppins', sans-serif;
    color: var(--darker-primary);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

.form-group {
    margin-bottom: 8px;
    display: flex;
    flex-direction: column;
    color: var(--darker-primary);
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    font-size: 0.9rem;
}

.form-group input,
.form-group select {
    padding: 13px;
    border-radius: 4px;
    border: none;
    font-size: 0.9rem;
    color: var(--darker-primary);
    background-color: #00000012;
    flex: 1;
}

.form-group input::placeholder {
    color: #230c2b9a;
}

.form-group input:focus,
.form-group select:focus {
    outline: 2px solid #8bc34a; /* Highlight on focus */
}

.optional-note {
    display: block;
    color: var(--dark-voily);
    margin-top: 4px;
    font-size: 0.8rem;
}

.submit-btn {
    width: 100%;
    padding: 12px;
    background-color: var(--dark-primary);
    border-radius: 12px;
    font-size: 1.1rem;
    cursor: pointer;
    border: none;
    color: #fff;
    transition: 0.3s;
    font-weight: 600;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    .submit-txt {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .small-txt {
        font-size: 0.8rem;
        color: var(--text-light);
        letter-spacing: 0.7px;
        font-weight: 100;
    }
}

.submit-btn:hover, .submit-btn:active {
    background-color: #631155;
}

.terms-note {
    margin-top: 10px;
    font-size: 0.8rem;
    color: var(--dark-voily);
    text-align: center;

    a {
        color: var(--black);
    }
}

.success-message {
    text-align: center;
    color: #4caf50;
    margin-top: 15px;
    font-weight: 600;
}

/* Animations */
/* Base */
.animate-slide-in-left,
.animate-slide-in-right,
.animate-scale-up {
  opacity: 0;
  position: relative;
}


.desktop {
    display: none !important;
}


/* PayGATE */

.payment {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    padding: 2rem 0;
}

.form-response-wrap {
    width: 100vw;
    position: fixed;
    top: 5vh;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-response {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    width: 70%;
    aspect-ratio: 16 / 9;
    background-color: #fffbf3;
    border-radius: 0.5rem;
    box-shadow: #00000040 0px 0px 8px;
    text-align: center;
}

  .form-response h2 {
    margin: 0.5rem;
  }

  .form-response p {
    margin: 0;
  }

  .animated-icon {
    width: 100px;
    height: 100px;
    margin-bottom: 1rem;
  }

  .form-response svg {
    overflow: visible;
    display: block;
    margin: 0 auto;
    transform-origin: 50% 50%;
    animation: scaleUp 0.5s ease forwards;
  }

  .circle {
    fill: none;
    stroke-width: 4;
    stroke-dasharray: 157.08;
    stroke-dashoffset: 157.08;
    animation: drawCircle 0.5s ease forwards;
  }

  .icon-path {
    fill: none;
    stroke-width: 6;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 35;
    stroke-dashoffset: 35;
    animation: drawCheckmark 0.3s cubic-bezier(0.3, 0, 0.7, 1) forwards;
  }

  .success .circle,
  .success .icon-path {
    stroke: var(--dark-voily);
  }

  .error .circle,
  .error .icon-path {
    stroke: #b00020;
  }

  .warning .circle,
  .warning .icon-path {
    stroke: #d97706;
  }

  .info .circle,
  .info .icon-path {
    stroke: #2563eb;
}

#form-response-loading {
    width: 100vw;
    position: fixed;
    top: 5vh;
    z-index: 1001;
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-response-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    width: 70%;
    aspect-ratio: 16 / 9;
    background-color: #fffbf3;
    border-radius: 0.5rem;
    box-shadow: #00000040 0px 0px 8px;

    h2 {
        margin: 0.5rem;
    }

    p {
        margin: 0;
    }
}

.animated-loading-spinner {
  width: 64px;
  height: 64px;
  border: 6px solid #ddd;
  border-top: 6px solid var(--dark-voily);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-bottom: 1rem;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

  @keyframes scaleUp {
    0% {
      transform: scale(0);
    }
    100% {
      transform: scale(1);
    }
  }

  @keyframes drawCircle {
    to {
      stroke-dashoffset: 0;
    }
  }

  @keyframes drawCheckmark {
    0% {
      stroke-dashoffset: 35;
    }
    40% {
      stroke-dashoffset: 22;
    }
    100% {
      stroke-dashoffset: 0;
    }
  }

/* Processing order animation of VAN */

#processing-order-loading {
    display: none;
}

.processing-order-overflow {
    width: 100vw;
    height: 100vh;
    background-color: #0000008a;
    z-index: 10000;
    position: fixed;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;

    .message {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 3rem;
    }

    h2 {
        margin: 0.5rem;
        text-align: center;
    }

    p {
        margin: 0;
        text-align: center;
        color: #ffffffcc;
    }
}

.van-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    
    svg {
        width: 100px;
        height: 100px;

        #Van {
            transform-box: fill-box;
            transform-origin: center;
            animation: van 0.25s linear infinite;
        }

        #left_wheel, #right_wheel {
            transform-box: fill-box;
            transform-origin: center;
            animation: wheels 1s linear infinite;
        }
        #cargo {
            transform-box: fill-box;
            transform-origin: center;
            animation: cargo_bumps 3s ease-in-out infinite;
        }
    }
}

@keyframes wheels {
    0% {
        transform: rotate(0deg) translateY(0.2px);
    }
    100% {
        transform: rotate(360deg) translateY(0.2px);
    }
}

@keyframes van {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(0.4px);
    }
    100% {
        transform: translateY(0px);
    }
}

@keyframes cargo_bumps {
    10% {
        transform: translateY(0.3px);
    }
    25% {
        transform: translateY(0px);
    }
    40% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(2px) ;
    }
    60% {
        transform: translateY(0px);
    }
    75% {
        transform: translateY(0.5px);
    }
    90% {
        transform: translateY(0px);
    }
    100% {
        transform: translateY(0px);
    }
}



@media screen and (min-width: 1000px) {

    .desktop {
        display: block !important;
    }

    p {
        font-size: 1.25rem;
    }

    .title-banner, * {
        h1 {
            font-size: 3rem;
            max-width: 40rem;
            text-wrap-mode: balance;
        }
    }

    

    #navbar {
        padding: 1rem 3rem;
        .menu-icon i:hover {
            cursor: pointer;
        }
    }

    .menu-wrapper {
        height: auto;
        width: 100%;
        right: 0;
        top: -100%;
    }
    .menu-wrapper.open {
        top: 0;
    }
    .menu-open-wrap {
        box-shadow: 0px 0px 20px 5px #0000001f;

        .menu-open {
            width: 100%;
            height: auto;
        }
        .black-bg {
            width: 0;
            height: 0;
        }

        .menu {
            height: inherit;
            .header i:hover {
                cursor: pointer;
            } 
        }

        .content {
            flex-direction: row !important;
            flex-wrap: wrap;
            gap: 0.5rem;
            padding: 2vh 8vw 6vh !important;
        }
        .content a {
            width: 20rem;
            border-bottom: none !important;
            font-size: 1.25rem !important;
            position: relative;
        }
        .content a:hover {
            background-color: transparent !important;
            color: var(--dark-voily) !important;
        }
        .content a::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: 0;
            background-color: #4d174438;
            height: 1px;
            width: 0px;
            transition: all 0.3s ease-out;
        }
        .content a:hover::after {
            width: 100%;
            transition: all 0.3s ease-out;
        }
    }

    #main-banner {
        align-items: stretch;
        min-height: auto;

        .title-banner {
            padding: 4rem 6rem 5rem;
        }

        .radius-banner {
            border-radius: 0;
            padding: 5rem;

            h2 {
                font-size: 2.5rem;
            }

            .container {
                display: flex;
                flex-direction: row;
                
                > div {
                    width: 50%;
                    padding: 0 3rem;

                    img {
                        width: 100%;
                    }

                    p {
                        font-size: 1.25rem;
                    }
                }
            }
        }
    }

    #procedure > div {
        flex-direction: row;
        justify-content: space-between;
        align-items: stretch;
        padding: 5rem 2rem;

        > div:not(.arrow) {
            width: 20%;
        }

        .arrow {
            transform: rotate(-90deg);
            padding: 2rem;
            margin: auto;
        }
    }

    .dark-banner {
        padding: 5rem;
    }

    .container:has(.pricing) {
        display: flex;
        gap: 5rem;

        #pricing {
            display: flex;
            flex-direction: column;
            margin: 0;

            .pricing {
                margin-top: 2rem;
                flex: 1;
                > div {
                    height: 100%;
                }
            }
        }
    }

    #formBanner {
        padding: 5rem 0 0;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 4rem;

        .form-banner {
            width: auto;
            padding: 2rem 3rem;
            box-shadow: none;
            border-radius: 0;
            background-color: transparent;

            .main-heading, .main-subheading {
                text-align: left;
            }

            #submitBtn {
                padding: 1rem 2rem;
                font-size: 1rem;
                margin-top: 2rem;

                .small-txt {
                    font-size: 0.7rem;
                }
            }
        }

        .boxed-wrap {
            width: 40rem;
            min-width: none;
        }
    }

    .boxed {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;

        > div {
            width: auto;
            min-height: 14rem;
        }
    }

    #popup {
        padding: 0 3rem;
        width: auto !important;
        .container {
            max-width: 1400px;
            width: 100%;
            display: flex;
            justify-content: center;
        }
    }

    .map-container {
        margin: auto;
        padding: 2rem 0;
        .grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            width: 100% !important;

            > div {
                padding: 2rem;
                width: initial !important;
            }
            
            .map-content {
                display: flex;
                align-items: flex-start;
                h2 {
                    text-align: left;
                }
                p {
                    text-align: left;
                }
            }

            > div:has(img.map-graphics) {
                display: flex;
                align-items: center;
            }

            > div:has(div#map) {
                height: calc(100% - 4rem);
            }
        }
    }

    #map {
        width: 100% !important;
        height: 100% !important;
    }

    #support {
        padding: 5rem 8rem 8rem;

        .container {
            display: flex;
            flex-direction: row;
            gap: 3rem;
            justify-content: space-between;
            align-items: center;

            > .chat > div {
                width: 100%;
                align-items: flex-start;
                text-align: left;
                border-top: 0;
                margin-top: 0;

                a {
                    margin-top: 1rem;
                }
            }

            .desktop img {
                width: 100%;
                margin-left: 2rem;
            }
        }
    }
    
    #footer {
        padding: 5rem;

        > div {
            flex-direction: row;
            justify-content: space-between;
            flex-wrap: wrap;
            width: 100%;
        }
    
        .logo a {
            display: flex;
        }
    }

    .form-response {
        width: 28rem;
        margin: 3rem;
    }

    .form-response-wrap {
        height: 100vh;
        top: 0 !important;
    }

    .form-response-box {
        width: 28rem;
        margin: 3rem;
    }

    .form-response-loading {
        height: 100vh;
        top: 0 !important;
    }
}


.bottom-wrap {
    flex-direction: column;
    display: flex;
    width: 100%;
    align-items: flex-start;
    flex-direction: column;
    gap: 3rem;
}
.debstream_watermark {
    width: 100%;
    color: #77617f;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;

    svg {
        width: 40%;
        max-width: 15rem;
    }
}
@media screen and (min-width: 1000px) {
    .bottom-wrap {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-end;
    }
    .debstream_watermark {
        width: 50%;
        color: #77617f;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: flex-end;

        svg {
            width: 40%;
            max-width: 15rem;
        }
    }
}