
* {
    font-family: 'Helvetica', 'Arial', 'Sans serif';
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

@font-face {
    font-family: 'cooperhewitt';
    src: url(./fonts/cooper/cooper-hewitt.book.otf)
}

@font-face {
    font-family: 'cooperbold';
    src: url(./fonts/cooper/cooper-hewitt.bold.otf)
}

@font-face {
    font-family: 'montserrat';
    src: url(./fonts/montserrat/Montserrat-Regular.otf);
}

@font-face {
    font-family: 'montlite';
    src: url(./fonts/montserrat/Montserrat-Light.otf);
}

body {
    background-color: #111111;
    border-color: #1D2125;
    color: #B6C2CF;
    margin: 0px;
    min-width: auto;
}

.body {
    font-family: 'montserrat';
}

#scaling {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2px;
    font-size: 14px;
    font-family: 'montserrat';
    background-color: #111;
    color: #5ADED1;
}


.header {
    font-family: 'montlite';
    font-size: 34px;
    padding: 16px;
    display: flex;
    margin-top: 0px;
    margin-bottom: 0px;
    background-color: #000;
    justify-content: center;
}

#navBar {
    display: flex;
    justify-items: end;
}

.navBtn {
    background-color: #1D2125;
    color: #FFF;
    flex: 3 1 auto;
    min-width: 25%;
    min-height: 32px;
    font-family: 'montserrat';
    box-shadow: 1px 1px 1px #000;
    border: none;
    transition-property: background-color;
    transition-duration: 180ms;
    transition-timing-function: ease-in;
}

.navBtn:hover {
    background-color: aquamarine;
    color: #000;
}

.navBtn:active {
    background-color: #FFF;
    color: #000;
    font-family: 'montlite';
}

.hero {
    display: grid;
    grid-template-columns: 1fr; /* Start with a single column */
    margin: 2px;
}

#hero {
    background-image: url(./images/kvistholt-unsplash.jpg);
    background-attachment: scroll;
    background-repeat: no-repeat;
    background-size: cover;
}

.platGrid {
    display: grid;
    grid-template-columns: 1fr; /* Start with a single column */
    margin: 4px;
    gap: 4px;
}


@media (min-width: 720px) { /* Adjust this breakpoint to your preference */
    .hero {
        grid-template-columns: repeat(2, 1fr); /* Two columns on wider screens */
    }

    .platGrid {
        grid-template-columns: repeat(2, 1fr); /* Two columns on wider screens */
    }

    #hero {
        background-attachment: fixed;
    }
}

.heroBrick {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 12px;
    margin: 2px;
    background-color: rgba(1, 1, 1, 0.9);
    color: #B6C2CF;
    box-shadow: 2px 2px 2px #5ADED1;
    font-family: 'montserrat';
    transition-property: background-color;
    transition-duration: 90ms;
    transition-timing-function: ease-in;
}

.platBrick {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 8px;
    background-color: rgba(1, 1, 1, 0.6);
    color: #B6C2CF;
    box-shadow: 2px 2px 2px #5ADED1;
    font-family: 'montserrat';
}

.endBrick {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 8px;
    background-color: rgba(1, 1, 1, 0.6);
    color: #B6C2CF;
    box-shadow: 1px 1px 1px greenyellow;
    font-family: 'montserrat';
}

.heroBrick:hover {
    background-color: #111111;
    color: #FFF;
    box-shadow: 3px 3px 3px #FFF;
}

.heroBtn {
    padding: 8px;
    text-decoration: none;
}

.callAct {
    background-color: #5ADED1;
    color: #000;
    border: none;
    min-height: 32px;
    max-height: 32px;
    min-width: 150px;
    max-width: 200px;
    border-radius: 0px;
    font-family: 'montserrat';
    transition-property: background-color;
    transition-duration: 180ms;
    transition-timing-function: ease-in;
}

.callAct:hover {
    background-color: #FFF;
}

.wall {
    display: grid;
    grid-template-columns: 1fr;
    margin: 0px;
}

@media (min-width: 720px) {
    .wall {
        grid-template-columns: repeat(2, 1fr); 
    }
}

.brick {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 8px;
    background-color: rgba(1, 1, 1, 0.6);
    color: #B6C2CF;
    box-shadow: 1px 1px 1px #5ADED1;
    font-family: 'montserrat';
}

.tagline {
    display: flex;
    flex-wrap: wrap;
    min-width: auto;
    font-family: 'montlite';
    font-size: 18px;
    padding: 2px;
}

h2 {
    font-size: 22px;
    font-family: 'montserrat';
    align-self: center;
    text-align: center;
}

h3 {
    font-size: 18px;
    font-family: 'montserrat';
    align-self: center;
    text-align: center;
}

h4 {
    font-size: 14px;
    font-family: 'montserrat';
    align-self: center;
}

.platform {
    background-color: #000000;
    display: flex;
    padding: 2px;
    justify-content: center;
    flex-direction: column;
}

.p2 {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    flex-wrap: wrap;
    font-size: 16px;
    padding: 12px;
    background-color: #111111;
    margin: 6px;
    list-style: none;
    align-items: center;
    box-shadow: 1px 1px 1px #5ADED1;
    border-radius: 1px;
}

.p3 {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    flex-wrap: wrap;
    margin: 8px;
    padding: 2px;
    background-color: #111111;
    color: #B6C2CF;
    font-family: 'montserrat';
    align-items: center;
    justify-content: center;
    justify-items: center;
    text-align: center;
}

.homLnk {
    color: #B6C2CF;
    font-size: 18px;
    text-decoration: none;
    font-family: 'montserrat';
}

.homLnk:hover {
    color: aquamarine;
}

