@charset "UTF-8";
/*
    This CSS stylesheet was created by the Crattivo Department of Gocreattivo by Joseph Fagua.
    It is designed to style index.html and provide responsive sizing for the html elements
    Our team specializes in Full Stack Development, Database Management, API Integration,
    Frontend & Backend Coordination, and Code Optimization.
    Gocreattivo is dedicated to providing high-quality, efficient, and scalable design solutions.
*/

/* Default CSS styling for Site */
*{
    padding:0;
    margin:0;
}
html{
    scroll-behavior: smooth;
    overflow-x: hidden;
}
body{
    background-color: lightgrey ;
    height: 100%;
    width: 100%;
}
main{
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
}
h1,h2,h3,h4,h5,h6,p,span,a{
    font-family: "Inter", sans-serif;
}
.grecaptcha-badge{
    z-index:50;
}
/*-----------------------------------------*/
        /*  Hero Section Starts  */
/*-----------------------------------------*/
.hero-container{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    position: relative;
    height:100vh;
    width: 100%;
}
.hero-slide {
    display: none;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    height: 100%;
    opacity: 0;
}
.hero-img{
    height: 100%;
    width: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    z-index: 1;
}
.hero-slide.active {
    display: flex;
    opacity: 1;
}
.hero-dark_overlay{
    display: flex;
    background-color: #000000;
    position: absolute;
    opacity: 60%;
    height: 100vh;
    width: 100%;
    z-index: 2;
}
.hero-text-overlay{
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    width: 100%;
    z-index:3;
    top: 10%;
    h1{
        font-size: 5.5em;
        text-align: center;
        color: white;
        word-spacing: 0.25em;
        margin-bottom: 0.5vw;
    }
}
.hero-overlay-logo-section{
    display: flex;
    flex-direction: row;
    position: relative;
    justify-content: center;
    height: auto;
    width: 100%;
    img:not(.hero-overlay-logo-section-main_logo){
        height: 2vw;
        margin:auto 0 ;
    }
}
.hero-overlay-slogan-section{
    display: flex;
    flex-direction: row;
    position: relative;
    justify-content: center;
    height: auto;
    width: 100%;
    img{
        height: 2vw;
        width: 9%;
        margin: auto 1vw;
        padding-bottom: 0.5vw;
    }
    span{
        margin-top: 2.3vw;
        margin-bottom:3vw ;
        display: flex;
        color: #FDBC15;
        text-align: center;
        width: 50%;
        font-size: 2em;
        font-weight: bold;
    }
}
.hero-overlay-logo-section-main_logo{
    height: 11vw;
    width: auto;
    margin: 0 1vw 0 1vw;
}
/*-----------------------------------------*/
        /*  About Us Section Starts  */
/*-----------------------------------------*/
.about-us{
    display: flex;
    width: 100%;
    height: auto;
    flex-direction: column;
}
.about-us-info-section{
    display: flex;
    flex-direction: column;
    gap: 0.5vw;
    height:auto;
    width: 75%;
    margin: 3vw auto;
}
.about-us-info{
    display: flex;
    height: auto;
    justify-content: flex-start;
    width: 100%;
    padding: 1vw 1vw;
}
.about-us-info-image-container{
    display: flex;
    justify-content: flex-start;
    align-content: center;
    width: 60%;
    height: 100%;
    margin: 0 0 0 7vw;
    img{
        object-fit: contain;
        width: 80%;
        height: 100%;
        box-shadow: 0 0 0.35vw rgba(0,0,0,0.5);
    }
}
.about-us-info-description-container{
    width: 60%;
    height: auto;
    margin: 0 1vw 0 0;
    padding: 0 7vw 0 2vw;
    h1{
        text-align: left;
        margin-left: 0.25vw;
        font-size: 2.5em;
    }
    h3{
        text-align: left;
        font-size: 1.35em;
        margin-bottom: 0.5vw;
    }
    p{
        text-align: left;
        font-size: 1.075em;
        margin-bottom:1vw ;
        margin-left: 0.5vw;
        margin-right: 2vw;
    }
}
.about-us-info-description-container-text-separator{
    border: none;
    background-color: #FDBC15;
    border-radius: 10vw;
    margin: 0 auto 1.5vw 0;
    height: 0.15vw;
    width: 35%;
}
.about-us-stats-section{
    display: flex;
    flex-direction: column;
    width: 100%;
    height: auto;
    margin: 2vw 0;
}
.stats-seperator{
    border: none;
    background-color: #FDBC15;
    height: 0.15vw;
    width: 100%;
}
.about-us-stats-container{
    display: flex;
    position: relative;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: auto;
    width: 55%;
    margin: 0.8vw auto;
    border-radius: 10px;
    background-color: rgba(0,0,0,0.25);
    border: 2px solid rgba(0,0,0,0.20);
    box-shadow: 0 0 0.35vw rgba(0,0,0,0.6);
}
.about-us-stats{
    display: flex;
    position: relative;
    flex-direction: row;
    justify-content: center;
    width: 90%;
    height: auto;
    gap: 2vw;
    transform: translateY(-25%); /* Another way to control overlap */
    div{
        display: flex;
        flex-direction: column;
        position: relative;
        background-color:#FDBC15 ;
        text-align: center;
        width: 27%;
        height:32vh;
        border-radius: 10px;
        h1{
            margin-top: 20%;
            margin-bottom: 2.5%;
            font-size: 4em;
            color: white;
        }
        h2{
            font-size: 2.25em;
            color: white;
            margin-top: 5%;
        }
    }
}
.about-us-stats-text-separator{
    border: none;
    background: #222222;
    margin: 0 auto 1vw auto;
    border-radius: 10vw;
    height: 0.30vw;
    width: 75%;
}
.about-us-stats-licenses-section{
    display: flex;
    width: 40%;
    height: auto;
    flex-direction: column;
    text-align: center;
    transform: translateY(-10%);
    h1{
        display: block;
        font-size: 3em;
        color: white;
        font-weight: bold;
    }
}
.about-us-stats-licenses-section-text-seperator{
    border: none;
    background: #222222;
    margin: 0 auto 1vw auto;
    border-radius: 10vw;
    height: 0.20vw;
    width: 45%;
}
.about-us-stats-licenses-images{
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    img{
        height: 9vw;
        opacity: 75%;
        border: 0.15px solid rgba(0,0,0,0.25);
        box-shadow: 0 0 0.25vw rgba(0,0,0,0.25);
        border-radius: 50%;
    }
}
/*---------------------------------------------------*/
    /* Services Interactive Menu Section Starts */
/*---------------------------------------------------*/
.services {
    display: flex;
    width: 100%;
    height: auto;
    flex-direction: column;
    background: #222222;
}
.services-interactive_menu{
    display: flex;
    flex-direction: column;
    height: auto;
    width: 85%;
    margin: 4vw auto;
}
.services-interactive_menu-top-container{
    display: flex;
    flex-direction: column;
    text-align: center;
    margin: 0 auto;
}
.services-interactive_menu-top-container-title{
    width: 100%;
    font-size: 2.5em;
    color: white;
    font-weight: bold;
    letter-spacing: 1px;
    text-align: center;
}
.services-interactive_menu-text-separator{
    border: none;
    background: #FDBC15;
    margin: 1vw auto 1.5vw auto;
    border-radius: 10vw;
    height: 0.20vw;
    width: 15%;
}
.services-interactive_menu-top-container-slogan-container{
    display: flex;
    flex-direction: column;
    width: 70%;
    margin: 0 auto 3vw auto;
    span{
        font-size: 1.5em;
        color: white;
        margin-bottom: 0.25vw;
    }
}
.services-interactive_menu-bottom-container{
    display: inherit;
    flex-direction: column;
    width: 100%;
    margin:0;
}
.services-interactive_menu-bottom-card_container{
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    margin: 0 2vw 0 0;
}
.services-interactive_menu-bottom-container-card{
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    svg{
        height: 6vw;
        margin-bottom: 1.5vw;
    }
}
.services-interactive_menu-bottom-container-card svg:hover{
    transition: 0.5s ease-in-out;
    fill: white;
}
.services-interactive_menu-bottom-container-card-text{
    display: block;
    font-size: 1.5em;
    color: white;
    margin: 0;
    font-weight: normal;
    letter-spacing: 1px;
}
/*---------------------------------------------------*/
    /* Services Detailed Overview Section Starts */
