
/*******************************************************************|
|** COLOR PALETTE **************************************************|
|*******************************************************************|

LANDING PAGE bg (slightly darker than var(--color-teal)): #01596d; 

|**** Oxford Navy : var(--color-navy); rgba(var(--color-navy-rgb), 1)/ 
|**** Stormy Teal (Brand color - Landing page bg): var(--color-teal); / rgba(var(--color-teal-rgb),1)
|**** Strong Cyan (light blue text accent): var(--color-cyan); / rgba(var(--color-cyan-rgb), 1);
|**** Turquoise borders/ some hr: var(--color-turquoise) / rgba(95, 245, 252, 1)
|**** Icy Acqua (lightest Accent): var(--color-icy) / rgba(199, 255, 249, 1) 
|**** Azure Mist (light website bg): #F4FFFE / 

|**** Slate Grey (text): #6a7f81; 
|**** Cool Steel (lighter grey text): #96a0a1;   ***********************/


.maintenance-banner {
    position: fixed;
    z-index: 999;
    width: 100%;
    background: var(--color-turquoise);
    display: flex;
    align-items: center;      /* Vertical centering */
    justify-content: space-around;  /* Horizontal centering */
    flex-direction: column;
    min-height: 76px;         /* or height: 56px */
    padding: .85rem 1.5rem;
    font-weight: 500;
    letter-spacing: .03em;
    border-bottom: 3px solid var(--color-teal);
    margin-top: 120px;
    box-shadow: 0 6px 16px rgba(0, 50, 54, 0.28);
}

.maintenance-banner>div {
    background-color: var(--color-icy);
    width: 98%;
    display: flex;
    flex-direction: column;
    align-items: center;      /* Vertical centering */
    justify-content: space-around;
    padding: 0.85rem 1.5rem;  /* Horizontal centering */
    border-radius: 8px;
    border: 1px outset var(--color-whitesmoke);
    box-shadow: 0 6px 16px rgba(0, 50, 54, 0.28);
}

.maintenance-banner i {
    color: var(--color-teal);
    font-size: 2rem;
}

.maintenance-banner strong {
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--color-teal);
}

.maintenance-banner span,
.maintenance-banner p {
    margin-bottom: 0;
    padding-bottom: 0;
    opacity: .9;
    line-height: 1.2;
    font-weight: 500;
    font-size: 1rem;
}



@media (max-width: 768px) {
    .maintenance-banner {
        font-size: .85rem;
        padding: .75rem 1rem;
    }

    .maintenance-text {
        display: block;
        margin-top: .25rem;
    }
}


html {
    scroll-behavior: smooth;
}

body {
    /* background: url('/static/images/bg_globe&birds.jpg') no-repeat center center fixed; */
    /* background-size: cover; */
    color: var(--color-slate);
    font-family: "Montserrat", sans-serif;
    padding: 0 !important;
    display: flex;
    flex-direction: column;  
}

#checkout-page.container {
    max-width: 95% !important;
}



h1 {
    margin: 0;
    font-size: clamp(2rem, 3vw, 3.2rem);
    font-weight: 700;
    letter-spacing: 0.02em;
    overflow-wrap: normal !important;
    word-break: normal !important;
}

h4,
h2 {
    line-height: 2;
    overflow-wrap: normal !important;
    word-break: normal !important;
}

hr {
    /* border: outset 0.5px var(--color-teal); */
    margin: 2rem 0 1.25rem;
    border: 0;
    border-top: 1px solid rgba(var(--color-teal-rgb), 0.3);    
    border-radius: 50%;
    width: 100%;
    /* margin-top: 0;
    margin-bottom: 2.1rem; */
}

p {
    text-align: justify;
}

textarea {
    width: 100%;
}

a {
    transition: color .2s ease-in-out, font-weight .2s ease-in-out;
}

a:hover {
    /* font-weight: 600; */
    text-decoration: none;
}

a.js-back-link {
    color: var(--color-teal);
}

a.js-back-link:hover {
    font-weight: 600;
}

/* **** BUTTONS *********************************************** */

.btn {
    border-radius: 8px;
    padding: 0.6rem 1.5rem;
}

