@import url("https://fonts.googleapis.com/css2?family=Inter&family=Plus+Jakarta+Sans:wght@200&display=swap");

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

.body {
    padding-bottom: 4rem;
}


html {
    scroll-behavior: smooth;
}

img {
    opacity: 1;
    transition: opacity 1s;
}

img[data-src] {
    opacity: 0;
}

/* navbar */
nav {
    width: 100%;
    position: fixed;
    z-index: 1000;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 1rem 0;
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-around;
    height: 80px;
    width: 80%;
    border-radius: 10px;
    backdrop-filter: blur(12.5px);
    background: rgba(255, 255, 255, 0.5);
    box-shadow: 0px 0px 10px 0px rgba(158, 158, 158, 0.25);
}

.nav-items {
    display: flex;
    justify-content: space-around;
    width: 70%;
}

.nav-items span a {
    color: #000000;
    font-family: "Inter", sans-serif;
    font-size: 20px;
    text-decoration: none;
}

.staticFooter {
    position: fixed;
    bottom: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    z-index: 10;

}

.staticText {
    text-align: center;
    padding: 1rem;
    color: #CB0000;
    font-family: "Inter", sans-serif;
    font-size: 1.4rem;
    font-weight: 500;

}

.applyBtn {
    cursor: pointer;
    font-weight: 600;
    border: none;
    font-size: 1.5rem;
    font-weight: 600;
    color: #CB0000;
    border-bottom: 2px solid #CB0000;
    background: transparent;

}

.applyText {
    color: #CB0000;
    text-decoration: none;
}

.navText {
    text-decoration: none;
    color: #000000;
}

.vWebLogin {
    text-decoration: underline !important;
}

.hamburger {
    width: 1.5rem;
    display: none;
    background-color: transparent;
    border: none;
}

.mobmenu {
    width: 100%;
    height: 100vh;
    position: fixed;
    left: 0;
    top: 0;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.4);
    z-index: 1000;
    padding: 5vh 0 35vh 0;
    display: none;
}


.closeButtonRow {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 0.5rem 15%;
}

.closeButton {
    border: none;
    background-color: transparent;
}

.closeButton img {
    width: 1.5rem;
}

.mobmenu span {
    width: 100%;
    text-align: right;
    padding: 0 20% 0 0;
    opacity: 0;
    /* Start with 0 opacity */
    transform: translateY(20px);
    /* Start position */
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
}

.mobmenu.show span {
    opacity: 1;
    /* End with full opacity when the menu is shown */
    transform: translateY(0);
    /* End position when the menu is shown */
}

.mobmenu span a {
    color: #000000;
    font-family: "Roboto";
    font-size: 20px;
    text-decoration: none;
}

.container-2 {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    justify-content: space-around;
    padding: 7rem 0 30px 0;
}

