@import url('https://fonts.googleapis.com/css2?family=Spectral:wght@200&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Spectral:wght@300&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Karla:wght@500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lora:wght@500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Jost:wght@300&display=swap');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body,
button {
    -webkit-tap-highlight-color: transparent;
    font-family: 'Spectral', serif;
    overflow-x: hidden;
}

body h1 {
    font-family: 'Karla', sans-serif;
}

body a {
    text-decoration: none;
    color: black;
}

.container {
    height: 100%;
    background: white;
    overflow-x: hidden;
}

.navbar-s {
    display: flex;
    list-style: none;
}

.nav-main {
    display: flex;
    padding: 20px 20px;
    width: 100%;
    justify-content: space-between;
    position: fixed;
    background: white;
    z-index: 100;
}

.nav-left {
    display: flex;
    width: 20%;
    justify-content: space-around;
    padding: 10px 10px;
}

.nav-left a {
    text-decoration: none;
    color: black;
}

.nav-center-logo {
    padding: 10px 10px;
    display: flex;
    justify-content: center;
    width: 33%;
}

.nav-right-links {
    width: 20%;
    display: flex;
    justify-content: space-around;
    padding: 10px 10px;
}

.nav-right-links a {
    text-decoration: none;
    color: black;
}

body.about .nav-main #about,
body.programs .nav-main #programs,
body.enroll .nav-main #enroll {
    /* Add your active styles here */
    text-decoration: underline;
}

/* XXXXXXXXXXXXXXXXXXXXXX Special-nav XXXXXXXXXXXXXXXXXXXXXXXXX */

.menu {
    max-width: 75rem;
    width: 100%;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgb(0, 0, 0);
}

.samlogo {
    display: flex;
    width: 263px;
    justify-content: space-between;
    position: absolute;
    top: 10px;
}

.samlogo img {
    width: 38px;
    height: 38px;
    margin-top: 12px;
}

.logo1 {
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 4rem;
}

.logo1 span {
    font-weight: 300;
}

.hamburger-menu {
    height: 5rem;
    width: 12rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    position: absolute;
    z-index: 110;
    top: 0;
    right: 30px;
}

.special-menu {
    width: 100%;
    height: 0;
    background: black;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 100;
    display: grid;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
    border-bottom-left-radius: 0;
    transition: width 0.5s, height 0.5s, border-radius 0.5s;
}

.special-menu.open-special {
    width: 100%;
    height: 80vh;
    border-bottom-left-radius: 0;
    position: absolute;
}

.special-logo1 {
    color: white;
    font-size: 25px;
    padding-left: 40px;
}

.special-sam-logo {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.close-special {
    color: white;
    width: 200px;
    height: 80px;
    background-color: black;
    font-size: 25px;
    padding-top: 0px;
    margin-right: 150px;
    border: 1px solid white;
    cursor: pointer;
}

.close-special:hover {
    background-color: rgb(42, 42, 42);
    transition: 0.3s;
}

.special-box-dude {
    display: flex;
}

.special-navlinks {
    display: grid;
    padding-left: 40px;
    height: 54vh;
    overflow-y: scroll;
    scrollbar-width: thin;
    scrollbar-color: #464a4f #292c2f;
    transition: 0.3s;
    margin-top: 94px;
    width: fit-content;
}

.special-a-a {
    margin: 20px;
    text-align: center;
    font-size: 50px;
    font-weight: 600;
    position: relative;
    color: white;
    font-family: 'ZCOOL XiaoWei', sans-serif;
    text-decoration: none;
}

.special-a-a::after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #ffffff;
    transform-origin: bottom right;
    transition: transform 0.25s ease-out;
}

.special-a-a:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

.special-menu ul li {
    padding-top: 15px;
    padding-bottom: 15px;
}

.special-img {
    padding-left: 206px;
}

.special-img img {
    width: 700px;
}

.special-menu-bottom {
    width: 100vw;
    height: 80px;
    border-top: 1px solid white;
}

.ham-final {
    color: black;
    width: 200px;
    height: 80px;
    background-color: transparent;
    font-size: 25px;
    padding-top: 0px;
    margin-right: 0px;
    border: 1px solid rgb(0, 0, 0);
    cursor: pointer;
    overflow-x: unset;
}

.ham-final:hover {
    color: white;
}

.ham-final-open {
    display: none;
}

.ham-final-final {
    background-color: #000000;
    color: white;
    border: 1px solid #ffffff;
}

.ham-final-final:hover {
    color: black;
    background: white;
}

