@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300..400&display=swap');

:root{
    --primary-colour: #0091c9;
    --secondary-colour: #444444;
    --accent-colour-lightblue: #a7e6ff;
    --background-colour-light: #f5f7fa;
    --background-colour-darkblue: #162736;
    --background-colour-darkgrey: #444444;
    --icon-colour-light: #ebeff0;
    --icon-colour-dark: #94a4a5;
}


/* Bodies */
.main-content{
    width: 100%;
    overflow-x: hidden;
    overflow-y: hidden;
}

.dashboard_sample{
    height: fit-content;
    width: 100vw;
    overflow-x: hidden;
    overflow-y: scroll;
}

#coming_soon{
    height: 100%;
    overflow: hidden;
    background: var(--accent-colour-lightblue);
}

#pricing_body{
    height: 100%;
    overflow: hidden;
    background: var(--accent-colour-lightblue);
}

#retail_dashboard_sample{
    background: #e6e6e6;
}

#customer_dashboard_sample{
    background: var(--background-colour-darkblue);
}

#inventory_dashboard_sample{
    background: #555;
}


/* Header */
.hero {
    background: var(--secondary-colour);
    height: 7vh;
    position: relative;
    color: white;
}
@media screen and (max-width: 992px) and (orientation:landscape)
{
    .hero{
        height: 12vh;
    }
}


.hero .content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 100%;
    padding: 0 1vh;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #333;
}

.hero * {
    z-index: 10;
} 

/* Navbar */
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--secondary-colour);
    color: white;
    width: 100%;
    height: 7.1vh;
    position: fixed;
    padding: 0;
    margin-left: auto;
    margin-right: 0;
    transition: 0.1s ease-out;
    z-index: 10;
}
@media screen and (max-width: 992px) and (orientation:landscape)
{
    .navbar {
        height: 12vh;
    }
}

.navbar.top {
    background: transparent;
}

.navbar a {
    color: white;
    padding: 0 1.5vh;
    transition: color 0.3s ease; /* Smooth background transition on hover */
    align-items: center;
    margin-top: auto;
    margin-bottom: auto;
}

.navbar a:hover {
    text-decoration: none;
    color: var(--accent-colour-lightblue);
}

.navbar ul {
    display: flex;
}

#navbar-logo-container{
    height: 7vh;
    padding: 0;
    margin: 0;
}
@media screen and (max-width: 992px) and (orientation:landscape)
{
    #navbar-logo-container{
        height: 12vh;
    }
}
.navbar-logo {
    position: absolute;
    top: 0;
    bottom: 0;
    margin-top: auto;
    margin-bottom: auto;
    image-rendering: high-quality;
    height: 80%;
    padding: 0 0.5vw;
}

.navbar-text{
    color: #999;
    font-size: 0.75rem;
}

.navbar-link-container{
    float: right;
    margin-right: 1vw;
    margin-left: auto;
    text-align: center;
    justify-content: center;
}
@media screen and (max-width: 600px) and (orientation:portrait)
{
    .navbar-link-container{
        visibility: hidden;
        display: none;
    }
}
@media screen and (max-width: 992px) and (orientation:landscape)
{
    .navbar-link-container{
        visibility: hidden;
        display: none;
    }
}
@media screen and (min-width: 600px) and (max-width: 992px) and (orientation:portrait)
{
    .navbar-link-container{
        visibility: hidden;
        display: none;
    }
}

.navbar-section{
    display: flex;
    flex-direction: column;
    margin-right: 1vw;
    margin-left: auto;
}

/* Mobile Nav Menu */
.mobile-nav-menu {
    visibility: hidden;
    display: none;
    background-color: #333;
    height: 100%;
    z-index: 1000;
}
@media screen and (max-width: 600px) and (orientation:portrait)
{
    .mobile-nav-menu{
        visibility: visible;
        display: block;
        cursor: pointer;
    }
}
@media screen and (min-width: 600px) and (max-width: 992px) and (orientation:portrait)
{
    .mobile-nav-menu{
        visibility: visible;
        display: block;
        cursor: pointer;
    }
}
@media screen and (max-width: 992px) and (orientation:landscape)
{
    .mobile-nav-menu{
        visibility: visible;
        display: block;
        cursor: pointer;
    }
}

