/* General */

@font-face {
    font-family: 'roboto';
    src: url(/fonts/Roboto-VariableFont_wdth,wght.ttf);
    font-weight: 1 1000;
  }

@font-face {
    font-family: 'bebas-neue';
    src: url(/fonts/BebasNeue-Regular.ttf);
    font-weight: 1 1000;
}

@font-face {
    font-family: 'icon';
    src: url(/fonts/MaterialSymbolsSharp-VariableFont_FILL\,GRAD\,opsz\,wght.ttf);
}

* {
    box-sizing: border-box;
    font-family: 'roboto', sans-serif;
    margin: 0;
    padding: 0;
}

:root {
    --content-color: #111;
    --background-color: #fff;
    --primary-color: #EFA322;
    /* --primary-color: #6b2aa8; */
    /* --secondary-color: #85c0eb; */
    --secondary-color: #66808a;
    --dark-primary: #0a6496;
    --accent-color: #ff5630;
    --brand-green: #449933;
    --full-width: 1280px;
    --body-width: 900px;
}

body {
    position: relative;
    color: var(--content-color);
    background-color: var(--background-color);
    margin:0;
}

img {
    object-fit: contain;
    max-width: 100%;
    max-height: 100%;
  
    min-width: 0;
}
iframe {
    border: none;
    display: block;
    max-width: 100%;
}
ul,ol {
    padding-inline-start: 1.5rem;
}
/* Text */

h1,h2,h3,h4 {
    font-weight: 600;
    font-family: 'roboto', sans-serif;
    color: var(--secondary-color);
    margin: 12px 0;
}

.light-mode h1, .light-mode h2, .light-mode h3, .light-mode h4 {
    color: inherit;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}


h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

a {
    color: var(--content-color);
}

p {
    font-weight: 400;
    line-height: 1.75;
    font-size: 1.25rem;
    text-wrap: pretty;
    margin: 12px 0;
}

strong {
    font-weight: 600;
}

figcaption {
    opacity: .75;
    font-size: .75rem;
    text-align: center;
}

li {
    font-size: 1.25rem;
    line-height: 1.75;
}

/* Elements */

section {
    margin: auto;
    padding: 0 1rem;
    max-width: var(--full-width);
}

section:has(header) {
    background-color: var(--background-color);
    max-width: 100vw;
}

menu ul {
    list-style: none;
    padding-inline-start: 16px;
}

menu ul li {
    position: relative;
    padding: 6px 0;
    font-size: 1.25rem;
}

menu ul li ul {
    position: absolute;
    width: 156px;
    display: block;
    row-gap: 8px;
    margin-top: 4px;
    padding-top: 4px;;
    background-color: var(--background-color);
    border-left: 1.5px solid var(--content-color);
    /* box-shadow: 0 10px 8px 0 rgba(0,0,0,0.1); */
    display: none;
}

menu ul li:hover ul {
    display: block;
}

button {
    padding: .75rem 1.25rem;
    border: none;
    text-transform: uppercase;
    opacity: 1;
    font-size: 18px;
    border-radius: 4px;  
    
}
button:hover {
    transform: scale(1.025);
    opacity: .9;
    
}
.button-a, .button-b, .button-c, .button-d {
    padding: .75rem 1.25rem;
    border: none;
    text-transform: uppercase;
    text-decoration: none;
    opacity: 1;
    font-size: 1.25rem;
    border-radius: 4px;
    display: inline-block; 
}
.button-a:hover, .button-b:hover, .button-c:hover, .button-d:hover  {
    transform: scale(1.025);
    opacity: .9;
}

.button-a {
    color: var(--background-color);
    background: var(--primary-color);
    border: 2px solid var(--primary-color) ; 
   
}

.button-b {
    color: var(--background-color);
    background: var(--secondary-color);
    border: 2px solid var(--secondary-color) ;
}

.button-c {
    color: inherit;
    background: none;
    border: 2px solid var(--primary-color) ;
}
.button-d {
    color: inherit;
    background: none;
    border: 2px solid var(--secondary-color) ;
}

button a {
    color: inherit;
    text-decoration: inherit;
}

.icon {
    font-family: icon;
    text-align: center;
    font-size: 48px;
    font-weight: 300;
}

/* Unique Elements */

a.logo {

    max-width: 450px;
}

.circle-image-45 {
    border-radius: 100%;
    box-shadow: -10px 14px 0 0 var(--secondary-color);
    max-width: 300px;
}

.circle-image-90 {
    border-radius: 100%;
    box-shadow: 0 14px 0 0 var(--secondary-color);
    max-width: 300px;
}



.top-ribbon {
    display: block;
    text-align: center;
    color: var(--background-color);
    background-color: var(--primary-color);
    padding: 8px 0;
    
}

#showcase {
    min-height: 50vh;
}
span.divider {
    display: block;
    height: 1.5px;
    background-color: var(--content-color);
    opacity: .25;
    max-width: var(--full-width);
    margin: auto;
}

