@charset "UTF-8";
/*
    This CSS stylesheet was created by the Crattivo Department of Gocreattivo.
    It is designed to style HeroStyle-1.html template with 3 slides.
    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.
*/

*{
    padding:0;
    margin:0;
}
/*-----------------------------------------*/
        /*  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: flex;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    height: 100%;
}
.hero-img{
    height: 100%;
    width: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    z-index: 1;
}
.hero-dark_overlay{
    display: flex;
    background-color: #00000044;
    position: absolute;
    height: 100vh;
    width: 100%;
    z-index: 2;
}
.hero-text-overlay{
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
    z-index:3;
    top: -3%;
    h1{
        text-transform: uppercase;
        font-size: 5.5rem;
        text-align: left;
        color: white;
        margin-bottom: 0.5vw;
    }
    h2{
        font-size: 2.75rem;
        text-align: left;
        color: rgb(42, 218, 188);
        word-spacing: 0.05em;
        margin-bottom: 0.5vw;
    }
}
.hero-overlay-logo-section{
    display: flex;
    flex-direction: row;
    position: relative;
    justify-content: center;
    align-items: center;
    height: auto;
    width: 97%;
    gap: 2vw;
    margin: 0 auto;
}
.hero-overlay-logo-container{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 14.5vw;
    height: 14.5vw;
    clip-path: circle(50% at 50% 50%);
    z-index: 3;
}
.hero-overlay-logo-container-inner-circle{
    display: flex;
    width: 13.5vw;
    height: 13.5vw;
    background: radial-gradient(
        ellipse at 30% 30%,
        rgba(255, 255, 255, 0.123) 0%,
        rgba(255, 255, 255, 0.05) 40%,
        transparent 70%
    );
    position: relative;
    z-index: 4;
    box-shadow:
        inset -0.4vw -0.4vw 0.8vw rgba(0, 0, 0, 0.6),
        inset 0.4vw 0.4vw 0.8vw rgba(255, 255, 255, 0.05),
        0 0.3vw 0.6vw rgba(0,0,0,0.5);
}
.hero-overlay-logo-section-main_logo{
    height: 8vw;
    width: auto;
    margin: auto auto;
    z-index: 4;
    position: relative;
}
.hero-overlay-text-container{
    display: flex;
    flex-direction: column;
}
.hero-logos-container{
    display: flex;
    position: absolute;
    justify-content: center;
    align-items: center;
    bottom: 30%;
    margin-right: 4%;
    width: fit-content;
    z-index: 3;
    gap: 1vw;
}
.hero-logos {
    display: flex;
    flex-direction: row;
    gap: 1vw;
    align-items: center;
    img {
        height: auto;
        width: 6vw;
        opacity: 0;
        transform: translateX(-20px);
        transition: opacity 0.6s ease, transform 0.6s ease;
        &.visible {
            opacity: 1;
            transform: translateX(0);
        }
    }
}
.hero-youtube-link {
    display: flex;
    background: #FF0000;
    backdrop-filter: blur(4px);
    border: 1px solid #8383838c;
    border-radius: 50%;
    width: 6vw;
    height: 6vw;
    align-items: center;
    justify-content: center;
    transition: 
        background 1s ease-in-out,
        transform 0.3s ease-in-out,
        opacity 0.6s ease-in-out,
        filter 0.6s ease-in-out;
    opacity: 0;
    transform: translateX(-20px) scale(1);
    &.visible {
        opacity: 1;
        background: rgba(255, 255, 255, 0.068);
        transform: translate(0) scale(1);
        transition: 
            background 1s ease-in-out 2.5s,
            transform 0.5s ease,  
            opacity 0.6s ease-in-out;
    }
    &.bounce-once {
        animation: bounceOnce 1.75s ease-in-out 0.75s;
    }

    &.bounce-infinite {
        animation: bounceInfinite 2s ease-in-out infinite;
    }
    &:hover {
        animation: none !important;
        transform: translateX(0) scale(1.3);
        backdrop-filter: unset;
    }
    a {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        border-radius: 50%;
        text-decoration: none;
        .company-logo {
            position: absolute;
            width: 1.5vw;
            height: auto;
            z-index: 5;
            filter: invert(1);
            margin-right: 4px;
        }
        .youtube-logo {
            position: absolute;
            width: 4.5vw;
            height: auto;
            z-index: 4;
        }
    }
}
@keyframes bounceOnce {
    0% {
        transform: translateX(0) scale(1);
    }
    30% {
        transform: translateX(0) scale(1.35);
    }
    60% {
        transform: translateX(0) scale(0.75);
    }
    100% {
        transform: translateX(0) scale(1);
    }
}
@keyframes bounceInfinite {
  0%, 100% {
    transform: translateX(0) scale(1);
  }
  50% {
    transform: translateX(0) scale(1.25);
  }
}
.hero-youtube-modal {
    position: fixed;
    top: 0; left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 15;
}
.hero-youtube-modal-box {
    width: 80vmin;
    height: 80vmin;
    background-color: #111;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}
.hero-youtube-modal-header {
    display: flex;
    justify-content: flex-end;
    padding: 0.5rem 2rem;
    background-color: #222;
}
.modal-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.8rem;
    cursor: pointer;
    transition: color 0.3s;
    &:hover {
        color: #f33;
    }
}
.hero-youtube-modal-content {
    display: flex;
    height: 100%;
    iframe {
        width: 100%;
        height: 100%;
        border: none;
        padding: 0 2vw;
    }
}
.hero-youtube-modal-footer {
    background: #222;
    padding: 1.5rem;
    text-align: right;
    .watch-link {
        color: white;
        text-decoration: none;
        border: 1px solid transparent;
        font-weight: bold;
        font-size: 1.25rem;
        padding: 15px 15px;
        border-radius: 2rem;
        background: #206a6a91;
        transition: background 0.25s ease-out,border 0.25s ease-out;
        &:hover {
            text-decoration: none;
            background: rgba(138, 138, 138, 0.493);
            border: 1px solid rgb(173, 173, 173);
            transition: background 0.25s ease-out, border 0.25s ease-out;
        }
    }
}
.hero-bottom-bar {
    position: absolute;
    bottom: 1vw;
    left: 5%;
    width: 90%;
    z-index: 4;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.hero-bottom-links {
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-top: 0.5vw;
    a {
        color: rgba(255, 255, 255, 0.445);
        text-decoration: none;
        font-weight: 500;
        transition: color 0.3s ease;
        font-size: 1.1vw;
    }
    a:hover {
        color: rgb(42, 218, 188);
    }
}
.hero-bottom-line {
    width: 100%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.26);
}
@media (min-width: 1225px) and (max-width: 1680px) {
    /*-------------------------------*/
        /*  Hero Section Sizing  */
    /*-------------------------------*/
    .hero-container{
        height:100vh;
        width: 100%;
    }
    .hero-dark_overlay{
        height: 100vh;
    }
    .hero-text-overlay{
        height: 100%;
        width: 100%;
        z-index:3;
        top: -3%;
        h1{
            font-size: 4.5rem;
            margin-bottom: 0.5vw;
            text-align: left;
        }
        h2{
            font-size: 1.75rem;
            text-align: left;
            margin-top: 0.25vw;
            margin-bottom: 0vw;
        }
    }
    /* .hero-overlay-logo-section{
        flex-direction: row;
        height: auto;
        width: 90%;
        gap: 3vw;
        margin: 0 17vw 0 auto;
    } */
    .hero-bottom-bar {
        bottom: 0.5vw;
        left: 5%;
        width: 90%;
        flex-direction: column;
    }
    .hero-bottom-links {
        flex-direction: row;
        margin-top: 1vw;
        a {
            text-align: center;
            font-size: 0.85rem;
            margin-bottom: 0.5vw;
        }
    }
    .hero-bottom-line {
        height: 1px;
    }
    /*-------------------------------*/
    /*  Hero Logos & YouTube Link  */
    /*-------------------------------*/
    .hero-logos-container {
        bottom: 30%;
        flex-wrap: wrap;
        gap: 1vw;
        margin-right: 5vw;
        justify-content: center;
        width: 85%;
        padding: 0 0vw;
    }
    .hero-logos img {
        width: 8vw;
        height: auto;
    }
    .hero-youtube-link {
        width: 5vw;
        height: 5vw;
        a {
            width: 100%;
            height: 100%;
            .company-logo {
                width: 1.15vw;
            }
            .youtube-logo {
                width: 3.5vw;
            }
        }
        &:hover {
            transform: translate(0) scale(1.2);
        }
    }
    /*-------------------------------*/
    /*  YouTube Modal Box  */
    /*-------------------------------*/
    .hero-youtube-modal-box {
        width: 50vw;
        height: 40vw;
        border-radius: 8px;
    }
    .hero-youtube-modal-header {
        padding: 0.5rem 1rem;
        .modal-close {
            font-size: 1.5rem;
        }
    }
    .hero-youtube-modal-content iframe {
        padding: 0 1vw;
    }
    .hero-youtube-modal-footer {
        padding: 1rem;
        text-align: center;
        .watch-link {
            font-size: 1rem;
            padding: 10px 0px;
            width: 40%;
            display: inline-block;
        }
    }
}
@media (min-width: 1350px){
    .hero-logos-container {
        bottom: 33%;
        flex-wrap: wrap;
        gap: 1vw;
        margin-left: 5vw;
        justify-content: center;
        width: 85%;
        padding: 0 0vw;
    }
    .hero-logos img {
        width: 7vw;
        height: auto;
    }
    .hero-youtube-link {
        width: 5vw;
        height: 5vw;
        a {
            width: 100%;
            height: 100%;
            .company-logo {
                width: 1.15vw;
            }
            .youtube-logo {
                width: 3.5vw;
            }
        }
        &:hover {
            transform: translateX(0) scale(1.2);
        }
    }
}
@media (min-width: 1450px){
    .hero-logos-container {
        bottom: 30%;
        flex-wrap: wrap;
        gap: 1vw;
        margin-left: 10vw;
        justify-content: center;
        width: 85%;
        padding: 0 0vw;
    }
    .hero-logos img {
        width: 7vw;
        height: auto;
    }
    .hero-youtube-link {
        width: 5vw;
        height: 5vw;
        a {
            width: 100%;
            height: 100%;
            .company-logo {
                width: 1.15vw;
            }
            .youtube-logo {
                width: 3.5vw;
            }
        }
        &:hover {
            transform: translateX(0) scale(1.2);
        }
    }
}
@media (min-width: 1550px) and (max-width:1680px){
    .hero-logos-container {
        bottom: 25%;
        flex-wrap: wrap;
        gap: 1vw;
        margin-left: 15vw;
        justify-content: center;
        width: 85%;
        padding: 0 0vw;
    }
    .hero-logos img {
        width: 7vw;
        height: auto;
    }
    .hero-youtube-link {
        width: 5vw;
        height: 5vw;
        a {
            width: 100%;
            height: 100%;
            .company-logo {
                width: 1.15vw;
            }
            .youtube-logo {
                width: 3.5vw;
            }
        }
        &:hover {
            transform: translate(0) scale(1.2);
        }
    }
}