.homLnk:active {
    text-decoration: wavy;
    color: #FFF;
}

.extLnk {
    color: #B6C2CF;
    text-decoration: none;
    font-family: 'montlite';
}

.extLnk:hover {
    color: aquamarine;
}

.extLnk:active {
    text-decoration: wavy;
    color: #FFF;
}

.panel {
    display: flex;
    flex-direction: row;
    justify-content: center;
    background-color: #111111;
    height: auto;
    padding: 22px;
    min-width: auto;
}

.logolink {
    display: flex;
    flex: .33 5 0;
    height: auto;
    max-width: 300px;
}

.footBar {
    display: flex;
    justify-content: space-evenly;
    color: #B6C2CF;
    padding: 8px;
    font-size: 18px;
    font-family: 'montserrat';
}

.barLinks {
    color: #B6C2CF;
    font-size: 18px;
    text-decoration: none;
    font-family: 'montlite';
}

.barLinks:hover {
    color: aquamarine;
}

.barLinks:active {
    color: #FFF;
}

.footer {
    display: flex;
    flex-direction: column;
    font-size: 12px;
    text-align: right;
    padding: 2px;
    padding-right: 6px;
    margin: auto;
    height: 14px;
    background-color: #B6C2CF;
    color: rgb(0, 0, 0)
}

.showCase {
    background-color: #000000;
    margin-left: 18px;
    margin-right: 18px;
}

.p4 {
    margin: 8px;
    padding: 2px;
    color: #B6C2CF;
    font-family: 'montserrat';
    align-items: center;
    justify-content: center;
    justify-items: center;
}

.p4x {
    margin: 8px;
    padding: 2px;
    color: #B6C2CF;
    font-family: 'montserrat';
    text-align: center;
    align-items: center;
    justify-content: center;
    justify-items: center;
}

#portBrick {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    min-width: 40%;
}

@media (min-width: 540px) {
    #portBrick {
        min-width: 80%;
    }    
}

.portImg {
    max-width: 180px;
    max-height: 180px;
    border-radius: 3px;
    box-shadow: 1px 1px 1px #5ADED1;
}

.portImg:hover {
    box-shadow: 1px 1px 1px #FFF;
}

.portItems {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#portOffer {
    text-align: center;
}

#prodGrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); 
    gap: 3px;
    justify-items: center;
}

@media (max-width: 964px) {
    #prodGrid {
        grid-template-columns: repeat(1, 1fr); 
    }
}

.prodItem {
    display: flex;
    flex-direction: column;
    min-width: 80%;
    margin: 4px;
    padding: 4px;
    background-color: rgba(1, 1, 1, 0.6);
    box-shadow: 1px 1px 1px #5ADED1;
    border-radius: 1px;
    border-color: #5ADED1;
    justify-items: center;
    align-content: space-evenly;
}

.priceHead {
    font-family: 'montlite';
    justify-content: center;
    display: flex;
}

.headCon {
    max-width: 24px;
    padding: 8px;
}

.webCon {
    max-width: 16px;
    padding: 2px;
}

.pricePoint {
    display: flex;
    align-content: left;
}

#priceQuote {
    align-self: self-end;
}

#stripePlug {
    font-family: 'montlite';
    font-size: 12px;
    align-self: center;
    padding: 12px;
}

#stripeLink {
    font-family: 'montserrat';
    font-size: 12px;
    color: #5ADED1;
}

#stripeLink:hover {
    color: #008cdd;
}

#stripeLink:active {
    color: #FFF;
}

#badges {
    padding: 8px;
}

#badgeRow {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.cert {
    max-width: 160px;
    min-width: 75px;
    padding: 4px;
}

@media (max-width: 420px) {
    #badgeRow {
        flex-direction: column-reverse;
    }

    #portBrick {
        flex-direction: column;
        justify-content: first baseline;
    }
}

.terms {
    display: flex;
    justify-content: flex-end;
    font-family: 'montserrat';
    color: #5ADEE1;
    padding: 2px;
    padding-right: 6px;
    font-size: 14px;
}

#termsLink {
    color: #5ADEE1;
}

.termList {
    padding: 8px;
}

.terms:hover {
    color: #FFF;
}

.terms:active {
    color: aquamarine;
}

#phone {
    text-decoration: none;
    color: #5ADED1;
}

::selection {
    background-color: aquamarine;
    color: #000;
}

::-moz-selection {
    background-color: aquamarine;
    color: #000; 
}


#gdprBanner {
    background-color: rgb(0, 0, 0, .6);
    max-height: 72px;
    color: #FFF;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 10px;
    box-shadow: 0 2px 4px rgba(90, 222, 225, 1);
}

.gdprPrompt {
    text-decoration-style: underline #5ADEE1;
}

.cookieBtn {
    background-color: #1D2125;
    color: #fff;
}

.cookieBtn:hover {
    background-color: #FFF;
    color: #111111;
}

.cookieBtn:active {
    background-color: #000;
    color: aquamarine;
    text-decoration: wavy;
}

#closeBanner {
    color: #111111;
}

#appstatus {
    font-family: 'montlite';
    padding: 4px;
}

.appstatus2 {
    font-family: monospace;
    background-color: aquamarine;
    padding: 1px;
    color:#000000
}

.appstatus3 {
    font-family: monospace;
    background-color: goldenrod;
    padding: 1px;
    color:#000000
}

.appstatus4{
    font-family: monospace;
    padding: 1px;
    color: #000000;
    background-color: #B33951;
}

.construction {
    background-color: #B6C2CF;
    padding-left: .5%;
    color: rgb(0, 0, 0);
    text-align: center;
    font-size: 15px;
}