/* Global Settings */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: 'Arame-Thin'; 
    src: url('fonts/ArameMono-Thin.ttf'); 
}

@font-face {
    font-family: 'Arame'; 
    src: url('fonts/Arame.ttf'); 
}

:root {
    --main-orange: #f29100;
    --main-blue: #99fcd2;
    --dark-grey: #1d1d1d;
}

.relative{
    position: relative;
}

.overflow-hidden{
    overflow: hidden;
}

.border-right{
    border-right: 2px solid var(--main-orange);
}

.sub-header{
    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 40px 20px 40px 0;
}

.sub-header h2{
    font-family: 'Arame-Thin';
    color:var(--main-orange);
    font-size: 46px;
}

.sub-header p{
    font-family: 'Arame-Thin';
    color:#ffffff;
    font-size: 18px;
}


/* Subheading Resize */

@media only screen and (max-width: 800px) {
    .sub-header{  
        padding: 30px 20px 30px 0;
    }
    
    .sub-header h2{
        font-size: 30px;
    }
    
    .sub-header p{
        font-size: 14px;
    }
}

@media only screen and (max-width: 800px) {
    .sub-header{  
        padding: 20px 10px 20px 0;
    }
    
    .sub-header h2{
        font-size: 26px;
    }
    
    .sub-header p{
        font-size: 10px;
    }
}

/**/

.small-button{
    z-index: 1;
    background:
      linear-gradient(to right, #ffffff 1px, transparent 1px) 0 0,
      linear-gradient(to right, #ffffff 1px, transparent 1px) 0 100%,

      linear-gradient(to left, #ffffff 1px, transparent 1px) 100% 0,
      linear-gradient(to left, #ffffff 1px, transparent 1px) 100% 100%,

      linear-gradient(to bottom, #ffffff 1px, transparent 1px) 0 0,
      linear-gradient(to bottom, #ffffff 1px, transparent 1px) 100% 0,

      linear-gradient(to top, #ffffff 1px, transparent 1px) 0 100%,
      linear-gradient(to top, #ffffff 1px, transparent 1px) 100% 100%;
  
    background-repeat: no-repeat;
    background-size: 6px 6px;


    color: #ffffff;
    font-family: 'Arame-Thin';
    padding: 7px;
    display: flex; justify-content: center; align-items: center;
    text-decoration: none;
    font-size: 20px;
}

.small-button span{
    transition: .1s;
}

.small-button:hover{
    background:
    linear-gradient(to right, var(--main-orange) 2px, transparent 2px) 0 0,
    linear-gradient(to right, var(--main-orange) 2px, transparent 2px) 0 100%,

    linear-gradient(to left, var(--main-orange) 2px, transparent 2px) 100% 0,
    linear-gradient(to left, var(--main-orange) 2px, transparent 2px) 100% 100%,

    linear-gradient(to bottom, var(--main-orange) 2px, transparent 2px) 0 0,
    linear-gradient(to bottom, var(--main-orange) 2px, transparent 2px) 100% 0,

    linear-gradient(to top, var(--main-orange) 2px, transparent 2px) 0 100%,
    linear-gradient(to top, var(--main-orange) 2px, transparent 2px) 100% 100%;


    background-repeat: no-repeat;
    background-size: 6px 6px;

}

.small-button:hover > span{
    scale: 95%;
}

/* Default Section Styling */

.default-section{
    background-color: var(--dark-grey);
    padding: 0 100px 100px 100px;

    background-image: url("img/scanlines-overlay.png");
}

.default-content{
    border: 2px solid var(--main-orange);
    border-left: 0;
    padding: 50px 50px 50px 0;

    display: flex;
    justify-content: center;
    gap: 50px;
}

.default-content img{
    width: 100%;
}

.default-content iframe{
    width: 100%;
    aspect-ratio: 16 / 9;
}

.default-hero-section{
    height: 350px;
    background-image: url(img/negative-atmosphere-hero.jpg);
    background-color: #000000;
    background-repeat: no-repeat; background-size: cover;
    background-position: bottom;

    display: flex;
    justify-content: center;
    align-items: center;

    flex-direction: column;
    gap: 40px;
}

.default-hero-section h1{
    z-index: 2;
    color: #ffffff;
    font-family: 'Arame-Thin';
    font-size: 50px;
    padding: 10px 15px 10px 15px;

    background:
    linear-gradient(to right, var(--main-orange) 2px, transparent 2px) 0 100%,
    linear-gradient(to left, var(--main-orange) 2px, transparent 2px) 100% 0,
    linear-gradient(to bottom, var(--main-orange) 2px, transparent 2px) 100% 0,
    linear-gradient(to top, var(--main-orange) 2px, transparent 2px) 0 100%;


    background-repeat: no-repeat;
    background-size: 24px 24px;
}

@media only screen and (max-width: 1250px) {
    body .default-section{
        height: auto;
        padding-bottom: 50px;
    }

    .default-section .hud-square-bottom-left{
        margin-bottom: 25px;
    }

    .default-content{
        height: auto;
        margin-bottom: 25px;
        flex-direction: column-reverse;
    }
}

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

    .default-content{
        padding: 25px 25px 25px 0;
        gap: 25px;
    }

    .default-hero-section h1{
        font-size: 30px;
        background-size: 12px 12px;
        padding: 6px 10px 6px 10px;
    }

    .default-hero-section{
        height: 200px;
        gap: 10px;
    }
}

@media only screen and (max-width: 500px){
    .default-section{
        padding: 0 25px 0 25px;
    }
}


/* Hud Items */

.hud-corners-small{
    z-index: 1;
    background:
      linear-gradient(to right, var(--main-orange) 2px, transparent 2px) 0 0,
      linear-gradient(to right, var(--main-orange) 2px, transparent 2px) 0 100%,

      linear-gradient(to left, var(--main-orange) 2px, transparent 2px) 100% 0,
      linear-gradient(to left, var(--main-orange) 2px, transparent 2px) 100% 100%,

      linear-gradient(to bottom, var(--main-orange) 2px, transparent 2px) 0 0,
      linear-gradient(to bottom, var(--main-orange) 2px, transparent 2px) 100% 0,

      linear-gradient(to top, var(--main-orange) 2px, transparent 2px) 0 100%,
      linear-gradient(to top, var(--main-orange) 2px, transparent 2px) 100% 100%;
  
    background-repeat: no-repeat;
    background-size: 20px 20px;
}

.hud-corners-medium{
    z-index: 1;
    background:
      linear-gradient(to right, var(--main-orange) 2px, transparent 2px) 0 0,
      linear-gradient(to right, var(--main-orange) 2px, transparent 2px) 0 100%,

      linear-gradient(to left, var(--main-orange) 2px, transparent 2px) 100% 0,
      linear-gradient(to left, var(--main-orange) 2px, transparent 2px) 100% 100%,

      linear-gradient(to bottom, var(--main-orange) 2px, transparent 2px) 0 0,
      linear-gradient(to bottom, var(--main-orange) 2px, transparent 2px) 100% 0,

      linear-gradient(to top, var(--main-orange) 2px, transparent 2px) 0 100%,
      linear-gradient(to top, var(--main-orange) 2px, transparent 2px) 100% 100%;
  
    background-repeat: no-repeat;
    background-size: 40px 40px;
}


.hud-square{
    width: 80px;
}

.hud-square-background{
    width: 90px;
    background-color: #1d1d1d ;
    mix-blend-mode: darken;
    height: 30px;
}

.hud-square img{
    width: 100%;
}

.hud-square-bottom-left{
    position: absolute;
    left: 0;
    bottom: -13px;
    padding-right: 5px;
}

.hud-square-top-right{
    position: absolute;
    right: -36px;
    top: 200px;
    padding: 5px;

    transform: rotate(90deg);
}

.hud-square-top-left{
    position: absolute;
    left: -44px;
    top: 60px;
    padding: 5px;

    transform: rotate(90deg);
}

/* 404 Page */

.error-404-section{
    height: 1000px;
    background-image: url(img/neat-hero-404.jpg);
    background-color: #000000;
    background-repeat: no-repeat; background-size: cover;
    background-position: center;

    display: flex;
}

.hud-corners-error-404{
    z-index: 1;

    margin: 100px;
    width: 100%;
  
    background:
      linear-gradient(to right, var(--main-orange) 2px, transparent 2px) 0 0,
      linear-gradient(to right, var(--main-orange) 2px, transparent 2px) 0 100%,

      linear-gradient(to left, var(--main-orange) 2px, transparent 2px) 100% 0,
      linear-gradient(to left, var(--main-orange) 2px, transparent 2px) 100% 100%,

      linear-gradient(to bottom, var(--main-orange) 2px, transparent 2px) 0 0,
      linear-gradient(to bottom, var(--main-orange) 2px, transparent 2px) 100% 0,

      linear-gradient(to top, var(--main-orange) 2px, transparent 2px) 0 100%,
      linear-gradient(to top, var(--main-orange) 2px, transparent 2px) 100% 100%;

    background-repeat: no-repeat;
    background-size: 54px 54px;
}

.error-404-content{
    position: absolute;
    display: flex;
    justify-content: center;

    padding-top: 150px;

    width: 100%; height: inherit;
}

.error-404-content div{
    display: flex;
    flex-direction: column;
    align-items: center;

    gap: 50px;
}

.error-404-content img{
    width: 150px;
}


.error-404-text{
    padding: 18px;
}

.error-404-text h2{
    font-family: 'Arame-Thin';
    text-align: center;
}


#error-404-text-1{
    font-size: 50px;
    letter-spacing: 1px;
    color: #ffffff;
}

#error-404-text-2{
    font-size: 31px;
    letter-spacing: 1.1px;
    color: var(--main-orange);
}

.error-404-button{
    z-index: 1;
    background:
      linear-gradient(to right, var(--main-orange) 2px, transparent 2px) 0 0,
      linear-gradient(to right, var(--main-orange) 2px, transparent 2px) 0 100%,

      linear-gradient(to left, var(--main-orange) 2px, transparent 2px) 100% 0,
      linear-gradient(to left, var(--main-orange) 2px, transparent 2px) 100% 100%,

      linear-gradient(to bottom, var(--main-orange) 2px, transparent 2px) 0 0,
      linear-gradient(to bottom, var(--main-orange) 2px, transparent 2px) 100% 0,

      linear-gradient(to top, var(--main-orange) 2px, transparent 2px) 0 100%,
      linear-gradient(to top, var(--main-orange) 2px, transparent 2px) 100% 100%;
  
    background-repeat: no-repeat;
    background-size: 10px 10px;

    padding: 10px;
}

.error-404-button>a{
    font-size: 20px;
    font-family: "Arame";
    color: #ffffff;
    border: 2px solid var(--main-orange);
    padding: 10px;
    text-decoration: none;
    
    display: flex;
    justify-content: center;
    align-items: center;
    width: 300px;

    transition: .2s;
}

.error-404-button>a:hover{
    color: #000000;
    background-color: var(--main-orange);
}


@media screen and (max-width: 800px){
    .error-404-section{
        height: 800px;
    }
    .hud-corners-error-404{
        margin: 50px;
    }

    .error-404-content div{
        gap: 30px;
    }

    .error-404-text{
        padding: 12px;
    }

    #error-404-text-1{
        font-size: 38px;
        letter-spacing: 1px;
    }
    
    #error-404-text-2{
        font-size: 24px;
        letter-spacing: 1px;
    }

    .error-404-button>a{
        width: 220px;
        font-size: 16px;
    }
}





/* Header */

#header{
    height: 100px;
    background-color: #000000;
    position: sticky;
    top: 0;
    z-index: 100;

    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 0 100px 0 100px;
}

.header-vertical-divider{
    width: 2px;
    height: 40px;
    background-color: #ffffff;
    margin: 30px;
}

#header-logo{
    width: 180px;
}

#header-logo img{
    width: 100%;
}