.cover {
    position: relative;
    min-height: 300px;
    max-height: fit-content;
    z-index: 0;

}

.cover > img, .cover > video  {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.cover .window-pane {
    position: absolute;
    height: 100%;
    width: 100%;
    opacity: 0.8;
    z-index: -1;
}


.icon-card {
    position: relative;
    padding: 20px;
    margin-top: 20px;
    border-left: 2px solid var(--secondary-color);
    border-right: 2px solid var(--secondary-color);
    border-bottom: 2px solid var(--secondary-color);
    backdrop-filter: blur(4px);
}
.icon-card > .icon {
    position: absolute;
    top: -32px;
    left: 50%;
    transform: translateX(-50%);
}

.icon-card::before, .icon-card::after {
    content: '';
    position: absolute;
    height: 3px;
    width: 33%;
    top: 0;

    background-color: var(--secondary-color);
}
.icon-card::before {
    left: 0;
}
.icon-card::after {
    right: 0;
}

.featured-product-card {
    background-color: var(--content-color);
    border-left: 6px solid var(--primary-color);
}
.featured-product-card p {
    min-height: 96px;
    margin-left: 12px;
    margin-right: 12px;
}
.testimonials blockquote {
    position: relative;
    margin-left: 0;
    padding-left: 1rem;
    border-left: 3px solid var(--accent-color);
}

.testimonials blockquote::before {
    content: '"';
    position: absolute;
    font-family: 'roboto';
    font-size: 256px;
    opacity: 0.1;
    left: -24px;
    top: -64px;
}

.testimonials cite p {
    font-family: 'montserrat';
    font-weight: 600;
    color: var(--dark-primary);
}

.toggle .show::after {
    content: ' More';
}
.toggle.active .show::after {
    content: ' Less';
}

.toggle .icon {
    font-size: 20px; 
    display: inline-block; 
    position:relative;  
    top: 5px;
    color: var(--accent-color);
}
.toggle.active .icon {
    transform: rotate(180deg);
    top: 4px;
}

.team-card p:nth-of-type(3) {
    display: none;
}

.team-card h3 a{
    font-family: montserrat;
    color: var(--dark-primary);
}
/* Header */

header {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--content-color);
    margin: auto;
    max-width: var(--full-width);
}
header .logo {
    cursor: pointer;
}
header menu ul {
    align-items: center;
}

header menu a {
    position: relative;
    display: inline-block;
    text-decoration: none;
    transition: opacity .25s;
    font-weight: 400;
    color: inherit;
}

header menu li {
    position: relative;
    z-index: 2;
}

header menu li a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 1.5px;
    background-color: var(--content-color);
    transition: all .25s;
    z-index: 10;
}

header menu li a:hover::after {
    width: 100%;
}

header li:has(ul) {
    margin-right: 8px;
}

header li:has(ul)::after {
    content: '';
    position: absolute;
    height: 5px;
    width: 5px;
    border-bottom: 2px solid var(--content-color);
    border-right: 2px solid var(--content-color);
    right: -12px;
    top: 16px;
    transform: rotate(45deg);
    
}

header li:has(ul):hover::after {
    transform: rotate(-135deg);
}

header button::after {
    display: none;
}

header .toggler, header .hamburger {
    display: none;
}

/* Footer */

footer {
    background-color: var(--content-color);
}
footer a {
    color: var(--background-color);
}
.footer-grid {
    grid-template-columns:repeat(2, 1fr);
    padding: 0;
}
footer > .flex {
    align-items: flex-start;
}
.f-info ul {
    padding-inline-start: 18px;
}
.f-social {
    float: right;
}

.f-social ul {
    padding-inline-start: 0;
}
.f-social li {
    list-style: none;
    height: 48px;
    width: 48px;
    margin-right: 12px;
}
footer button {
    font-size: 1.15rem;
}
/* Utilities */

.full-width {
    max-width: var(--full-width);
}

.body-width {
    max-width: var(--body-width);
}

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

.fs {
    font-size: .75rem;
}

.fm {
    font-size: 1.25rem;
}

.fl {
    font-size: 1.5rem;
}

.fxl {
    font-size: 2rem;
}

.my-1 {
    margin-top: .5rem;
    margin-bottom: .5rem;
}