.btn-navbar {
    border: 1px solid var(--color-turquoise);
    color: var(--color-whitesmoke);
    padding: 0.6rem 1.1rem;
    border-radius: 7px;
    text-decoration: none;
    font-weight: 400;
    width: 200px !important;
    margin: 0 0.3rem;
    transition: all 0.2s ease;
}

.btn-navbar:hover {
    background: rgba(var(--color-turquoise-rgb), 0.15);  /*5ff0df*/
    color: var(--color-icy);
    text-decoration: none;
}

.btn-navbar i {
    color: inherit;
    transition: inherit;
}

.btn-navbar i:hover {
    color: inherit;
    transition: inherit;
}

.btn-custom {
    width: 100%;
    /* max-width: 320px;  */
    border-radius: 8px;
    font-size: 1.1rem;
    background: var(--color-navy);
    color: var(--color-whitesmoke);
    text-transform: uppercase;
    padding: 0.5rem 1rem;
    border: outset 1px var(--color-turquoise);
    box-shadow: 0 1px 3px 0 rgba(var(--color-shadow-rgba));    
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

.btn-custom:hover {
    background: var(--color-teal);
    color: var(--color-whitesmoke);
    /* font-weight: 600; */
}

#contact-form .btn-custom,
#subscribe-form .btn-custom {
    max-width: 100% !important;
    width: 100% !important;
}

.btn-custom-teal {
    width: 100%;
    /* max-width: 320px; */
    background: var(--color-teal);
   color: var(--color-whitesmoke);
    text-transform: uppercase;
    padding: 0.5rem 1rem;
    border: outset 2px aquamarine;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

.btn-custom-teal:hover {
    background: var(--color-navy);
   color: var(--color-whitesmoke);
}

.index-cta-button {
    display: flex;
    justify-content: left;
    background: var(--color-navy);
    color: var(--color-whitesmoke);
    border: 1px solid var(--color-navy);
    min-width: 250px;
    height: 100%;
    font-size: 1.3rem;
    box-shadow: 0 6px 16px rgba(0, 50, 54, 0.28);
    transition: color .25s ease-in-out,background-color .25s ease-in-out,border-color .25s ease-in-out,box-shadow .25s ease-in-out;
}

.error-page-button {
    display: flex;
    justify-content: center;
    background: var(--color-navy);
    color: var(--color-whitesmoke);
    border: 1px solid var(--color-navy);
    min-width: 250px;
    height: 100%;
    font-size: 1.3rem;
    box-shadow: 0 6px 16px rgba(0, 50, 54, 0.28);
    transition: color .25s ease-in-out,background-color .25s ease-in-out,border-color .25s ease-in-out,box-shadow .25s ease-in-out;
}

.index-cta-button:hover,
.index-cta-button:active,
.index-cta-button:focus,
.error-page-button:hover,
.error-page-button:active,
.error-page-button:focus {
    /* background-color: var(--color-icy);
    color: var(--color-navy); */
    border: 1px solid var(--color-turquoise);
    color: var(--color-navy);
    text-decoration: none;
    max-height: fit-content;
    /* display: inline-flex;
    align-items: center;
    justify-content: space-between; */
    /* background: rgba(var(--color-turquoise-rgb), 0.8); */
    background: rgba(var(--color-icy-rgb), 1);
    align-self: center;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 20, 40, 0.5);
}

.btn-outline-custom {
    background: var(--color-teal);
   color: var(--color-whitesmoke) !important; /* use important to override link colors for <a> elements */
    border: 1px outset var(--color-navy);
}

.btn-outline-custom:hover,
.btn-outline-custom:active,
.btn-outline-custom:focus {
    background: var(--color-turquoise);
    color: var(--color-navy) !important;
    font-weight: 700;
}

.btn-bg-light {
    background-color: var(--color-turquoise);
    color: var(--color-navy) !important;
    border: inset 2px teal;
}

.border-black {
    border: 1px solid var(--color-navy) !important;
    border-radius: 5px !important;
}

/* back to top button */
.btt-button {
    height: 42px;
    width: 42px;
    position: fixed;
    color: teal;
    bottom: 10px;
    right: 10px;
    border: medium solid var(--color-teal);
    background-color: var(--color-navy);
    border-radius: 10px !important;
}


/* *** ROWS: General Config ************************************/

.row {
    margin-left: 0 !important;
    margin-right: 0 !important;
}