.mobile-nav-menu #mobile-navbar-link-container {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    background: var(--secondary-colour);
    margin-top: 7vh;
    height: 0;
    overflow: hidden;
    transition: 0.5s ease;
    width: 100%;
    visibility: visible;
    z-index: 1;
}
@media screen and (max-width: 992px) and (orientation:landscape)
{
    .mobile-nav-menu #mobile-navbar-link-container {
        margin-top: 12vh;
    }
}

.mobile-nav-menu a {
    color: white;
    padding: 0.75vh 1vw;
    text-decoration: none;
    font-size: 1rem;
    display: block;
    height: fit-content;
}

.mobile-nav-menu a.icon {
    position: absolute;
    right: 0;
    top: 0;
    height: 7.1vh;
    padding-top: 2vh;
    padding-right: 5vw;
    padding-left: 5vw;
}
@media screen and (min-width: 600px) and (max-width: 992px) and (orientation:portrait)
{
    .mobile-nav-menu a.icon {
        font-size: 1.5rem;
        padding-top: 1.5vh;
        padding-right: 4vw;
        padding-left: 4vw;
    }
}

.active {
  background-color: var(--primary-colour);
  color: white;
}

/* Sections */

.section-header {
    padding: 1vw;
    margin: auto;
    align-content: center;
    justify-content: center;
    color: var(--icon-colour-light);
    font-weight: bold;
    font-size: 3rem;
    text-align: center;
}
@media screen and (max-width: 600px) and (orientation:portrait)
{
    .section-header{
        font-size: 2.3rem;
    }
}
@media screen and (min-width: 600px) and (max-width: 992px) and (orientation:portrait)
{
    .section-header{
        font-size: 2.75rem;
    }
}
@media screen and (max-width: 992px) and (orientation:landscape)
{
    .section-header{
        font-size: 2.3rem;
    }
}
@media (min-width: 992px) and (max-width: 1500px)
{
    .section-header{
        font-size: 2.5rem;
    }
}

.section-header.dark {
    color: var(--secondary-colour);
}

.section-header h2 {
    font-size: 2vh;
    margin: 1vh 0;
}

.section-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: fit-content;
    width: 100%;
}

.section-container.row {
    flex-direction: row;
}

/* SubSections */

.subsection-container{
    display: flex;
    justify-content: center;
    text-align: center;
    width: 100%;
    max-width: 100%;
    padding-top: 5vh;
    padding-bottom: 5vh;
}
@media screen and (max-width: 600px) and (orientation:portrait)
{
    .subsection-container{
        flex-direction: column;
    }
}
@media screen and (min-width: 600px) and (max-width: 992px) and (orientation:portrait)
{
    .subsection-container{
        flex-direction: column;
    }
}
@media screen and (max-width: 992px) and (orientation:landscape)
{
    .subsection-container{
        flex-direction: column;
    }
}


.subsection-container.fitted{
    height: fit-content;
    width: fit-content;
}

.subsection-container.compact{
    padding-top: 0;
    padding-bottom: 0;
}

.subsection-container.left-aligned{
    justify-content: left;
}

.subsection-container.right-aligned{
    justify-content: right;
}

.subsection-container.center-aligned{
    justify-content: center;
}

.subsection-container.row{
    flex-direction: row;
}

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

.subsection-container.light{
    background: var(--icon-colour-light);
}

.subsection-container.coloured{
    background: var(--accent-colour-lightblue);
}

.subsection-container.transparent{
    background: transparent;
}

.subsection-header{
    font-size: 1.6rem;
    width: 60vw;
    margin-left: auto;
    margin-right: auto;
    font-weight: bold;
}
@media screen and (max-width: 600px) and (orientation:portrait)
{
    .subsection-header{
        width: fit-content;
        max-width: 90vw;
        font-size: 1.4rem;
    }
}
@media screen and (min-width: 600px) and (max-width: 992px) and (orientation:portrait)
{
    .subsection-header{
        width: fit-content;
        max-width: 80vw;
        font-size: 1.4rem;
    }
}
@media screen and (max-width: 992px) and (orientation:landscape)
{
    .subsection-header{
        width: fit-content;
        max-width: 90vw;
        font-size: 1.4rem;
    }
}