/*---------------------------------------------------*/
.services-detailed-overview{
    display: flex;
    width: 100%;
    height: auto;
    flex-direction: column;
    background: white;
}
.services-detailed-overview-card-container{
    display: flex;
    flex-direction: column;
    height: auto;
    width: 70%;
    margin: 3vw auto 3vw auto;
}
.services-detailed-overview-card:nth-child(odd){
    display: flex;
    flex-direction: row;
}
.services-detailed-overview-card:nth-child(even) {
    display: flex;
    flex-direction: row-reverse;
    padding: 2vw 0;
}
.services-detailed-overview-card-img{
    object-fit: contain;
    height: 15vw;
    width: auto;
}
.services-detailed-overview-card:nth-child(odd) .services-detailed-overview-card-info-container {
    margin-left: 18%;
    margin-right: 0;
    box-shadow: 3px 3px 0.5vw rgba(0,0,0,0.40);
}
.services-detailed-overview-card:nth-child(even) .services-detailed-overview-card-info-container {
    margin-right: 18%;
    margin-left: 0;
    box-shadow: -3px 3px 0.5vw rgba(0,0,0,0.40);
}
.services-detailed-overview-card-info-container{
    display: flex;
    border: 1px solid rgba(0,0,0,0.15);
    width: 100%;
    height: auto;
}
.services-detailed-overview-card-info{
    display: flex;
    flex-direction: column;
    width: 100%;
    margin: 2vw 3vw 0 4vw;
}
.services-detailed-overview-card-header_section{
    display: flex;
    width: 100%;
    height: auto;
}
.services-detailed-overview-card-header{
    display: flex;
    flex-direction: row;
    width: 100%;
}
.services-detailed-overview-card-header_text{
    display: block;
    flex-direction: column;
    width: 100%;
    span{
        font-size: 1.9em;
        font-weight: bold;
        letter-spacing: 1px;
    }
}
.services-detailed-overview-card-text_separator{
    border: none;
    background: #FDBC15;
    margin: 0.75vw 0 1.5vw 0;
    border-radius: 10vw;
    height: 0.3vw;
    width: 90%;
}
.services-detailed-overview-card:nth-child(3) .services-detailed-overview-card-text_separator {
    width: 75%;
}
.services-detailed-overview-card:nth-child(4) .services-detailed-overview-card-text_separator{
    width: 85%;
}
.services-detailed-overview-card:nth-child(5) .services-detailed-overview-card-text_separator {
    width: 60%;
}
.services-detailed-overview-card:nth-child(6) .services-detailed-overview-card-text_separator{
    width: 45%;
}
.services-detailed-overview-card:nth-child(7) .services-detailed-overview-card-text_separator {
    width: 85%;
}
.services-detailed-overview-card-header_img{
    height: 4vw;
    width: auto;
    padding-left: 5vw;
    transform: translateY(-1.5vw);
}
.services-detailed-overview-card-description_section{
    padding-right: 25%;
    margin-bottom: 2vw;
    span{
        font-size: 1.4em;
        font-weight: normal;
    }
}
/*-----------------------------------------*/
        /* Projects Section Starts */
/*-----------------------------------------*/
.projects{
    display: flex;
    flex-direction: column;
    height: auto;
    width: 100%;
}
.projects-top-container{
    display: flex;
    width: 100%;
    margin: 0;
    svg{
        transform: translateY(0.75%);
        width: 100%;
        height: 7.6vw;
    }
}
.projects-main_content{
    display: flex;
    flex-direction: row;
    background: #222222;
    height: auto;
    width: 100%;
    padding-top:5vw;

}
.projects-main_content-container{
    display: flex;
    width: 75%;
    margin: 0 auto 1vw auto;
}
.projects-left_container{
    display: flex;
    flex-direction:column ;
    position: relative;
    height: auto;
    width: 55%;
}
.projects-left_container-main_slideshow_container {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
}
.main_slideshow_container-slide {
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
    z-index: 1;
    justify-content: center;
}
.slide{
    display: none;
    position: absolute;
    width: auto;
    height: auto;
}
.slide img {
    object-fit: contain;
    width: 100%;
    height: 100%;
    position: relative;
}
#prev, #next{
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
}
.main_slideshow_container-prev_button, .main_slideshow_container-next_button{
    position: relative;
    height: 3vw;
    width: 3vw;
    z-index: 2;
    transform: translateY(-16vw);
    img{
        height: 4vw;
        opacity: 60%;
    }
}
.main_slideshow_container-prev_button{
    left: 0.7%;
}
.main_slideshow_container-next_button{
    right: -82%;
}
.nested_slideshow-thumbnail_container{
    position: relative;
    display: flex;
    justify-content: center;
    width: auto;
    height: auto;
    bottom: 5vw;
    z-index: 2;
}
.nested_slideshow-thumbnail_container-image{
    height: 3.5vw;
    width: 3.5vw;
    border-radius: 50%;
    border: 2px solid rgba(0,0,0,0.4);
    margin: 0.5vw;
}
.nested_slideshow-thumbnail_container-image.active {
    border: 2px solid #FDBC15;
    opacity: 1;
    transform: scale(1.1);
}
.projects-right-container{
    display: flex;
    flex-direction:column;
    transform: translateY(-10%);
    height: 32vw;
    width: 45%;
}
.projects-right-container-featured_projects{
    display: flex;
    flex-direction: column;
    margin: 5vw 2vw 2vw 3vw;
    span{
        color: white;
    }
}
.projects-right-container-featured_projects-header{
    display: flex;
    flex-direction: inherit;
    margin-right: 20%;
    margin-bottom: 2.5vw;
}
.projects-right-container-featured_projects-header_title{
    font-size: 2em;
    font-weight: bold;
    letter-spacing: 1px;
    margin-bottom: 0.25vw;
}
.projects-right-container-featured_projects-header_slogan{
    font-size: 0.9em;
    letter-spacing: 1px;
    margin-right: 10%;
    line-height: 1vw;
    margin-top: 0.75vw;
}
.projects-right-container-featured_projects-info{
    margin-right: 0%;
}
.projects-right-container-featured_projects-info_title{
    font-size: 1.5em;
    font-weight: bold;
    letter-spacing: 1px;
}
.projects-right-container-featured_projects-info_description{
    display: flex;
    flex-direction: column;
    margin-left: 8%;
    margin-top: 0.75vw;
    span{
        margin-bottom: 0.6vw;
        font-size: 1.15em;
    }
}
/*-----------------------------------------*/
        /* Contact Section Starts */