/* override padding of x clase in alert messages to improve display, and avoid having close 'x' on top of message text */
.alert-dismissible .close {
    padding: .05rem !important;
    margin-right: 5px !important;
    position: relative;
    top: -10px;
    right: -15px;
}

.main-bg {
    margin: 120px 0 auto;
    flex-grow: 1 !important; /* forces content area to grow and fill remaining space between nav and footer */
    min-height: calc(100vh - 278px) !important;  /* nav + main nav + footer height */
}

.main-bg .col-9 {
    padding-left: 0;
}

/* *** NAVBAR ***************************************************/

.nav-profile-photo {
    height: 50px;
    width: 50px;
    border-radius: 50%;
    /* border: 1px solid var(--color-whitesmoke); */
    box-shadow: 0 2px 3px 0 rgba(var(--color-shadow-rgba));
}

#topnav {
    background-color: var(--color-navy);
    max-height: 104px;
    width: 100%;
    padding: 0 2%;
}

#topnav .fa-user, 
#topnav .fa-arrow-right-from-bracket {
    color: var(--color-whitesmoke) !important;
    margin-bottom: 0;
    font-size: 1.1rem;
}

#topnav .fa-user:hover,
#topnav .fa-arrow-right-from-bracket:hover {
    color: var(--color-icy) !important;
}

/* #main-nav {
    background-color: teal;
    padding: 10px 0;
} */

#contact-form,
#subscribe-form {
    background-color: rgba(var(--color-mist-rgb), 0.9);
    height: fit-content;
    padding: 25px 15px;
    border-radius: 25px;
    margin-bottom: 36px;
    width: inherit;
    max-width: 500px;
}

.justify-content-space-evenly {
    justify-content: space-evenly;
  }

.header-container {
    padding-top: 120px;
    padding-bottom: 70px;
    height: calc(100vh - 206px);
    display: none;
}

.navbar {
    padding: 0 !important;
}

.navbar-dark {
    padding-left: 0;
}

.navbar-expand-lg {
    width: 100% !important;
    padding-bottom: 0; 
}

.nav-item {
    font-size: 1.1rem;
}

.nav-link {
    text-align: left;
}

.text-dark {
    color: var(--color-navy) !important;
}

a.text-white:hover {
    color: var(--color-icy) !important;
}

.eg-font {
    font-family: "Big Shoulders Display", sans-serif;
    letter-spacing: 0.03em;
}

.logo {
    margin-top: 0;
    padding-top: 0;
    height: 5.5rem;
    width: 5.5rem;
}

/* .icon-nav {
    color: var(--color-whitesmoke);
} */

#topnav ul li {
    display: inline-block;
    max-width: fit-content;
}

/* .list-inline-item {
    padding-right: 14px;
} */

.list-inline-item p:hover,
.list-inline-item .icon-nav:hover {
    color: var(--color-icy);
    text-align: left;
}

.navbar-toggler {
    padding: .6rem .6rem;
    font-size: 1.2rem;
    border-color: rgba(255, 255, 255, .5);
}


/* Footer */
.footer {
    bottom: 0;
    background-color: var(--color-navy);
    width: 100%;
    padding: 17px;
    position: relative;
    left: 0;
    right: 0;
    margin-top: auto;
}

footer a {
    color: var(--color-whitesmoke) !important;
    text-decoration: none;
    font-size: 1.1rem;
}

footer hr {
    display: none;
}

footer .topage-link {
    font-weight: 400 !important;
    font-size: 1.2rem !important;
}

footer .topage-link:hover {
    color: var(--color-turquoise) !important;
}

#subscribe-link a {
    color: var(--color-whitesmoke) !important;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
} 

#subscribe-link {
    background-color: var(--color-teal);
    padding: 0.5rem;
    display: block;
    width: 100%;
    font-weight: 600;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

#subscribe-link:hover{
    background-color: var(--color-icy);
    color: var(--color-navy) !important;
    font-weight: 600;
}

#subscribe-link a:hover {
    color: var(--color-navy) !important;
} 

.icons-social {
    color: var(--color-icy);
    font-size: 1.5rem;
    padding: 15px;
    transition: all 0.15s linear;
}

.icons-social:hover {
   color: var(--color-whitesmoke); 
    transform: scale(1.2);
    transform: rotate(4deg);
}