.subsection-subheader{
    font-size: 1.4rem;
    font-weight: bold;
    text-align: left;
    color: var(--background-colour-darkblue);
}
@media screen and (max-width: 600px) and (orientation:portrait)
{
    .subsection-subheader{
        text-align: center;
    }
}
@media screen and (min-width: 600px) and (max-width: 992px) and (orientation:portrait)
{
    .subsection-subheader{
        text-align: center;
    }
}
@media screen and (max-width: 992px) and (orientation:landscape)
{
    .subsection-subheader{
        text-align: center;
    }
}


.subsection-text{
    font-size: 1.75vh;
    margin: 1vh;
}
@media screen and (max-width: 992px) and (orientation:landscape)
{
    .subsection-text{
        font-size: 4vh;
        margin: 1vh;
    }
}


.subsection-text.bold{
    font-weight: bold;
}

.subsection-text.hyperlink:hover{
    color: var(--primary-colour);
}

.subsection-text-wrap{
    padding-left: 2vw;
    padding-right: 2vw;
    text-align: left;
    width: 25vw;
    margin-top: auto;
    margin-bottom: auto;
    font-size: 1.1rem;
}
@media screen and (max-width: 600px) and (orientation:portrait)
{
    .subsection-text-wrap{
        width: fit-content;
        max-width: 95%;
        font-size: 1rem;
        text-align: center;
        margin: auto;
    }
}
@media screen and (max-width: 992px) and (orientation:landscape)
{
    .subsection-text-wrap{
        width: fit-content;
        max-width: 95%;
        font-size: 1rem;
        text-align: center;
        margin: auto;
    }
}
@media screen and (min-width: 600px) and (max-width: 992px) and (orientation:portrait)
{
    .subsection-text-wrap{
        width: fit-content;
        max-width: 90%;
        font-size: 1.25rem;
        text-align: center;
        margin: auto;
    }
}
@media (min-width: 992px) and (max-width: 1500px)
{
    .subsection-text-wrap{
        width: 40vw;
    }
}

.subsection-text-wrap.sample{
    margin: auto;
    text-align: center;
}
@media screen and (max-width: 992px) and (orientation:landscape)
{
    .subsection-text-wrap.sample {
        margin: auto;
    }
}


.subsection-text-wrap.transparent{
    background: transparent;
}

.subsection-text-wrap.center-aligned{
    text-align: center;
}

.subsection-text-wrap.left-aligned{
    text-align: left;
}

.subsection-text-wrap.right-aligned{
    text-align: right;
}

.subsection-text-wrap.light{
    color: var(--background-colour-light);
}

.subsection-text-wrap.dark{
    color: var(--background-colour-darkgrey);
}

.subsection-text-wrap.wide{
    width: 80%;
}
@media screen and (max-width: 600px) and (orientation:portrait)
{
    .subsection-text-wrap.wide{
        width: 95%;
    }
}
@media screen and (max-width: 992px) and (orientation:landscape)
{
    .subsection-text-wrap.wide{
        width: 95%;
    }
}
@media screen and (min-width: 600px) and (max-width: 992px) and (orientation:portrait)
{
    .subsection-text-wrap.wide{
        width: 90%;
    }
}

.subsection-image-wrap{
    padding-left: 2vw;
    padding-right: 2vw;
    width: fit-content;
    max-width: 50vw;
    margin-top: auto;
    margin-bottom: auto;
}
@media screen and (max-width: 600px) and (orientation:portrait)
{
    .subsection-image-wrap{
        justify-content: center;
        align-content: center;
        margin-left: auto;
        margin-right: auto;
        padding: 0;
        max-width: 100%;
    }
}
@media screen and (max-width: 992px) and (orientation:landscape)
{
    .subsection-image-wrap{
        justify-content: center;
        align-content: center;
        margin-left: auto;
        margin-right: auto;
        padding: 0;
        max-width: 100%;
    }
}
@media screen and (min-width: 600px) and (max-width: 992px) and (orientation:portrait)
{
    .subsection-image-wrap{
        justify-content: center;
        align-content: center;
        margin-left: auto;
        margin-right: auto;
        padding: 0;
        max-width: 100%;
    }
}
@media (min-width: 992px) and (max-width: 1500px)
{
    .subsection-image-wrap{

    }
}

.subsection-image-wrap.center-aligned{
    justify-content: center;
}