/*-----------------------------------------*/
.contact{
    width: 100%;
    height: auto;
}
.contact-section-title{
    display: flex;
    width: 100%;
    height: auto;
    background: rgba(0,0,0,0.1);
    padding: 1.75vw 0;
    z-index: 1;
    h1{
        z-index: 2;
        margin: 0 auto;
        font-size: 2.5em;
    }
}
.contact-section{
    width: 80%;
    height: auto;
    margin: 0 auto;
}
.contact-section-main_content{
    display: flex;
    flex-direction: row;
    width: 100%;
    height: auto;
    margin: 2vw 0 3vw 3%;
    padding:1vw 2vw;
    justify-content: center;
}
.contact-section-info{
    display: flex;
    flex-direction: column;
    width: 40%;
}
.contact-section-info-header{
    display: block;
    width: 60%;
    h1{
        font-size: 1.75em;
    }
}
.contact-section-info-separator{
    border: none;
    background: #FDBC15;
    margin: 0 0 2vw 0;
    border-radius: 10vw;
    height: 0.15vw;
    width: 50%;
}
.contact-section-info-contact_labels{
    display: flex;
    flex-direction: column;
    width: 75%;
    span:not(.contact-section-info-contact_labels-slogan){
        font-size: 1.10em;
        margin-bottom:0.75vw;
    }
}
.contact-section-info-contact_labels-slogan{
    color: black;
    font-weight: bold;
    font-size:1.75em;
    margin-top: 5vw;
}
.contact-section-info-social_media{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    height: auto;
    width: 35%;
    margin-top: 0.5vw;
    margin-bottom: 1.25vw;
    svg{
        height: 2vw;
        width: auto;
    }
}
.contact-icon path:nth-of-type(1) {
    transition: fill 0.5s ease;
}
.contact-icon:hover path:nth-of-type(1) {
    fill: #FDBC15;
}
.contact-section-main_content-form_layout{
    display: flex;
    flex-direction: column;
    width: 40%;
}
.contact-section-form-header{
    display: block;
    width: 50%;
    margin-left: 0.25vw;
    h1{
        font-size: 1.75em;
    }
}
.contact-section-form-separator{
    border: none;
    background: #FDBC15;
    margin: 0 0 1.5vw 0;
    border-radius: 10vw;
    height: 0.15vw;
    width: 100%;
}
.contact-section-form-description{
    display: block;
    width: 75%;
    font-size: 1.05em;
    line-height: 20px;
    margin-bottom:1vw;
    margin-left: 0.25vw;
}
.contact-section-form-input_field{
    display: flex;
    flex-direction: column;
    width: 75%;
    gap: 0.25vw;
}
.contact-section-form-input{
    border: 1px solid rgba(0,0,0,0.30);
    border-radius: 15px;
    padding: 0.5vw 0 0.5vw 1vw;
    width: 100%;
    font-size: 1em;
    outline: none;
    margin-bottom: 0.25vw;
}
.contact-section-form-input_dropdown{
    border: 1px solid rgba(0,0,0,0.30);
    border-radius: 15px;
    padding: 0.5vw 0 0.5vw 1vw;
    width: 105%;
    font-size: 1em;
    outline: none;
}
.contact-section-form-message-box{
    height: 10vh;
    border: 1px solid rgba(0,0,0,0.30);
    border-radius: 15px;
    padding: 0.5vw 0 0.5vw 1vw;
    width: 100%;
    resize:vertical;
    outline: none;
    min-height: 10vh;
    max-height: 15vh;
    font-size: 1.25em;
}
.contact-section-form-input:hover, .contact-section-form-message-box:hover{
    border: 1px solid #FDBC15;
}
.contact-section-form-input:focus, .contact-section-form-message-box:focus{
    border-color: #D09C17;
    box-shadow: 0 0 3px rgba(253, 188, 21, 1);
}
.contact-section-form-submit{
    padding: 10px 40px;
    margin-top: 1.5vw;
    border: none;
    border-radius: 5px;
    background: rgba(253, 188, 21, 0.7);
    font-size: 1.7em;
    font-weight: bold;
    color: rgba(0,0,0,0.8);
    outline: none;
    transition: 1s ease-in-out;
}
.contact-section-form-submit:hover{
    transition: 0.5s ease-in-out;
    background: #D09C17;
    background: rgba(253, 188, 21, 1);
}
.submit-input{
    visibility: hidden;
    position: absolute;
}
.input-error-message{
    display: none;
    color: #B22C2C;
    margin-left: 1vw;
    font-size: 0.85em;
}
.form-submit-error-message{
    color: #B22C2C;
    font-size: 0.85em;
}
.submit-form-message{
    color: #0D813D;
    margin-top: 1.25vw;
    font-size: 0.85em;
}