/* Searchbar */

.fa-search {
    font-size: 1.5rem;
    color: var(--color-navy);
    margin-right: 1rem;
    margin-top: 1rem;
    background-color: white;
}

.rounded-searchbar {
    border-top-right-radius: 0 !important;
    border-top-left-radius: 50px !important;
    border-bottom-right-radius: 0 !important;
    border-bottom-left-radius: 50px !important;
    height: 40px;
    padding: 0 0 0 15px;
}

.rounded-searchicon {
    border-top-left-radius: 0 !important;
    border-top-right-radius: 50px !important;
    border-bottom-left-radius: 0 !important;
    border-bottom-right-radius: 50px !important;
    height: 40px;
    padding: 0 0 0 15px;
}

/* from Bulma */
.icon {
    align-items: center;
    display: inline-flex;
    justify-content: center;
    height: 1.5rem;
    width: 1.5rem;
}

/* custom backgrounds */
.bg-custom-dark {
    background-color: var(--color-navy);
    color: var(--color-whitesmoke);
}

.bg-teal {
    background-color: rgba(0,128,128, .4);
}


/* custom fonts */
.text-muted {
    color: var(--color-steel);
}

.text-grey {
    color:  var(--color-slate);
}

.text-dark {
    color: var(--color-navy);
}

.larger-title {
    font-size: 2.8rem;
    color: var(--color-navy);
}

.charmonman-regular {
    font-family: "Charmonman", cursive;
    font-weight: 400;
    font-style: normal;
  }

.charmonman-title {
    font-family: "Charmonman", cursive;
    font-weight: 400;
    font-style: normal;
    font-size: 4rem;
}
  
.charmonman-bold {
    font-family: "Charmonman", cursive;
    font-weight: 700;
    font-style: normal;
}

.logo-link {
    width: fit-content;
    text-align: left !important;
    padding-left: 50px;
}

/* .dropdown-menu {
    background-color: var(--color-icy);
    box-shadow: 0 1px 3px 0 #737577;    
} */

.btt-link {
    cursor: pointer;
    position: absolute;
    display: flex;
    top: 13px;
    right: 13px;
    z-index: 999;
    text-decoration: none;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

.remove-item {
    margin-bottom: 15px;
}

.update-link,
.remove-item {
    cursor: pointer;
}

a.update-link,
a.remove-item, 
span.btt-link:hover {
    text-decoration: none;
    font-weight: bold;
}

/* Overlays - transparencies to improve accessibility/ readibility */

.overlay-birds,
.overlay-azure-mist {
    pointer-events: none;
}

.overlay-azure-mist {
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    position: fixed;
    /* background: linear-gradient(260deg,rgba(var(--color-teal-rgb), 0.75) 17%, rgba(0, 136, 143, 0.80) 100%); */
    background: rgba(var(--color-mist-rgb), 0.9);
    z-index: -1;
}

.overlay-birds {
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    position: fixed;
    background: url('/static/images/bg_globe&birds.png') no-repeat center center fixed;
    background-size: cover;
    z-index: -2;
}

.overlay-globe {
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    position: fixed;
    background: url('/static/images/bg_landing.png') no-repeat center center fixed;
    background-size: cover;
    z-index: -2;
}

/* .overlay-light {
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    position: fixed;
    background: rgba(255, 235, 235, 0.8);
    background-size: cover;
	z-index: -1;
} */

/* .clean-link {
    color: var(--color-navy);
    font-size: 1rem; 
}

.clean-link a:hover {
    font-weight: 500;
} */

/* #sort-selector,
.sort-select-wrapper {
    border-radius: 50px !important;
    height: 40px;
    padding: 0 15px;
} */


/* *****************************************************|
|****** Index Page *************************************|
|*******************************************************/

#index {
    position: relative;
    overflow: hidden;
    min-height: calc(100vh - 120px) ; /* nav margin-top 120px */
    padding: 200px 14% 60px;
    z-index: 2;
    width: 100%;
}

.index-top-video {
    position: absolute;
    bottom: 0 !important;
    right: 0 !important;
    width: 110vw;
    min-width: 110vw;
    height: 100vh;
    min-height: 100vh;
    object-fit: cover;
    /* z-index: -1; */
    z-index: 99;
    pointer-events: none;
}