#header div:nth-child(2){
    display: flex;
    align-items: center;
}

#header-navigation{
    display: flex;
    gap: 20px;
}

#header-navigation li{
    color: white;
    font-family: "Arame-Thin";
    list-style-type: none;
    font-size: 18px;
}

#header-navigation a:nth-child(2){
    margin-right: -15px;
}

#header-navigation a:hover{
    z-index: 5;
    background:
      linear-gradient(to right, #ffffff 1px, transparent 1px) 0 0,
      linear-gradient(to right, #ffffff 1px, transparent 1px) 0 100%,

      linear-gradient(to left, #ffffff 1px, transparent 1px) 100% 0,
      linear-gradient(to left, #ffffff 1px, transparent 1px) 100% 100%,

      linear-gradient(to bottom, #ffffff 1px, transparent 1px) 0 0,
      linear-gradient(to bottom, #ffffff 1px, transparent 1px) 100% 0,

      linear-gradient(to top, #ffffff 1px, transparent 1px) 0 100%,
      linear-gradient(to top, #ffffff 1px, transparent 1px) 100% 100%;
  
    background-repeat: no-repeat;
    background-size: 6px 6px;
}


#header-navigation a{
    text-decoration: none;
    padding: 7px;
}

#header-social{
    display: flex;
    align-items: center;
    gap: 8px;
}

#header-social li{
    list-style-type: none;
    background-color: var(--main-orange);
    width: 30px; height: 30px;

    display: flex;
    justify-content: center; align-items: center;
}

#header-social li img{
    width: 70%;
    transition: .2s;
}

#header-social li:hover img{
    filter: invert(100%);
}


#hamburger-icon{
    width: 40px;
    height: 40px;

    display: none;
    justify-content: center;
    align-items: center;
}

#hamburger-icon-line{
    width: 40px;
    height: 2px;
    background-color: var(--main-orange);
    margin-bottom: 20px;

    display: flex;
    gap: 8px;
    flex-direction: column;

    transition: .2s;
}

#hamburger-icon-line::before{
    content: "";
    background-color: var(--main-orange);
    min-height: 2px;
    width: 40px;

    margin-top: 10px;
}

#hamburger-icon-line::after{
    content: "";
    background-color: var(--main-orange);
    min-height: 2px;
    width: 40px;
}

#hamburger-icon .hamburger-active, .hamburger-active::before, .hamburger-active::after{
    background-color: #ffffff !important;
    gap: 0px;
    margin-bottom: 0px;
}

#hamburger-icon .hamburger-active::before{
    margin-top: 0px;
    background-color: #ffffff;
}

/* Header Resizing */

@media only screen and (max-width: 1350px) {
    #header #header-content{
        display: none;
    }

    #header #hamburger-icon{
        display: flex;
    }
}

@media only screen and (max-width: 800px) {
    #header{
        padding: 0 50px 0 50px;
        height: 80px;
    }

    #header-logo{
        width: 100px;
    }
}


/* Header Submenu on Products */

.header-submenu{
    position: relative;
}

#header-navigation a:nth-child(2):hover + .header-submenu div, .header-submenu div:hover{
    display: block;
}


.header-submenu div{
    display: none;
    z-index: 2;
    position: absolute;
    background-color: #000000;

    padding: 20px;
    width: 320px;

    top: 32px;
    left: -130px;
}


.header-submenu ul a {
    display: inline-block; 
    padding: 5px 10px; 
    text-decoration: none;
    color: white; 
    background-color: transparent;

    margin-bottom: 10px;
    font-family: "Arame-Thin";
}

@media only screen and (max-width: 1250px){
    .header-submenu div{
        display: none !important;
    }
}



/* Full Size Mobile Menu */
.show{
    display: flex !important;
}

#full-size-menu{
    background-color: var(--dark-grey);
    background-image: url("img/scanlines-overlay.png");
    background-size: cover;

    z-index: 5;
    position: absolute;
    width: 100vw;
    height: 100vh;
    padding-top: 60px;

    display: none;
    flex-direction: column;
    align-items: center;
    gap: 30px;

    position: fixed;
}

#full-size-menu #header-navigation{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;

}

#full-size-menu #header-navigation li{
    color: white;
    font-family: "Arame-Thin";
    list-style-type: none;
    font-size: 28px;
}

#full-size-menu #header-navigation a:nth-child(2){
    margin: 0 0 -20px 0;
}

#full-size-menu .small-button{
    color: #ffffff;
    font-family: 'Arame-Thin';
    padding: 8px;
    display: flex; justify-content: center; align-items: center;
    text-decoration: none;
    font-size: 24px;
}