/* XXXXXXXXXXXXXXXXXXXXXX About Section XXXXXXXXXXXXXXXXXXXXXX */

.about-main {
    height: fit-content;
    display: grid;
    justify-content: center;
    padding-top: 120px;
}

.about-head {
    display: flex;
    justify-content: center;
    padding-top: 90px;
    padding-bottom: 30px;
}

.about-para {
    width: 40%;
    margin: auto;
    text-align: center;
    line-height: 28px;
}

/* .about-img {
    display: flex;
    justify-content: center;
    margin: auto;
    width: 70vw;
    height: 70vh;
    margin-top: 150px;
    margin-bottom: 150px;
}

.about-img {
    background-image: url("./gery-wibowo-Eti6ph51H4A-unsplash.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
} */

/* XXXXXXXXXXXXXXXXXXXXXXXXXXXX Main Program XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX */

.main-program-section {
    padding: 200px 0px;
    width: 100%;
    height: fit-content;
    display: flex;
    justify-content: space-evenly;
    text-align: center;
    padding-top: 300px;
    padding-bottom: 41px;
}

.sec-main-prog-sec {
    padding: 200px 0px;
    width: 100%;
    height: fit-content;
    display: flex;
    justify-content: space-evenly;
    text-align: center;
    padding-top: 0;
}

.pg-section {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 46%;
    height: 660px;
    cursor: pointer;
    opacity: 0.6;
}

.left-pg-section {
    background-image: url("https://images.unsplash.com/photo-1590326232147-2f5ce615bfc9?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1113&q=80");
    background-position: top;
}

.right-pg-section {
    background-image: url("https://images.pexels.com/photos/4144102/pexels-photo-4144102.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1");
}

.impro-below-left-pg {
    background-image: url("https://images.unsplash.com/photo-1637589316488-6d4c41b335cd?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1331&q=80");
}

.impro-below-right-pg {
    background-image: url("https://images.unsplash.com/photo-1627556704290-2b1f5853ff78?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80");
}

.overlay-pg {
    height: 100%;
    width: 100%;
    padding: 75px 60px;
    text-align: left;
    font-size: 33px;
}

.overlay-pg h1 {
    font-family: 'Lora', serif;
}

.pg-section:hover {
    opacity: 1;
    transition: 0.3s;
}

.overlay-pg:hover {
    opacity: 0;
    transition: 0.3s;
}

/* XXXXXXXXXXXXXXXXXXXXXXXXXX Grey Part XXXXXXXXXXXXXXXXXXXXXXXXXXX */

.grey-part {
    background: #ebebeb;
    height: fit-content;
    margin: auto;
}

.contact-head {
    display: flex;
    justify-content: center;
    font-size: 30px;
    letter-spacing: 1px;
    padding-top: 90px;
    width: 49%;
    margin: auto;
    text-align: center;
}

.contact-wsp {
    display: flex;
    justify-content: center;
    height: fit-content;
    padding-top: 100px;
}

.wsp-img-but {
    background-image: url("https://images.unsplash.com/photo-1643917567366-5afb8cf4bac9?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1170&q=80");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-blend-mode: darken;
    background-color: rgba(0, 0, 0, 0.527);
    height: 500px;
    width: 100%;
    display: grid;
}

.via-wsp {
    display: flex;
    justify-content: center;
    text-align: center;
    padding-top: 50px;
    color: white;
    font-size: 24px;
}

.wsp-button {
    display: flex;
    justify-content: center;
    padding-top: 218px;
}

.wsp-button button {
    width: 340px;
    height: 76px;
    font-size: 26px;
    letter-spacing: 2px;
    background: #39e101;
    border: 2px solid white;
    cursor: pointer;
}

.call-contact {
    border-top: 1px solid white;
    padding-top: 0px;
}

.call-img-but {
    background-image: url("../../Images/NRei3pyM.jpg");
    background-position: top;
}

.call-button button {
    background: #2bdfc6;
}

/* XXXXXXXXXXXXXXXXXXXX Grey Contact XXXXXXXXXXXXXXXXXXXXXXX */

.grey-contact-head {
    display: flex;
    justify-content: center;
    padding-top: 90px;
    font-size: 30px;
    width: 69%;
    margin: auto;
    text-align: center;
}

.grey-contact {
    display: flex;
    justify-content: center;
    padding: 200px 0px;
    height: fit-content;
    padding-top: 100px;
}

.grey-contact-img {
    background-image: url("https://images.unsplash.com/photo-1617870952348-7524edfb61b7?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1170&q=80");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 60%;
    height: auto;
}