.sample-category-header {
    font-size: 1.4rem;
    font-weight: 1000;
    color: var(--secondary-colour);
    align-items: center;
    margin: auto;
}

.sample-category{
    min-width: fit-content;
    min-height: fit-content;
    height: 40vh;
    margin: auto 1vw;
    background: var(--background-colour-light);
    border-radius: 1rem;
    display: flex;
    flex-direction: column;
    border: 0.1rem solid #d9d9d9;
    border-bottom: 0.2rem solid #d9d9d9;
}
@media screen and (max-width: 600px) and (orientation:portrait)
{
    .sample-category{
        width: 80vw;
        height: 50vh;
        margin-bottom: 5vh;
    }
}
@media screen and (max-width: 992px) and (orientation:landscape)
{
    .sample-category{
        width: 80vw;
        height: 90vh;
        margin-bottom: 5vh;
    }
}
@media screen and (min-width: 600px) and (max-width: 992px) and (orientation:portrait)
{
    .sample-category{
        height: 35vh;
        width: 80vw;
        margin-bottom: 5vh;
    }
}
@media (min-width: 992px) and (max-width: 1500px)
{
    .sample-category{
        height: 40vh;
        width: 90%;
        margin-bottom: 5vh;
    }
}

.dashboard_nav_link_container{
    display: flex;
    flex-direction: row;
    justify-content: left;
    text-align: left;
    width: 100%;
}

.dashboard_nav_link_container.retail{
    margin-left: 310px;
    background: #e6e6e6;
}

.dashboard_nav_link_container.inventory{
    margin-left: 255px;
    background: #555555;
}

.dashboard_nav_link{
    padding: 1vh 1vw;
    border-radius: 1rem 1rem 0 0;
    margin: 0.5vh 0.5vh 0 0.5vh;
    font-weight: bolder;
}

.dashboard_nav_link.retail{
    background: #fdfdfd;
    border-left: 0.1rem solid #d4d4d4;
    border-right: 0.1rem solid #d4d4d4;
    border-top: 0.1rem solid #d4d4d4;
    border-bottom: 0.2rem solid #d4d4d4;
    color: var(--secondary-colour);
}

.dashboard_nav_link.inventory{
    background: #898989;
    border-left: 0.1rem solid #a2a2a2;
    border-right: 0.1rem solid #a2a2a2;
    border-top: 0.1rem solid #a2a2a2;
    border-bottom: 0.2rem solid #a2a2a2;
    color: #f5f5f5;
}

.dashboard_nav_link.active.retail{
    color: var(--primary-colour);
    border-bottom: 0.2rem solid var(--primary-colour);
}

.dashboard_nav_link.active.inventory {
    color: #ff7c30;
    border-bottom: 0.2rem solid #ff7c30;
}

/* Specifics */
#who-we-are{
    height: 10vh;
    width: 100%;
    background: var(--accent-colour-lightblue);
    padding: 8vh 0;
    margin: auto;
}
@media screen and (max-width: 600px) and (orientation:portrait)
{
    #who-we-are{
        height: 5vh;
        padding: 4vh 0 2vh 0;
    }
}
@media screen and (max-width: 992px) and (orientation:landscape)
{
    #who-we-are{
        height: 10vh;
        padding: 10vh 0 6vh 0;
    }
}
@media screen and (min-width: 600px) and (max-width: 992px) and (orientation:portrait)
{
    #who-we-are{
        height: 5vh;
        padding: 5vh 0;
    }
}

#gabatech-header-subsection-container{
    justify-content: center;
    align-items: center;
    margin: auto;
    display: flex;
    flex-direction: row;
    margin-top: 0;
    padding-top: 0;
}
@media screen and (max-width: 600px) and (orientation:portrait)
{
    #gabatech-header-subsection-container{
        flex-direction: column;
    }
}
@media screen and (max-width: 992px) and (orientation:landscape)
{
    #gabatech-header-subsection-container{
        flex-direction: column;
    }
}
@media screen and (min-width: 600px) and (max-width: 992px) and (orientation:portrait)
{
    #gabatech-header-subsection-container{
        flex-direction: column;
    }
}