/*Desktops and large Laptops*/
@media only screen and (min-width:993px) and (max-width: 1199px){
    /*-------------------------------*/
        /*  Hero Section Sizing  */
    /*-------------------------------*/
    .hero-container{
        height: 87.5vh;
        width: 100%;
    }
    .hero-dark_overlay{
        height: 87.5vh;
    }
    .hero-text-overlay{
        height: 100%;
        width: 100%;
        z-index:3;
        top: 5%;
        h1{
            font-size: 5.25em;
            word-spacing: 0.25em;
            margin-bottom: 0.5vw;
        }
    }
    .hero-overlay-logo-section{
        img:not(.hero-overlay-logo-section-main_logo){
            height: 2.75vw;
            margin: auto 1vw;
        }
    }
    .hero-overlay-slogan-section{
        height: auto;
        width: 90%;
        margin: 0 auto;
        img{
            height: 5vw;
            width: 12%;
            margin: auto 1vw;
            padding-bottom: 0.5vw;
        }
        span{
            margin-top: 2.3vw;
            margin-bottom:3vw ;
            width: 50%;
            font-size: 1.35em;
        }
    }
    .hero-overlay-logo-section-main_logo{
        height: 16.5vw;
        width: auto;
        margin: 2vw 1vw 0 1vw;
    }
    /*-----------------------------------*/
        /*  About Us Section Sizing  */
    /*-----------------------------------*/
    .about-us-info-section{
        display: flex;
        flex-direction: column;
        width: 75%;
        margin: 5vw auto 9vw auto;
    }
    .about-us-info{
        display: flex;
        padding: 1vw 1vw 0 0;
        gap: 4vw;
    }
    .about-us-info-image-container{
        justify-content: center;
        width: 50%;
        height: 100%;
        margin: auto 0;
        img{
            width: 90%;
            height: 100%;
        }
    }
    .about-us-info-description-container{
        width: 50%;
        margin: 0;
        padding: 0;
        h1{
            font-size: 2.25em;
        }
        h3{
            font-size: 1.25em;
            margin-bottom: 1.5vw;
        }
        p{
            font-size: 0.975em;
            margin-bottom:1vw ;
            letter-spacing: 0.5px;
            margin-left: 0;
            margin-right: 0;
        }
    }
    .about-us-info-description-container-text-separator{
        margin: 0 auto 2vw 0;
        height: 0.4vw;
        width: 42.5%;
    }
    .about-us-stats-section{
        height: auto;
        margin: 1vw 0 3.5vw 0;
    }
    .stats-seperator{
        height: 0.35vw;
    }
    .about-us-stats-container{
        width: 70%;
        margin: 1vw auto;
    }
    .about-us-stats{
        width: 85%;
        height: auto;
        gap: 2.5vw;
        transform: translateY(-22.5%);
        div{
            width: 30%;
            height:29vh;
            h1{
                font-size: 3.75em;
            }
            h2{
                font-size: 2em;
                margin-top: 5%;
            }
        }
    }
    .about-us-stats-text-separator{
        height: 0.45vw;
        width: 75%;
    }
    .about-us-stats-licenses-section{
        width: 50%;
        transform: translateY(-10%);
        h1{
            display: block;
            font-size: 2.75em;
        }
    }
    .about-us-stats-licenses-section-text-seperator{
        margin: 0 auto 1.5vw auto;
        height: 0.4vw;
        width: 50%;
    }
    .about-us-stats-licenses-images{
        display: flex;
        justify-content: space-between;
        img{
            height: 14vw;
        }
    }
    /*---------------------------------------------------*/
        /* Services Interactive Menu Section Sizing */
    /*---------------------------------------------------*/
    .services-interactive_menu{
        width: 85%;
        margin: 4vw auto 8vw auto;
    }
    .services-interactive_menu-top-container-title{
        width: 100%;
        font-size: 2.25em;
        letter-spacing: 0.5px;
    }
    .services-interactive_menu-text-separator{
        margin: 0.5vw auto 2vw auto;
        height: 0.45vw;
        width: 20%;
    }
    .services-interactive_menu-top-container-slogan-container{
        width: 75%;
        margin: 0 auto 4vw auto;
        span{
            font-size: 1.25em;
            margin-bottom: 0.25vw;
        }
    }
    .services-interactive_menu-bottom-container{
        display: flex;
        width: 100%;
        margin:0 auto;
    }
    .services-interactive_menu-bottom-card_container{
        margin: 0;
    }
    .services-interactive_menu-bottom-container-card{
        margin: 0 1.25vw;
        svg{
            height: 9.5vw;
        }
    }
    .services-interactive_menu-bottom-container-card-text{
        font-size: 1.2em;
        margin: 0;
        letter-spacing: 1px;
    }
    /*---------------------------------------------------*/
        /* Services Detailed Overview Section Starts */
    /*---------------------------------------------------*/
    .services-detailed-overview{
        padding: 3vw 0;
    }
    .services-detailed-overview-card-container{
        width: 80%;
        margin: 3vw auto 5vw auto;
    }
    .services-detailed-overview-card:nth-child(even) {
        padding: 5vw 0;
    }
    .services-detailed-overview-card-img{
        height: auto;
        width: 40%;
    }
    .services-detailed-overview-card:nth-child(odd) .services-detailed-overview-card-info-container {
        margin-left: 10%;
    }
    .services-detailed-overview-card:nth-child(even) .services-detailed-overview-card-info-container {
        margin-right: 10%;
    }
    .services-detailed-overview-card-info-container{
        width: 50%;
    }
    .services-detailed-overview-card-header_text{
        span{
            font-size: 1.3em;
            font-weight: bold;
            letter-spacing: 0;
        }
    }
    .services-detailed-overview-card-text_separator{
        margin: 0.75vw 0 1.5vw 0;
        height: 0.45vw;
        width: 85%;
    }
    .services-detailed-overview-card:nth-child(3) .services-detailed-overview-card-text_separator {
        width: 85%;
    }
    .services-detailed-overview-card:nth-child(4) .services-detailed-overview-card-text_separator{
        width: 80%;
    }
    .services-detailed-overview-card:nth-child(5) .services-detailed-overview-card-text_separator {
        width: 47.5%;
    }
    .services-detailed-overview-card:nth-child(6) .services-detailed-overview-card-text_separator{
        width: 35%;
    }
    .services-detailed-overview-card:nth-child(7) .services-detailed-overview-card-text_separator {
        width: 90%;
    }
    .services-detailed-overview-card-header_img{
        height: 5.5vw;
        width: auto;
        padding-left: 2vw;
        transform: translateY(-1.1vw);
    }
    .services-detailed-overview-card-description_section{
        padding-right: 10%;
        margin-bottom: 3vw;
        span{
            font-size: 1.2em;
        }
    }
    /*----------------------------------*/
        /* Projects Section Sizing */
    /*----------------------------------*/
    .projects-top-container{
        svg{
            transform: translateY(2%);
            width: 100%;
            height: 7.6vw;
        }
    }
    .projects-main_content{
        padding-top:8.5vw;
        padding-bottom: 3.5vw;
    }
    .projects-main_content-container{
        width: 80%;
        margin: 0 auto;
    }
    .projects-left_container{
        width: 65%;
    }
    .main_slideshow_container-prev_button, .main_slideshow_container-next_button{
        height: 3vw;
        width: 3vw;
        transform: translateY(-16vw);
        img{
            height: 5.5vw;
            opacity: 60%;
        }
    }
    .main_slideshow_container-prev_button{
        left: 0.7%;
    }
    .main_slideshow_container-next_button{
        right: -81%;
    }
    .nested_slideshow-thumbnail_container{
        bottom: 3.5vw;
    }
    .nested_slideshow-thumbnail_container-image{
        height: 5.5vw;
        width: 5.5vw;
        margin: 0.35vw;
    }
    .projects-right-container{
        transform: translateY(-2.5%);
        height: 32vw;
        width: 45%;
    }
    .projects-right-container-featured_projects{
        margin: 0 2vw 5vw 3vw;
    }
    .projects-right-container-featured_projects-header{
        display: flex;
        flex-direction: inherit;
        margin-right: 0;
        margin-bottom: 2.5vw;
    }
    .projects-right-container-featured_projects-header_title{
        font-size: 1.85em;
        font-weight: bold;
        letter-spacing: 1px;
        margin-bottom: 0.35vw;
    }
    .projects-right-container-featured_projects-header_slogan{
        font-size: 0.8em;
        letter-spacing: 0.75px;
        margin-right: 0;
        line-height: 1.85vw;
        margin-top: 0.75vw;
    }
    .projects-right-container-featured_projects-info{
        margin-right: 0;
    }
    .projects-right-container-featured_projects-info_title{
        font-size: 1.25em;
        letter-spacing: 1px;
    }
    .projects-right-container-featured_projects-info_description{
        margin-left: 8%;
        margin-top: 1vw;
        span{
            margin-bottom: 0.75vw;
            font-size: 1em;
        }
    }
    /*---------------------------------*/
        /* Contact Section Starts */
    /*---------------------------------*/
    .contact-section-title{
        padding: 2vw 0;
        h1{
            font-size: 2.25em;
        }
    }
    .contact-section{
        width: 90%;
    }
    .contact-section-main_content{
        margin: 4.5vw 0 5vw 0;
        padding:1vw 2vw;
        gap: 2vw;
    }
    .contact-section-info{
        width: 40%;
    }
    .contact-section-info-header{
        width: 60%;
        h1{
            font-size: 1.65em;
        }
    }
    .contact-section-info-separator{
        height: 0.45vw;
        width: 65%;
    }
    .contact-section-info-contact_labels{
        width: 100%;
        span:not(.contact-section-info-contact_labels-slogan){
            font-size: 1em;
            margin-bottom:1.5vw;
        }
    }
    .contact-section-info-contact_labels-slogan{
        font-size:1.65em;
        margin-top: 4vw;
    }
    .contact-section-info-social_media{
        width: 40%;
        margin-top: 1.25vw;
        margin-bottom: 1.25vw;
        svg{
            height: 3vw;
            width: auto;
        }
    }
    .contact-section-main_content-form_layout{
        width: 40%;
    }
    .contact-section-form-header{
        width: 95%;
        h1{
            font-size: 1.65em;
        }
    }
    .contact-section-form-separator{
        height: 0.45vw;
        width: 70%;
    }
    .contact-section-form-description{
        width: 80%;
        font-size: 1em;
        line-height: 22px;
        margin-bottom:2vw;
    }
    .contact-section-form-input_field{
        width: 78.5%;
        gap: 1.25vw;
    }
    .contact-section-form-input{
        padding: 1vw 0 1vw 1vw;
        font-size: 0.965em;
    }
    .contact-section-form-message-box{
        height: 12.5vh;
        padding:1vw 0 1vw 1vw;
        min-height: 12.5vh;
        max-height: 17.5vh;
        font-size: 1.25em;
    }
    .contact-section-form-submit{
        padding: 10px 40px;
        margin-top: 3vw;
        font-size: 1.6em;
    }
    .input-error-message{
        margin-left: 1vw;
        font-size: 0.9em;
    }
    .form-submit-error-message{
        color: #B22C2C;
        font-size: 0.9em;
    }
    .submit-form-message{
        margin-top: 2vw;
        font-size: 0.9em;
    }
}
/* small and medium laptops*/
@media only screen and (min-width: 769px) and (max-width: 992px){
    /*-------------------------------*/
        /*  Hero Section Sizing  */
    /*-------------------------------*/
    .hero-container{
        height:80vh;
        width: 100%;
    }
    .hero-dark_overlay{
        height: 80vh;
    }
    .hero-text-overlay{
        height: 100%;
        width: 100%;
        z-index:3;
        top: 5%;
        h1{
            font-size: 5.15em;
            word-spacing: 0.25em;
            margin-bottom: 0.5vw;
        }
    }
    .hero-overlay-logo-section{
        height: auto;
        width: 100%;
        img:not(.hero-overlay-logo-section-main_logo){
            height: 3vw;
            margin:auto 1vw;
        }
    }
    .hero-overlay-slogan-section{
        height: auto;
        width: 100%;
        img{
            height: 5vw;
            width: 12%;
            margin: auto 1vw;
            padding-bottom: 0.5vw;
        }
        span{
            margin-top: 2.3vw;
            margin-bottom:3vw ;
            width: 50%;
            font-size: 1.25em;
        }
    }
    .hero-overlay-logo-section-main_logo{
        height: 19vw;
        width: auto;
        margin: 2vw 1vw 0 1vw;
    }
    /*-----------------------------------*/
        /*  About Us Section Sizing  */
    /*-----------------------------------*/
    .about-us-info-section{
        display: flex;
        flex-direction: column;
        width: 85%;
        margin: 5vw auto 9vw auto;
    }
    .about-us-info{
        display: flex;
        padding: 1vw 1vw 0 0;
        gap: 4vw;
    }
    .about-us-info-image-container{
        justify-content: center;
        width: 45%;
        height: 100%;
        margin: auto 0;
        img{
            width: 90%;
            height: 100%;
        }
    }
    .about-us-info-description-container{
        width: 55%;
        margin: 0;
        padding: 0;
        h1{
            font-size: 2.15em;
        }
        h3{
            font-size: 1.25em;
            margin-bottom: 1vw;
        }
        p{
            font-size: 0.975em;
            margin-bottom:1vw ;
            letter-spacing: 0.5px;
            margin-left: 0;
            margin-right: 4vw;
        }
    }
    .about-us-info-description-container-text-separator{
        margin: 0 auto 2vw 0;
        height: 0.4vw;
        width: 42.5%;
    }
    .about-us-stats-section{
        height: auto;
        margin: 1vw 0 3.5vw 0;
    }
    .stats-seperator{
        height: 0.35vw;
    }
    .about-us-stats-container{
        width: 80%;
        margin: 1vw auto;
    }
    .about-us-stats{
        width: 90%;
        height: auto;
        gap: 2.5vw;
        transform: translateY(-22.5%);
        div{
            width: 30%;
            height:27vh;
            h1{
                font-size: 3.5em;
            }
            h2{
                font-size: 1.85em;
                margin-top: 5%;
            }
        }
    }
    .about-us-stats-text-separator{
        height: 0.45vw;
        width: 75%;
    }
    .about-us-stats-licenses-section{
        width: 60%;
        transform: translateY(-10%);
        h1{
            display: block;
            font-size: 2.5em;
        }
    }
    .about-us-stats-licenses-section-text-seperator{
        margin: 0 auto 1.5vw auto;
        height: 0.45vw;
        width: 50%;
    }
    .about-us-stats-licenses-images{
        display: flex;
        justify-content: space-around;
        img{
            height: 18vw;
        }
    }
    /*---------------------------------------------------*/
        /* Services Interactive Menu Section Sizing */
    /*---------------------------------------------------*/
    .services-interactive_menu{
        width: 95%;
        margin: 4vw auto 8vw auto;
    }
    .services-interactive_menu-top-container-title{
        width: 100%;
        font-size: 2.15em;
        letter-spacing: 0.5px;
    }
    .services-interactive_menu-text-separator{
        margin: 0.5vw auto 2.5vw auto;
        height: 0.45vw;
        width: 25%;
    }
    .services-interactive_menu-top-container-slogan-container{
        width: 75%;
        margin: 0 auto 5vw auto;
        span{
            font-size: 0.975em;
            margin-bottom: 0.25vw;
        }
    }
    .services-interactive_menu-bottom-container{
        display: flex;
        width: 100%;
        margin:0 auto;
    }
    .services-interactive_menu-bottom-card_container{
        margin: 0;
    }
    .services-interactive_menu-bottom-container-card{
        margin: 0 1.25vw;
        svg{
            height: 9.5vw;
        }
    }
    .services-interactive_menu-bottom-container-card-text{
        font-size: 0.85em;
        margin: 0;
        letter-spacing: 1px;
    }
    /*---------------------------------------------------*/
        /* Services Detailed Overview Section Starts */
    /*---------------------------------------------------*/
    .services-detailed-overview{
        padding: 3vw 0;
    }
    .services-detailed-overview-card-container{
        width: 90%;
        margin: 3vw auto 5vw auto;
    }
    .services-detailed-overview-card:nth-child(even) {
        padding: 5vw 0;
    }
    .services-detailed-overview-card-img{
        height: auto;
        width: 42%;
    }
    .services-detailed-overview-card:nth-child(odd) .services-detailed-overview-card-info-container {
        margin-left: 8%;
    }
    .services-detailed-overview-card:nth-child(even) .services-detailed-overview-card-info-container {
        margin-right: 8%;
    }
    .services-detailed-overview-card-info-container{
        width: 50%;
    }
    .services-detailed-overview-card-header_text{
        span{
            font-size: 1.15em;
            font-weight: bold;
            letter-spacing: 0;
        }
    }
    .services-detailed-overview-card-text_separator{
        margin: 0.75vw 0 1.5vw 0;
        height: 0.45vw;
        width: 85%;
    }
    .services-detailed-overview-card:nth-child(3) .services-detailed-overview-card-text_separator {
        width: 85%;
    }
    .services-detailed-overview-card:nth-child(4) .services-detailed-overview-card-text_separator{
        width: 80%;
    }
    .services-detailed-overview-card:nth-child(5) .services-detailed-overview-card-text_separator {
        width: 47.5%;
    }
    .services-detailed-overview-card:nth-child(6) .services-detailed-overview-card-text_separator{
        width: 35%;
    }
    .services-detailed-overview-card:nth-child(7) .services-detailed-overview-card-text_separator {
        width: 60%;
    }
    .services-detailed-overview-card-header_img{
        height: 5.5vw;
        width: auto;
        padding-left: 2vw;
        transform: translateY(-1.1vw);
    }
    .services-detailed-overview-card-description_section{
        padding-right: 10%;
        margin-bottom: 3vw;
        span{
            font-size: 1.1em;
        }
    }
    /*----------------------------------*/
        /* Projects Section Sizing */
    /*----------------------------------*/
    .projects-top-container{
        svg{
            transform: translateY(2%);
            width: 100%;
            height: 7.6vw;
        }
    }
    .projects-main_content{
        padding-top:12vw;
        padding-bottom: 5vw;
    }
    .projects-main_content-container{
        width: 90%;
        margin: 0 auto;
    }
    .projects-left_container{
        width: 60%;
    }
    .main_slideshow_container-prev_button, .main_slideshow_container-next_button{
        height: 3vw;
        width: 3vw;
        transform: translateY(-16vw);
        img{
            height: 6.5vw;
            opacity: 60%;
        }
    }
    .main_slideshow_container-prev_button{
        left: 0.7%;
    }
    .main_slideshow_container-next_button{
        right: -80%;
    }
    .nested_slideshow-thumbnail_container{
        bottom: 2.3vw;
    }
    .nested_slideshow-thumbnail_container-image{
        height: 6.5vw;
        width: 6.5vw;
        margin: 0.25vw;
    }
    .projects-right-container{
        transform: translateY(-15%);
        height: 32vw;
        width: 45%;
    }
    .projects-right-container-featured_projects{
        margin: 0 2vw 5vw 3vw;
    }
    .projects-right-container-featured_projects-header{
        display: flex;
        flex-direction: inherit;
        margin-right: 0;
        margin-bottom: 2.5vw;
    }
    .projects-right-container-featured_projects-header_title{
        font-size: 1.8em;
        font-weight: bold;
        letter-spacing: 1px;
        margin-bottom: 0.25vw;
    }
    .projects-right-container-featured_projects-header_slogan{
        font-size: 0.775em;
        letter-spacing: 0.75px;
        margin-right: 0;
        line-height: 1.85vw;
        margin-top: 0.75vw;
    }
    .projects-right-container-featured_projects-info{
        margin-right: 0;
    }
    .projects-right-container-featured_projects-info_title{
        font-size: 1.175em;
        letter-spacing: 1px;
    }
    .projects-right-container-featured_projects-info_description{
        margin-left: 8%;
        margin-top: 0.75vw;
        span{
            margin-bottom: 0.6vw;
            font-size: 0.97em;
        }
    }
    /*---------------------------------*/
        /* Contact Section Starts */
    /*---------------------------------*/
    .contact-section-title{
        padding: 2vw 0;
        h1{
            font-size: 2.15em;
        }
    }
    .contact-section{
        width: 100%;
    }
    .contact-section-main_content{
        margin: 4.5vw 0 5vw 0;
        padding:1vw 2vw;
        gap: 3vw;
    }
    .contact-section-info{
        width: 40%;
    }
    .contact-section-info-header{
        width: 60%;
        h1{
            font-size: 1.65em;
        }
    }
    .contact-section-info-separator{
        height: 0.45vw;
        width: 85%;
    }
    .contact-section-info-contact_labels{
        width: 100%;
        span:not(.contact-section-info-contact_labels-slogan){
            font-size: 0.99em;
            margin-bottom:1.5vw;
        }
    }
    .contact-section-info-contact_labels-slogan{
        font-size:1.75em;
        margin-top: 4vw;
    }
    .contact-section-info-social_media{
        width: 47%;
        margin-top: 1vw;
        margin-bottom: 1.25vw;
        svg{
            height: 4vw;
            width: auto;
        }
    }
    .contact-section-main_content-form_layout{
        width: 40%;
    }
    .contact-section-form-header{
        width: 95%;
        h1{
            font-size: 1.65em;
        }
    }
    .contact-section-form-separator{
        height: 0.45vw;
        width: 80%;
    }
    .contact-section-form-description{
        width: 90%;
        font-size: 0.99em;
        line-height: 20px;
        margin-bottom:2vw;
    }
    .contact-section-form-input_field{
        width: 87.5%;
        gap: 1vw;
    }
    .contact-section-form-input{
        padding: 1vw 0 1vw 1vw;
        font-size: 0.965em;
    }
    .contact-section-form-message-box{
        height: 12.5vh;
        padding:1vw 0 1vw 1vw;
        min-height: 12.5vh;
        max-height: 17.5vh;
        font-size: 1.25em;
    }
    .contact-section-form-submit{
        padding: 10px 35px;
        margin-top: 3vw;
        font-size: 1.65em;
    }
    .input-error-message{
        margin-left: 2vw;
        font-size: 0.85em;
    }
    .form-submit-error-message{
        font-size: 0.85em;
    }
    .submit-form-message{
        margin-top: 2vw;
        font-size: 0.85em;
    }
}
/* small and medium mobile devices (portrait tablets/large phones and landscape tablets) */
@media only screen and (min-width: 601px) and (max-width: 768px){
    /*-------------------------------*/
        /*  Hero Section Sizing  */
    /*-------------------------------*/
    .hero-container{
        height:70vh;
        width: 100%;
    }
    .hero-dark_overlay{
        height: 70vh;
    }
    .hero-text-overlay{
        height: 100%;
        width: 100%;
        z-index:3;
        top: 5%;
        h1{
            font-size: 3.75em;
            word-spacing: 0.25em;
            margin-bottom: 0.5vw;
        }
    }
    .hero-overlay-logo-section{
        height: auto;
        width: 100%;
        img:not(.hero-overlay-logo-section-main_logo){
            height: 3vw;
            margin:auto 1vw;
        }
    }
    .hero-overlay-slogan-section{
        height: auto;
        width: 100%;
        img{
            height: 4vw;
            width: 12%;
            margin: auto 1vw;
            padding-bottom: 0.5vw;
        }
        span{
            margin-top: 2.3vw;
            margin-bottom:3vw ;
            width: 50%;
            font-size: 0.95em;
        }
    }
    .hero-overlay-logo-section-main_logo{
        height: 18vw;
        width: auto;
        margin: 2vw 1vw 0 1vw;
    }
    /*-----------------------------------*/
        /*  About Us Section Sizing  */
    /*-----------------------------------*/
    .about-us-info-section{
        gap: 0.5vw;
        width: 85%;
        margin: 3vw auto 7vw auto;
    }
    .about-us-info{
        justify-content: center;
        width: 100%;
        padding: 1vw 1vw;
        flex-direction: column;
    }
    .about-us-info-image-container{
        width: 100%;
        height: 100%;
        margin: 3vw auto;
        justify-content: center;
        img{
            width: 80%;
            height: 100%;
            box-shadow: 0 0 1vw rgba(0,0,0,0.5);
        }
    }
    .about-us-info-description-container{
        width: 85%;
        margin: 2vw auto;
        padding: 0 0 0 5%;
        h1{
            text-align: left;
            margin-left: 0.25vw;
            font-size: 2em;
        }
        h3{
            text-align: left;
            font-size: 1.25em;
            margin-bottom: 1.5vw;
        }
        p{
            text-align: left;
            font-size: 0.95em;
            margin-bottom: 2vw;
            margin-left: 0.5vw;
            line-height: 2.5vw;
        }
    }
    .about-us-info-description-container-text-separator{
        margin: 0 auto 4vw 0;
        height: 0.6vw;
        width: 30%;
    }
    .about-us-stats-section{
        width: 100%;
        margin: 0 0 5vw 0;
    }
    .stats-seperator{
        height: 0.5vw;
    }
    .about-us-stats-container{
        height: auto;
        width: 85%;
        margin: 2vw auto;
    }
    .about-us-stats{
        width: 90%;
        height: auto;
        gap: 3vw;
        transform: translateY(-25%); /* Another way to control overlap */
        div{
            width: 27%;
            height:20vh;
            h1{
                font-size: 2.5em;
            }
            h2{
                font-size: 1.35em;
            }
        }
    }
    .about-us-stats-text-separator{
        height: 0.6vw;
    }
    .about-us-stats-licenses-section{
        width: 75%;
        h1{
            font-size: 2em;
        }
    }
    .about-us-stats-licenses-section-text-seperator{
        height: 0.6vw;
        width: 35%;
        margin-bottom: 1.5vw;
    }
    .about-us-stats-licenses-images{
        justify-content: space-evenly;
        img{
            height: 23vw;
        }
    }
    /*---------------------------------------------------*/
        /* Services Interactive Menu Section Sizing */
    /*---------------------------------------------------*/
    .services-interactive_menu{
        width: 97.5%;
        margin: 4vw auto 8vw auto;
    }
    .services-interactive_menu-top-container-title{
        width: 100%;
        font-size: 2em;
        letter-spacing: 0;
    }
    .services-interactive_menu-text-separator{
        margin: 0.5vw auto 2.5vw auto;
        height: 0.35vw;
        width: 25%;
    }
    .services-interactive_menu-top-container-slogan-container{
        width: 75%;
        margin: 0 auto 5vw auto;
        span{
            font-size: 0.85em;
            margin-bottom: 0.25vw;
        }
    }
    .services-interactive_menu-bottom-container{
        display: flex;
        width: 95%;
        margin:0 auto;
    }
    .services-interactive_menu-bottom-card_container{
        margin: 0;
    }
    .services-interactive_menu-bottom-container-card{
        margin: 0 1.25vw;
        svg{
            height: 9.5vw;
        }
    }
    .services-interactive_menu-bottom-container-card-text{
        font-size: 0.75em;
        margin: 0;
        letter-spacing: 0.75px;
    }
    /*---------------------------------------------------*/
        /* Services Detailed Overview Section Starts */
    /*---------------------------------------------------*/
    .services-detailed-overview{
        padding: 3vw 0;
    }
    .services-detailed-overview-card-container{
        width: 90%;
        margin: 3vw auto 5vw auto;
    }
    .services-detailed-overview-card:nth-child(even) {
        padding: 5vw 0;
    }
    .services-detailed-overview-card-img{
        height: auto;
        width: 42%;
    }
    .services-detailed-overview-card:nth-child(odd) .services-detailed-overview-card-info-container {
        margin-left: 8%;
    }
    .services-detailed-overview-card:nth-child(even) .services-detailed-overview-card-info-container {
        margin-right: 8%;
    }
    .services-detailed-overview-card-info-container{
        width: 50%;
    }
    .services-detailed-overview-card-header_text{
        span{
            font-size: 0.9em;
            font-weight: bold;
            letter-spacing: 0;
        }
    }
    .services-detailed-overview-card-text_separator{
        margin: 0.75vw 0 1.5vw 0;
        height: 0.5vw;
        width: 92.5%;
    }
    .services-detailed-overview-card:nth-child(3) .services-detailed-overview-card-text_separator {
        width: 75%;
    }
    .services-detailed-overview-card:nth-child(4) .services-detailed-overview-card-text_separator{
        width: 75%;
    }
    .services-detailed-overview-card:nth-child(5) .services-detailed-overview-card-text_separator {
        width: 55%;
    }
    .services-detailed-overview-card:nth-child(6) .services-detailed-overview-card-text_separator{
        width: 45%;
    }
    .services-detailed-overview-card:nth-child(7) .services-detailed-overview-card-text_separator {
        width: 60%;
    }
    .services-detailed-overview-card-header_img{
        height: 6vw;
        width: auto;
        padding-left: 2vw;
        transform: translateY(-1.1vw);
    }
    .services-detailed-overview-card-description_section{
        padding-right: 5%;
        margin-bottom: 3vw;
        span{
            font-size: 0.8em;
        }
    }
    /*----------------------------------*/
        /* Projects Section Sizing */
    /*----------------------------------*/
    .projects-top-container{
        svg{
            transform: translateY(2.5%);
            width: 100%;
            height: 7.6vw;
        }
    }
    .projects-main_content {
        padding-top: 0;
    }
    .projects-main_content-container{
        flex-direction: column;
        width: 95%;
        height: auto;
    }
    .projects-left_container{
        width: 85%;
        margin: 0 auto;
    }
    .slide{
        display: none;
        position: relative;
        width: auto;
        height: auto;
    }
    .slide img {
        object-fit: contain;
        width: 100%;
        height: 100%;
        position: relative;
    }
    #prev, #next{
        background: none;
        border: none;
        padding: 0;
        cursor: pointer;
        transform: translateY(-27vh);
    }
    .main_slideshow_container-slide {
        justify-content: end;
    }
    .main_slideshow_container-prev_button, .main_slideshow_container-next_button{
        height: 3vw;
        width: 3vw;
        img{
            height: 10vw;
            opacity: 60%;
        }
    }
    .main_slideshow_container-prev_button{
        left: 0.7%;
    }
    .main_slideshow_container-next_button{
        right: -81.5%;
    }
    .nested_slideshow-thumbnail_container{
        position: relative;
        bottom: 20%;
        z-index: 2;
        left: 0;
    }
    .nested_slideshow-thumbnail_container-image{
        height: 10vw;
        width: 10vw;
        margin: 0.75vw;
    }
    .projects-right-container{
        height: auto;
        width: 85%;
        margin: 0 auto;
    }
    .projects-right-container-featured_projects{
        margin: 1vw 2vw 2vw 1vw;
        padding-left: 1%;
    }
    .projects-right-container-featured_projects-header{
        margin-right: 0;
        margin-bottom: 7vw;
    }
    .projects-right-container-featured_projects-header_title{
        font-size: 2em;
        letter-spacing: 0.25px;
        margin-bottom: 0.25vw;
    }
    .projects-right-container-featured_projects-header_slogan{
        width: 80%;
        font-size: 0.85em;
        letter-spacing: 0.5px;
        margin-right: 0;
        line-height: 3.2vw;
        margin-top: 1vw;
    }
    .projects-right-container-featured_projects-info{
        margin-right: 0;
    }
    .projects-right-container-featured_projects-info_title{
        font-size: 1.3em;
        letter-spacing: 0.7px;
    }
    .projects-right-container-featured_projects-info_description{
        margin-left: 7%;
        margin-top: 1.25vw;
        margin-bottom: 7vw;
        span{
            margin-bottom: 1vw;
            font-size: 1em;
        }
    }
    /*---------------------------------*/
        /* Contact Section Starts */
    /*---------------------------------*/
    .contact-section-title{
        background: rgba(0,0,0,0.05);
        padding: 2.5vw 0;
        h1{
            margin: 0 auto;
            font-size: 2em;
        }
    }
    .contact-section{
        width: 100%;
    }
    .contact-section-main_content{
        flex-direction: row;
        width: 90%;
        margin: 6vw auto;
        padding:1vw 0 1vw 0;
        gap: 4vw;
    }
    .contact-section-info{
        width: 100%;
    }
    .contact-section-info-header{
        width: 100%;
        h1{
            font-size: 1.65em;
        }
    }
    .contact-section-info-separator{
        margin: 0 0 3vw 0;
        height: 0.5vw;
        width: 60%;
    }
    .contact-section-info-contact_labels{
        width: 95%;
        span:not(.contact-section-info-contact_labels-slogan){
            font-size: 0.925em;
            margin-bottom:3vw;
        }
    }
    .contact-section-info-contact_labels-slogan{
        font-size:1.65em;
        margin-top: 3vw;
    }
    .contact-section-info-social_media{
        width: 60%;
        margin-top: 2vw;
        margin-bottom: 9vw;
        svg{
            height: 5.5vw;
            width: auto;
        }
    }
    .contact-section-main_content-form_layout{
        width: 100%;
    }
    .contact-section-form-header{
        width: 100%;
        margin-left: 0;
        h1{
            font-size: 1.65em;
        }
    }
    .contact-section-form-separator{
        margin: 0 0 2vw 0;
        height: 0.5vw;
        width: 95%;
    }
    .contact-section-form-description{
        width: 100%;
        font-size: 0.925em;
        margin-bottom:3vw;
        margin-left: 0.5vw;
    }
    .contact-section-form-input_field{
        width: 90%;
        gap: 2vw;
    }
    .contact-section-form-input{
        padding: 1vw 0 1vw 2.5vw;
        font-size: 1.05em;
    }
    .contact-section-form-message-box{
        height: 15vh;
        padding: 1vw 0 1vw 2.5vw;
        min-height: 15vh;
        max-height: 20vh;
        font-size: 1.3em;
    }
    .contact-section-form-submit{
        margin-top: 6vw;
        font-size: 1.75em;
    }
    .input-error-message{
        margin-left: 2vw;
        font-size: 0.925em;
    }
    .form-submit-error-message{
        margin-top: 2vw;
        font-size: 0.9em;
    }
    .submit-form-message{
        margin-top: 2vw;
        font-size: 0.9em;
    }
}
/* Mobile Devices */
@media only screen and (max-width: 600px){
    /*-------------------------------*/
        /*  Hero Section Sizing  */
    /*-------------------------------*/
    .hero-container{
        height:60vh;
        width: 100%;
    }
    .hero-dark_overlay{
        height: 60vh;
    }
    .hero-text-overlay{
        height: 100%;
        width: 100%;
        z-index:3;
        top: 5%;
        h1{
            font-size: 2.7em;
            word-spacing: 0.25em;
            margin-bottom: 0.5vw;
        }
    }
    .hero-overlay-logo-section{
        height: auto;
        width: 100%;
        img:not(.hero-overlay-logo-section-main_logo){
            height: 3.5vw;
            margin:auto 0;
        }
    }
    .hero-overlay-slogan-section{
        height: auto;
        width: 100%;
        img{
            height: 4vw;
            width: 12%;
            margin: auto 1vw;
            padding-bottom: 0.5vw;
        }
        span{
            margin-top: 2.3vw;
            margin-bottom:3vw ;
            width: 50%;
            font-size: 0.75em;
        }
    }
    .hero-overlay-logo-section-main_logo{
        height: 20vw;
        width: auto;
        margin: 2vw 1vw 0 1vw;
    }
    /*-----------------------------------*/
        /*  About Us Section Sizing  */
    /*-----------------------------------*/
    .about-us-info-section{
        gap: 0.5vw;
        width: 85%;
        margin: 5vw auto 7vw auto;
    }
    .about-us-info{
        justify-content: center;
        width: 100%;
        padding: 1vw 1vw;
        flex-direction: column;
    }
    .about-us-info-image-container{
        width: 100%;
        height: 100%;
        margin: 3vw auto;
        justify-content: center;
        img{
            width: 90%;
            height: 100%;
            box-shadow: 0 0 1vw rgba(0,0,0,0.5);
        }
    }
    .about-us-info-description-container{
        width: 95%;
        margin: 2vw auto;
        padding: 0 0 0 5%;
        h1{
            text-align: left;
            margin-left: 0.25vw;
            font-size: 2em;
        }
        h3{
            text-align: left;
            font-size: 1.15em;
            margin-bottom: 1.5vw;
        }
        p{
            text-align: left;
            font-size: 0.9em;
            margin-bottom:2.5vw ;
            margin-left: 0.5vw;
        }
    }
    .about-us-info-description-container-text-separator{
        margin: 0 auto 4vw 0;
        height: 0.75vw;
        width: 60%;
    }
    .about-us-stats-section{
        width: 100%;
        margin: 2vw 0 5vw 0;
    }
    .stats-seperator{
        height: 0.5vw;
    }
    .about-us-stats-container{
        height: auto;
        width: 90%;
        margin: 1.5vw auto;
    }
    .about-us-stats{
        width: 90%;
        height: auto;
        gap: 3vw;
        transform: translateY(-25%); /* Another way to control overlap */
        div{
            width: 35%;
            height:18vh;
            h1{
                font-size: 2em;
            }
            h2{
                font-size: 0.9em;
            }
        }
    }
    .about-us-stats-text-separator{
        height: 0.6vw;
    }
    .about-us-stats-licenses-section{
        width: 90%;
        h1{
            font-size: 2em;
        }
    }
    .about-us-stats-licenses-section-text-seperator{
        height: 0.6vw;
        width: 50%;
    }
    .about-us-stats-licenses-images{
        justify-content: space-evenly;
        img{
            height: 25vw;
        }
    }
    /*---------------------------------------------------*/
        /* Services Interactive Menu Section Sizing */
    /*---------------------------------------------------*/
    .services-interactive_menu{
        width: 95%;
        margin: 4vw auto 7vw auto;
    }
    .services-interactive_menu-top-container-title{
        width: 100%;
        font-size: 2em;
        letter-spacing: 0;
    }
    .services-interactive_menu-text-separator{
        margin: 1vw auto 2.5vw auto;
        height: 0.75vw;
        width: 40%;
    }
    .services-interactive_menu-top-container-slogan-container{
        width: 100%;
        margin: 0 auto 5vw auto;
        span{
            font-size: 0.785em;
            margin-bottom: 0.5vw;
        }
    }
    .services-interactive_menu-bottom-container{
        display: flex;
        width: 100%;
        margin:0 auto;
    }
    .services-interactive_menu-bottom-card_container{
        margin: 0 auto;
    }
    .services-interactive_menu-bottom-container-card{
        margin: 0 0.75vw;
        svg{
            height: 8vw;
        }
    }
    .services-interactive_menu-bottom-container-card-text{
        font-size: 0.35em;
        margin: 0;
        letter-spacing: 1px;
    }
    /*---------------------------------------------------*/
        /* Services Detailed Overview Section Starts */
    /*---------------------------------------------------*/
    .services-detailed-overview{
        padding: 3vw 0;
    }
    .services-detailed-overview-card-container{
        width: 90%;
        margin: 3vw auto 5vw auto;
    }
    .services-detailed-overview-card:nth-child(even) {
        padding: 5vw 0;
    }
    .services-detailed-overview-card-img{
        height: auto;
        width: 48%;
    }
    .services-detailed-overview-card:nth-child(odd) .services-detailed-overview-card-info-container {
        margin-left: 2%;
    }
    .services-detailed-overview-card:nth-child(even) .services-detailed-overview-card-info-container {
        margin-right: 2%;
    }
    .services-detailed-overview-card-info-container{
        width: 50%;
    }
    .services-detailed-overview-card-header_text{
        span{
            font-size: 0.725em;
            font-weight: bold;
            letter-spacing: 0;
        }
    }
    .services-detailed-overview-card-text_separator{
        margin: 0.75vw 0 1.5vw 0;
        height: 0.5vw;
        width: 92.5%;
    }
    .services-detailed-overview-card:nth-child(3) .services-detailed-overview-card-text_separator {
        width: 65%;
    }
    .services-detailed-overview-card:nth-child(4) .services-detailed-overview-card-text_separator{
        width: 95%;
    }
    .services-detailed-overview-card:nth-child(5) .services-detailed-overview-card-text_separator {
        width: 55%;
    }
    .services-detailed-overview-card:nth-child(6) .services-detailed-overview-card-text_separator{
        width: 45%;
    }
    .services-detailed-overview-card:nth-child(7) .services-detailed-overview-card-text_separator {
        width: 60%;
    }
    .services-detailed-overview-card-header_img{
        height: 8vw;
        width: auto;
        padding-left: 2vw;
        transform: translateY(-1.1vw);
    }
    .services-detailed-overview-card-description_section{
        padding-right: 5%;
        margin-bottom: 3vw;
        span{
            font-size: 0.675em;
        }
    }
    /*----------------------------------*/
        /* Projects Section Sizing */
    /*----------------------------------*/
    .projects-top-container{
        svg{
            transform: translateY(0.1px);
            width: 100%;
            height: 7.6vw;
        }
    }
    .projects-main_content {
        padding-top: 0;
    }
    .projects-main_content-container{
        flex-direction: column;
        width: 95%;
        height: auto;
    }
    .projects-left_container{
        width: 85%;
        margin: 0 auto;
    }
    .slide{
        display: none;
        position: relative;
        width: auto;
        height: auto;
    }
    .slide img {
        object-fit: contain;
        width: 100%;
        height: 100%;
        position: relative;
    }
    #prev, #next{
        background: none;
        border: none;
        padding: 0;
        cursor: pointer;
        transform: translateY(-22vh);
    }
    .main_slideshow_container-slide {
        justify-content: end;
    }
    .main_slideshow_container-prev_button, .main_slideshow_container-next_button{
        height: 3vw;
        width: 3vw;
        img{
            height: 10vw;
            opacity: 60%;
        }
    }
    .main_slideshow_container-prev_button{
        left: 0.7%;
    }
    .main_slideshow_container-next_button{
        right: -81.5%;
    }
    .nested_slideshow-thumbnail_container{
        position: relative;
        bottom: 20%;
        z-index: 2;
        left: 0;
    }
    .nested_slideshow-thumbnail_container-image{
        height: 10vw;
        width: 10vw;
        margin: 0.5vw;
    }
    .projects-right-container{
        height: auto;
        width: 85%;
        margin: 0 auto;
    }
    .projects-right-container-featured_projects{
        margin: 5vw 2vw 2vw 1vw;
        padding-left: 1%;
    }
    .projects-right-container-featured_projects-header{
        margin-right: 0;
        margin-bottom: 7vw;
    }
    .projects-right-container-featured_projects-header_title{
        font-size: 2em;
        letter-spacing: 0.25px;
        margin-bottom: 0.25vw;
    }
    .projects-right-container-featured_projects-header_slogan{
        font-size: 0.75em;
        letter-spacing: 1px;
        margin-right: 0;
        line-height: 3.2vw;
        margin-top: 0.75vw;
    }
    .projects-right-container-featured_projects-info{
        margin-right: 0;
    }
    .projects-right-container-featured_projects-info_title{
        font-size: 1.1em;
        letter-spacing: 0.5px;
    }
    .projects-right-container-featured_projects-info_description{
        margin-left: 7%;
        margin-top: 1.25vw;
        margin-bottom: 10vw;
        span{
            margin-bottom: 1vw;
            font-size: 0.95em;
        }
    }
    /*---------------------------------*/
        /* Contact Section Starts */
    /*---------------------------------*/
    .contact-section-title{
        background: rgba(0,0,0,0.05);
        padding: 2.5vw 0;
        h1{
            margin: 0 auto;
            font-size: 2em;
        }
    }
    .contact-section{
        width: 85%;
    }
    .contact-section-main_content{
        flex-direction: column;
        width: 95%;
        margin: 9vw auto;
        padding:1vw 4vw;
    }
    .contact-section-info{
        width: 100%;
    }
    .contact-section-info-header{
        width: 100%;
        h1{
            font-size: 1.75em;
        }
    }
    .contact-section-info-separator{
        margin: 0 0 4vw 0;
        height: 0.6vw;
        width: 55%;
    }
    .contact-section-info-contact_labels{
        width: 100%;
        span:not(.contact-section-info-contact_labels-slogan){
            font-size: 1.01em;
            margin-bottom:3vw;
        }
    }
    .contact-section-info-contact_labels-slogan{
        font-size:1.75em;
        margin-top: 5vw;
    }
    .contact-section-info-social_media{
        width: 50%;
        margin-top: 2vw;
        margin-bottom: 9vw;
        svg{
            height: 9vw;
            width: auto;
        }
    }
    .contact-section-main_content-form_layout{
        width: 100%;
    }
    .contact-section-form-header{
        width: 100%;
        margin-left: 0;
        h1{
            font-size: 1.75em;
        }
    }
    .contact-section-form-separator{
        margin: 0 0 4vw 0;
        height: 0.6vw;
        width: 90%;
    }
    .contact-section-form-description{
        width: 100%;
        font-size: 1.01em;
        margin-bottom:5vw;
        margin-left: 0;
    }
    .contact-section-form-input_field{
        width: 95%;
        gap: 2vw;
    }
    .contact-section-form-input{
        padding: 1vw 0 1vw 2.5vw;
        font-size: 1.05em;
    }
    .contact-section-form-message-box{
        height: 20vh;
        padding: 1vw 0 1vw 2.5vw;
        min-height: 10vh;
        max-height: 20vh;
        font-size: 1.1em;
    }
    .contact-section-form-submit{
        margin-top: 9vw;
        font-size: 1.75em;
    }
    .input-error-message{
        margin-left: 2vw;
        font-size: 1em;
    }
    .form-submit-error-message{
        margin-top: 3vw;
        font-size: 1.05em;
    }
    .submit-form-message{
        margin-top: 3vw;
        font-size: 1.05em;
    }
}