.hero-title-image {
    display: block;
    width: 100%;
    max-width: 610px;
    height: auto;
    object-fit: contain;
    margin: 0 auto 1.5rem -10%;
    z-index: 999 !important;
}

.hero-title-image-mobile {
    display: none;
}

#index .row {
    position: relative;
    z-index: 2;
}

#index h1 {
    line-height: 1.2;
}

#index h2 {
    font-size: 2.3rem;
    font-weight: 700;
    font-family: 'Lato', sans-serif;
    color: var(--color-whitesmoke);
    width: 65%;
    margin: 6rem 0 2rem;
    line-height: 1.4;
    text-transform: uppercase;
}

#index h2 span {
    color: var(--color-cyan);
}

#index header p {
    color: var(--color-icy);
    margin-top: 0.25rem;
    font-size: 1.2rem;
    width: 75%;
    text-justify: none;
}

#index .platform-laptop {
    position: relative;

    width: 100%;
    min-width: 0;
    max-width: 100%;
    height: auto;

    margin: 0 auto;
}

#index .platform-laptop img,
#index .platform-laptop-static-image {
    position: static;
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    margin: 0 auto;
    object-fit: contain;
}


/* === HERO LAYOUT ================== */

.index-hero-row {
    min-height: calc(100vh - 70px);
}

/* Left content */
.index-content-column {
    position: relative;
    z-index: 4;
}

/* Right laptop column */
#index .index-laptop-column {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
    min-height: 0;
    padding-left: 15px;
    padding-right: 15px;
    overflow: visible;
}


/* =========================================================
   COMPLETE LAPTOP SHOWCASE
========================================================= */

.platform-showcase {
    position: relative;
    width: 100%;
    max-width: none;
    margin: 0 auto;
    /* transform: translateX(-26%); */
    /* transform: translateY(0); */
    /* z-index: 20; */
}

/*
The laptop image determines the dimensions of the entire
component. The screen is then positioned relative to it.
*/
.platform-laptop {
    --screen-top: 14.6%;
    --screen-left: 17.35%;
    --screen-width: 66%;
    --screen-height: 53.6%;
    position: relative;
    width: 100%;
    min-width: 100%;
    max-width: none;
    margin: 0 auto;
}

/* Actual transparent laptop PNG */
.platform-laptop-image {
    position: relative;
    z-index: 6;
    display: block;
    width: 100%;
    height: auto;
    margin: 0;
    pointer-events: none;
    user-select: none;
}

/* =========================================================
   SCREEN AREA
========================================================= */
/*
These measurements correspond to the generated laptop image.

Because the laptop image still contains a dark screen,
the slideshow must sit ABOVE the laptop image.

The overlay is limited precisely to the inner display,
so it does not cover the black bezel.
*/
.platform-laptop-screen {
    position: absolute;
    top: var(--screen-top);
    left: var(--screen-left);
    width: var(--screen-width);
    height: var(--screen-height);
    z-index: 2;
    overflow: hidden;
    margin: 0;
    padding: 0;
    background-color: var(--color-navy);
    border-radius: 1px;
}


/* =========================================================
   SLIDES
========================================================= */
/*
Your slides are <figure> elements.

This removes the browser's default figure margins and
stacks every slide in precisely the same screen position.
*/

.platform-slide {
    position: absolute;
    inset: 0;
    /* left: 1.5%;
    top: 1.5%; */
    width: 97%;
    height: 100%;
    margin: 0;
    padding: 0;
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    transition: opacity 700ms ease-in-out, visibility 700ms ease-in-out;
}

/* Image inside every figure */
.platform-slide img {
    display: block;
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;

    margin: 0 auto;

    /* object-fit: contain;
    object-position: top center; */
    /*
    Fills the complete inner laptop display.
    A very small amount may be cropped at the sides.
    */
    object-fit: contain;
    object-position: top top;
    /* image-rendering: auto; */
}

.platform-slide.active {
    opacity: 1;
    visibility: visible;
}

/* =========================================================
   CAPTION
========================================================= */

.platform-showcase-caption {
    position: relative;
    z-index: 4;

    margin-top: 0.75rem;

    text-align: center;
}