/* Footer */

.footer{
    background-color: #000000;
    justify-content: center;
    align-items: center;

    border-top: 5px solid var(--main-orange);

    background-image: url("img/footer-overlay.png");
    background-position: -200px -700px;
    background-size: 800px;
    background-repeat: no-repeat;
}

.footer-content{
    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 20px 100px 20px 100px;
}

.footer-logo{
    width: 100px;
}

.footer-content{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-content div:nth-child(2) ul{
    display: grid;
    grid-template-rows: repeat(3, 1fr);
    margin: auto;
    grid-auto-flow: column;

}

.footer-content div:nth-child(2) ul a{
    color: #ffffff;
    text-decoration: none;

    font-family: 'Arame-Thin';
    font-size: 20px;
    padding: 10px 80px 10px 80px;
}

.footer-content .footer-menu a li{
    font-family: "Arame-Thin";
}

.footer-content div:nth-child(2) ul a:nth-child(-n+6){
    border-right: 2px solid var(--main-orange);
}

.footer-content div:nth-child(2) ul li{
    list-style-type: none;
}

.footer-content div:nth-child(3){
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-hero{
    padding: 10px;
}

.footer-hero img{
    width: 280px;
}


.footer-socials{
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 9px;
}

.footer-social-icon{
    list-style-type: none;
    background-color: var(--main-orange);
    width: 32px; height: 32px;

    display: flex;
    justify-content: center; align-items: center;
}

.footer-social-icon li{
    display: flex;
    justify-content: center; align-items: center;
}

.footer-social-icon img{
    width: 70%;
    transition: .2s;
}


.footer-social-icon li:hover img{
    filter: invert(100%);
}

.sub-footer{
    background-color: #1d1d1d;
    font-size: 12px;
    font-family: 'Arame-Thin';
    color: #ffffff;

    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px 15px 20px 15px;
}

/* Footer Resizing */

@media only screen and (max-width: 1650px){
    .footer-content div:nth-child(2) ul a{
        padding: 10px 40px 10px 40px;
        font-size: 18px;
    }

    .footer-hero{
        padding: 8px;
    }
    
    .footer-hero img{
        width: 220px;
    }

    .footer-social-icon{
        width: 25px; height: 25px;
    }
}

@media only screen and (max-width: 1300px){
    .footer-hero{
        display: none;
    }
}

@media only screen and (max-width: 1000px){
    .footer-content div:nth-child(2) ul a{
        padding: 10px 20px 10px 20px;
        font-size: 14px;
    }
}

@media only screen and (max-width: 800px){
    .footer{
        background-image: none;
    }

    .footer-content{
        padding: 20px;
        flex-wrap: wrap;
        gap: 20px;
    }

    .footer-content>div{
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .footer-socials{
        flex-direction: row;
    }

}

@media only screen and (max-width: 500px){
    .footer-content div:nth-child(2) ul a{
        padding: 5px;
        font-size: 10px;
    }

    .footer-content div:nth-child(2) ul a:nth-child(-n+6){
        border-right: 1px solid var(--main-orange);
    }

    .sub-footer{
        font-size: 8px;
    }

    .footer-social-icon{
        width: 20px; height: 20px;
    }
}



/* Hero Section */

.hero-section{
    height: 1000px;
    background-image: url(img/homepage-hero.jpg);
    background-color: #000000;
    background-repeat: no-repeat; background-size: cover;
    background-position: center;

    display: flex;
}

.hero-content{
    position: absolute;
    display: flex;
    justify-content: center;

    padding-top: 150px;

    width: 100%; height: inherit;
}

.hero-content div{
    display: flex;
    flex-direction: column;
    align-items: center;

    gap: 50px;
}

.hero-text{
    padding: 12px;
}

.hero-text img{
    width:  400px;
    user-select: none;
    
}

.hero-content>div>img{
    width: 250px;
}


.scan-lines-overlay{
    position: absolute;
    width: 100%; height: inherit;
    background-image: url("img/scanlines-overlay.png");
    background-size: cover;
    opacity: 75%;

    pointer-events: none;
    user-select: none;
}

.hud-corners-hero{
    z-index: 1;

    margin: 100px;
    width: 100%;
  
    background:
      linear-gradient(to right, var(--main-orange) 2px, transparent 2px) 0 0,
      linear-gradient(to right, var(--main-orange) 2px, transparent 2px) 0 100%,

      linear-gradient(to left, var(--main-orange) 2px, transparent 2px) 100% 0,
      linear-gradient(to left, var(--main-orange) 2px, transparent 2px) 100% 100%,

      linear-gradient(to bottom, var(--main-orange) 2px, transparent 2px) 0 0,
      linear-gradient(to bottom, var(--main-orange) 2px, transparent 2px) 100% 0,

      linear-gradient(to top, var(--main-orange) 2px, transparent 2px) 0 100%;
  
    background-repeat: no-repeat;
    background-size: 54px 54px;
}

.hud-right-line{
    z-index: 1;

    position: absolute; right: 100px; top: 100px;
    width: 100%; height: 100%;
    border-right: 2px solid var(--main-orange);
}

.arrow-down{
    z-index: 1;
    position: absolute;
    width: 100%; height: inherit;

    display: flex;
    justify-content: center;
    align-items: end;

    padding: 100px;
}

.arrow-down img{
    width: 40px;
}

.arrow-down a{
    transition: .3s;
}

.arrow-down a:hover{
    scale: 105%;
}



/* Hero Section Resizing */

@media only screen and (max-width: 800px) {
    .hero-section{
        height: 600px;
    }

    .hud-corners-hero{
        margin: 50px;
        background-size: 54px 54px;
    }
    
    .hud-right-line{
        position: absolute; right: 50px; top: 50px;
    }
    
    .arrow-down{
        padding: 50px;
    }

    .hero-content{
        padding-top: 80px;
    }

    .hero-content>div>img{
        width: 150px;
    }

    .hero-content div{
        gap: 25px;
    }

    .hud-corners-small{
        background-size: 15px 15px;
    }

    .hero-text{
        padding: 8px;
    } 

    .hero-text img{
        width:  300px;
    }

}

@media only screen and (max-width: 500px) {
    .hero-content{
        padding-top: 120px;
    }

    .hero-content>div>img{
        width: 120px;
    }

    .hero-content div{
        gap: 20px;
    }

    .hud-corners-hero{
        margin: 25px;
    }

    .hud-right-line{
        right: 25px;
    }

    .hero-text img{
        width:  220px;
    }

}

/* About Section */

.about-section{
    border-bottom: 5px solid var(--main-orange);
}

.about-content{
    border: 2px solid var(--main-orange);
    border-left: 0;
    height: 425px;
    padding: 50px 50px 50px 0;

    display: flex;
    justify-content: center;
    gap: 50px;
}

.about-image{
    height: 100%;
    width: 25%;
    padding: 15px;
    max-width: 500px;
}

.about-image div{
    border: 2px solid var(--main-orange);
    height: 100%;
    background-color: black;
    object-fit: cover;
  
}

.about-image img{
    width: 100%; height: 100%;
    object-fit: cover;
  
}

.about-text{
    width: 75%;
    max-width: 1250px;

    columns: 2;
    column-gap: 50px;
    column-fill: auto;
}

.about-text p{
    color: white;
    font-family: 'Montserrat';
    font-size: 20px;
    line-height: 28px;

    margin-bottom: 12px;
}

.about-text p a{
    color: var(--main-orange);
    font-weight: 600;
}

/* About Section Resizing */

@media only screen and (max-width: 1800px) {
    .about-text p{
        color: white;
        font-family: 'Montserrat';
        font-size: 16px;
        line-height: 24px;
    }
}

@media only screen and (max-width: 1400px) {
    .about-text p{
        color: white;
        font-family: 'Montserrat';
        font-size: 15px;
        line-height: 22px;
    }

    .about-text p br{
        margin-bottom: 10px;
    }
}


@media only screen and (max-width: 1250px) {

    .about-content{
        height: auto;
        margin-bottom: 25px;
        flex-direction: column-reverse;
    }

    .about-text{
        width: 100%;
        columns: 1;
    }

    .about-image{
        max-width: 100%; width: 100%;
        height: 400px;
    }
}

@media only screen and (max-width: 800px) {
    .about-content{
        padding: 25px 25px 25px 0;
        gap: 25px;
    }

    .about-image{
        height: 300px;
    }
}



/* Product Section */

.product-section{
    background-color: var(--dark-grey);
    background-image: url("img/products-background-image.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    padding: 0 100px 100px 100px;
}

.products{
    border: 2px solid var(--main-orange);
    border-right: 0;

    padding: 50px 0 50px 50px;
}

.product-cards{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;

    padding: 30px;
    gap: 50px;
}

.product-cards .card{
    border: 2px solid var(--main-orange);  
    overflow: hidden;
}

.product-cards .card a{
    width: 20%;
}

.product-cards .card img{
    width: 100%; height: 100%;
    object-fit: cover;
    margin-bottom: -10px;

    transition: .3s;
}

.product-cards .card img:hover{
    scale: 105%;
}



/* Product Resizing */

@media only screen and (min-width: 1920px) {
    .product-cards .card{
        width: 320px;
    }
}

@media only screen and (max-width: 1250px) {
    .products{
        padding: 25px 0 25px 25px;
    }

    .product-cards .card{
        height: 100%;
        width: 100%;
    }

    .product-cards{
        gap: 25px;
    }

    .product-cards a{
        width: 20%;
    }

    .product-cards{
        flex-wrap: wrap;
        padding: 20px;
        justify-content: space-between;
    }

}

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

    .product-cards a{
        width: 40%;
    }

    .product-cards{
        justify-content: center;
    }
}

@media only screen and (max-width: 500px){
    .product-section{
        padding: 0 25px 25px 25px;
    }

    .product-cards{
        gap: 20px;
    }
}



/* Team Section */

.team-section{
    border-top: 5px solid var(--main-orange);
}

#team-members{
    border: 2px solid var(--main-orange);
    border-right: 0; border-left: 0;
    min-width: 450px;

    padding: 20px 0 20px 0; 
}

#team-members ul{
    display: flex;
    flex-direction: column;

}

#team-members li{
    font-family: 'Arame';
    color: var(--main-orange);
    font-size: 26px;
    list-style-type: none;
    padding: 6px;

    cursor: pointer;
    transition: .3s;
    user-select: none;
    
}