#gabatech-header-text-container{
    display: flex;
    flex-direction: column;
    width: 25vw;
    text-align: left;
    padding-top: 1vh;
}
@media screen and (max-width: 600px) and (orientation:portrait)
{
    #gabatech-header-text-container{
        width: 90vw;
        text-align: center;
        padding-top: 0;
    }
}
@media screen and (max-width: 992px) and (orientation:landscape)
{
    #gabatech-header-text-container{
        width: 90vw;
        text-align: center;
        padding-top: 0;
    }
}
@media screen and (min-width: 600px) and (max-width: 992px) and (orientation:portrait)
{
    #gabatech-header-text-container{
        width: 90vw;
        text-align: center;
    }
}

#gabatech-header{
    text-align: left;
    width: 100%;
    padding-left: 0;
}
@media screen and (max-width: 600px) and (orientation:portrait)
{
    #gabatech-header{
        text-align: center;
        font-size: 2rem;
        padding: 0.25rem;
    }
}
@media screen and (max-width: 992px) and (orientation:landscape)
{
    #gabatech-header{
        text-align: center;
        font-size: 1.75rem;
        padding: 0.25rem;
    }
}
@media screen and (min-width: 600px) and (max-width: 992px) and (orientation:portrait)
{
    #gabatech-header{
        text-align: center;
        font-size: 2.75rem;
        padding: 0.25rem;
    }
}
@media (min-width: 992px) and (max-width: 1500px)
{
    #gabatech-header{
        font-size: 2rem !important;
    }
}

#gabatech-overview-text{
    width: 100%;
    text-align: left;
}
@media screen and (max-width: 600px) and (orientation:portrait)
{
    #gabatech-overview-text{
        padding-top: 2vh;
        text-align: center;
    }
}
@media screen and (max-width: 992px) and (orientation:landscape)
{
    #gabatech-overview-text{
        padding-top: 2vh;
        text-align: center;
    }
}
@media screen and (min-width: 600px) and (max-width: 992px) and (orientation:portrait)
{
    #gabatech-overview-text{
        padding-top: 2vh;
        text-align: center;
    }
}

#laptop-cellphone-dashboard-image{
    align-items: center;
    width: 40vw;
    object-fit: cover;
    margin-top: auto;
    margin-bottom: auto;
}
@media screen and (max-width: 600px) and (orientation:portrait)
{
    #laptop-cellphone-dashboard-image{
        height: auto;
        width: 90vw;
    }
}
@media screen and (max-width: 992px) and (orientation:landscape)
{
    #laptop-cellphone-dashboard-image{
        height: auto;
        width: 50vw;
    }
}
@media screen and (min-width: 600px) and (max-width: 992px) and (orientation:portrait)
{
    #laptop-cellphone-dashboard-image{
        height: auto;
        width: 90vw;
    }
}
@media (min-width: 992px) and (max-width: 1500px)
{
    #laptop-cellphone-dashboard-image{
        padding-left: 5vw;
        width: 60vw;
    }
}


#contact-section{
    display: flex;
    align-items: center;
    background: var(--accent-colour-lightblue);
    height: 30vh;
}
@media screen and (max-width: 600px) and (orientation:portrait)
{
    #contact-section{
        flex-direction: column;
        height: fit-content;
    }
}
@media screen and (max-width: 992px) and (orientation:landscape)
{
    #contact-section{
        flex-direction: column;
        height: fit-content;
    }
}
@media screen and (min-width: 600px) and (max-width: 992px) and (orientation:portrait)
{
    #contact-section{
        flex-direction: column;
        height: fit-content;
    }
}

#product-samples{
    height: fit-content;
}

#coming_soon_section{
    height: 85vh;
}

#pricing_main_section{
    height: 85vh;
}


#tableau-sample-subsection{
    /*background-image: url("../images/backgrounds/Blue Techy Background 1.jpg");*/
    /*background-position: center;*/
    /*background-repeat: no-repeat;*/
    /*background-size: cover;*/
    background-color: var(--icon-colour-dark)
}

#powerbi-sample-subsection{
    /*background-image: url("../images/backgrounds/Blue Techy Background 1.jpg");*/
    /*background-position: center;*/
    /*background-repeat: no-repeat;*/
    /*background-size: cover;*/
    background-color: var(--icon-colour-dark)
}