.platform-showcase-eyebrow {
    color: rgba(255, 255, 255, 0.68);

    font-size: 0.75rem;
    font-weight: 600;

    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.platform-current-slide {
    color: var(--color-whitesmoke);

    font-size: 0.95rem;
    font-weight: 500;
}


/* =========================================================
   SLIDE NAVIGATION DOTS
========================================================= */

.platform-slide-controls {
    position: relative;
    z-index: 4;

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

    gap: 0.65rem;

    margin-top: 0.75rem;
}

.platform-slide-dot {
    display: block;

    width: 9px;
    height: 9px;

    margin: 0;
    padding: 0;

    background-color: transparent;

    border: 1px solid var(--color-turquoise);
    border-radius: 50%;

    cursor: pointer;

    transition:
        background-color 200ms ease,
        border-color 200ms ease,
        transform 200ms ease;
}

.platform-slide-dot:hover {
    transform: scale(1.25);
}

.platform-slide-dot:focus {
    outline: 2px solid rgba(var(--color-turquoise-rgb), 0.45);
    outline-offset: 3px;
}

.platform-slide-dot.active {
    background-color: var(--color-turquoise);
    border-color: var(--color-turquoise);
}

/* ******************************* |
|**** FOOTER **********************|
|******************************** */

#index .footer {
    bottom: 0;
    background-color: var(--color-navy);
    width: 100%;
    padding: 17px;
    position: relative;
    left: 0;
    right: 0;
    margin-top: auto;
}


/* service card */
/* #individual-services .card {
    margin: 15px 30px;
}

#individual-services .card {
    border-radius: 20px !important;
    border: inset 3px var(--color-teal);
}

#individual-services .card-body {
    border-radius: 0;
    border-top: solid 2px var(--color-navy);
    background-color: var(--color-navy);
   color: var(--color-whitesmoke);
    height: 100px !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

#individual-services .card-body h3 {
    color: var(--color-whitesmoke);
    font-family: "Big Shoulders Display" !important;
    letter-spacing: 0.03em;
    font-size: 1.5rem;
    font-weight: 600;
}

#individual-services .card-body > p {
    font-size: 1.2rem;
    padding: 0.5rem 35px;
}

#individual-services .card-img-top {
    border-top-left-radius: 17px;
    border-top-right-radius: 17px;
}

span.vertical-line {
    font-size: 2rem;
}

#individual-services .card-footer {
    background-color: #cfd7df !important;
    border-bottom-right-radius: 17px;
    border-bottom-left-radius: 17px;
    border: inset 3px teal;
} */


/* Companies */

/* #companies h2,
#subscribe-page h2 {
    font-size: 1.5rem;
    line-height: 1.5;
    padding-left: 20px;
} */


/**** Django Messages *****************/

.messages {
    position: fixed; 
    top: 120px;        
    right: -50px;       
    z-index: 9999;     
    width: fit-content;  
    padding: 0;     
    margin-right: 7%;
}

.alert {
    background-color: var(--color-whitesmoke);
    color: var(--color-teal);
    border-radius: 8px;
    padding: .75rem 1rem !important;
    /* margin: 0 50px 0 0; */
    position: fixed;
    right: 20px;
}


/* Services & Details Pages */

/* #pack-details,
#individual-services {
    padding: 0 7%;
}

.table-wrapper td,
.table-wrapper th {
    min-width: 100px !important;
}

.img-details {
    border-radius: 25px !important;
} */


/**** BAG ************************************/

.img-bag {
    border-radius: 25px !important;
}

/* Keep table headers on BAG template visible on all screens */
.table thead {
    display: table-header-group;
}

/* not to get confused with .qty_input for JS */
.qty-input {
    min-width: 52px !important;
    width: 52px !important;
    max-width: 52px !important;
    text-align: center;
}

#bag-grand-total {
    font-family: "Big Shoulders Display", sans-serif;
    letter-spacing: 0.03em;
    color: var(--color-whitesmoke);
    font-size: 2rem;
}

/* make update/delete icons display properly, avoid overlapping */
#cart-update {
    min-width: 120px !important;
}


/*** Stripe Styling **********************************/
.StripeElement,
.stripe-style-input {
  box-sizing: border-box;
  height: 40px;
  padding: 10px 12px;
  border: 1px solid gray;
  border-radius: 5px;
  background-color: white;
  box-shadow: 0 1px 3px 0 #e6ebf1;
  -webkit-transition: box-shadow 150ms ease;
  transition: box-shadow 150ms ease;
}