#team-members li:hover{
    padding-left: 10px;
    background-color: rgba(242, 145, 0, 0.25);
}

#team-members .team-active{
    background-color: var(--main-orange) !important;
    color: #000000;
    padding: 6px; padding-left: 20px !important;
}

#team-information{
    padding: 30px;
    display: flex;
    gap: 30px;
}

#team-information-left img{
    width: 350px; height: 350px;
    object-fit: cover;
    border: 2px solid var(--main-orange);
}


#team-information-left table{
    font-family: "Arame";
    color: var(--main-orange);
    font-size: 24px;
    padding-top: 20px;
}

#team-information-left table tr{
    vertical-align: top;
    
}

#team-information-left table td{
    padding-right: 20px;
    padding-bottom: 5px;
    line-height: 24px;
}


#team-information-right p{
    color: #ffffff;
    font-family: "Montserrat";
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 10px;
}

#team-information-right p a{
    color: var(--main-orange);
    font-weight: 600;
    text-decoration: none;
}

#team-information-right{
    overflow-y: scroll;
    padding-right: 30px;
    max-height: 500px;

}

/* Custom Scroll Bar */
#team-information-right::-webkit-scrollbar {
    width: 3px;
}
/* Custom Scroll Bar */   
#team-information-right::-webkit-scrollbar-thumb {
    background: var(--main-orange); 
}
  

/* Team Section Resizing */

@media only screen and (min-width: 1920px) {
    #team-information{
        max-width: 1250px;
    }
}

@media only screen and (max-width: 1600px) {
    #team-members{
        min-width: 300px;
    }

    #team-members li{
        font-size: 26px;
    }

    #team-information-left img{
        width: 250px; height: 250px;
    }

    #team-information-left table{
        font-size: 18px;
    }

    #team-information-left table td{
        padding-bottom: 4px;
        line-height: 20px;
    }
    
    
}

@media only screen and (max-width: 1250px) {
    .team-section .team-content{
        flex-direction: column;
    }

    #team-information{
        display: flex;
        flex-direction: column;
    }

    #team-information-right{
        width: 100%;
        border-top: 2px solid var(--main-orange);
        padding-top: 10px;
    }

    #team-information-left{
        min-width: 100%;
        display: flex;
        gap: 20px;
    }

    #team-information-left div{
        margin: 0;
    }

    #team-information-left table{
        font-size: 22px;
        padding-top: 0px;
    }

    #team-members ul{
        display: flex;
        flex-direction:row;
        flex-wrap: wrap;
    }
    
    #team-members li{
        width: 48%;
        padding-left: 5px;
    }
    
}

@media only screen and (max-width: 800px){
    #team-information-left img{
        width: 150px; height: 150px;
    }

    #team-information-left table{
        font-size: 18px;
        padding-top: 0px;
    }

    #team-information-left table td{
        padding-right: 5px;
    }

    #team-information-right p{
        font-size: 14px;
        line-height: 24px;
    }

    #team-members{
        border: 2px solid var(--main-orange);
        border-right: 0; border-left: 0;
        min-width: 200px;
    
        padding: 20px 0 20px 0; 
    }
    
    #team-members ul{
        display: flex;
        flex-direction:row;
        flex-wrap: wrap;
    }
    
    #team-members li{
        font-size: 22px;
        width: 48%;
        padding-left: 5px;
    }
}

@media only screen and (max-width: 500px){
    #team-information-right p{
        columns: 1;
    }

    #team-information-left img{
        width: 100px; height: 100px;
    }

    #team-information-left table{
        font-size: 14px;
    }

    #team-information-left table td{
        line-height: 16px;
    }

    #team-members li{
        font-size: 12px;
        width: 48%;
    }

    #team-information{
        padding: 20px;
    }
}

@media only screen and (max-width: 420px){
    #team-information-left img{
        width: 100px; height: 100px;
    }

    #team-information{
        padding: 10px;
    }

    #team-information-left div{
        gap: 10px;
    }

    #team-information-left table{
        font-size: 10px;
    }
    
}




/* Product Page General */

.product-hero-section{
    height: 600px;
    background-repeat: no-repeat; background-size: cover;
    display: flex;

    background-position: center;
    background-color: #000000;
}

.product-hero-content{
    position: absolute;
    display: flex;
    justify-content: center;

    width: 100%; height: inherit;
}

.product-hero-content>div{
    display: flex;
    flex-direction: column;
    align-items: center;
    
    gap: 50px;
}

.product-hero-buttons{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
}


.product-hero-buttons>div:hover{
    background:
      linear-gradient(to right, var(--main-orange) 2px, transparent 2px) 0 0,
      linear-gradient(to right, var(--main-orange) 2px, transparent 2px) 0 100%,

      linear-gradient(to left, var(--main-orange) 2px, transparent 2px) 100% 0,
      linear-gradient(to left, var(--main-orange) 2px, transparent 2px) 100% 100%,

      linear-gradient(to bottom, var(--main-orange) 2px, transparent 2px) 0 0,
      linear-gradient(to bottom, var(--main-orange) 2px, transparent 2px) 100% 0,

      linear-gradient(to top, var(--main-orange) 2px, transparent 2px) 0 100%,
      linear-gradient(to top, var(--main-orange) 2px, transparent 2px) 100% 100%;
    background-repeat: no-repeat;
    background-size: 10px 10px;

}

.product-hero-buttons>div{
    z-index: 1;

    background-repeat: no-repeat;
    background-size: 10px 10px;

}