.sample-subsection{
    flex-direction: row;
    width: 100%;
    justify-content: space-evenly;
}
@media screen and (max-width: 600px) and (orientation:portrait)
{
    .sample-subsection{
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
}
@media screen and (max-width: 992px) and (orientation:landscape)
{
    .sample-subsection{
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
}
@media screen and (min-width: 600px) and (max-width: 992px) and (orientation:portrait)
{
    .sample-subsection{
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
}
@media (min-width: 992px) and (max-width: 1500px)
{
    .sample-subsection{
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
}

/* Image Styling */
#file-migration-diagram-image-desktop{
    width: 16vw;
}
@media screen and (max-width: 600px) and (orientation:portrait)
{
    #file-migration-diagram-image-desktop{
        display: none;
    }
}
@media screen and (max-width: 992px) and (orientation:landscape)
{
    #file-migration-diagram-image-desktop{
        display: none;
    }
}
@media screen and (min-width: 600px) and (max-width: 992px) and (orientation:portrait)
{
    #file-migration-diagram-image-desktop{
        display: none;
    }
}


#file-migration-diagram-image-mobile{
    display: none;
}
@media screen and (max-width: 600px) and (orientation:portrait)
{
    #file-migration-diagram-image-mobile{
        display: flex;
        width: 50vw;
        padding-top: 5vh;
    }
}
@media screen and (max-width: 992px) and (orientation:landscape)
{
    #file-migration-diagram-image-mobile{
        display: flex;
        width: 15vw;
        padding-top: 5vh;
    }
}
@media screen and (min-width: 600px) and (max-width: 992px) and (orientation:portrait)
{
    #file-migration-diagram-image-mobile{
        display: flex;
        width: 25vw;
        padding-top: 5vh;
    }
}


#database-to-front-end-diagram-desktop-wrap{
    display: flex;
}
@media screen and (max-width: 600px) and (orientation:portrait)
{
    #database-to-front-end-diagram-desktop-wrap{
        display: none;
    }
}
@media screen and (max-width: 992px) and (orientation:landscape)
{
    #database-to-front-end-diagram-desktop-wrap{
        display: none;
    }
}
@media screen and (min-width: 600px) and (max-width: 992px) and (orientation:portrait)
{
    #database-to-front-end-diagram-desktop-wrap{
        display: none;
    }
}

#database-to-front-end-diagram-desktop{
    width: 24vw;
    object-fit: contain;
}
@media screen and (max-width: 600px) and (orientation:portrait)
{
    #database-to-front-end-diagram-desktop{
        display: none;
    }
}
@media screen and (max-width: 992px) and (orientation:landscape)
{
    #database-to-front-end-diagram-desktop{
        display: none;
    }
}
@media screen and (min-width: 600px) and (max-width: 992px) and (orientation:portrait)
{
    #database-to-front-end-diagram-desktop{
        display: none;
    }
}

#database-to-front-end-diagram-mobile-wrap{
    display: none;
}
@media screen and (max-width: 600px) and (orientation:portrait)
{
    #database-to-front-end-diagram-mobile-wrap{
        display: flex;
    }
}
@media screen and (max-width: 992px) and (orientation:landscape)
{
    #database-to-front-end-diagram-mobile-wrap{
        display: flex;
    }
}
@media screen and (min-width: 600px) and (max-width: 992px) and (orientation:portrait)
{
    #database-to-front-end-diagram-mobile-wrap{
        display: flex;
    }
}

#database-to-front-end-diagram-mobile{
    display: none;
    width: 70vw;
    padding-top: 5vh;
}
@media screen and (max-width: 600px) and (orientation:portrait)
{
    #database-to-front-end-diagram-mobile{
        display: flex;
    }
}
@media screen and (max-width: 992px) and (orientation:landscape)
{
    #database-to-front-end-diagram-mobile{
        width: 20vw;
        display: flex;
    }
}
@media screen and (min-width: 600px) and (max-width: 992px) and (orientation:portrait)
{
    #database-to-front-end-diagram-mobile{
        width: 40vw;
        display: flex;
    }
}


#data-visualization-to-user-diagram-desktop{
    width: 19vw;
    justify-content: center;
    align-items: center;
    margin-top: auto;
    margin-bottom: auto;
}
@media screen and (max-width: 600px) and (orientation:portrait)
{
    #data-visualization-to-user-diagram-desktop{
        display: none;
    }
}
@media screen and (max-width: 992px) and (orientation:landscape)
{
    #data-visualization-to-user-diagram-desktop{
        display: none;
    }
}
@media screen and (min-width: 600px) and (max-width: 992px) and (orientation:portrait)
{
    #data-visualization-to-user-diagram-desktop{
        display: none;
    }
}