.StripeElement--focus,
.stripe-style-input:focus,
.stripe-style-input:active {
  box-shadow: 0 1px 3px 0 #cfd7df;
}

.StripeElement--webkit-autofill {
  background-color: #fefde5 !important;
}

.stripe-style-input::placeholder {
    color: #aab7c4;
}

.fieldset-label {
    position: relative;
    right: .5rem;
}

#payment-form .form-control,
#card-element {
    color: #000;
    border: 1px solid #000;
    border-radius: 5px;
}


/********** About ************************/
#about a {
    font-weight: 600;
    color: var(--color-navy);
}



/* =========================================================
   LARGE DESKTOPS
========================================================= */

@media (min-width: 1400px) {


}


/* =========================================================
   MEDIUM DESKTOPS
========================================================= */

@media (min-width: 992px) and (max-width: 1399.98px) {

    #index {
        /* padding: 120px 6% 60px; */
        padding: 200px 6% 60px;
    }


}




@media (max-width: 1199.99px) {

    /* #index .platform-showcase {
        position: absolute;
        left: 0;
        top: 21%;
        display: flex;
        transform: translateX(27%);
        transform: translateY(-28%);
        width: 650px;
        height: 650px;
        z-index: 5;
        margin: 0;
    } */

}


/* =========================================================
   TABLETS - Landscape
========================================================= */

@media (max-width: 991.99px) {
    
    nav .navbar-nav {
        -ms-flex-direction: row;
        flex-direction: row;
        gap: 2rem;
    }

    nav .btn-navbar {
        margin-top: 0.5rem;
    }

    .navbar-collapse {
        min-height: 70px;
        max-height: auto;
        padding: 0.25rem 1rem 1rem !important;
        gap: 0.5rem;
    }

    .logo {
        height: 5rem;
        width: 5rem;
        margin-left: 0;
    }

    #index {
        padding: 290px 6% 60px;
    }

    #index .hero-title-image {
        margin: 0 auto;
        width: 100%;
    }

    .main-bg {
        margin: 70px 0 auto;
        /* forces content area to grow and fill 
        remaining space between nav and footer */
        flex-grow: 1 !important;
        /* nav + main nav + footer height */
        min-height: calc(100vh - 257px) !important;
    }

    /* col with order list w. details */
    #profile .col-lg-8 {
        /* returns value to default, 
        to match information div */
        padding-left: 15px;
        padding-top: 60px;
    }

    header ul {
        padding-left: 0 !important;
    }


}



/* =========================================================
   TABLETS - Portrait
========================================================= */

@media (max-width: 767.98px) {

    .btn-custom,
    .btn-custom-teal {
        width: 100% !important; 
        max-width: 100% !important; 
    }

    #index h2 {
        width: 80%;
        line-height: 1.6;
    }

    #index header p {
        width: 80%;
    }

    #index .index-laptop-column {
        width: 100%;
        max-width: 100%;
        padding-left: 0;
        padding-right: 0;
        margin-top: 2.5rem;
    }

    #index .platform-showcase {
        width: 100%;
        max-width: 100%;
    }

    #index .platform-laptop {
        width: 100%;
        max-width: 760px;
    }

    #index .platform-laptop-static-image {
        width: 100%;
        max-width: 100%;
        height: auto;
    }

    #checkout-page {
        padding-left: 0;
        padding-right: 0;
    }

    .table tbody tr {
        display: block;
        margin-bottom: 1rem;
    }

    .table td {
        display: block;
        width: 100%;
        text-align: left;
        position: relative;
        padding-left: 1rem;
        border: none;
    }

    /* Add header labels above each cell using the data-label attribute */
    .table td::before {
        content: attr(data-label);
        font-weight: bold;
        display: block;
        text-transform: uppercase;
        margin-bottom: 0.5rem;
    }

    /* Optional class to force display as a block on small screens */
    .d-sm-table-cell {
        display: block !important;
    }

    /* Hide table header on small screens */
    .table thead {
        display: none;
    }
}


/* =========================================================
   X-SMALL DEVICES
========================================================= */