.product-hero-buttons>div>a{
    font-size: 20px;
    font-family: "Arame";
    color: #ffffff;
    padding: 10px;
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.product-hero-buttons>div>a>div{
    padding: 10px;
    border: 2px solid var(--main-orange);
    transition: .2s;
    text-align: center;
    width: 240px;
}

.product-hero-buttons div>a:hover>div{
    color: #000000;
    background-color: var(--main-orange);
}


.product-page-section{
    border-top: 5px solid var(--main-orange);
    padding-bottom: 0;
}

.product-text{
    columns: 3;
    column-gap: 50px;
    column-fill: balance;
    max-width: 1720px;
}

.product-text p{
    color: white;
    font-family: 'Montserrat';
    font-size: 20px;
    line-height: 30px;

    margin-bottom: 12px;
}


.product-text p a{
    color: var(--main-orange);
    font-weight: 600;
}

.product-video-section{
    border: 2px solid var(--main-orange);
    border-right: 0; border-top: 0;
}

.product-video{
    padding: 40px 0 40px 40px;
}

.product-video-section .product-video-container{
    z-index: 1;
    background:
      linear-gradient(to right, var(--main-orange) 2px, transparent 2px) 0 0,
      linear-gradient(to right, var(--main-orange) 2px, transparent 2px) 0 100%,

      linear-gradient(to left, var(--main-orange) 2px, transparent 2px) 100% 0,
      linear-gradient(to left, var(--main-orange) 2px, transparent 2px) 100% 100%,

      linear-gradient(to bottom, var(--main-orange) 2px, transparent 2px) 0 0,
      linear-gradient(to bottom, var(--main-orange) 2px, transparent 2px) 100% 0,

      linear-gradient(to top, var(--main-orange) 2px, transparent 2px) 0 100%,
      linear-gradient(to top, var(--main-orange) 2px, transparent 2px) 100% 100%;
  
    background-repeat: no-repeat;
    background-size: 40px 40px;

    padding: 30px;

    max-width: 1678px;
    margin-left: auto; margin-right: auto;
}

.product-video-section iframe{
    width: 100%;
    aspect-ratio: 16 / 9;
}

.product-image-section{
    padding: 40px;
    border-right: 2px solid var(--main-orange);
}

.product-image-section div{
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-between;
    row-gap: 40px;
    max-width: 1638px;
    margin-left: auto; margin-right: auto;
}

.product-image{
    width: 31%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    cursor: pointer;
    z-index: 1;
    background: 0;
    padding: 15px;
}

.product-image:hover{
    z-index: 1;
    background:
      linear-gradient(to right, var(--main-orange) 2px, transparent 2px) 0 0,
      linear-gradient(to right, var(--main-orange) 2px, transparent 2px) 0 100%,

      linear-gradient(to left, var(--main-orange) 2px, transparent 2px) 100% 0,
      linear-gradient(to left, var(--main-orange) 2px, transparent 2px) 100% 100%,

      linear-gradient(to bottom, var(--main-orange) 2px, transparent 2px) 0 0,
      linear-gradient(to bottom, var(--main-orange) 2px, transparent 2px) 100% 0,

      linear-gradient(to top, var(--main-orange) 2px, transparent 2px) 0 100%,
      linear-gradient(to top, var(--main-orange) 2px, transparent 2px) 100% 100%;

    background-repeat: no-repeat;
    background-size: 20px 20px;
  
}

.ratshaker-page .product-image{
    transition: .3s;
}

.ratshaker-page .product-image:hover{
    background: 0;
    background-repeat: no-repeat;
    background-size: 0px 0px;

    scale: 105%;
}

/* Product-Modal */

.modal {
    display: none; 
    position: fixed; z-index: 20; left: 0;top: 0;width: 100%; height: 100%; 
  
    overflow: hidden;
    background-color: rgba(0,0,0,0.85);

    justify-content: center;
    align-items: center;
}
  
#modal-image{
    width: 70%;
    border: 1px solid var(--main-orange);
}

.ratshaker-page #modal-image{
    border: none;
}

#modal-left-arrow, #modal-right-arrow{
    color: var(--main-orange);
    cursor: pointer;
    z-index: 50;
    margin: 20px;

    font-family: "Monsterrat";
    font-size: 50px;
    user-select: none;
}

#modal-background{
    position:absolute; 
    width: 100%; 
    height: 100%;
}


/* 100% Image Width on Smaller Screens */
@media only screen and (max-width: 800px){
    .modal{
        padding: 25px;
    }
    #modal-image {
        width: 100%;
    }

    #modal-left-arrow, #modal-right-arrow{
        margin: 5px;
        font-size: 25px;
        position: absolute;
    }

    #modal-left-arrow{
        left: 30px;
    }

    #modal-right-arrow{
        right: 30px;
    }
}

/* Product Page Resizing */

@media only screen and (min-width: 1920px){
    .product-video{
        padding: 40px;
    }
}

@media only screen and (max-width: 1250px){
    .product-page-section .default-content{
        margin-bottom: 0;
    }

    .product-text{
        columns: 2;
    }

    .product-image-section div{
        row-gap: 35px;
    }

    body .product-page-section{
        padding-bottom: 0;
    }
}

@media only screen and (max-width: 800px){
    .product-hero-content>div{
        gap: 25px;
    }

    .product-text{
        columns: 1;
    }
    
    .product-text p{
        font-size: 16px;
        line-height: 24px;
    }

    .product-image-section{
        padding: 20px;
    }

    .product-image-section div{
        justify-content: space-evenly;
        gap: 20px;
    }

    .product-image{
        width: 48%;
    }

    .product-video-section .product-video-container{
        padding: 20px;
    }

    .product-hero-section{
        height: 400px;
    }

    .product-hero-buttons{
        gap: 20px;
    }
    
    .product-hero-buttons>div{
        background-size: 8px 8px;

    }
    
    .product-hero-buttons>div>a>div{
        font-size: 14px;
        padding: 8px;
        width: 160px;
    }

}

@media only screen and (max-width: 650px){
    .product-image{
        width: 100%;
    }

    .product-image-section{
        padding: 20px 20px 20px 0;
    }

    .product-hero-buttons{
        gap: 10px;
    }
}

@media only screen and (max-width: 500px){
    .product-video-section .product-video-container{
        background-size: 0px 0px;
        padding: 0px;
    }

    .product-video{
        padding: 20px 0 20px 20px;
    }
}


/* Per Page styling for Product Page */

.neat-hero-section{
    background-image: url("img/negative-atmosphere-hero.jpg");
}

.neat-hero-section .product-hero-content img{
    width: 600px;
    padding-top: 50px;
}

.neat-er-hero-section{
    background-image: url("img/negative-atmosphere-er-hero.jpg");
}

.neat-er-hero-section .product-hero-content img{
    width: 350px;
    padding-top: 50px;
}


/* Per Page Resizing */

@media only screen and (max-width: 800px){
    .neat-hero-section .product-hero-content img{
        width: 300px;
    }

    .neat-er-hero-section .product-hero-content img{
        width: 200px;
    }
}






/* Ratshaker Page */

.ratshaker-page{
    /* background-color: #ffc540; */
    background-image: url("img/ratshaker-grunge.jpg");
    background-color: #f7d579;
}

.ratshaker-hero{
    background-color: #f7d579;

    background-image: url("img/ratshaker-hero.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    
    display: flex;
    justify-content: center;
    align-items: center;

    height: 600px;
}

.ratshaker-hero img{
    width: 600px;
}

.ratshaker-grunge-divider{
    z-index: 0;

    background-image: url("img/ratshaker-hero-divider.png");
    height: 300px;
    width: 100%;

    position: absolute;
    top: -150px;
    left: 0;
}

.ratshaker-content{
    padding: 0px 100px 50px 100px;
    font-family: 'Archivo';


    max-width: 75%;
}

.ratshaker-title{
    z-index: 1;
    position: relative;
}

.ratshaker-title h2, .ratshaker-content h2{
    font-size: 70px;
    font-weight:900;
    font-style: italic;
    color: #be3434;

    text-shadow: 4px 4px 0 #000000;
    padding-bottom: 30px;
}

.ratshaker-content p{
    font-size: 32px;
    font-weight: 400;
    line-height: 42px;
    padding-bottom: 20px;
}

.ratshaker-content ul{
    list-style-type: none;
}

.ratshaker-content ul li{
    font-size: 32px;
    font-weight: 400;
    line-height: 42px;
    padding-bottom: 15px;

    display: flex;
    align-items: start;
}

.ratshaker-content ul li::before{
    content: "•";
    padding-right: 12px;
    color: #be3434;
    font-size: 80px;
    text-shadow: 4px 4px 0 #000000;
}

.ratshaker-content i{
    font-weight: 300;
}

.ratshaker-cta{
    background-image: url("img/ratshaker-divider.jpg");
    height: 345px;

    padding: 100px;

    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.ratshaker-cta a{
    width: 25%;
    background-color: #ffffffbc;
    border: 5px solid #be3434;
    border-radius: 20px;

    padding: 20px;

    display: flex;
    justify-content: center; align-items: center;

    color: #be3434;
    font-family: 'Archivo';
    font-size: 24px;
    font-style: italic;
    font-weight: 900;
    text-decoration: none;
    text-transform: uppercase;

    transition: .2s;
}

.ratshaker-cta a:hover{
    background-color: #be3434;
    color: #ffffff;
}

.ratshaker-page .ratshaker-image-section>div{
    max-width: none;
}

#rat{
    position: fixed;
    right: -180px;
    transform: rotate(-5deg);
    width: 700px;

    user-select: none;
    pointer-events: none;

    z-index: 10;
}

.ratshaker-page .product-image-section{
    border-right: 0;
}


/* Ratshaker Resizing */

@media only screen and (max-width: 1700px){
    #rat{
        display: none;
    }

    .ratshaker-content{
        max-width: 100%;
    }

    .ratshaker-cta a{
        font-size: 20px;
        padding: 18px;
        border-radius: 16px;
    }
}