.my-2 {
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.my-3 {
    margin-top: 2rem;
    margin-bottom: 2rem;
}
.my-4 {
    margin-top: 4rem;
    margin-bottom: 4rem;
}

.mx-1 {
    margin-left: 1rem;
    margin-right: 1rem;
}

.mx-2 {
    margin-left: 2rem;
    margin-right: 2rem;
}

.mx-3 {
    margin-left: 4rem;
    margin-right: 4rem;
}

.py-1 {
    padding-top: .5rem;
    padding-bottom: .5rem;
}

.py-2 {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.py-3 {
    padding-top: 2rem;
    padding-bottom: 2rem;
}
.py-4 {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.px-1 {
    padding-left: .5rem;
    padding-right: .5rem;
}

.px-2 {
    padding-left: 1rem;
    padding-right: 1rem;
}

.px-3 {
    padding-left: 2rem;
    padding-right: 2rem;
}
.px-4 {
    padding-left: 4rem;
    padding-right: 4rem;
}
.flex {
    display: flex;
    align-items: center;
}

.flex-column {
    flex-direction: column;
    align-items: center;
    justify-content: baseline;
}

.grid {
    display: grid;
}

.g-2-column {
    grid-template-columns: repeat(2, 1fr);
}

.g-3-column {
    grid-template-columns: repeat(3, 1fr);
}

.g-4-column {
    grid-template-columns: repeat(4, 1fr);
}

.g-6-column {
    grid-template-columns: repeat(6, 1fr);
}

.gap-1 {
    gap: 1rem;
}

.gap-2 {
    gap: 2rem;
}

.gap-3 {
    gap: 4rem;
}

.radius-a {
    border-radius: 4px;
}

.radius-b {
    border-radius: 100px;
}

.light-mode {
    color: var(--background-color);
}

/* Forms */

form input, form textarea {
    /* width: 48%; */
    font-size: 1.25rem;
    background-color: #eee;
    padding: 12px 8px;
    border-radius: 4px;
    border: 3px solid #ccc;
    max-width: 100%;
}

form input:focus, form textarea:focus {
    outline: none;
    border: 3px solid var(--primary-color);
}
form textarea {
    resize: vertical;
    min-height: 300px;
    grid-column: span 2;
}
form input[type='file'] {
    border: none;
    background-color: transparent;
    padding: 0;
}
.custom-file-upload {
    display: block;
    margin-top: 8px;
    color: var(--secondary-color);
}
form input::file-selector-button {
    padding: 12px;
    cursor: pointer;
    background-color: var(--secondary-color);
    color: var(--background-color);
    border: none;
    border-radius: 4px;
}
form button {
    font-size: 1.125rem;
    border-radius: 4px;
    background-color: var(--accent-color);
    color: var(--background-color);
    cursor: pointer;
}
/* Cookie Banner */
#cookie-banner {
    width: 93%;
    max-width: 500px;
    background-color: var(--background-color);
    border: 1px solid var(--content-color);
    border-radius: 6px;
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 5;
}
#cookie-banner button {
    cursor: pointer;
}
/* Media Queries */

@media screen and (max-width: 1000px) {
    .flex {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .grid {
        grid-template-columns: repeat(1, 1fr);
    }
    .grid.m-double-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .gap-3 {
        gap: 2rem;
    }
    header,footer {
        align-items: flex-start;
    }
    
    header menu{
        margin: auto;

    }
    header .logo {
        margin-right: 32px;
        position: relative;
        left: -12px;
    }

    header menu > ul.flex {
        padding-inline-start: 0;
        align-items: flex-start;
        justify-content: flex-start;
    }

    header li:has(ul)::after {
        content: '';
     
        
    }

    footer .flex:has(button) {
        flex-direction: row;
    }
  
    footer .flex {
            align-items: flex-start;
    }

    footer > *, footer > #copy > * {
        margin: 1rem;
    
    }
    .f-social {
        margin: auto;
        margin-top: 1.5rem;
    }

    .f-social ul{
        flex-direction: row;
    }
  
    menu ul li ul {
        display: block;
        position: relative;
    }

    header > menu.flex {
        display: none;
        padding-inline-start: 0;
        padding-bottom: 1rem;
    
    }

    header .toggler {
        position: absolute;
        display: block;
        right: 0;
        top: 12px;
        width: 32px;
        height: 32px;
        cursor: pointer;
        opacity: 0;
        z-index: 2;
    }

    header .hamburger {
        position: absolute;
        right: 0;
        top: 12px;
        width: 32px;
        height: 32px;
        z-index: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        
    }
    
    .hamburger > div {
        position: relative;
        width: 24px;
        height: 2px;
        background-color: var(--content-color);
        transition: all 0.4s ease;
    }

    .hamburger > div::before,
    .hamburger > div::after {
        content: '';
        position: absolute;
        top: -8px;
        width: 100%;
        height: 2px;
        background-color: inherit;
        z-index: 1;
    }

    .hamburger > div::after {
        top: 8px;
    }

    .toggler:checked + .hamburger > div {
        transform: rotate(225deg);
    }

    .toggler:checked + .hamburger > div::before,
    .toggler:checked + .hamburger > div::after {
        top: 0;
        transform: rotate(90deg);
    }

    .toggler:checked ~ menu.flex {
        display: flex;
    }

    .business-info {
        align-items: flex-start;
    }
    form input, form textarea {
        font-size: 1rem;
    
    }
    form textarea {

    grid-column: span 1;
    }
    #copy {
        text-align: center;
    }
    #cookie-banner {
        left: 50%;
        transform: translateX(-50%);
    }
}