@media (max-width: 575px) {
    
    body {
        padding-left: 15px;
        padding-right: 15px;
    }

    #index {
        padding-left: 15px;
        padding-right: 15px;
        padding-top: 330px;
    }

    .logo {
        height: 4.5rem;
        width: 4.5rem;
        margin-left: 0;
    }

    #index .hero-title-image {
        display: none;
    }

    #index .hero-title-image-mobile {
        display: block;
        width: 80%;
    }

    #index h2 {
        line-height: 1.1;
        width: 90%;
    }

    #index header p {
        width: 90%;
    }

    #index .index-laptop-column {
        padding-left: 0;
        padding-right: 0;

        overflow: visible;
    }

    #index .platform-showcase,
    #index .platform-laptop,
    #index .platform-laptop-static-image {
        width: 100%;
        max-width: 100%;
    }
    
    .topage-links {
        display: flex;
        flex-direction: column;
    }

    .topage-links a {
        margin-bottom: 1rem !important;
    }

    .topage-links span {
        display: none;
    }

    footer hr {
        display: block;
        width: 90%;
    }

    .col-9 {
        padding-right: 0 !important;
        padding-left: 0 !important;
    }

    #pack-details,
    #individual-services {
        padding: 0 4%;
    }

    #pack-details .col-12,
    #individual-services .col-12 {
        padding-left: 0;
        padding-right: 0;
    }

    #individual-services .card-body > p {
        font-size: 1.2rem;
        padding: 5px 12px;
    }
    
    .font-xs-small {
      font-size: 2.5rem;
    }
}



/* =========================================================
   RESPONSIVE STATIC LAPTOP IMAGE — FINAL OVERRIDE
========================================================= */

/* #index .index-laptop-column {
    position: relative;

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

    min-width: 0;
    min-height: 0;

    padding-left: 15px;
    padding-right: 15px;

    overflow: visible;
} */


/* #index .platform-showcase {
    position: relative;

    top: auto;
    right: auto;
    bottom: auto;
    left: auto;

    display: block;

    width: 100%;
    max-width: 100%;
    height: auto;

    margin: 0 auto;

    transform: none;

    overflow: visible;
} */


/* #index .platform-laptop {
    position: relative;

    width: 100%;
    min-width: 0;
    max-width: 100%;
    height: auto;

    margin: 0 auto;
}


#index .platform-laptop img,
#index .platform-laptop-static-image {
    position: static;

    display: block;

    width: 100%;
    max-width: 100%;
    height: auto;

    margin: 0 auto;

    object-fit: contain;
} */


@media (max-width: 767.98px) {

    /* #index .index-laptop-column {
        width: 100%;
        max-width: 100%;

        padding-left: 0;
        padding-right: 0;

        margin-top: 2.5rem;
    } */

    /* #index .platform-showcase {
        width: 100%;
        max-width: 100%;
    } */

    /* #index .platform-laptop {
        width: 100%;
        max-width: 760px;
    } */

    /* #index .platform-laptop-static-image {
        width: 100%;
        max-width: 100%;
        height: auto;
    } */
}



@media (max-width: 575.98px) {

    /* body {
        padding-left: 15px;
        padding-right: 15px;
    }

    #index {
        padding-left: 15px;
        padding-right: 15px;
    } */

    /* #index .hero-title-image {
        display: none;
    }

    #index .hero-title-image-mobile {
        display: block;
    }

    #index h2 {
        line-height: 1.1;
    }

    #index .index-laptop-column {
        padding-left: 0;
        padding-right: 0;

        overflow: visible;
    }

    #index .platform-showcase,
    #index .platform-laptop,
    #index .platform-laptop-static-image {
        width: 100%;
        max-width: 100%;
    } */


}



@media (max-width: 329.98px) {
    .logo {
        height: 4rem;
        width: 4rem;
        margin-left: 0;
    }
	
    .navbar-toggler {
        margin-right: 15px !important;
        margin-left: auto !important;
    }

    .index-cta-button,
    .error-page-button {
        min-width: 100%;
        font-size: 1rem;
    }

    #index h1 {
        font-size: 2.5rem;
        padding-left: 0;
    }

    #pack-details, 
    #individual-services {
        padding-left: 12px;
        padding-right: 12px;
    }
}