@media only screen and (max-width: 1500px){
    .ratshaker-cta a{
        font-size: 15px;
        padding: 16px;
        border-radius: 12px;
    }

    .ratshaker-title h2, .ratshaker-content h2{
        font-size: 50px;
        padding-bottom: 20px;
    }
    
    .ratshaker-content p{
        font-size: 24px;
        line-height: 32px;
        padding-bottom: 10px;
    }

    .ratshaker-content ul li{
        font-size: 24px;
        line-height: 32px;
        padding-bottom: 10px;
    }

    .ratshaker-content ul li::before{
        font-size: 70px;
    }
}

@media only screen and (max-width: 1250px){
    .ratshaker-cta{
        flex-wrap: wrap;
        gap: 20px;
    }
    .ratshaker-cta a{
        width: 48%;
    }

    .ratshaker-hero img{
        width: 500px;
    }
}

@media only screen and (max-width: 800px){
    .ratshaker-content{
        padding: 0px 50px 25px 50px;
    }

    .ratshaker-hero{
        height: 400px;
    }

    .ratshaker-hero img{
        width: 300px;
    }

    .ratshaker-cta{
        gap: 15px;
        align-items: center;
        padding: 100px 50px 100px 50px;
    }
    .ratshaker-cta a{
        font-size: 12px;
        padding: 10px;
    }
}

@media only screen and (max-width: 650px){
    .ratshaker-page .ratshaker-image-section{
        padding: 25px;
    }
}

@media only screen and (max-width: 500px){
    .ratshaker-content{
        padding: 0px 25px 15px 25px;
    }

    .ratshaker-hero img{
        width: 280px;
    }

    .ratshaker-cta{
        gap: 15px;
        padding: 25px;
    }
    .ratshaker-cta a{
        width: 100%;
        font-size: 16px;
        padding: 15px;
        background-color: #ffffff;
    }
    
    .ratshaker-content p{
        font-size: 18px;
        line-height: 28px;
    }

    .ratshaker-content ul li{
        font-size: 18px;
        line-height: 28px;
    }

    .ratshaker-content ul li::before{
        font-size: 55px;
        padding-right: 10px;
    }

    .ratshaker-title h2, .ratshaker-content h2{
        font-size: 36px;
        padding-bottom: 20px;
    }
}


/* Default Text Page */

.default-text-page{
    background-color: var(--dark-grey);
    color: #ffffff;

    font-family: 'Montserrat';
    line-height: 30px;

    display: flex;
    justify-content: center;

    padding: 50px 100px 100px 100px;
}

.default-text-page div{
    width: 1250px;
}

.default-text-page ul li{
    list-style-position: inside;
}

.default-text-page a{
    text-decoration: none;
    font-weight: 600;
    color: var(--main-orange);
}

.default-text-page h1, .default-text-page h2, .default-text-page h3{
    padding-top: 25px;
}

.default-text-page hr{
    margin: 20px 0 ;
}

.default-text-orange{
    color: var(--main-orange);
}

.default-text-orange a{
    color: #ffffff;
    font-weight: 500;
}



@media only screen and (max-width: 800px){
    .default-text-page{
        font-size: .8em;
        line-height: 26px;
        padding: 25px;
    }
}






/* ACCESSILOGUE */


#accessilogue-page .heroText, #accessilogue-page .contentGrid, #accessilogue-page  .testimonial,#accessilogue-page .imageGrid,#accessilogue-page .content,#accessilogue-page .accessilogue-footer{
    font-family: "Poppins", sans-serif;
}


@media only screen and (max-width: 1200px) {
    #accessilogue-page .curvyLine{
        height: auto;
        top: 0;
        bottom: -180%;
    }

    #accessilogue-page .curvyLine img{
        width: 3400px;
        min-width: 3400px;
        
    
        user-select: none;
        pointer-events: none;
    }

    #accessilogue-page .wrapper{
        width: 100%;
        padding: 20px;
    }

    #accessilogue-page .heroText h1{
        font-size: 70px;
        line-height: 75px;
    }

    .heroText .button{
        padding-top: 30px;
    }
    .heroText .button a{
        position:relative;
        top: auto;
        right: auto;
    }

    #accessilogue-page .header .wrapper{
        height: 150px;
    }
    
    #accessilogue-page .header img{
        width: 200px;
        padding-top: 10px;
    }

    #accessilogue-page .contentGrid div{
        grid-column-start: 1 !important;
        grid-column-end: 4 !important;
    }

    #accessilogue-page .content h2{
        font-size: 36px;
        line-height: 45px;

    }

    #accessilogue-page .content p{
        font-size: 24px;
        line-height: 38px;
    }

    #accessilogue-page .content ul li{
        font-size: 24px;
        line-height: 38px;
    }

    #accessilogue-page .outline{
        max-width: 100%;
    }

    #accessilogue-page .contentGrid{
        row-gap: 100px;
    }

    #accessilogue-page .creamBackground div .content{
        width: 100%;
        padding: 20px;
    }

    #accessilogue-page .creamBackground{
        margin-top: 0px;
        background-size: 100%;
        background-position: 200px;
    }

    #accessilogue-page .footerContent{
        font-size: 10px;
    }

    #accessilogue-page .footerLogos{
        gap: 8px;
    }

    #accessilogue-page .footerLogos div:nth-child(odd){
        width: 50px;
    }
    
    #accessilogue-page .footerLogos div:nth-child(even){
        width: 30px;
    }

    #accessilogue-page .footerCTA a{
        font-size: 24px;
        padding: 10px;
        border-radius: 12px;
        margin: 0;
    }

    #accessilogue-page .testimonial{
        display: none;
    }

    #accessilogue-page .imageGrid{   
        gap: 20px;
        padding: 75px 0 75px 0;
    }
    #accessilogue-page .imageGrid .image{
        border-radius: 20px;
    }
    

    
}
/* 600px */
@media only screen and (max-width: 600px) {
    #accessilogue-page .curvyLine img{
        width: 2400px;
        min-width: 2400px;
        margin-right: -20px;
    
        user-select: none;
        pointer-events: none;
    }

    #accessilogue-page .wrapper{
        width: 100%;
        padding: 20px;
    }

    #accessilogue-page .heroText h1{
        font-size: 50px;
        line-height: 60px;
    }

    .heroText .button{
        padding-top: 30px;
    }
    .heroText .button a{
        position:relative;
        top: auto;
        right: auto;
    }

    #accessilogue-page .header .wrapper{
        height: 150px;
    }
    
    #accessilogue-page .header img{
        width: 150px;
        padding-top: 10px;
    }

    #accessilogue-page .contentGrid div{
        grid-column-start: 1 !important;
        grid-column-end: 4 !important;
    }

    #accessilogue-page .content h2{
        font-size: 28px;
        line-height: 32px;

    }

    #accessilogue-page .content p{
        font-size: 18px;
        line-height: 32px;
    }

    #accessilogue-page .content ul li{
        font-size: 18px;
        line-height: 32px;
    }

    #accessilogue-page .outline{
        max-width: 100%;
    }

    #accessilogue-page .contentGrid{
        row-gap: 100px;
    }

    #accessilogue-page .creamBackground div .content{
        width: 100%;
        padding: 20px;
    }

    #accessilogue-page .creamBackground{
        margin-top: 0px;
        background-size: 100%;
        background-position: 200px;
    }

    #accessilogue-page .footerContent{
        font-size: 6px;
    }

    #accessilogue-page .footerLogos{
        gap: 5px;
    }

    #accessilogue-page .footerLogos div:nth-child(odd){
        width: 35px;
    }
    
    #accessilogue-page .footerLogos div:nth-child(even){
        width: 20px;
    }

    #accessilogue-page .footerCTA a{
        font-size: 12px;
        padding: 8px;
        border-radius: 8px;
        margin: 0;
    }

    #accessilogue-page .testimonial{
        display: none;
    }

    #accessilogue-page .imageGrid{
        grid-template-columns: 1fr;
        grid-template-rows: 1fr 1fr 1fr 1fr;
    
        gap: 20px;
    
        padding: 75px 0 75px 0;
    
    }

    #accessilogue-page .imageGrid .image{
        border-radius: 20px;
        font-size: 12px;
    }
    
    #accessilogue-page .imageGrid-5{
        grid-column: 1 / span 2;
        grid-row: 3 / span 2;
    }

    #accessilogue-page .videoEmbed iframe{
        border-radius: 20px;
    }
    
}