.app-form {
    width: 40%;
    height: fit-content;
    display: grid;
    justify-content: center;
    background-image: linear-gradient(to bottom, #8a8b8a, #18110e, #1e2122);
}

.resp-app-form {
    display: none;
}

.app-form-group {
    padding-bottom: 20px;
    display: grid;
    color: white;
}

.app-form-head {
    color: white;
    font-size: 23px;
    padding: 38px 0px;
    text-align: center;
}

.app-form-head h1 {
    font-family: 'Josefin Sans', sans-serif;
}

.contact-form {
    display: grid;
    justify-content: center;
    padding-bottom: 30px;
}

.app-form-control {
    width: 490px;
    height: 35px;
    text-align: left;
    padding: 0px 10px;
    border-radius: 0px;
}

input {
    outline: none;
    background: transparent;
    border: none;
    border-bottom: 1px solid white;
    color: white;
    font-size: 17px;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}

textarea {
    border: none;
    border-bottom: 1px solid white;
    background: transparent;
    outline: none;
    resize: none;
    color: white;
    font-size: 20px;
}

label {
    transform: translateY(-20px);
    width: fit-content;
    transition: 0.3s;
    pointer-events: none;
}

.contact-msg {
    height: 36px;
}

.app-form-button {
    margin-right: 14px;
    width: 138px;
    height: 40px;
    background: transparent;
    color: white;
    outline: none;
    font-family: 'Jost', sans-serif;
    border: 1px solid white;
    cursor: pointer;
}

.buttons {
    display: flex;
    justify-content: center;
    padding-top: 30px;
}

input:focus {
    border-bottom: 2px solid #ffffff;
}

input:focus~label,
input:valid~label,
textarea:focus~label,
textarea:focus~label {
    transform: translateY(-57px);
    font-size: 14px;
    padding: 0 2px;
    background: transparent;
}

/* XXXXXXXXXXXXXXXXXXXX Footer XXXXXXXXXXXXXXXXXXXXX */

.master-foot {
    display: flex;
    background: #ebebeb;
    justify-content: space-between;
    height: fit-content;
    padding-bottom: 70px;
}

.left-footer {
    width: 50%;
    display: grid;
    justify-content: left;
    padding-left: 100px;
}

.footer-sam-logo {
    padding: 28px 0px;
    display: flex;
    font-size: 27px;
    width: fit-content;
}

.right-footer {
    padding-right: 100px;
    display: grid;
    width: 50%;
    justify-content: center;
}

.right-footer-head {
    padding: 28px 0px;
    font-size: 27px;
}

.right-footer-par ul {
    list-style: none;
}

.right-footer-par ul li a {
    color: black;
}

@media only screen and (min-width: 1260px) {
    .hamburger-menu {
        display: none;
    }
}

@media only screen and (max-width: 1260px) {
    .nav-main {
        display: none;
    }
}

/* XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX RESPONISVE XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX */

@media only screen and (max-width: 1198px) {
    .menu {
        padding: 0 5rem;
    }

    .ham-final-final {
        background-color: #000000;
        color: white;
        border: 1px solid #ffffff;
    }
}

@media only screen and (max-width: 790px) {
    .inner {
        padding: 0 3rem;
        padding-bottom: 100px;
    }

    .inner h1 {
        font-size: 21px;
    }

    .inner p {
        font-size: 13px;
    }
}

@media only screen and (max-width: 706px) {
    .menu {
        padding: 0 4rem;
    }
}

@media only screen and (max-width: 559px) {
    .btn {
        width: 170px;
        height: 26px;
        font-size: 14px;
    }
}

@media only screen and (max-width: 490px) {
    .menu {
        padding: 0 3rem;
    }

    .samlogo {
        justify-content: flex-start;
    }

    .logo1 {
        font-size: 15px;
        padding-left: 10px;
    }

    .inner h1 {
        font-size: 18px;
    }

    .inner p {
        font-size: 11px;
    }
}

@media only screen and (max-width: 460px) {
    .menu {
        padding: 0 2rem;
    }
}

@media only screen and (max-width: 442px) {
    .inner h1 {
        font-size: 16px;
    }

    .inner p {
        font-size: 10px;
    }

    .btn {
        font-size: 11px;
    }

    .ham-final-final {
        background-color: #000000;
        color: white;
        border: 1px solid #ffffff;
    }
}

@media only screen and (max-width: 410px) {
    .btn {
        width: 151px;
        height: 19px;
    }

    .ham-final-final {
        background-color: #000000;
        color: white;
        border: 1px solid #ffffff;
    }
}

@media only screen and (max-width: 335px) {
    .inner h1 {
        font-size: 15px;
    }

    .samlogo img {
        width: 31px;
        height: 30px;
        margin-top: 16px;
    }

    .logo1 {
        font-size: 11px;
    }

    .btn {
        width: 130px;
        height: 18px;
    }

    .ham-final-final {
        background-color: #000000;
        color: white;
        border: 1px solid #ffffff;
    }
}

@media only screen and (max-width: 662px) {
    .logo1 {
        font-size: 15px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 2px;
        line-height: 4rem;
    }

    .samlogo {
        display: flex;
        width: 263px;
        justify-content: space-between;
        padding-right: 20px;
    }

    .ham-final-final {
        background-color: #000000;
        color: white;
        border: 1px solid #ffffff;
    }
}

@media only screen and (max-width: 570px) {
    .logo1 {
        font-size: 13px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 2px;
        line-height: 4rem;
    }

    .hamburger-menu {
        height: fit-content;
        width: fit-content;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: flex-end;
        z-index: 110;
        top: 11px;
    }

    .special-logo1 {
        color: white;
        padding-left: 40px;
        margin-top: -32px;
    }
}

@media only screen and (max-width: 570px) {
    .samlogo {
        display: flex;
        width: 233px;
        justify-content: space-between;
        padding-right: 44px;
    }

    .special-sam-logo {
        width: fit-content;
        top: 3px;
    }

    .samlogo img {
        width: 33px;
        height: 33px;
        margin-top: 15px;
    }

    .logo1 {
        font-size: 10px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 2px;
        line-height: 4rem;
    }

    .ham-final {
        color: black;
        width: 155px;
        height: 60px;
        background-color: transparent;
        font-size: 18px;
        padding-top: 0px;
        margin-right: 0px;
        border: 1px solid rgb(0, 0, 0);
        cursor: pointer;
    }

    .ham-final-final {
        background-color: #000000;
        color: white;
        border: 1px solid #ffffff;
    }
}

@media only screen and (max-width: 538px) {
    .hamburger-menu {
        height: fit-content;
        width: fit-content;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: flex-end;
        z-index: 110;
        top: 18px;
    }

    .ham-final {
        color: black;
        width: 126px;
        height: 45px;
        background-color: transparent;
        font-size: 13px;
        padding-top: 0px;
        margin-right: 0px;
        border: 1px solid rgb(0, 0, 0);
        cursor: pointer;
    }

    .ham-final-final {
        background-color: #000000;
        color: white;
        border: 1px solid #ffffff;
    }
}

@media only screen and (max-width: 426px) {
    .samlogo {
        display: flex;
        width: fit-content;
        justify-content: space-between;
        padding-right: 0px;
    }

    .ham-final-final {
        background-color: #000000;
        color: white;
        border: 1px solid #ffffff;
    }
}

@media only screen and (max-width: 390px) {
    .samlogo img {
        width: 26px;
        height: 26px;
        margin-top: 18px;
    }

    .logo1 {
        font-size: 9px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 2px;
        line-height: 4rem;
    }

    .ham-final {
        color: black;
        width: 105px;
        height: 35px;
        background-color: transparent;
        font-size: 11px;
        padding-top: 0px;
        margin-right: 0px;
        border: 1px solid rgb(0, 0, 0);
        cursor: pointer;
    }

    .ham-final-final {
        background-color: #000000;
        color: white;
        border: 1px solid #ffffff;
    }

    .hamburger-menu {
        height: fit-content;
        width: fit-content;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: flex-end;
        z-index: 110;
        top: 23px;
    }
}

@media only screen and (max-width: 344px) {
    .logo1 {
        font-size: 8px;
    }

    .ham-final {
        color: black;
        width: 83px;
        height: 27px;
        background-color: transparent;
        font-size: 10px;
        padding-top: 0px;
        margin-right: 0px;
        border: 1px solid rgb(0, 0, 0);
        cursor: pointer;
    }

    .ham-final-final {
        background-color: #000000;
        color: white;
        border: 1px solid #ffffff;
    }

    .hamburger-menu {
        height: fit-content;
        width: fit-content;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: flex-end;
        z-index: 110;
        top: 27px;
    }
}

/* XXXXXXXXXXXXXXXXXXXXXXXXX Media query for Special Menu XXXXXXXXXXXXXXXXXXXXXXXXXXX */

@media only screen and (max-width: 667px) {
    .special-logo1 {
        color: white;
        font-size: 15px;
        padding-left: 40px;
        margin-top: 0px;
    }

    .special-navlinks {
        display: grid;
        padding-left: 0;
        height: 53vh;
        overflow-y: scroll;
        scrollbar-width: thin;
        scrollbar-color: #fefeff #fff;
        transition: 0.3s;
        width: fit-content;
        margin: auto;
        justify-content: center;
        text-align: center;
        margin-top: 99px;
    }
}

@media only screen and (max-width: 379px) {
    .special-a-a {
        font-size: 39px;
    }
}

@media only screen and (max-width: 570px) {
    .special-logo1 {
        color: white;
        font-size: 13px;
        padding-left: 40px;
        margin-top: 11px;
    }
}

@media only screen and (max-width: 396px) {
    .special-logo1 {
        color: white;
        font-size: 11px;
        padding-left: 40px;
        margin-top: 8px;
    }
}

@media only screen and (max-width: 358px) {
    .special-logo1 {
        color: white;
        font-size: 11px;
        padding-left: 40px;
        margin-top: 8px;
    }
}

/* XXXXXXXXXXXXXXX Media Query for Programs Para XXXXXXXXXXXXXXXXX */

@media only screen and (max-width: 1069px) {
    .about-para {
        width: 50%;
        margin: auto;
        text-align: center;
        line-height: 28px;
    }
}

@media only screen and (max-width: 725px) {
    .about-para {
        width: 70%;
        margin: auto;
        text-align: center;
        line-height: 28px;
    }
}

@media only screen and (max-width: 474px) {
    .about-para {
        width: 88%;
        margin: auto;
        text-align: center;
        line-height: 28px;
    }
}

@media only screen and (max-width: 376px) {
    .about-para {
        width: 85%;
        margin: auto;
        line-height: 24px;
        display: flex;
        justify-content: center;
        text-align: center;
    }
}

/* XXXXXXXXXXXXXXX Media Query for Programs XXXXXXXXXXXXXX */

@media only screen and (max-width: 760px) {
    .main-program-section {
        width: 100%;
        height: fit-content;
        display: grid;
        justify-content: center;
        text-align: center;
        padding-bottom: 0;
    }

    .sec-main-prog-sec {
        padding-bottom: 130px;
    }

    .pg-section {
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        width: 100%;
        height: 386px;
        cursor: pointer;
        opacity: 0.6;
        margin-bottom: 30px;
    }
}

/* XXXXXXXXXXXXX MQ for Contact XXXXXXXXXXXXXXXXX */

@media only screen and (max-width: 738px) {
    .contact-head {
        display: flex;
        justify-content: center;
        font-size: 30px;
        letter-spacing: 1px;
        padding-top: 90px;
        width: 80%;
        margin: auto;
        text-align: center;
    }
}

@media only screen and (max-width: 484px) {
    .contact-head {
        display: flex;
        justify-content: center;
        font-size: 26px;
        letter-spacing: 1px;
        padding-top: 90px;
        width: 80%;
        margin: auto;
        text-align: center;
    }
}

@media only screen and (max-width: 346px) {
    .contact-head {
        display: flex;
        justify-content: center;
        font-size: 26px;
        letter-spacing: 1px;
        padding-top: 90px;
        width: 80%;
        margin: auto;
        text-align: center;
    }
}

/* XXXXXXXXXXXXXXXX MQ for Wsp XXXXXXXXXXXXXXXX */

@media only screen and (max-width: 360px) {
    .wsp-button button {
        width: 291px;
        height: 76px;
    }
}

/* XXXXXXXXXXXXXX MQ for contact us XXXXXXXXXX */

@media only screen and (max-width: 1326px) {
    .app-form {
        display: none;
    }

    .grey-contact-img {
        background-position: top;
        width: 100%;
        height: auto;
        background-blend-mode: darken;
        background-color: #0000008c;
        display: flex;
        justify-content: center;
        font-size: 13px;
    }

    .resp-app-form {
        display: grid;
        background: transparent;
    }

    .app-form-control {
        width: 80vw;
        height: 35px;
        text-align: left;
        padding: 0px 10px;
        border-radius: 0px;
    }
}

/* XXXXXXXXXX MQ for Footer XXXXXXXXXXX */

@media only screen and (max-width: 690px) {
    .left-footer {
        width: 50%;
        display: grid;
        justify-content: left;
        padding-left: 30px;
        padding-right: 15px;
    }

    .right-footer {
        padding-right: 30px;
        display: grid;
        width: 50%;
        justify-content: center;
        padding-left: 15px;
    }
}