.c2-s-title {
    margin-top: 5px;
    color: #0A0A28;
    font-family: 'Inter', sans-serif;
    font-size: 2rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.c2-s-subtitle {
    color: #000;
    font-family: 'Inter', sans-serif;
    font-size: 1.25rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-top: 10px;
}

.c-l {
    width: 30%;
    font-size: 20px;
}

.c-r {
    width: 50%;
}

.c-form {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

.line-1 {
    display: flex;
    flex-direction: row;
    /* justify-content: space-between; */
}

.line-1 input {
    width: 19rem;
    border-radius: 0.625rem;
    background: #E6E6E6;
    font-family: 'Inter', sans-serif;
}

h2 {
    font-size: 30px;
    font-family: 'Sora';
}

.line-2 {
    display: flex;
    align-items: flex-start;
    gap: 0.9375rem;
    align-self: stretch;
}

.line-2 input {
    width: 63%;
}

.c-form select {
    color: #8D8D8D;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin: 10px 0 10px 0;
    display: flex;
    padding: 0.6875rem 1.1875rem;
    justify-content: center;
    align-items: center;
    gap: 1.1875rem;
    border-radius: 0.625rem;
    background: #E6E6E6;
    border: 1px solid #b8b8b8;
}

.c-form input,
textarea {
    font-size: 20px;
    padding: 10px 5px 10px 5px;
    margin: 10px 30px 10px 0;
    border-radius: 5px;
    border: 1px solid #b8b8b8;
    border-radius: 0.625rem;
    background: #E6E6E6;
}

.line-1 input {
    width: 50%;
}

input[type=submit] {
    background-color: #2D5BFF;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.c2-address,
.c2-email,
.c2-number,
.c2-location {
    margin-top: 30px;
}

.container-3 {
    padding-left: 5%;
    padding-right: 5%;
    padding-bottom: 60px;
    padding-top: 30px;
    box-shadow: inset 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.distributors {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 5%;
}

.c3-title {
    color: #000;
    font-family: 'Inter', sans-serif;
    font-size: 2rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 1rem;
}

.c3-tel,
.c3-email,
.c3-address {
    margin-top: 10px;
}

.container-5 {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10%;
    align-self: stretch;
    padding: 10vh 5%;
}

.container-5-titles {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.container-5-title {
    color: #0a0a28;
    text-align: center;
    font-family: "Inter", sans-serif;
    font-size: 2rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: capitalize;
}

.container-5-subtitle {
    color: #5e5e5e;
    text-align: center;
    font-family: "Inter", sans-serif;
    font-size: 1.25rem;
    font-style: normal;
    font-weight: 100;
    line-height: normal;
    text-transform: capitalize;
}

.button {
    display: flex;
    padding: 1rem 2rem;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
    font-family: "Inter", sans-serif;
    font-size: 1rem;
    font-weight: 300;
    text-transform: capitalize;
    border-radius: 0.625rem;
    background: #4747d1;
    cursor: pointer;
}


/* footer */
.footer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    align-self: stretch;
    background-color: #e8e8e8;
}

.footer-top {
    display: flex;
    padding: 1.25rem 5%;
    align-items: center;
    gap: 4.6875rem;
    width: 100%;
}

.follow-text {
    color: #000;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 2rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.footer-social-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.social-icon {
    height: 2rem;
}

.footer-mid {
    display: flex;
    padding: 1.25rem 5%;
    align-items: flex-start;
    align-self: stretch;
    justify-content: space-between;
}

.footer-mid-right-section {
    display: flex;
    gap: 2rem;
}

.footer-mid-header {
    color: #404040;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 1.25rem;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.detail-container {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.footer-s2-detailtext {
    color: #404040;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.275rem;
}

.footer-qlink {
    color: #404040;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.875rem;
}

.footer-low {
    display: flex;
    padding: 1.25rem 10%;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.low-p1 {
    color: #000;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 1.125rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.low-p2 {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 2.5625rem;
    color: #000;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 1.125rem;
    font-weight: 400;
}

.scrollUpBtn {
    background-color: transparent;
    border: none;
    cursor: pointer;
    position: fixed;
    left: 50%;
    bottom: 70px;
    transform: translate(-50%, 0);
    z-index: 5;
}

@media only screen and (max-width: 1280px) {
    .logo {
        padding-left: 1%;
    }
}

@media only screen and (max-width: 800px) {
    .logo {
        padding: 0;
    }

    .nav-items {
        display: none;
    }

    .logoimg {
        width: 150px;
    }

    .hamburger {
        display: block;
    }

    .hamburger img {
        width: 30px;
    }

    .container-2 {
        flex-direction: column;
    }

    .c-l,
    .c-r {
        width: 80%;
        margin-left: 10%;
        margin-top: 30px;
    }

    .line-1 {
        flex-direction: column;
    }

    .line-1 input {
        width: 95%;
    }

    .line-2 {
        flex-direction: row;
    }

    .line-2 input {
        width: 72%;
    }

    .distributors {
        gap: 10px;
    }

    .container-5 {
        flex-direction: column;
        gap: 1rem;
    }

    .container-5-title {
        font-size: 1.5rem;
    }

    .container-5-subtitle {
        font-size: 1rem;
    }

    .footer-top {
        flex-direction: column;
        gap: 1rem;
    }

    .footer-mid {
        flex-direction: column;
        gap: 2rem;
    }

    .footer-low {
        gap: 1rem;
    }

    .low-p1 {
        font-size: .75rem;
    }

    .low-p2 {
        font-size: .75rem;
    }

    .scrollUpBtn {
        bottom: 10vh;
    }

    .staticText{
        font-size: 1.2rem;
    }

    .applyBtn{
        font-size: 1.2rem;
    }
}