/* Main CSS */

#accessilogue-page{
    background-color: #244087;
}

.curvyLine{
    z-index: -1;
    width: 100%;
    position: absolute;
    top: 0%;
    height: auto;
    left: 0%;
    right: 0%;
    overflow: hidden;
}

.curvyLineWrapper{
    width: 100%;
    justify-content: center;
    display: flex;
    position: relative;
}

.curvyLine img{
    width: 3800px;
    min-width: 3800px;
    margin-top: -24px;

    user-select: none;
    pointer-events: none;
}

.wrapper{
    width: 1200px;
    margin-left: auto; margin-right: auto;
    
}

/*  Accessilogue Header */

.header .wrapper{
    height: 280px;
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.header img{
    width: 280px;
    padding-right: 10px;

    padding-top: 20px;
}

.button{
    position: relative;
}

.button a{
    background-color: #ffedc9;
    color:#244087;

    position: absolute;
    top: -65px;
    right: 475px;

    text-decoration: none;
    font-size: 20px;
    font-weight: 600;
    padding: 10px 20px 10px 20px;
    border-radius: 20px;

    transition: .3s;
}

.button1 a{
    position: absolute;
    top: -65px;
    right: 438px;
}

.button2 a{
    position: absolute;
    top: -65px;
    right: 190px;
}


.button a:hover{
    background-color: white;
}



/* Hero Text */

.heroText{
    padding-bottom: 100px;
}

.heroText h1{
    font-size: 80px;
    line-height: 90px;

    color: white;
}

.heroText h1 span{
    color:  #ffedc9;
}



/* Content */

.content h2{
    color: #ffedc9;
    font-size: 46px;
    line-height: 52px;

}

.content p, .content ul li{
    font-size: 30px;
    font-weight: 400; line-height: 48px;
    color: white;
}

.content a{
    color:#244087;
    font-weight: 500;
    text-decoration: none;
}

.content .inlineLogo{
    width: 25px;
    height: 25px;
}


.content ul{
    list-style-type: circle;
    list-style-position: outside;
    padding-left: 30px;

}

.content ul li{
    padding-left: 10px
}


.content ul img{
    width: 20px;
    margin-left: 15px;
}

.outline{
    border: 3px solid #ffedc9;
    padding: 20px; border-radius: 30px;
    max-width: 80%;
}

.contentGrid div{
    width: 100%;
}

.contentGrid div:nth-child(odd){
    grid-column-start: 1;
    grid-column-end: 3;
    grid-row-start: auto;  
}
.contentGrid div:nth-child(even){
    grid-column-start: 2;
    grid-column-end: 4;
    grid-row-start: auto;

    text-align: right;
}


.contentGrid{
    display: grid;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr;

    row-gap: 160px;
}

/* Cream Background */

.creamBackground{
    width: 100%;
    background-color:#ffedc9;
    background-image: url("whiteCircle.svg");
    background-repeat: no-repeat;
    background-size: 50%;
}

.creamBackground div .content{
    width: 1200px;
    margin-right: auto; margin-left: auto;
    padding: 50px 0 50px 0;
}

.creamBackground div .content h2{
    color:#244087;
}

.creamBackground div .content p{
    color: black;
}

/* Image Grid */

.imageGrid{
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;

    gap: 40px;

    padding: 100px 0 100px 0;

}

.imageGrid .image{
    width: 100%;
    aspect-ratio: 2 / 1 ;
    background-color: #ffedc9;
    border-radius: 25px;

    background-size: cover;
    background-position: 20%;

    padding: 12px;
    font-size: 16px;
    color: white;
    
    display: flex;
    align-items: end;
    justify-content: center;
}



.image-5{
    background-image: url("accessilogue/Gameplay1.jpg");
}

.image-6{
    background-image: url("accessilogue/Gameplay2.jpg");
}

.image-7{
    background-image: url("accessilogue/Gameplay3.jpg");
}

.image-8{
    background-image: url("accessilogue/Gameplay4.jpg");
}



/* Footer */

.accessilogue-footer{
    background-color:#122045;
}

.footerContent{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    font-size: 12px;
    color: white;
}

.footerContent a{
    color: white;
    text-decoration: none;
}

.footerContent div{
    width: 33%;
    display: flex;
}

.footerContent div:nth-child(1){
    justify-content: left;
}

.footerContent div:nth-child(2){
    justify-content: center; 
}

.footerContent div:nth-child(3){
    justify-content: right;
}
.footerLogos{
    display: flex;
    align-items: center;
    gap: 20px;
}

.footerLogos div{
    height: 100%;
    display: flex;
    align-items: center;
}

.footerLogos div{
    width: 50px;
}


.footerLogos img{
    width: 100%;
}

.footerCTA{
    text-align: center;
}

.footerCTA a{
    background-color: #ffedc9;
    color:#244087;
    text-decoration: none;
    padding: 16px 24px 16px 24px;
    border-radius: 20px;
    transition: .3s;
    border: 3px solid #122045;

    font-size: 24px;
    font-weight: 700;
}

.footerCTA a:hover{
    background-color: white;
}



/* Testimonial */

.testimonial{
    position: relative;
}

.testimonialText{
    background-image: url("speechBubble.svg");
    background-repeat: no-repeat;
    background-position-x: 0; background-position-y: -10px; 
    background-size: 46%;

    padding-left: 70px; padding-bottom: 10px;

    position:absolute;
    top: -250px;
    right: 0;

    max-width: 470px;
    height: 220px;

    display: flex;
    justify-content: center;
    align-items: center;

    font-size: 20px;
    font-weight: 500;
    color: white;
}

.testimonial .stars{
    display: flex;
    justify-content: end;
    padding: 5px 30px 0 0;
}

.testimonial .stars img{
    width: 20px;
}


/* Video Embed */

.videoEmbed{
    padding: 80px 0 80px 0;
}

.videoEmbed iframe{
    aspect-ratio: 16 / 9 ;
    border-radius: 50px;
}



/* Accessilogue Header & Footer Colour */

#accessilogue-page #header, #accessilogue-page #header .header-submenu div{
    background-color: #27386a;
}


#accessilogue-page #header-social .header-social-icon li:hover img, #accessilogue-page .footer .footer-socials li:hover img{
    filter:invert(0%) !important;
}

#accessilogue-page #header-social .header-social-icon li, #accessilogue-page .footer .footer-socials a{
    transition: .3s;
}

#accessilogue-page #header-social .header-social-icon li:hover, #accessilogue-page .footer .footer-socials a:hover{
    background-color: #ffffff;
}




/* Cookie Banner Styling */