#data-visualization-to-user-diagram-mobile{
    display: none;
}
@media screen and (max-width: 600px) and (orientation:portrait)
{
    #data-visualization-to-user-diagram-mobile{
        display: flex;
        width: 60vw;
        padding-top: 5vh;
    }
}
@media screen and (max-width: 992px) and (orientation:landscape)
{
    #data-visualization-to-user-diagram-mobile{
        display: flex;
        width: 20vw;
        padding-top: 5vh;
    }
}
@media screen and (min-width: 600px) and (max-width: 992px) and (orientation:portrait)
{
    #data-visualization-to-user-diagram-mobile{
        display: flex;
        width: 30vw;
        padding-top: 5vh;
    }
}


#data-visualization-icon{
    width: 15vw;
    justify-content: center;
    align-items: center;
    margin-top: auto;
    margin-bottom: auto;
}
@media screen and (max-width: 600px) and (orientation:portrait)
{
    #data-visualization-icon{
        width: 60vw;
        padding-top: 5vh;
    }
}
@media screen and (max-width: 992px) and (orientation:landscape)
{
    #data-visualization-icon{
        width: 30vw;
        padding-top: 5vh;
    }
}
@media screen and (min-width: 600px) and (max-width: 992px) and (orientation:portrait)
{
    #data-visualization-icon{
        width: 30vw;
        padding-top: 5vh;
    }
}

/* Contact Section */

.contact-subsection{
    display: flex;
    flex-direction: row;
    justify-content: left;
    text-align: center;
    width: 100%;
    min-height: fit-content;
    padding: 0;
}
@media screen and (max-width: 600px) and (orientation:portrait)
{
    .contact-subsection{
        justify-content: center;
    }
}
@media screen and (max-width: 992px) and (orientation:landscape)
{
    .contact-subsection{
        justify-content: center;
    }
}
@media screen and (min-width: 600px) and (max-width: 992px) and (orientation:portrait)
{
    .contact-subsection{
        justify-content: center;
    }
}

.contact-logo{
    width: 25vw;
    max-width: 100%;
}
@media screen and (max-width: 600px) and (orientation:portrait)
{
    .contact-logo{
        width: 90vw;
    }
}
@media screen and (max-width: 992px) and (orientation:landscape)
{
    .contact-logo{
        width: 50vw;
    }
}
@media screen and (min-width: 600px) and (max-width: 992px) and (orientation:portrait)
{
    .contact-logo{
        width: 90vw;
    }
}

.contact-label{
    font-size: 1.75vh;
    margin: 1vh;
    font-weight: bold;
}
@media screen and (max-width: 600px) and (orientation:portrait)
{
    .contact-label{
        display: none;
    }
}
@media screen and (max-width: 992px) and (orientation:landscape)
{
    .contact-label{
        font-size: 4vh;
        margin-right: 1vw;
    }
}
@media screen and (min-width: 600px) and (max-width: 992px) and (orientation:portrait)
{
    .contact-label{
        display: flex;
        margin-right: 3vw;
    }
}

@media screen and (max-width: 600px) and (orientation:portrait)
{
    #contact-text-subsection{
        padding-top: 0;
        padding-bottom: 5vh;
        margin: 0;
    }
}
@media screen and (max-width: 992px) and (orientation:landscape)
{
    #contact-text-subsection{
        padding-top: 0;
        padding-bottom: 5vh;
        margin: 0;
    }
}
@media screen and (min-width: 600px) and (max-width: 992px) and (orientation:portrait)
{
    #contact-text-subsection{
        padding-top: 0;
        padding-bottom: 5vh;
        margin: 0;
    }
}


 /* Footer */
.footer {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: fit-content;
    background-color: rgb(75, 75, 75);
    padding-top: 2vh;
    padding-bottom: 2vh;
}
@media screen and (max-width: 600px) and (orientation:portrait)
{
    .footer{
        flex-direction: column;
    }
}
@media screen and (max-width: 992px) and (orientation:landscape)
{
    .footer{
        flex-direction: column;
    }
}
@media screen and (min-width: 600px) and (max-width: 992px) and (orientation:portrait)
{
    .footer{
        flex-direction: row;
    }
}

