/* CSS Reset */
*, *::before, *::after {
    box-sizing: border-box;
}

* {
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior:smooth
}

body {
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

img, picture, video, canvas, svg {
    display: block;
    max-width: 100%;
}

input, button, textarea, select {
    font: inherit;
}

p, h1, h2, h3, h4, h5, h6 {
    overflow-wrap: break-word;
}

#root, #__next {
    isolation: isolate;
}

.scroll-margin {
    scroll-margin-top: 5rem;
}

:root {
    /* Top-level */
    background: var(--clr-white);

    /* Font families */
    --ff-heading: myriad-pro, sans-serif;
    --ff-subheading: myriad-pro, sans-serif;
    --ff-default: myriad-pro, sans-serif;

    /* Font sizes */
    --fs-066: 0.66rem;
    --fs-075: 0.75rem;
    --fs-090: 0.9rem;
    --fs-100: 1rem;
    --fs-110: 1.1rem;
    --fs-120: 1.2rem;
    --fs-130: 1.3rem;
    --fs-140: 1.4rem;
    --fs-150: 1.5rem;
    --fs-180: 1.8rem;
    --fs-200: 2rem;
    --fs-220: 2.2rem;
    --fs-250: 2.5rem;
    --fs-280: 2.8rem;
    --fs-300: 3rem;
    --fs-350: 3.5rem;
    --fs-400: 4rem;
    --fs-500: 5rem;
    --fs-600: 6rem;
    --fs-700: 7rem;
    --fs-800: 8rem;

    /* Font weights */
    --fw-light: 300;
    --fw-regular: 400;
    --fw-medium: 500;
    --fw-semibold: 600;
    --fw-bold: 700;

    /* Font line heights */
    --fl-xxs: 0.8;
    --fl-xs: 1;
    --fl-s: 1.2;
    --fl-m: 1.5;
    --fl-l: 1.8;
    --fl-xl: 2;
    --fl-xxl: 3.5;

    /* Colors */
    --clr-white: #fff;
    --clr-light-gray: #fafafa;
    --clr-light-gray-2: #f5f5f5;
    --clr-light-med-gray: #eaeaea;
    --clr-med-gray: #999;
    --clr-dark-gray: #666;
    --clr-x-dark-gray: #333;
    --clr-black: #000;
    --clr-accent: #49c3f1;
    /* --clr-accent: #0077ff; */
    --clr-accent-hover: #43b8e3;

    --video-bg-height-mobile: 18rem;
    --video-bg-height-tablet: 24rem;
    --video-bg-height-laptop: 28rem;
    --video-bg-height-desktop: 48rem;

}

/* ================ */
/* Breakpoints */
/* ================ */
/* @media screen and (min-width: 768px) and (max-width: 1023px) {
    .navbar {
        max-width: 60rem;
    }
}

@media screen and (min-width: 1024px) and (max-width: 1439px) {
    .navbar {
        max-width: 72rem;
    }
}

@media screen and (min-width: 1440px) {
    .navbar {
        max-width: 90rem;
    }
} */

/* ================ */
/* Headings & body text */
/* ================ */
html, body, h1, h2, h3, h4, h5, h6, p, a, ul, li, button {
    font-family: var(--ff-default);
}

h1 {
    font-size: var(--fs-300);
    font-weight: var(--fw-regular);
    line-height: var(--fl-s);
    margin: 0 0 2.5rem 0; 
}

h1 a {
    color: var(--clr-accent);
    font-weight: var(--fw-bold);
}

h2 {
    font-size: var(--fs-200);
    font-weight: var(--fw-regular);
    line-height: var(--fl-s);
    margin: 0 0 2rem 0;
}

h3 {
    font-size: var(--fs-180);
    font-weight: var(--fw-regular);
    line-height: var(--fl-s);
    margin: 0 0 1.8rem 0;
}

h4 {
    font-size: var(--fs-150);
    font-weight: var(--fw-regular);
    line-height: var(--fl-s);
    margin: 0 0 1.5rem 0;
}

h5 {
    font-size: var(--fs-120);
    font-weight: var(--fw-regular);
    line-height: var(--fl-s);
    margin: 0 0 1.2rem 0;
}

h6 {
    font-size: var(--fs-110);
    font-weight: var(--fw-regular);
    line-height: var(--fl-s);
    margin-bottom: 1rem;
}

p {
    font-size: var(--fs-100);
    font-weight: var(--fw-regular);
    line-height: var(--fl-m);
    margin: 0 0 1rem 0;
}

a {
    text-decoration: none;
    color: var(--clr-black);
}

@media screen and (min-width: 1024px) and (max-width: 1439px) {
    h1 {
        font-size: var(--fs-350); 
    }
    
    h2 {
        font-size: var(--fs-250);
    }
    
    h3 {
        font-size: var(--fs-220);
    }
    
    h4 {
        font-size: var(--fs-180);
    }
    
    h5 {
        font-size: var(--fs-150);
    }
    
    h6 {
        font-size: var(--fs-130);
    }
    
    p {
        font-size: var(--fs-110);
    }
}

@media screen and (min-width: 1440px) {
    h1 {
        font-size: var(--fs-400); 
    }
    
    h2 {
        font-size: var(--fs-280);
    }
    
    h3 {
        font-size: var(--fs-250);
    }
    
    h4 {
        font-size: var(--fs-200);
    }
    
    h5 {
        font-size: var(--fs-180);
    }
    
    h6 {
        font-size: var(--fs-150);
    }
    
    p {
        font-size: var(--fs-120);
    }
}

/* ================ */
/* Buttons */
/* ================ */
.base-button {
    background: var(--clr-accent);
    border: none;
    border-radius: 0.5rem;
    padding: 0.25rem 1rem;
}

.base-button:hover {
    background: var(--clr-accent-hover);
    transition: ease-in-out 0.3s;
}

.base-button a {
    color: var(--clr-white);
    font-family: var(--ff-heading);
    font-size: var(--fs-120);
    font-weight: var(--fw-bold);
    text-align: center;
}