#cookie-banner{
    z-index: 100;
    font-family: "Montserrat";
    position: fixed; 
    bottom: 0; left: 0; 
    width: 100%; 
    background: #111111;
    color: white; 
    text-align: center; 
    padding: 10px;

    display: flex;
    gap: 10px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    
    font-size: 16px;
}

#cookie-banner #accept-cookies, #cookie-banner #decline-cookies{
    margin: 5px;
    padding: 5px 10px; 
    color: white; 
    border: none;

    cursor: pointer;
}

#cookie-banner #accept-cookies{
    background-color: #f29100;
}

#cookie-banner #decline-cookies{
    background-color: #333333; 
}

@media only screen and (max-width: 800px){
    body #cookie-banner{
        font-size: 12px;
    }
}





/* Latest News Page */

.latest-news-section{
    padding-bottom: 40px;
    border-top: 5px solid var(--main-orange);
}

.latest-news-content{
    border: 2px solid var(--main-orange);
    border-left: 0; border-top: 0;
    padding: 40px 40px 40px 0;

    display: flex;
    justify-content: left;
}

.latest-news-content-inner{
    border-left: 2px solid var(--main-orange);
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 50px;

    height: inherit;
    width: 100%;

    

    z-index: 1;
    background:
      linear-gradient(to right, var(--main-orange) 2px, transparent 2px) 0 0,
      linear-gradient(to right, var(--main-orange) 2px, transparent 2px) 0 100%,
      linear-gradient(to bottom, var(--main-orange) 2px, transparent 2px) 0 0,
      linear-gradient(to top, var(--main-orange) 2px, transparent 2px) 0 100%;

    background-repeat: no-repeat;
    background-size: 40px 2px;

    padding: 30px 0 30px 30px;
}

.news-item{
    background-color: #000000;
    border: 2px solid var(--main-orange);
    border-right: 0;

    display: flex;
    flex-wrap: wrap;

    padding: 20px;
    width: 500px;
    height: 480px;
}

.news-item>div:nth-child(1){
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Arame-Thin';
    width: 100%;

    border-bottom: 1px solid #a0a0a0;
    margin-bottom: 20px;
    padding-bottom: 10px;
}

.news-item div p a{
    color: var(--main-orange);
    text-decoration: none;
}

.news-item>div:nth-child(1) h2{
    color: var(--main-orange);
    font-size: 20px;
}

.news-item>div:nth-child(1) p{
    color: #ffffff;
    font-size: 14px;
}

.news-item>div:nth-child(2) img{
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.news-item>div:nth-child(2) p{
    font-family: "Montserrat";
    color: #ffffff;
    font-size: 16px;
    line-height: 24px;
}


.news-item .read-more-button{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    height: 60px;

    margin-top: 10px;
}


.read-more-button>div:hover{
    background:
      linear-gradient(to right, var(--main-orange) 2px, transparent 2px) 0 0,
      linear-gradient(to right, var(--main-orange) 2px, transparent 2px) 0 100%,

      linear-gradient(to left, var(--main-orange) 2px, transparent 2px) 100% 0,
      linear-gradient(to left, var(--main-orange) 2px, transparent 2px) 100% 100%,

      linear-gradient(to bottom, var(--main-orange) 2px, transparent 2px) 0 0,
      linear-gradient(to bottom, var(--main-orange) 2px, transparent 2px) 100% 0,

      linear-gradient(to top, var(--main-orange) 2px, transparent 2px) 0 100%,
      linear-gradient(to top, var(--main-orange) 2px, transparent 2px) 100% 100%;
    background-repeat: no-repeat;
    background-size: 10px 10px;

}

.read-more-button>div{
    z-index: 1;

    background-repeat: no-repeat;
    background-size: 10px 10px;

}

.read-more-button>div>a{
    font-size: 14px;
    font-family: "Arame";
    color: #ffffff;
    padding: 10px;
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.read-more-button>div>a>div{
    padding: 10px 20px;
    border: 2px solid var(--main-orange);
    transition: .2s;
    text-align: center;
}

.read-more-button div>a:hover>div{
    color: #000000;
    background-color: var(--main-orange);
}

/* Resizing for Latest News Page */

@media only screen and (max-width: 1250px){
    .news-item{
        padding: 20px;
        width: 100%;
    }
}

@media only screen and (max-width: 600px){
    .news-item{
        height: auto;
    }
    .news-item>div:nth-child(2) img{
        height: 150px;
    }

    .news-item>div:nth-child(1) h2{
        font-size: 16px;
    }

    .news-item>div:nth-child(1) p{
        font-size: 10px;
    }

    .news-item>div:nth-child(2) p{
        font-size: 14px;
        line-height: 20px;
    }

    .latest-news-section .sub-header{
    align-items:start;
    flex-direction: column;
    gap: 10px;
}
}

@media only screen and (max-width: 400px){
    .news-item>div:nth-child(2) img{
        height: 120px;
    }

    .news-item>div:nth-child(1) h2{
        font-size: 14px;
    }

    .news-item>div:nth-child(1) p{
        display: none;
    }

    .news-item>div:nth-child(2) p{
        font-size: 12px;
        line-height: 18px;
    }
}



.go-back-button{
    position: absolute;
    left: 100px;
    z-index: 2;
}

.go-back-button a{
    font-family: 'Arame-Thin';
    color: var(--main-orange);
    font-size: 30px;
    text-decoration: none;

    display: flex;
    align-items: center;
}

.go-back-button a span{
    font-size: 36px;
    padding-right: 10px;
}

@media only screen and (max-width: 1200px){

    .go-back-button a{
        font-size: 22px;
    }

    .go-back-button a span{
        font-size: 22px;
        padding-right: 5px;
    }

}


@media only screen and (max-width: 800px){
    .go-back-button{
        left: 50px;
    }

    .go-back-button a{
        font-size: 12px;
    }

    .go-back-button a span{
        font-size: 20px;
        padding-right: 5px;
    }

}

@media only screen and (max-width: 500px){
    .go-back-button{
        left: auto;
        right: auto;
        top: 220px;
        margin-right: 20px;
    }

    .go-back-button a{
        font-size: 12px;
    }
    
}


/* Homepage Latest News Hero */

.latest-news-hero{
    position: absolute;
    right: 100px;
    top: 715px;
    
    border: 2px solid var(--main-orange);
    border-bottom: 0;
    width: 350px;


    background-color: #00000078;
    z-index: 2;

    padding: 18px;

}

.latest-news-hero>div:nth-child(1){
    display: flex;
    justify-content: space-between;
    align-items: baseline;

    font-family: 'Arame-Thin';
    color: #ffffff;
}

.latest-news-hero hr{
    border: 1px solid #ffffff;
    margin: 10px 0;
}

.latest-news-hero>div:nth-child(1) h3{
    font-size: 18px;
}

.latest-news-hero>div:nth-child(1) p{
    font-size: 12px;
}

.latest-news-hero>div:nth-child(3){
    font-family: 'Montserrat';
    font-weight: 400;
}

.latest-news-hero>div:nth-child(3) h3{
    font-size: 18px;
    color: var(--main-orange);
    text-transform: uppercase;
    padding-bottom: 8px;
    font-weight: 400;
}

.latest-news-hero > div:nth-child(3) p a{
    color: var(--main-orange);
    text-decoration: none;
}


.latest-news-hero>div:nth-child(3) p{
    font-size: 14px;
    color: #ffffff;
    padding-bottom: 16px;
}


/* Button width */
.latest-news-hero>div:nth-child(4){
    width: 140px;
}

/* Button font size */
.latest-news-hero>div:nth-child(4) a{
    font-size: 20px;
}

.hud-square-news-hero{
    position: absolute;
    right: 0;
    bottom: -32px;
    padding-right: 10px;
}

/* Custom bottom border which doesn't go full way across */
.bottom-border-left, .bottom-border-right{
    position: absolute;
    height: 2px;
    background-color: var(--main-orange);
    bottom: 0;
}

.bottom-border-left{
    width: 240px;
    left: 0;
}

.bottom-border-right{
    width: 20px;
    right: 0;
}


/* Removes element when page size is <1350px */

@media only screen and (max-width: 1350px){
    .latest-news-hero{
        display: none;
    }
}