.footer a:hover {
    color: var(--accent-colour-lightblue);
}

.footer-text{
    color: #777;
    font-size: 0.8rem;
}

.footer-section{
    display: flex;
    flex-direction: column;
}
@media screen and (max-width: 600px) and (orientation:portrait)
{
    .footer-copyright{
        margin-left: auto;
        margin-right: auto;
    }
}
@media screen and (max-width: 992px) and (orientation:landscape)
{
    .footer-copyright{
        margin-left: auto;
        margin-right: auto;
    }
}
@media screen and (min-width: 600px) and (max-width: 992px) and (orientation:portrait)
{
    .footer-copyright{
        margin-left: auto;
        margin-right: auto;
    }
}

.footer-flag {
    margin-left: auto;
    margin-right: auto;
    height: 3vh;
}

#footer-copyright{
    position: absolute;
    left: 50vw;
    transform: translate(-50%, 0%);
}
@media screen and (max-width: 600px) and (orientation:portrait)
{
    #footer-copyright{
        position: relative;
        margin: auto;
        vertical-align: bottom;
        left: 0;
        transform: none;
    }
}
@media screen and (max-width: 992px) and (orientation:landscape)
{
    #footer-copyright{
        position: relative;
        margin: auto;
        vertical-align: bottom;
        left: 0;
        transform: none;
    }
}

#footer-canada{
    margin-left: auto;
    margin-right: 1vw;
}
@media screen and (max-width: 600px) and (orientation:portrait)
{
    #footer-canada{
        margin: auto;
        top: 0;
    }
}
@media screen and (max-width: 992px) and (orientation:landscape)
{
    #footer-canada{
        margin: auto;
        top: 0;
    }
}


 /* Icons */
.svg-icon{
    display: flex;
    justify-content: center;
    align-content: center;
    margin: auto;
}
@media screen and (max-width: 600px) and (orientation:portrait)
{
    .svg-icon{
        transform: scale(4);
    }
}
@media screen and (max-width: 992px) and (orientation:landscape)
{
    .svg-icon{
        transform: scale(2);
    }
}
@media screen and (min-width: 600px) and (max-width: 992px) and (orientation:portrait)
{
    .svg-icon{
        transform: scale(3);
    }
}

.contact-icon{
    margin: auto 0.1vw;
    height: 3vh;
}
@media screen and (max-width: 600px) and (orientation:portrait)
{
    .contact-icon{
        transform: scale(1.5);
        margin-right: 2vw;
        margin-top: auto;
        margin-bottom: auto;
    }
}
@media screen and (max-width: 992px) and (orientation:landscape)
{
    .contact-icon{
        transform: scale(1.5);
        margin-right: 1vw;
        margin-top: auto;
        margin-bottom: auto;
    }
}
@media screen and (min-width: 600px) and (max-width: 992px) and (orientation:portrait)
{
    .contact-icon{
        transform: scale(1.5);
        margin-right: 2vw;
        margin-top: auto;
        margin-bottom: auto;
    }
}

.icon-container.sample{
    width: 100%;
    margin-left: 2%; /* This will center the image in the box to account for the down arrow */
}

.company-icon{
    filter: grayscale(100%);
    border-radius: 0.3rem;
}

.company-icon.contact{
    margin: 1vh 2vw auto 0.5vw;
}

.company-icon.small{
    height: 5vh;
}
@media screen and (max-width: 992px) and (orientation:landscape)
{
    .company-icon.small{
        height: 10vh;
    }
}

.company-icon.large{
    height: 10vh;
}
@media screen and (max-width: 992px) and (orientation:landscape)
{
    .company-icon.large{
        height: 20vh;
    }
}

.company-icon.coloured{
    filter: none;
}

#retail-icon{
    width: 4vw;
    height: 7vh;
}

#inventory-icon{
    width: 5vw;
    height: 7vh;
}

#customer-icon{
    width: 5vw;
    height: 7vh;
}

#hr-icon{
    width: 5vw;
}

#ad-campaign-icon{
    width: 4vw;
}

#under-construction-icon{
    width: 6vw;
}