/*Desktops and large Laptops*/
@media only screen and (min-width:993px) and (max-width: 1224px){
    /*-------------------------------*/
        /*  Hero Section Sizing  */
    /*-------------------------------*/
    .hero-container{
        height:80vh;
        width: 100%;
    }
    .hero-dark_overlay{
        height: 80vh;
    }
    .hero-overlay-text-container{
        width: min-content;
    }
    .hero-text-overlay{
        height: 100%;
        width: 100%;
        z-index:3;
        top: -1%;
        h1{
            font-size: 4.5rem;
            margin-bottom: 0.5vw;
            text-align: left;
        }
        h2{
            font-size: 1.75rem;
            text-align: left;
            margin-top: 1;
            margin-bottom: 0vw;
        }
    }
    .hero-overlay-logo-section{
        flex-direction: row;
        height: auto;
        width: 90%;
        gap: 3vw;
        margin: 0 17vw 0 auto;
    }
    .hero-overlay-logo-section-main_logo{
        height: 11vw;
        width: auto;
        margin: auto auto;
    }
    .hero-overlay-logo-container{
        width: 19.75vw;
        height: 19.75vw;
    }
    .hero-overlay-logo-container-inner-circle{
        width: 18vw;
        height: 18vw;
    }
    .hero-bottom-bar {
        bottom: 1.5vw;
        left: 5%;
        width: 90%;
        flex-direction: column;
    }
    .hero-bottom-links {
        flex-direction: row;
        margin-top: 1vw;
        a {
            text-align: center;
            font-size: 0.85rem;
            margin-bottom: 0.5vw;
        }
    }
    .hero-bottom-line {
        height: 1px;
    }
    .border-gradient-gold::before {
        mask: 
        radial-gradient(farthest-side, transparent calc(100% - 4px), white calc(100% - 3px));
        -webkit-mask: 
        radial-gradient(farthest-side, transparent calc(100% - 4px), white calc(100% - 3px));
    }
    /*-------------------------------*/
    /*  Hero Logos & YouTube Link  */
    /*-------------------------------*/
    .hero-logos-container {
        bottom: 20%;
        flex-wrap: wrap;
        gap: 1vw;
        margin-left: 30vw;
        justify-content: center;
        width: fit-content;
        padding: 0 0vw;
    }
    .hero-logos img {
        width: 7vw;
        height: auto;
    }
    .hero-youtube-link {
        width: 6vw;
        height: 6vw;
        a {
            width: 100%;
            height: 100%;
            .company-logo {
                width: 1.35vw;
            }
            .youtube-logo {
                width: 4.5vw;
            }
        }
        &:hover {
            transform: translateX(0) scale(1.2);
        }
    }
    /*-------------------------------*/
    /*  YouTube Modal Box  */
    /*-------------------------------*/
    .hero-youtube-modal-box {
        width: 50vw;
        height: 40vw;
        border-radius: 8px;
    }
    .hero-youtube-modal-header {
        padding: 0.5rem 1rem;
        .modal-close {
            font-size: 1.5rem;
        }
    }
    .hero-youtube-modal-content iframe {
        padding: 0 1vw;
    }
    .hero-youtube-modal-footer {
        padding: 1rem;
        text-align: center;

        .watch-link {
            font-size: 1rem;
            padding: 10px 0px;
            width: 70%;
            display: inline-block;
        }
    }
}
/* small and medium laptops*/
@media only screen and (min-width: 768px) and (max-width: 992px){
    /*-------------------------------*/
        /*  Hero Section Sizing  */
    /*-------------------------------*/
    .hero-container{
        height:70vh;
        width: 100%;
    }
    .hero-dark_overlay{
        height: 70vh;
    }
    .hero-overlay-text-container{
        width: min-content;
    }
    .hero-text-overlay{
        height: 100%;
        width: 100%;
        z-index:3;
        top: -2%;
        h1{
            font-size: 3.75rem;
            margin-bottom: 1vw;
            text-align: left;
        }
        h2{
            font-size: 1.5rem;
            text-align: left;
            margin-top: 1;
            margin-bottom: 3vw;
        }
    }
    .hero-overlay-logo-section{
        flex-direction: row;
        height: auto;
        width: 80%;
        gap: 2vw;
        margin: 0 15vw 0 auto;
    }
    .hero-overlay-logo-section-main_logo{
        height: 10vw;
        width: auto;
        margin: auto auto;
    }
    .hero-overlay-logo-container{
        width: 19vw;
        height: 19vw;
    }
    .hero-overlay-logo-container-inner-circle{
        width: 17vw;
        height: 17vw;
    }
    .hero-bottom-bar {
        bottom: 1.5vw;
        left: 5%;
        width: 90%;
        flex-direction: column;
    }
    .hero-bottom-links {
        flex-direction: row;
        margin-top: 1vw;
        a {
            text-align: center;
            font-size: 0.9rem;
            margin-bottom: 0.5vw;
        }
    }
    .hero-bottom-line {
        height: 1px;
    }
    .border-gradient-gold::before {
        mask: 
        radial-gradient(farthest-side, transparent calc(100% - 4px), white calc(100% - 3px));
        -webkit-mask: 
        radial-gradient(farthest-side, transparent calc(100% - 4px), white calc(100% - 3px));
    }
    /*-------------------------------*/
    /*  Hero Logos & YouTube Link  */
    /*-------------------------------*/
    .hero-logos-container {
        bottom: 28%;
        flex-wrap: wrap;
        gap: 1vw;
        margin-left: 20vw;
        justify-content: center;
        width: fit-content;
        padding: 0 0vw;
    }
    .hero-logos img {
        width: 8vw;
        height: auto;
    }
    .hero-youtube-link {
        width: 7vw;
        height: 7vw;
        a {
            width: 100%;
            height: 100%;
            .company-logo {
                width: 1.75vw;
            }
            .youtube-logo {
                width: 5.5vw;
            }
        }
        &:hover {
            transform: translateX(0) scale(1.2);
        }
    }
    /*-------------------------------*/
    /*  YouTube Modal Box  */
    /*-------------------------------*/
    .hero-youtube-modal-box {
        width: 50vw;
        height: 40vw;
        border-radius: 8px;
    }
    .hero-youtube-modal-header {
        padding: 0.5rem 1rem;
        .modal-close {
            font-size: 1.5rem;
        }
    }
    .hero-youtube-modal-content iframe {
        padding: 0 1vw;
    }
    .hero-youtube-modal-footer {
        padding: 1rem;
        text-align: center;

        .watch-link {
            font-size: 1rem;
            padding: 10px 0px;
            width: 70%;
            display: inline-block;
        }
    }
}
@media (min-width: 767px) and (max-width: 1024px) and (orientation: landscape) {
    /*-------------------------------*/
        /*  Hero Section Sizing  */
    /*-------------------------------*/
    .hero-container{
        height:85vh;
        width: 100%;
    }
    .hero-dark_overlay{
        height: 85vh;
    }
    .hero-overlay-text-container{
        width: min-content;
        margin-top: 3vw;
    }
    .hero-text-overlay{
        height: 100%;
        width: 100%;
        z-index:3;
        top: -2%;
        h1{
            font-size: 3.75rem;
            margin-bottom: 1vw;
            text-align: left;
        }
        h2{
            font-size: 1.5rem;
            text-align: left;
            margin-top: 1;
            margin-bottom: 3vw;
        }
    }
    .hero-overlay-logo-section{
        flex-direction: row;
        height: auto;
        width: fit-content;
        gap: 3vw;
        margin: 0 20vw 0 auto;
    }
    .hero-overlay-logo-section-main_logo{
        height: 12vw;
        width: auto;
        margin: auto auto;
    }
    .hero-overlay-logo-container{
        width: 22vw;
        height: 22vw;
    }
    .hero-overlay-logo-container-inner-circle{
        width: 20vw;
        height: 20vw;
    }
    .hero-bottom-bar {
        bottom: 1.5vw;
        left: 5%;
        width: 90%;
        flex-direction: column;
    }
    .hero-bottom-links {
        flex-direction: row;
        margin-top: 1vw;
        a {
            text-align: center;
            font-size: 0.75rem;
            margin-bottom: 0.5vw;
        }
    }
    .hero-bottom-line {
        height: 1px;
    }
    .border-gradient-gold::before {
        mask: 
        radial-gradient(farthest-side, transparent calc(100% - 4px), white calc(100% - 3px));
        -webkit-mask: 
        radial-gradient(farthest-side, transparent calc(100% - 4px), white calc(100% - 3px));
    }
    /*-------------------------------*/
    /*  Hero Logos & YouTube Link  */
    /*-------------------------------*/
    .hero-logos-container {
        bottom: 30%;
        flex-wrap: wrap;
        gap: 1vw;
        margin-left: 25vw;
        justify-content: center;
        width: fit-content;
        padding: 0 0vw;
    }
    .hero-logos img {
        width: 7vw;
        height: auto;
    }
    .hero-youtube-link {
        width: 6vw;
        height: 6vw;
        a {
            width: 100%;
            height: 100%;
            .company-logo {
                width: 1.35vw;
            }
            .youtube-logo {
                width: 4.5vw;
            }
        }
        &:hover {
            transform: translateX(0) scale(1.2);
        }
    }
    /*-------------------------------*/
    /*  YouTube Modal Box  */
    /*-------------------------------*/
    .hero-youtube-modal-box {
        width: 50vw;
        height: 40vw;
        border-radius: 8px;
    }
    .hero-youtube-modal-header {
        padding: 0.5rem 1rem;
        .modal-close {
            font-size: 1.5rem;
        }
    }
    .hero-youtube-modal-content iframe {
        padding: 0 1vw;
    }
    .hero-youtube-modal-footer {
        padding: 1rem;
        text-align: center;

        .watch-link {
            font-size: 1rem;
            padding: 10px 0px;
            width: 70%;
            display: inline-block;
        }
    }
}
/* -------------------- */
/*  MOBILE BREAKPOINTS  */
/* -------------------- */
@media (max-width: 767px) and (orientation: portrait) {
    /*-------------------------------*/
        /*  Hero Section Sizing  */
    /*-------------------------------*/
    .hero-container{
        height:90vh;
        width: 100%;
    }
    .hero-dark_overlay{
        height: 90vh;
    }
    .hero-text-overlay{
        height: 100%;
        width: 90%;
        z-index:3;
        top: -9%;
        h1{
            font-size: 2.5rem;
            margin-bottom: 1vw;
            text-align: center;
        }
        h2{
            font-size: 1rem;
            text-align: center;
            margin-top: 1;
            margin-bottom: 3vw;
        }
    }
    .hero-overlay-logo-section{
        flex-direction: column;
        height: auto;
        width: 100%;
    }
    .hero-overlay-logo-section-main_logo{
        height: 17vw;
        width: auto;
        margin: auto auto;
    }
    .hero-overlay-logo-container{
        width: 34vw;
        height: 34vw;
    }
    .hero-overlay-logo-container-inner-circle{
        width: 30vw;
        height: 30vw;
    }
    .hero-bottom-bar {
        bottom: 5vw;
        left: 5%;
        width: 90%;
        flex-direction: column;
    }
    .hero-bottom-links {
        flex-direction: column-reverse;
        margin-top: 1vw;
        a {
            text-align: center;
            font-size: 0.85rem;
            margin-bottom: 0.5vw;
        }
    }
    .hero-bottom-line {
        height: 1px;
    }
    .border-gradient-gold::before {
        mask: 
        radial-gradient(farthest-side, transparent calc(100% - 3px), white calc(100% - 2px));
        -webkit-mask: 
        radial-gradient(farthest-side, transparent calc(100% - 3px), white calc(100% - 2px));
    }
    /*-------------------------------*/
    /*  Hero Logos & YouTube Link  */
    /*-------------------------------*/
    .hero-logos-container {
        bottom: 20%;
        flex-wrap: wrap;
        gap: 2vw;
        margin-left: 0;
        justify-content: center;
        padding: 0 0vw;
    }
    .hero-logos{
        flex-wrap: wrap;
        justify-content: center;
    }
    .hero-logos img {
        width: 20vw;
        height: auto;
        margin-bottom: -5vw;
    }
    .hero-youtube-link {
        width: 13vw;
        height: 13vw;
        a {
            width: 100%;
            height: 100%;
            .company-logo {
                width: 3vw;
                bottom: 10.35vw;
                margin-left: 3px;
            }
            .youtube-logo {
                width: 9vw;
                bottom: 8.35vw;
            }
        }
        &.visible{
            transform: translate(0, 0) scale(1);
            margin-bottom: -5vw;
        }
        &:hover {
            transform: translateX(0) scale(1.2);
        }
    }
    /*-------------------------------*/
    /*  YouTube Modal Box  */
    /*-------------------------------*/
    .hero-youtube-modal-box {
        width: 92vw;
        height: 92vw;
        border-radius: 8px;
    }
    .hero-youtube-modal-header {
        padding: 0.5rem 1rem;
        .modal-close {
            font-size: 1.5rem;
        }
    }
    .hero-youtube-modal-content iframe {
        padding: 0 1vw;
    }
    .hero-youtube-modal-footer {
        padding: 1rem;
        text-align: center;

        .watch-link {
            font-size: 1rem;
            padding: 10px 12px;
            width: 90%;
            display: inline-block;
        }
    }
}
@media (max-width: 767px) and (orientation: landscape) {
    /*-------------------------------*/
        /*  Hero Section Sizing  */
    /*-------------------------------*/
    .hero-container{
        height:80vh;
        width: 100%;
    }
    .hero-dark_overlay{
        height: 80vh;
    }
    .hero-overlay-text-container{
        width: fit-content;
        margin-top: 1vw;
    }
    .hero-text-overlay{
        height: 100%;
        width: 100%;
        z-index:3;
        top: -8%;
        h1{
            font-size: 2.5rem;
            margin-bottom: 1vw;
            text-align: left;
        }
        h2{
            font-size: 0.9rem;
            text-align: left;
            margin-top: 1;
            margin-bottom: 3vw;
        }
    }
    .hero-overlay-logo-section{
        flex-direction: row;
        height: auto;
        width: 100%;
        gap: 1vw;
    }
    .hero-overlay-logo-section-main_logo{
        height: 9vw;
        width: auto;
        margin: auto auto;
    }
    .hero-overlay-logo-container{
        width: 17vw;
        height: 17vw;
    }
    .hero-overlay-logo-container-inner-circle{
        width: 15vw;
        height: 15vw;
    }
    .hero-bottom-bar {
        bottom: 1.5vw;
        left: 5%;
        width: 90%;
        flex-direction: column;
    }
    .hero-bottom-links {
        flex-direction: row;
        margin-top: 1vw;
        a {
            text-align: center;
            font-size: 0.7rem;
            margin-bottom: 0.5vw;
        }
    }
    .hero-bottom-line {
        height: 1px;
    }
    .border-gradient-gold::before {
        mask: 
        radial-gradient(farthest-side, transparent calc(100% - 3px), white calc(100% - 2px));
        -webkit-mask: 
        radial-gradient(farthest-side, transparent calc(100% - 3px), white calc(100% - 2px));
    }
    /*-------------------------------*/
    /*  Hero Logos & YouTube Link  */
    /*-------------------------------*/
    .hero-logos-container {
        bottom: 28%;
        flex-wrap: wrap;
        gap: 2vw;
        margin-left: 12vw;
        justify-content: center;
        width: fit-content;
        padding: 0 0vw;
    }
    .hero-logos img {
        width: 9vw;
        height: auto;
    }
    .hero-youtube-link {
        width: 7vw;
        height: 7vw;
        a {
            width: 100%;
            height: 100%;
            .company-logo {
                width: 1.75vw;
            }
            .youtube-logo {
                width: 5.5vw;
            }
        }
        &:hover {
            transform: translateX(0) scale(1.2);
        }
    }
    /*-------------------------------*/
    /*  YouTube Modal Box  */
    /*-------------------------------*/
    .hero-youtube-modal-box {
        width: 50vw;
        height: 40vw;
        border-radius: 8px;
    }
    .hero-youtube-modal-header {
        padding: 0.5rem 1rem;
        .modal-close {
            font-size: 1.5rem;
        }
    }
    .hero-youtube-modal-content iframe {
        padding: 0 1vw;
    }
    .hero-youtube-modal-footer {
        padding: 1rem;
        text-align: center;

        .watch-link {
            font-size: 1rem;
            padding: 10px 0px;
            width: 70%;
            display: inline-block;
        }
    }
}