.landing-button {
    background: -webkit-linear-gradient(45deg, #65cdf3, #1014f4);
}

.landing-button:hover {
    background: -webkit-linear-gradient(45deg, #48bbe4, #0003c7);
}

/* ================
/* Nav */
/* ================ */
@media screen and (min-width: 768px) and (max-width: 1023px) {
    .navbar {
        max-width: 60rem;
    }
}

@media screen and (min-width: 1024px) and (max-width: 1439px) {
    .navbar {
        max-width: 72rem;
    }
}

@media screen and (min-width: 1440px) {
    .navbar {
        max-width: 90rem;
    }
}

.navbar-container {
    position: sticky;
    top: 0;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    z-index: 10;
    background: rgba(0, 0, 0, 0.95);
    border-bottom: solid 2px rgba(255, 255, 255, 0.9);
}

.navbar {
    padding: 1rem 2rem;
}

.header-nav-logo {
    max-width: 10rem;
}

.mobile-menu-icon {
    max-width: 1.5rem;
}

nav ul {
    list-style-type: none;
}

nav ul li {
    display: inline-flex;
}

nav ul li a {
    color: var(--clr-white);
    font-family: var(--ff-heading);
    font-size: var(--fs-120);
    font-weight: var(--fw-semibold);
    line-height: var(--fl-xxl);
}

nav ul li ul li a {
    line-height: var(--fl-s);
}

input[type="checkbox"]:not(:checked) ~ ul {
    display: none;
}

input[type="checkbox"]:checked + ul {
    margin-top: 2rem;
}

nav label {
    position: absolute;
    top: 1.15rem;
    right: 2rem;
    text-align: right;
    display: block;
    align-self: center;
}

nav ul {
    display: flex;
    flex-direction: column;
}

#mobile-menu {
    display: none;
}

.nav-link {
    margin: 0 0 1rem 1rem;
}

.nav-contact-button {
    background-color: var(--clr-accent);
    padding: 0.2rem 0.5rem 0.2rem 0.8rem;
    border-radius: 0.5rem;
    color: var(--pl-clr-white);
    width: 8rem;
}

.nav-contact-button a {
    color: var(--clr-white);
    font-family: var(--ff-heading);
    font-size: var(--fs-120);
    font-weight: var(--fw-semibold);
}

.nav-contact-button:hover {
    background: var(--clr-accent-hover);
    transition: ease-in-out 0.3s;
}

/* ================ */
/* Nav - desktop-style navbar for larger screens (including tablet) */
/* ================ */
@media screen and (min-width: 768px) {
    .navbar {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        height: 4rem;
        align-items: center;
        z-index: 100;
    }

    .main-nav-center ul {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    /* Dropdown menu */
    li {
        display: block;
    }

    ul li ul {
        visibility: hidden;
        opacity: 0;
        position: absolute;
        transition: all 0.5s ease;
        margin-top: 1rem;
        /* left: 0; */
        display: none;
    }

    ul li:hover > ul,
    ul li ul:hover {
        visibility: visible;
        max-width: 20rem;
        background: rgba(0, 0, 0, 0.95);
        border: 2px solid rgba(255,255,255,0.9);
        border-radius: 0 0 0.5rem 0.5rem;
        opacity: 1;
        display: block;
        margin: 4.1rem 0 0 0;
    }

    ul li ul li {
        clear: both;
        width: 100%;
        margin: 1rem;
        text-align: left;
    }

    ul li ul li:last-child {
        margin-bottom: 2rem;
    }
    /* End dropdown menu */

    input[type="checkbox"]:not(:checked) ~ ul {
        display: flex;
    }

    input[type="checkbox"]:checked + ul {
        margin-top: 0;
    }

    nav input[type="checkbox"], nav label {
        display: none;
    }

    .main-nav {
        display: flex;
        flex-direction: row;
        row-gap: 3rem;
    }

    .main-nav li, .main-nav li a {
        font-size: var(--fs-120);
        font-weight: var(--fw-medium);
    }

    .main-nav li a:hover, .footer-nav a:hover {
        color: var(--clr-accent);
        transition: ease-in-out 0.3s;
    }

    .nav-link {
        font-size: var(--fs-120);
        margin: 0 0 0 4rem;
      }

    .logo {
        margin-top: 0;
    }

    .navbar-toggle {
        display: none;
    }

    .logo:hover, .nav-link:hover {
        color: var(--pl-clr-accent);
        transition: ease-in-out 0.3s;
    }

    .nav-contact-button {
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: var(--clr-accent);
        padding: 0.1rem 0.25rem;
        border-radius: 0.4rem;
        color: var(--pl-clr-white);
        z-index:100;
    }

    .nav-contact-button li a {
        font-size: var(--fs-120);
        font-weight: var(--fw-medium);
        text-align: center;
    }
} 

/* ================ */
/* Nav via touch or pointer, size */
/* ================ */
@media (max-width: 767px) {
    .dt-dropdown-menu {
        display: none;
    }

    .nav-link {
        line-height: var(--fl-s);
    }
}

/* ================ */
/* Other styles */
/* ================ */
.home-logo-tagline {
    max-width: 18rem;
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
    .home-logo-tagline {
        max-width: 20rem;
    }
}

@media screen and (min-width: 1024px) and (max-width: 1439px) {
    .home-logo-tagline {
        max-width: 24rem;
    } 
}

@media screen and (min-width: 1440px) {
    .home-logo-tagline {
        max-width: 30rem;
    }
}

/* ================ */
/* Brand stats styles */
/* ================ */
.brand-stats-container {
    background: var(--clr-white);
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    padding: 0.5rem 0;
    border-bottom: 2px solid var(--clr-accent);
}

.brand-stats-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0;
}

.brand-stats-heading {
    font-size: var(--fs-200);
    font-weight: var(--fw-bold);
    color: var(--clr-accent);
    line-height: var(--fl-xxs);
    text-align: center;
    margin: 0 0 0.25rem 0;
}

.brand-stats-subheading {
    font-size: var(--fs-100);
    font-weight: var(--fw-semibold);
    color: var(--clr-accent);
    line-height: var(--fl-xxs);
    text-align: center;
    margin: 0;
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
    .brand-stats-container {
        gap: 4rem;
        padding: 0.5rem 0;
    }
    
    .brand-stats-heading {
        font-size: var(--fs-300);
    }
    
    .brand-stats-subheading {
        font-size: var(--fs-130);
    }
}

@media screen and (min-width: 1024px) and (max-width: 1439px) {
    .brand-stats-container {
        gap: 8rem;
        padding: 1rem 0;
    }
    
    .brand-stats-heading {
        font-size: var(--fs-350);
        margin: 0 0 0.5rem 0;
    }
    
    .brand-stats-subheading {
        font-size: var(--fs-150);
    } 
}

@media screen and (min-width: 1440px) {
    .brand-stats-container {
        gap: 8rem;
        padding: 1rem 0;
    }
    
    .brand-stats-heading {
        font-size: var(--fs-400);
        margin: 0 0 0.5rem 0;
    }
    
    .brand-stats-subheading {
        font-size: var(--fs-180);
    }
}

/* ================ */
/* Background images */
/* ================ */
.home-support-bg {
    background: url('./img/home-support.jpg') no-repeat center 25%/cover;
    /* min-height: 20rem; */
    padding: 5rem 1rem;
}

.home-support-block {
    max-width: 18rem;
    margin: 0 auto;
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
    .home-support-bg {
        padding: 10rem 2rem;
    }

    .home-support-block {
        max-width: 30rem;
        margin: 0 auto;
    }
}

@media screen and (min-width: 1024px) and (max-width: 1439px) {
    .home-support-bg {
        padding: 14rem 2rem;
    } 

    .home-support-block {
        max-width: 36rem;
        margin: 0 auto;
    }
}

@media screen and (min-width: 1440px) {
    .home-support-bg {
        padding: 20rem 2rem;
    }

    .home-support-block {
        max-width: 38rem;
        margin: 0 auto;
    }
}

/* .bg-img-home-apple {
    background: url('./img/apple-home-bg-mobile.jpg') no-repeat center center/cover;
}

@media screen and (min-width: 768px){
    .bg-img-home-apple {
        background: url('./img/Home-Air-Rim-Hero-v1.mp4') no-repeat center center/cover;
    }
} */
/* ================ */
/* Home hero video container */
/* ================ */
@media screen and (min-width: 768px) and (max-width: 1023px) {
    .tm-pro-video-container {
        max-width: 44rem;
    }
}

@media screen and (min-width: 1024px) and (max-width: 1439px) {
    .tm-pro-video-container {
        max-width: 48rem;
    }
}

@media screen and (min-width: 1440px) {
    .tm-pro-video-container {
        max-width: 72rem;
    }
}

/* ================ */
/* Home Air Rim Section */
/* ================ */
.air-rim-bg-container {
    background: linear-gradient(180deg, #0A213B, #3A6CB9, #E2EAFD);
    padding: 2rem 0 0 0;
}

.air-rim-bg-container h1 {
    margin: 0 0 1rem 0;
}

.home-hero-air-rim-img {
    max-width: 20rem;
}

@media screen and (min-width: 768px) and (max-width: 1023px) {

}

@media screen and (min-width: 1024px) and (max-width: 1439px) {
    .air-rim-bg-container {
        background: linear-gradient(180deg, #0A213B, #3A6CB9, #E2EAFD);
        padding: 4rem 0 0 0;
    }
    
    .air-rim-bg-container h1 {
        margin: 0 0 1rem 0;
    }
    
    .home-hero-air-rim-img {
        max-width: 24rem;
    }
    
}

@media screen and (min-width: 1440px) {
    .air-rim-bg-container {
        background: linear-gradient(180deg, #0A213B, #3A6CB9, #E2EAFD);
        padding: 4rem 0 0 0;
    }
    
    .air-rim-bg-container h1 {
        margin: 0 0 2rem 0;
    }
    
    .home-hero-air-rim-img {
        max-width: 30rem;
    }
    
}

/* ================ */
/* Home Apple Products Section */
/* ================ */
.apple-products-home-container {
    padding: 5rem 2rem;
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
    .apple-products-home-container {
        padding: 5rem 2rem;
    }
}

@media screen and (min-width: 1024px) and (max-width: 1439px) {
    .apple-products-home-container {
        padding: 8rem 2rem;
    }
}

@media screen and (min-width: 1440px) {
    .apple-products-home-container {
        padding: 10rem 2rem;
    }
}

/* ================ */
/* Home product tiles */
/* ================ */
.product-tile-double, .product-tile-triple {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 1rem;
}

.product-tile-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    padding: 2rem 1rem;
}

.col-2-product-info, .col-2-product-image {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0;
}

.product-tile-item:first-child {
    flex-direction: column-reverse;
}

.col-2-product-info h3, .col-2-product-info p {
    margin: 0;
    padding: 0 2rem;
    text-align: center;
}

.col-2-product-info h3 {
    font-size: var(--fs-220);
}

.col-2-product-info p {
    font-size: var(--fs-150);
}

.col-2-product-info button {
    margin: 1rem 0 0 0;
}


.product-tile-brand {
    max-width: 16rem;
}

.product-tile-image {
    max-width: 16rem;
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
    .product-tile-double {
        flex-direction: row;
    }

    .product-tile-double .product-tile-item {
        flex-direction: column;
        padding: 2rem;
    }

    .product-tile-item:first-child {
        flex-direction: column-reverse;
    }

    .product-tile-double .col-2-product-info h3, .product-tile-double .col-2-product-info p {
        margin: 0;
        padding: 0 2rem;
    }

    .product-tile-double .col-2-product-info h3 {
        font-size: var(--fs-200);
    }
    
    .product-tile-double .col-2-product-info p {
        font-size: var(--fs-130);
    }

    .product-tile-double .col-2-product-info button {
        margin: 1rem 0 0 0;
    }


    .product-tile-double .product-tile-brand {
        max-width: 16rem;
    }

    .product-tile-double .product-tile-image {
        max-width: 20rem;
    }
}

@media screen and (min-width: 1024px) and (max-width: 1759px) {
    .product-tile-double {
        flex-direction: row;
    }

    .product-tile-double .product-tile-item {
        flex-direction: column;
        padding: 2rem;
    }

    .product-tile-double .product-tile-item:first-child {
        flex-direction: column-reverse;
    }

    .col-2-product-info h3, .col-2-product-info p {
        margin: 0;
        padding: 0 2rem;
    }

    .col-2-product-info h3 {
        font-size: var(--fs-200);
    }
    
    .col-2-product-info p {
        font-size: var(--fs-130);
    }

    .col-2-product-info button {
        margin: 1rem 0 0 0;
    }


    .product-tile-brand {
        max-width: 16rem;
    }

    .product-tile-image {
        max-width: 20rem;
    }
}

@media screen and (min-width: 1760px) {
    .product-tile-double {
        flex-direction: row;
    }

    .product-tile-double .product-tile-item {
        flex-direction: row;
        padding: 4rem;
    }

    .product-tile-double .product-tile-item:first-child {
        flex-direction: row;
    }

    .col-2-product-info h3, .col-2-product-info p {
        margin: 0;
        padding: 0 2rem;
    }

    .col-2-product-info h3 {
        font-size: var(--fs-250);
    }
    
    .col-2-product-info p {
        font-size: var(--fs-180);
    }

    .col-2-product-info button {
        margin: 1rem 0 0 0;
    }


    .product-tile-brand {
        max-width: 20rem;
    }

    .product-tile-image {
        max-width: 24rem;
    }
}

@media screen and (min-width: 1220px) {
    .product-tile-triple {
        flex-direction: row;
    }

    .product-tile-triple .product-tile-item:first-child {
        flex-direction: column;
    }
    
    .product-tile-triple .product-tile-item:first-child {
        flex-direction: column-reverse;
    }

    
}


/* ================ */
/* Background videos */
/* ================ */
/* .full-width-video-container video {
    object-fit: cover;
    width: 100%;
    height: var(--video-bg-height-mobile);
} */

.full-width video {
    object-fit: cover;
    width: 100%;
    max-height: 60rem;
}

.video-text-overlay {
    /* position: relative; */
    /* transform: translateY(calc(-1 * var(--video-bg-height-mobile) / 2)); */

    position: absolute;
        left: 0;
        right: 0;
        margin-inline: auto; 
        width: fit-content;
        margin-bottom: 0;
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
    /* .full-width-video-container video {
        object-fit: cover;
        width: 100%;
        height: var(--video-bg-height-tablet);
    } */

    .video-text-overlay {
        /* transform: translateY(calc(-1 * var(--video-bg-height-tablet) / 2)); */

        position: absolute;
        left: 0;
        right: 0;
        margin-inline: auto; 
        width: fit-content;
        margin-bottom: 0;
    }
}

@media screen and (min-width: 1024px) and (max-width: 1439px) {
    /* .full-width-video-container video {
        object-fit: cover;
        width: 100%;
        height: var(--video-bg-height-laptop);
    }  */

    .video-text-overlay {
        /* transform: translateY(calc(-1 * var(--video-bg-height-laptop) / 2)); */

        position: absolute;
        left: 0;
        right: 0;
        margin-inline: auto; 
        width: fit-content;
        margin-bottom: 0;
    }
}

@media screen and (min-width: 1440px) {
    /* .full-width-video-container video {
        object-fit: cover;
        width: 100%;
        height: var(--video-bg-height-desktop);
    } */

    .video-text-overlay {
        position: absolute;
        left: 0;
        right: 0;
        margin-inline: auto; 
        width: fit-content;
        margin-bottom: 0;
        /* transform: translateY(calc(var(--video-bg-height-desktop) / 16)); */
    }
}

/* ================ */
/*  Footer styles  */
/* ================ */
.footer-container {
    background: var(--clr-black);
    color: var(--clr-white);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0;
    padding: 2rem 1rem;
}

.footer-brand-container, .footer-nav-container, .footer-social-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.footer-logo {
    max-width: 12rem;
    margin: 0 auto;
}

.footer-copyright {
    font-size: var(--fs-066);
    text-align: center;
    color: var(--clr-med-gray);
}

.footer-hr {
    width: 60%;
    border: 0;
    height: 1px;
    background: var(--clr-med-gray);
    margin: 0 auto;
}

.footer-nav ul {
    list-style-type: none;
}

.footer-nav ul li a {
    color: var(--clr--med-gray);
    font-size: var(--fs-120);
    font-weight: var(--fw-medium);
}

.footer-socials {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 3rem;
}

.footer-socials img {
    max-width: 3rem;
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
    .footer-container {
        background: var(--clr-black);
        color: var(--clr-white);
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        padding: 2rem 1rem;
    }
    
    .footer-brand-container, .footer-nav-container, .footer-social-container {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 2rem;
    }
    
    .footer-logo {
        max-width: 12rem;
        margin: 0 auto;
    }
    
    .footer-copyright {
        font-size: var(--fs-066);
        text-align: center;
        color: var(--clr-med-gray);
    }
    
    .footer-hr {
        display: none;
    }

    .footer-socials {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 2rem;
    }
    
    .footer-socials img {
        max-width: 2rem;
    }
}

@media screen and (min-width: 1024px) and (max-width: 1439px) {
    .footer-container {
        background: var(--clr-black);
        color: var(--clr-white);
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-content: stretch;
        align-items: center;
        gap: 4rem;
        padding: 4rem 1rem;
    }
    
    .footer-brand-container, .footer-nav-container, .footer-social-container {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 2rem;
    }
    
    .footer-logo {
        max-width: 12rem;
        margin: 0 auto;
    }
    
    .footer-copyright {
        font-size: var(--fs-066);
        text-align: center;
        color: var(--clr-med-gray);
    }
    
    .footer-hr {
        display: none;
    }

    .footer-nav {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: start;
        gap: 3rem;
    }

    .footer-socials {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: start;
        gap: 2rem;
    }
    
    .footer-socials img {
        max-width: 2rem;
    }
}

@media screen and (min-width: 1440px) {
    .footer-container {
        background: var(--clr-black);
        color: var(--clr-white);
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-content: stretch;
        align-items: center;
        gap: 8rem;
        padding: 8rem 1rem;
    }
    
    .footer-brand-container, .footer-nav-container, .footer-social-container {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        align-self: flex-start;
        padding: 2rem;
    }
    
    .footer-logo {
        max-width: 12rem;
        margin: 0 auto;
    }
    
    .footer-copyright {
        font-size: var(--fs-066);
        text-align: center;
        color: var(--clr-med-gray);
    }
    
    .footer-hr {
        display: none;
    }

    .footer-nav {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: start;
        gap: 3rem;
    }

    .footer-socials {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: start;
        gap: 2rem;
    }
    
    .footer-socials img {
        max-width: 2rem;
    } 
}

/* ===================== */
/*  Product page styles  */
/* ===================== */
/* Apple products page */
.cta-tmpro-container {
    display: flex;
    flex-direction: column-reverse;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    padding: 3rem 1rem;
}

.cta-logo-tmpro {
    max-width: 15rem;
}

.cta-tmpro-product-title {
    font-size: var(--fs-150);
    font-weight: var(--fw-normal);
    color: var(--clr-white);
    text-align: center;
    margin: 0.5rem 0 0 0;
}

.cta-tmpro-product-subtitle {
    font-size: var(--fs-130);
    font-weight: var(--fw-light);
    color: var(--clr-med-gray);
    text-align: center;
    margin: 0 0 1rem 0;
}

.cta-tmpro-container button a {
    font-size: var(--fs-110);
    font-weight: var(--fw-semibold); 
}

.cta-tmpro-product-image {
    max-width: 20rem;
    margin: 0 0 1rem 0;
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
    .cta-tmpro-container {
        display: flex;
        flex-direction: row;
        gap: 4rem;
        padding: 4rem 1rem;
    }
    
    .cta-logo-tmpro {
        max-width: 15rem;
    }
    
    .cta-tmpro-product-title {
        font-size: var(--fs-130);
        margin: 0.25rem 0 0 0;
    }
    
    .cta-tmpro-product-subtitle {
        font-size: var(--fs-110);
    }
    
    .cta-tmpro-container button a {
        font-size: var(--fs-110);
    }
    
    .cta-tmpro-product-image {
        max-width: 20rem;
    }
}

@media screen and (min-width: 1024px) and (max-width: 1439px) {
    .cta-tmpro-container {
        display: flex;
        flex-direction: row;
        gap: 4rem;
        padding: 6rem 1rem;
    }
    
    .cta-logo-tmpro {
        max-width: 18rem;
    }
    
    .cta-tmpro-product-title {
        font-size: var(--fs-130);
        margin: 0.25rem 0 0 0;
    }
    
    .cta-tmpro-product-subtitle {
        font-size: var(--fs-110);
    }
    
    .cta-tmpro-container button a {
        font-size: var(--fs-110);
    }
    
    .cta-tmpro-product-image {
        max-width: 24rem;
    }
}

@media screen and (min-width: 1440px) {
    .cta-tmpro-container {
        display: flex;
        flex-direction: row;
        gap: 4rem;
        padding: 6rem 1rem;
    }
    
    .cta-logo-tmpro {
        max-width: 24rem;
    }
    
    .cta-tmpro-product-title {
        font-size: var(--fs-200);
        margin: 0.25rem 0 0 0;
    }
    
    .cta-tmpro-product-subtitle {
        font-size: var(--fs-180);
    }
    
    .cta-tmpro-container button a {
        font-size: var(--fs-130);
    }
    
    .cta-tmpro-product-image {
        max-width: 32rem;
    }
}

.adjustable-title {
    max-width: 24rem;
    font-size: var(--fs-150);
    font-weight: var(--fw-regular);
    color: var(--clr-black);
    text-align: center;
    margin: 0 auto;
}

.mount-category-image {
    max-width: 16rem;
}

.mount-categories-3-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
    .mount-category-image {
        max-width: 12rem;
    }
    
    .mount-categories-3-col {
        flex-direction: row;
    }
}

@media screen and (min-width: 1024px) and (max-width: 1439px) {
    .mount-category-image {
        max-width: 16rem;
    }
    
    .mount-categories-3-col {
        flex-direction: row;
        gap: 5rem;
    }
}

@media screen and (min-width: 1440px) {
    .mount-category-image {
        max-width: 16rem;
    }
    
    .mount-categories-3-col {
        flex-direction: row;
        gap: 7rem;
    }

}

/* Gaming page styles */
.xbox-bg-container {
    background: url("./img/gaming-xbox-hero-v1.jpg") no-repeat 10% center/cover;
    min-height: 15rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.ns-bg-container {
    background: url("./img/gaming-switch-hero-v1.jpg") no-repeat 90% center/cover;
    min-height: 15rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.rh-dome-container {
    background: url("./img/rh-dome-v1-sized.png") no-repeat 90% center/cover;
    min-height: 15rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}


@media screen and (min-width: 768px) and (max-width: 1023px) {
    .xbox-bg-container, .ns-bg-container, .rh-dome-container {
        min-height: 20rem;
    }
}

@media screen and (min-width: 1024px) and (max-width: 1439px) {
    .xbox-bg-container, .ns-bg-container, .rh-dome-container {
        min-height: 35rem;
    }
}

@media screen and (min-width: 1440px) {
    .xbox-bg-container, .ns-bg-container, .rh-dome-container {
        min-height: 50rem;
    }

}

/* Headphone page styles */
.hp-stand-bg-container {
    background: url("./img/headphone-tray-hero.jpg") no-repeat center center/cover;
    min-height: 15rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.hp-monitor-bg-container {
    background: url("./img/Headphone-Monitor-Hero-v5.jpg") no-repeat center center/cover;
    min-height: 15rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}


@media screen and (min-width: 768px) and (max-width: 1023px) {
    .hp-stand-bg-container, .hp-monitor-bg-container {
        min-height: 20rem;
    }
}

@media screen and (min-width: 1024px) and (max-width: 1439px) {
    .hp-stand-bg-container, .hp-monitor-bg-container {
        min-height: 35rem;
    }
}

@media screen and (min-width: 1440px) {
    .hp-stand-bg-container, .hp-monitor-bg-container {
        min-height: 50rem;
    }

}


/* ===================== */
/*  Our story styles  */
/* ===================== */
.q-and-a-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0;
    margin: 0;
}

.q-and-a-answer-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0;
    margin: 0;
}

.q-and-a-container h1 {
    font-size: var(--fs-600);
    font-weight: var(--fw-bold);
    line-height: var(--fl-s);
    margin: 0;
}

.q-and-a-container h3 {
    font-size: var(--fs-180);
    font-weight: var(--fw-regular);
    line-height: var(--fl-s);
    margin: 0;
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
    .q-and-a-container {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        margin: 0 auto;
    }

    .q-and-a-answer-container {
        max-width: 32rem;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 0;
        margin: 0 auto;
    }
}

@media screen and (min-width: 1024px) and (max-width: 1439px) {
    .q-and-a-container {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 3rem;
        margin: 0 auto;
    }

    .q-and-a-answer-container {
        max-width: 36rem;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 0;
        margin: 0 auto;
    }
    
    .q-and-a-container h1 {
        font-size: var(--fs-700);
        font-weight: var(--fw-bold);
        line-height: var(--fl-s);
        margin: 0;
    }

    .q-and-a-container h3 {
        font-size: var(--fs-200);
        font-weight: var(--fw-regular);
        line-height: var(--fl-s);
        margin: 0;
    }

}

@media screen and (min-width: 1440px) {
    .q-and-a-container {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 4rem;
        margin: 0 auto;
    }

    .q-and-a-answer-container {
        max-width: 40rem;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 0;
        margin: 0 auto;
    }
    
    .q-and-a-container h1 {
        font-size: var(--fs-800);
        font-weight: var(--fw-bold);
        line-height: var(--fl-s);
        margin: 0;
    }

    .q-and-a-container h3 {
        font-size: var(--fs-220);
        font-weight: var(--fw-regular);
        line-height: var(--fl-s);
        margin: 0;
    }
}

.snapshot-container {
    background: url('./img/our-story-snapshot-bg.png')  no-repeat center center/cover rgba(0, 0, 100, 0.15);
    background-blend-mode: multiply;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    padding: 2rem 0;
}

.snapshot-block {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 2rem;
}

.snapshot-container h1 {
    color: var(--clr-white);
}

.snapshot-list {
    padding: 0 0 0 1rem;
}

.snapshot-list li {
    display: list-item;
    list-style-type: disc;
}

.snapshot-list li, .snapshot-body-text {
    font-size: var(--fs-150);
    font-weight: var(--fw-regular);
    line-height: var(--fl-s);
    color: var(--clr-white);
    margin: 0 0 1rem 0;
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
    .snapshot-block, .mission-body {
        max-width: 40rem;
    }
    
    .snapshot-list li, .snapshot-body-text {
        font-size: var(--fs-150);
        font-weight: var(--fw-regular);
        line-height: var(--fl-s);
        color: var(--clr-white);
        margin: 0 0 1rem 0;
    }

    .snapshot-list li {
        display: list-item;
        list-style-type: disc;
    }
}

@media screen and (min-width: 1024px) and (max-width: 1439px) {
    .snapshot-container {
        padding: 4rem 0;
    }

    .snapshot-block {
        max-width: 46em;
    }

    .mission-body {
        max-width: 46rem;
    }

    .snapshot-block .snapshot-heading {
        display: flex;
        align-self: center;
    }
    
    .snapshot-list li, .snapshot-body-text {
        font-size: var(--fs-180);
        font-weight: var(--fw-regular);
        line-height: var(--fl-s);
        color: var(--clr-white);
        margin: 0 0 1rem 0;
    }

    .snapshot-list li {
        display: list-item;
        list-style-type: disc;
    }
}

@media screen and (min-width: 1440px) {
    .snapshot-container {
        padding: 5rem 0;
    }

    .snapshot-block, .mission-body {
        max-width: 50rem;
        justify-content: flex-start;
        align-items: flex-start;
    }

    .snapshot-block .snapshot-heading {
        display: flex;
        align-self: center;
    }
    
    .snapshot-list li, .snapshot-body-text {
        font-size: var(--fs-200);
        font-weight: var(--fw-regular);
        line-height: var(--fl-s);
        color: var(--clr-white);
        margin: 0 0 1rem 0;
    }

    .snapshot-list li {
        display: list-item;
        list-style-type: disc;
    }
}

.learn-more-brands {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    padding: 2rem 0;
}

.learn-more-brands-tm-pro {
    max-width: 20rem;
    margin: 0 0 0.5rem 0;
}

.learn-more-brands-tm {
    max-width: 15rem;
    margin: 0 0 0.5rem 0;
}

.learn-more-brands-body {
    max-width: 30rem;
    font-size: var(--fs-150);
    font-weight: var(--fw-regular);
    line-height: var(--fl-s);
    color: var(--clr-black);
    text-align: center;
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
    .learn-more-brands-body {
        max-width: 32rem;
    }
}

@media screen and (min-width: 1024px) and (max-width: 1439px) {
    .learn-more-brands {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 3rem;
        padding: 2rem 0;
    }
    
    .learn-more-brands-tm-pro {
        max-width: 20rem;
    }
    
    .learn-more-brands-tm {
        max-width: 15rem;
    }

    .learn-more-brands-body {
        max-width: 30rem;
    }
}

@media screen and (min-width: 1440px) {
    .learn-more-brands {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 4rem;
        padding: 2rem 0;
    }
    
    .learn-more-brands-tm-pro {
        max-width: 22rem;
    }
    
    .learn-more-brands-tm {
        max-width: 17rem;
    }

    .learn-more-brands-body {
        max-width: 30rem;
    }

}

.support-hero-bg {
    background: url('./img/Support-Hero-v1-2000px.jpg') no-repeat center center/cover rgba(0, 0, 20, 0.5);
    background-blend-mode: multiply;
    padding: 5rem 2rem;
}

.support-logo {
    max-width: 20rem;
}

.support-hero-heading {
    color: var(--clr-white);
    text-align: center;
}

.support-hero-body {
    color: var(--clr-white);
    text-align: center;
}

.support-contact {
    padding: 3rem;
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
    .support-hero-bg {
        padding: 5rem 2rem;
    }

    .support-contact {
        padding: 3rem;
    }
}

@media screen and (min-width: 1024px) and (max-width: 1439px) {
    .support-hero-bg {
        padding: 8rem 2rem;
    }

    .support-contact {
        padding: 5rem 2rem;
    }
}

@media screen and (min-width: 1440px) {
    .support-hero-bg {
        padding: 10rem 2rem;
    }

    .support-logo {
        max-width: 24rem;
    }

    .support-contact {
        padding: 8rem 2rem;
    }
}

/* ===================== */
/*  IP & Terms pages styles  */
/* ===================== */
.ip-container, .terms-container {
    max-width: 32rem;
    margin: 0 auto;
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
    .ip-container, .terms-container {
        max-width: 36rem;
        margin: 0 auto;
    }
}

@media screen and (min-width: 1024px) and (max-width: 1439px) {
    .ip-container, .terms-container {
        max-width: 48rem;
        margin: 0 auto;
    }
}

@media screen and (min-width: 1440px) {
    .ip-container, .terms-container {
        max-width: 60rem;
        margin: 0 auto;
    }

}

.fr-link {
    word-break: break-all;
}


/* ===================== */
/*  Instructions Pages  */
/* ===================== */
.instruction-video-mobile {
    display: block;
}

.instruction-video-desktop {
    display: none;
}

/* @media screen and (min-width: 768px) and (max-width: 1023px) {
    .instruction-video-mobile {
        display: none;
    }
    
    .instruction-video-desktop {
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto;
    }
} */

@media screen and (min-width: 1024px) and (max-width: 1439px) {
    .instruction-video-mobile {
        display: none;
    }
    
    .instruction-video-desktop {
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto;
    }
}

@media screen and (min-width: 1440px) {
    .instruction-video-mobile {
        display: none;
    }
    
    .instruction-video-desktop {
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto;
    }
}

.air-rim-outer-container {
    background: linear-gradient(180deg, rgba(0,0,0,0.0), rgba(0, 0, 0, 0.05));
    margin: 0 0 2rem 0;
}

.air-rim-drop-bg {
    padding: 4rem 2rem;
}

.air-rim-details-container {
    max-width: 24rem;
    margin: 1rem auto;
}

.air-rim-heading-container {
    background: var(--clr-black);
    border-radius: 1rem;
    margin: 2rem 0 0 0;
    padding: 1rem;
}

.air-rim-heading-container h2 {
    color: var(--clr-white);
    font-weight: var(--fw-semibold);
    text-align: center;
    margin: 0;
}

.air-rim-details-2-col-container {
    max-width: 24rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin: 0 auto 2rem auto;
}

.air-rim-details-2-col-item {
    background: var(--clr-light-gray);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0;
    border-radius: 1rem;
}

.air-rim-details-img {
    max-width: 24rem;
}

.air-rim-details-item-text-top, .air-rim-details-item-text-bottom {
    font-size: var(--fs-180);
    font-weight: var(--fw-semibold);
    line-height: var(--fl-s);
    color: var(--clr-black);
    text-align: center;
}

.air-rim-details-item-text-top {
    margin: 2rem 0.5rem 0 0.5rem;
}

.air-rim-details-item-text-bottom {
    margin: 0 0.5rem 2rem 0.5rem;
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
    .air-rim-heading-container h2 {
        color: var(--clr-white);
        font-size: var(--fs-250);
        font-weight: var(--fw-semibold);
        text-align: center;
        margin: 0;
    }

    .air-rim-details-container {
        max-width: 32rem;
        margin: 1rem auto;
    }

    .air-rim-drop-img {
        max-width: 40rem;
    }


    .air-rim-details-2-col-container {
        max-width: 23rem;
        flex-direction: row;
        align-items: stretch;
    }

    .air-rim-details-img {
        max-width: 23rem;
    }

}

@media screen and (min-width: 1024px) and (max-width: 1439px) {
    .air-rim-details-container {
        max-width: 40rem;
        margin: 1rem auto;
    }

    .air-rim-drop-img {
        max-width: 50rem;
    }

    .air-rim-details-2-col-container {
        max-width: 23rem;
        flex-direction: row;
        align-items: stretch;
    }

    .air-rim-details-img {
        max-width: 23rem;
    }

}

@media screen and (min-width: 1440px) {
    .air-rim-details-container {
        max-width: 58rem;
        margin: 2rem auto;
    }

    .air-rim-drop-img {
        max-width: 64rem;
    }

    .air-rim-details-2-col-container {
        max-width: 28rem;
        flex-direction: row;
        align-items: stretch;
    }

    .air-rim-details-img {
        max-width: 28rem;
    }

    .air-rim-details-item-text-top, .air-rim-details-item-text-bottom {
        font-size: var(--fs-200);
    }

}

/* ================ */
/* Landing page classes */
/* ================ */
.landing-page-brand {
    max-width: 12rem;
    margin: 0 auto;
}

.landing-page-subtitle {
    font-size: var(--fs-150);
    line-height: var(--fl-s);
    text-align: center;
    margin: 0 0 0.5rem 0;
}

.landing-button a {
    font-size: var(--fs-110);
    font-weight: var(--fw-semibold);
}

.landing-button {
    margin: 0 0 1rem 0;
}

.promo-code-heading {
    font-size: var(--fs-250);
    font-weight: var(--fw-bold);
    line-height: var(--fl-xs);
    text-align: center;
}

.promo-body {
    font-size: var(--fs-120);
    line-height: var(--fl-xs);
    text-align: center;
    margin: 0;
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
    .landing-page-brand {
        max-width: 20rem;
    }

    .landing-page-subtitle {
        font-size: var(--fs-220);
        line-height: var(--fl-s);
        text-align: center;
        margin: 0 0 0.5rem 0;
    }
    
    .landing-button a {
        font-size: var(--fs-130);
        font-weight: var(--fw-semibold);
    }

    .landing-button {
        margin: 0 0 1rem 0;
    }
    
    .promo-code-heading {
        font-size: var(--fs-300);
        font-weight: var(--fw-bold);
        line-height: var(--fl-xs);
        text-align: center;
    }
    
    .promo-body {
        font-size: var(--fs-150);
        line-height: var(--fl-xs);
        text-align: center;
        margin: 0;
    }
}

@media screen and (min-width: 1024px) and (max-width: 1439px) {
    .landing-page-brand {
        max-width: 28rem;
    }

    .landing-page-subtitle {
        font-size: var(--fs-300);
        line-height: var(--fl-s);
        text-align: center;
        margin: 0 0 0.5rem 0;
    }
    
    .landing-button a {
        font-size: var(--fs-130);
        font-weight: var(--fw-semibold);
    }

    .landing-button {
        margin: 0 0 2rem 0;
    }
    
    .promo-code-heading {
        font-size: var(--fs-400);
        font-weight: var(--fw-bold);
        line-height: var(--fl-xs);
        text-align: center;
    }
    
    .promo-body {
        font-size: var(--fs-180);
        line-height: var(--fl-xs);
        text-align: center;
        margin: 0;
    }
}

@media screen and (min-width: 1440px) {
    .landing-page-brand {
        max-width: 32rem;
    }

    .landing-page-subtitle {
        font-size: var(--fs-350);
        line-height: var(--fl-s);
        text-align: center;
        margin: 0 0 0.5rem 0;
    }
    
    .landing-button a {
        font-size: var(--fs-180);
        font-weight: var(--fw-semibold);
    }

    .landing-button {
        margin: 0 0 3rem 0;
    }
    
    .promo-code-heading {
        font-size: var(--fs-500);
        font-weight: var(--fw-bold);
        line-height: var(--fl-xs);
        text-align: center;
    }
    
    .promo-body {
        font-size: var(--fs-250);
        line-height: var(--fl-xs);
        text-align: center;
        margin: 0;
    }
}



/* ================ */
/* Utility classes */
/* ================ */

/* Container styles */
.full-width {
    width: 100%;
}



/* Flexbox styles */
.flex-row {
    display: flex;
    flex-direction: row;
}

.flex-col {
    display: flex;
    flex-direction: column;
}

.justify-start {
    justify-content: flex-start;
}

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

.justify-end {
    justify-content: flex-end;
}

.align-start {
    align-items: flex-start;
}

.align-center {
    align-items: center;
}

.align-end {
    align-items: flex-end;
}

.gap-0 {
    gap: 0;
}

.gap-1 {
    gap: 1rem;
}

.gap-2 {
    gap: 2rem;
}

.gap-3 {
    gap: 3rem;
}


.border-white-left-05 {
    border-left: solid 0.5rem var(--clr-white);
}

.border-white-right-05 {
    border-right: solid 0.5rem var(--clr-white);
}



/* Grid styles */


/* Text styles */
/* Text alignment */
.text-left {
    text-align: left;
}

.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

/* Font sizes */
.fs-066 {
    font-size: var(--fs-066);
}

.fs-075 {
    font-size: var(--fs-075);
}

.fs-090 {
    font-size: var(--fs-090);
}

.fs-100 {
    font-size: var(--fs-100);
}

.fs-110 {
    font-size: var(--fs-110);
}

.fs-120 {
    font-size: var(--fs-120);
}

.fs-130 {
    font-size: var(--fs-130);
}

.fs-140 {
    font-size: var(--fs-140);
}

.fs-150 {
    font-size: var(--fs-150);
}

.fs-180 {
    font-size: var(--fs-180);
}

.fs-200 {
    font-size: var(--fs-200);
}

.fs-220 {
    font-size: var(--fs-220);
}

.fs-250 {
    font-size: var(--fs-250);
}

.fs-280 {
    font-size: var(--fs-280);
}

.fs-300 {
    font-size: var(--fs-300);
}

.fs-350 {
    font-size: var(--fs-350);
}

.fs-400 {
    font-size: var(--fs-400);
}

.fs-500 {
    font-size: var(--fs-500);
}

.fs-600 {
    font-size: var(--fs-600);
}

.fs-700 {
    font-size: var(--fs-700);
}

.fs-800 {
    font-size: var(--fs-800);
}

/* Font styles */
.f-italic {
    font-style: italic;
}

.f-normal {
    font-style: normal;
}

/* Text decoration */
.td-none {
    text-decoration: none;
}

.td-underline {
    text-decoration: underline;
}

/* Font weignts */
.fw-light {
    font-weight: var(--fw-light);
}

.fw-regular {
    font-weight: var(--fw-regular);
}

.fw-medium {
    font-weight: var(--fw-medium);
}

.fw-semibold {
    font-weight: var(--fw-semibold);
}

.fw-bold {
    font-weight: var(--fw-bold);
}

/* Font line heights */
.fl-xxs {
    line-height: var(--fl-xxs);
}

.fl-xs {
    line-height: var(--fl-xs);
}

.fl-s {
    line-height: var(--fl-s);
}

.fl-m {
    line-height: var(--fl-m);
}

.fl-l {
    line-height: var(--fl-l);
}

.fl-xl {
    line-height: var(--fl-xl);
}



/* Alignment, margin, padding styles */
.m-0 {
    margin: 0;
}

.m-0-auto {
    margin: 0 auto;
}

.m-05-0 {
    margin: 0.5rem 0;
}

.m-1-0 {
    margin: 1rem 0;
}

.mt-0 {
    margin-top: 0;
}

.mt-0-5 {
    margin-top: 0.5rem;
}

.mt-1 {
    margin-top: 1rem;
}

.mt-2 {
    margin-top: 2rem;
}

.mt-3 {
    margin-top: 3rem;
}

.mt-4 {
    margin-top: 4rem;
}

.mb-0 {
    margin-bottom: 0;
}

.mb-0-5 {
    margin-bottom: 0.5rem;
}

.mb-1 {
    margin-bottom: 1rem;
}

.mb-2 {
    margin-bottom: 2rem;
}

.mb-3 {
    margin-bottom: 3rem;
}

.mb-4 {
    margin-bottom: 4rem;
}

.mb-5 {
    margin-bottom: 5rem;
}

.mb-6 {
    margin-bottom: 6rem;
}

.ml-1 {
    margin-left: 1rem;
}

.ml-2 {
    margin-left: 2rem;
}

.ml-3 {
    margin-left: 3rem;
}

.ml-4 {
    margin-left: 4rem;
}

.ml-5 {
    margin-left: 5rem;
}

.ml-6 {
    margin-left: 6rem;
}

.mr-1 {
    margin-right: 1rem;
}

.mr-2 {
    margin-right: 2rem;
}

.mr-3 {
    margin-right: 3rem;
}

.mr-4 {
    margin-right: 4rem;
}

.mr-5 {
    margin-right: 5rem;
}

.mr-6 {
    margin-right: 6rem;
}

.p-0 {
    padding: 0;
}

.p-1 {
    padding: 1rem;
}

.p-2 {
    padding: 2rem;
}

.p-3 {
    padding: 3rem;
}

.p-4 {
    padding: 4rem;
}

.p-1-0 {
    padding: 1rem 0;
}

.p-2-0 {
    padding: 2rem 0;
}

.p-3-0 {
    padding: 3rem 0;
}

.p-5-2 {
    padding: 5rem 2rem;
}

.p-0-1 {
    padding: 0 1rem;
}

.p-0-2 {
    padding: 0 2rem;
}

.pt-0 {
    padding-top: 0;
}

.pt-1 {
    padding-top: 1rem;
}

.pt-2 {
    padding-top: 2rem;
}

.pt-3 {
    padding-top: 3rem;
}

.pb-0 {
    padding-bottom: 0;
}

.pb-1 {
    padding-bottom: 1rem;
}

.pb-2 {
    padding-bottom: 2rem;
}

.pb-3 {
    padding-bottom: 3rem;
}

.pl-1 {
    padding-left: 1rem;
}






/* Colors */
.clr-white {
    color: var(--clr-white);
}

.clr-light-gray {
    color: var(--clr-light-gray);
}

.clr-light-gray-2 {
    color: var(--clr-light-gray);
}

.clr-light-med-gray {
    color: var(--clr-light-med-gray);
}

.clr-med-gray {
    color: var(--clr-med-gray);
}

.clr-dark-gray {
    color: var(--clr-dark-gray);
}

.clr-x-dark-gray {
    color: var(--clr-x-dark-gray);
}

.clr-black {
    color: var(--clr-black);
}

.clr-light-tm-pro-gray {
    color: rgba(245,245,245,0.95);
}

.clr-accent {
    color: var(--clr-accent);
}

/* Background colors */
.bg-white {
    background: var(--clr-white);
}

.bg-light-gray {
    background: var(--clr-light-gray);
}

.bg-light-gray-2 {
    background: var(--clr-light-gray);
}

.bg-light-med-gray {
    background: var(--clr-light-med-gray);
}

.bg-med-gray {
    background: var(--clr-med-gray);
}

.bg-dark-gray {
    background: var(--clr-dark-gray);
}

.bg-x-dark-gray {
    background: var(--clr-x-dark-gray);
}

.bg-black {
    background: var(--clr-black);
}

.bg-light-tm-pro-gray {
    background: rgba(245,245,245,0.95);
}

.bg-accent {
    background: var(--clr-accent);
}

/* Linear gradients */
.text-gradient-blue {
    background: -webkit-linear-gradient(45deg, #65cdf3, #1014f4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-gradient-red {
    background: -webkit-linear-gradient(45deg, #ff8a3b, #cb0000);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-gradient-nt-red {
    background: -webkit-linear-gradient(45deg, #ec5151, #d30505);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-gradient-green {
    background: -webkit-linear-gradient(45deg, #67ef36, #06ba00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-gradient-purple {
    background: -webkit-linear-gradient(45deg, #aa60f0, #7400ae);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-gradient-ai {
    background: -webkit-linear-gradient(45deg, #00ccff, #e600ff, #ff9500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


/* ================ */
/* Experimental */
/* ================ */

.exp-gaming {
    background: url("./img/Boost-Website-v6.png") no-repeat center center/cover;
    min-height: 15rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.exp-rh {
    background: url("./img/Optimal-Website-v4.png") no-repeat center center/cover;
    min-height: 15rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.exp-headphone {
    background: url("./img/Geo-Website-v7.png") no-repeat center center/cover;
    min-height: 15rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.exp-router {
    background: url("./img/Summit-Website-v6.png") no-repeat center center/cover;
    min-height: 15rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.exp-hero-font {
    font-size: var(--fs-300);
    letter-spacing: -4px;
    font-weight: var(--fw-bold);
    margin: 0;
    text-align: center;
}

.exp-gaming .exp-hero-font-gaming, .exp-headphone .exp-hero-font-headphone {
    align-self: flex-end;
}

.exp-rh .exp-hero-font-remote, .exp-router .exp-hero-font-router {
    align-self: flex-start;
}

.exp-hero-roku {
    margin: 0 2rem 0 auto;
}

@media screen and (max-width: 767px) {
    .exp-hero-font-remote {
        line-height: var(--fl-xs);
    }
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
    .exp-gaming, .exp-rh, .exp-headphone, .exp-router {
        min-height: 20rem;
    }

    .exp-hero-font {
        font-size: var(--fs-500);
    }

    .exp-hero-roku {
        margin: 0 5rem 0 auto;
    }

    .exp-hero-font-remote {
        line-height: var(--fl-xs);
    }
}

@media screen and (min-width: 1024px) and (max-width: 1439px) {
    .exp-gaming, .exp-rh, .exp-headphone, .exp-router {
        min-height: 35rem;
    }

    .exp-hero-font {
        font-size: var(--fs-600);
    }

    .exp-hero-roku {
        margin: 0 8rem 0 auto;
    }

    .exp-hero-font-remote {
        line-height: var(--fl-xs);
    }
}

@media screen and (min-width: 1440px) {
    .exp-gaming, .exp-rh, .exp-headphone, .exp-router {
        min-height: 50rem;
    }

    .exp-hero-font {
        font-size: var(--fs-800);
    }

    .exp-hero-roku {
        margin: 0 12rem 0 auto;
    }

    .exp-hero-font-remote {
        line-height: var(--fl-xs);
    }
}

/* Fade in Roku text */
.exp-hero-roku {
    animation-duration: 4s;
    animation-name: fade-in-4s;
  }
  
  @keyframes fade-in-4s {
    0% {
      opacity: 0;
    }

    80% {
      opacity: 0;
    }
  
    90% {
      opacity: 1;
    }
  }