@font-face {
    font-family: "FuturaLTW01-LightOblique"; 
    src: url("fonts/9a7e574c3eda05d71d03345d3f9e268e.eot"); 
    src: url("fonts/9a7e574c3eda05d71d03345d3f9e268e.eot?#iefix") 
    format("embedded-opentype"), url("fonts/9a7e574c3eda05d71d03345d3f9e268e.woff2") 
    format("woff2"), url("fonts/9a7e574c3eda05d71d03345d3f9e268e.woff") 
    format("woff"), url("fonts/9a7e574c3eda05d71d03345d3f9e268e.ttf") 
    format("truetype"), url("fonts/9a7e574c3eda05d71d03345d3f9e268e.svg#FuturaLTW01-LightOblique") 
    format("svg"); 
}

@font-face {
  font-family: 'GlacialIndifference-Regular';
  src: url('fonts/GlacialIndifference-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'Montserrat-Light';
  src: url('fonts/Montserrat-Light.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'Montserrat-Regular';
  src: url('fonts/Montserrat-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

* {
  box-sizing: border-box;
}

html {
    /*overflow-x: hidden;*/
}

body { 
    padding: 0px;
    margin: 0px;
    color: #000014;
    /*color: #333;*/
    font-size: 20px;
}

body, div, p, h2, h3, h4, button, a, input {
    font-family: "Montserrat-Light";
}

div {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

p { 
    font-size: 18px;
    line-height: 24px;
}

a {
    text-decoration: none;
    color: #000014;
}

a:hover {
    color: #8ecff5;
}

b{
    font-size: 18px;
    font-weight: bold;
    color: #000;
}

h1 {
    font-family: "GlacialIndifference-Regular";
    padding: 0px;
    margin: 0px;
    font-size: 80px;
}

h3 {
    font-weight: normal;
}

.title-slider{
    width: 100%;
    padding-left: 100px;
    padding-right: 100px;
    background-image: url("/images/covers/home.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.title-content {
    color: #fff;
    max-width: 1000px;
    margin: auto;
}

.content-div {
    padding: 50px;
    padding-top: 200px; 
    padding-bottom: 200px
}

@media (min-width: 768px) {
    .show-on-mobile{
        display: none;
    }   
}

@media (max-width: 768px) {
    .hide-on-mobile{
        display: none;
    }   
    
    h1 {
        font-size: 40px;
    }

    .title-slider{
        padding-left: 40px;
        padding-right: 40px;
    }

    .content-div {
        padding: 20px;
        padding-top: 100px; 
        padding-bottom: 100px
    }
    
    .content-div p {
        font-size: 14px;
    }
    
    h3 {
        font-size: 18px;
    }
}

h2 {
    font-size: 30px;
    margin-top: 10px;
    margin-bottom: 10px;
}

button {
    background-color: #00001400;
    color: #000014;
    /*color: white;*/
    border: none;
    padding: 10px 20px;
    font-size: 1em;
    cursor: pointer;
    border-left: 6px solid #db0000;
    transition: border-left 0.3s ease;
}

button:hover {
    border-left: 12px solid #db0000;
}


img {
    object-fit: cover;
}

.image-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 100%;
    overflow: hidden;
    gap: 10px; /* Adjust gap as needed */
    max-width: 1000px;
    margin: auto;
}

.image-row img {
    height: 80px;
    object-fit: contain;
}

@media (max-width: 768px) {
    .image-row {
        padding: 20px;
        padding-top: 0px;
    }
    
    .image-row img {
        flex: 1 0 20%; /* Adjust to ensure 3 images per row on mobile */
        max-width: 100%;
        margin-top: 20px;
    }
}

/*HEADER*/

.header {
    position: absolute;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #ffffff;
    padding: 10px 20px;
    color: #000014;
    border-bottom: 6px solid #db0000;
    z-index: 1000;
}
.header .logo {
    display: flex;
    align-items: center;
    cursor: pointer;
}
.header .logo img {
    height: 70px;
    margin-right: 15px;
}
.header .logo {
    font-size: 1.5em;
    font-weight: bold;
}
.nav {
    display: flex;
    list-style-type: none;
    margin: 0;
    padding: 0;
}
.nav li {
    margin: 0 15px;
    position: relative;
}
.nav li a {
    color: #000014;
    text-decoration: none;
    font-size: 0.8em;
}
.nav li a:hover {
    color: #1071ba;
}
.nav li .dropdown {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #ffffff;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    list-style: none;
    padding: 0;
    margin: 0;
    width: 200px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}
.nav li:hover .dropdown {
    opacity: 1;
    visibility: visible;
    z-index: 10;
}
.nav li .dropdown li {
    margin: 0;
    padding: 0;
}
.nav li .dropdown li a {
    padding: 10px 20px;
    display: block;
}
.company-name h1 {
    font-size: 1.1em;
    font-weight: bold;
    margin-top: 4px;
    margin-bottom: 0px;
    line-height: 40px;
    letter-spacing: 4px;
}
.company-name h2 {
    font-size: 0.4em;
    font-weight: bold;
    margin-top: 0px;
}
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}
.menu-toggle span {
    height: 2px;
    background: #000;
    margin: 4px;
    width: 25px;
}
@media (max-width: 768px) {
    .nav {
        display: none;
        flex-direction: column;
        width: 100%;
    }
    .cta-button {
        display: none;
    }
    .nav.active {
        display: flex;
        position: absolute;
        background: #fff;
        top: 80px;
        right: 0px;
        width: auto;
        padding: 20px;
    }
    .nav.active li{
        margin: 5px 15px;
    }
    .menu-toggle {
        padding: 18px;
        display: flex;
    }
    .header {
        flex-direction: row;
        align-items: flex-start;
    }
}


/*FOOTER*/

.footerBar {
    padding-top: 20px;
    background-color: #ffffff;
    color: #000014;
    transform: translateY(0);
    transition: transform 0.3s ease-out;
    align-items: flex-start;
    justify-content: center;
    box-shadow: 0px 5px 5px #00000030;
    z-index: 1;
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    border-top: 6px solid #db0000;
}

.footerSection {
    padding: 0 40px;
    flex: 1 1 220px;
    text-align: left;
    margin: 20px 0;
}

.footerSection p, .footerSection a{
    font-size: 14px;
}

.footerSection a {
    color: #000014;
    display: block;
    margin-bottom: 10px;
}

.footerSection ul {
    list-style: none;
    padding: 0;
}

.footerSection .footerTitle a{
    font-size: 18px;
    margin-bottom: 18px;
}

.footerLogo, .footerContact {
    flex-basis: 100%;
    text-align: center;
    border: none;
}

.footerLogo {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footerLogo a {
    margin-top: 10px;
}

.footerLogo .footer-cta {
    background-color: #000014; 
    color: #fff; 
    padding: 10px; 
    font-size: 16px; 
    cursor: pointer; 
    width: 100%; 
    max-width: 150px;
    text-align: center;
}

.footerContact {
    text-align: left;
}

@media (min-width: 768px) {
    .footerLogo, .footerContact {
        flex-basis: auto;
        text-align: left;
    }
    .footerContact {
        margin-top: -70px;
        text-align: right;
        flex: 1 1 100%;
    }
}

.calendly-inline-widget {
    width: 1100px; 
    max-width: 100%; 
    margin-top: 0px;
    margin: auto; 
}

.calendly-inline-widget iframe{
    height: 960px; 
    overflow: hidden;
}

@media (max-width: 400px) {
    .calendly-inline-widget iframe{
        height: 1100px; 
        overflow: hidden;
    }
}

@media (min-width: 768px) {
    .calendly-inline-widget iframe{
        height: 1100px; 
        overflow: hidden;
    }
}

@media (min-width: 1125px) {
    .calendly-inline-widget iframe{
        height: 700px; 
        overflow: hidden;
    }
}

@media (min-width: 0px) {
    .modal .calendly-inline-widget iframe{
        height: calc(100vh - 120px);
        margin-top: 100px;
        overflow: hidden;
    }
}


/*CARDS*/


.card-container {
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 15px;
}

.card {
    height: 100%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Adds shadow */
    background-color: #ffffff;
    background-size: cover;
    background-position: center;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Adds hover animations */
    cursor: pointer;
}

.card:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3); /* Intensifies shadow on hover */
}

.card-heading { 
    color: #fff; 
    background: linear-gradient(to top, black, transparent);
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 20px;
}

.headshot-container .card-heading {
    /*background-color: #f0f0f0f0;*/
    /*background: linear-gradient(to top, #f0f0f0f0, #f0f0f0f0);*/
    /*color: #000014; */
}

.card-heading a { 
    color: #fff; 
}

.card-subheading {
    font-size: 14px;
    margin-top: 5px;
    cursor: pointer;
}

.gaf-lineup .card-heading { 
    font-size: 32px;
}
.gaf-lineup .card-subheading {
    font-size: 16px;
}

/*HEADSHOT CARDS*/

.headshot-container .card {
    width: 100%; 
    height: 320px;
}

.headshot-container .card-container {
    margin-bottom: 80px;
}

@media (max-width: 768px) {
    .headshot-container .card-container {
        flex-direction: column; 
        margin-bottom: 20px;
    }
    
    .headshot-container .card {
        height: 300px;
        width: 100%; 
    }
}



/*REVIEW CARDS*/

.review-cards .card {
    width: calc(100% / 3);
}

@media (max-width: 768px) {
    .review-cards {
        flex-direction: column;
    }
    .review-cards .card{
        width: calc(100%);
    }
}



/*PROJECT CARDS*/

.card-container.project-cards {
    flex-wrap: wrap;
}

.project-cards .card {
    flex: 1 1 calc((100% / 4) - 20px);
    margin: 10px;
    height: 300px;
}

@media (max-width: 768px) {
    .project-cards .card {
        flex: 1 1 calc((100%) - 20px);
    }
}



/*TILE CARDS*/

.card-container.tile-cards {
    flex-wrap: wrap;
}

.tile-cards .card {
    flex: 1 1 calc((100% / 6) - 20px);
    margin: 10px;
    height: 500px;
}

@media (max-width: 768px) {
    .tile-cards .card {
        flex: 1 1 calc((40%) - 20px);
        height: 300px;
    }
    .tile-cards .card:nth-child(5) {
        height: 200px;
    }
}



/*SIDE BY SIDES*/

.side-side div{
    margin-bottom: 50px;
}

.side-side .card-container div{
    margin-bottom: 0px;
}
    
.side-side div:nth-child(1) {
    margin-right: 0px;
}

@media (min-width: 768px) {
    .side-side {
        display: flex; flex-direction: row; 
    }

    .side-side div{
        margin-bottom: 0px;
    }
    
    .side-side div:nth-child(1) {
        margin-right: 80px;
    }
}



/*FAQS*/

.faq-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    margin-bottom: 100px;
}
.faq-item {
    margin-bottom: 20px;
}
.faq-header {
    background-color: #eee;
    border-left: 6px solid #db0000;
    color: black;
    padding: 10px;
    cursor: pointer;
    transition: border-left 0.3s ease;
}

.faq-header:hover {
    border-left: 12px solid #db0000;
}

.faq-content {
    display: none;
    padding: 10px;
    margin-top: 20px;
    border: 1px solid #333;
    border-radius: 5px;
}



/*MODAL*/

.modal {
    display: none;
    position: fixed;
    z-index: 10;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
    background-color: #fefefe;
    margin: auto;
    padding: 20px;
    border: 1px solid #888;
    width: calc(100% - 200px);
    max-width: 1200px;
    position: relative;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

@media (max-width: 768px) {
    .modal-content {
        width: calc(100% - 80px);
    }
}

/*PROJECT SHOWCASE MODAL*/

.modal-showcase-img-main {
    max-width: 100%; height: 100%;
}

.modal-showcase-pillar-img {
    max-width: 100%; 
    flex-grow: 1; 
    object-fit: cover; 
    margin-bottom: 10px;
}

.modal-showcase-pillar {
    display: flex; 
    flex: 1; 
    flex-direction: column; 
    margin-right: 40px;
    margin-left: 10px;
}
    
.modal .side-side div{
    margin-bottom: 0px;
}
    
.modal .side-side div:nth-child(1){
    margin-right: 0px;
}

@media (max-width: 768px) {
    .modal .modal-showcase-pillar {
        margin-left: 10px;
        margin-right: 10px;
    }
    
    .modal .close {
        border-radius: 50%;
        margin-top: -20px;
        margin-bottom: -25px;
        background-color: #fff;
        width: 40px;
        height: 40px;
        vertical-align: middle;
        text-align: center;
        position: absolute;
        padding-top: 4px;
        right: 0px;
    }
    
    .modal .side-side div{
        margin: 0px;
        margin-right: 0px;
        width: 100%;
    }
    
    .modal-showcase-pillar {
        display: flex; 
        flex: 1; 
        flex-direction: row; 
        height: 150px;
    }
    .modal-showcase-pillar-img {
        max-width: calc(100% / 3); 
        margin-top: 10px;
        height: 100px;
        flex-grow: 1; 
        object-fit: cover; 
        margin-bottom: 10px;
    }

}


/*FLOW ARROWS*/

.flow-arrow-descriptions {
    display: flex;
    flex-direction: row;
}

.flow-arrow-container {
    display: flex; 
    flex-direction: row; 
    margin-right: 50px; 
    margin-top: 40px;
}

.flow-arrow-block h2{
    font-size: 40px; 
}

.flow-arrow-block{
    height: 110px;
    flex: 1; 
    display: flex; 
    text-align: center; 
    padding: 20px; 
    position: relative; 
}

.flow-arrow-diamond{
    position: absolute; 
    top: 0; 
    bottom: 0; 
    right: -20px; 
    width: 20px;
}

.flow-arrow-diamond div{
    position: absolute; 
    width: 78px; 
    height: 78px;
    transform: rotate(45deg); 
    top: 50%; 
    transform: translateX(-50%) translateY(-50%) rotate(45deg);
}

@media (max-width: 768px) {
    .flow-arrow-descriptions {
        flex-direction: column;
    }

    .flow-arrow-container {
        margin-right: 30px; 
        margin-top: 80px;
    }

    .flow-arrow-block h2{
        font-size: 20px; 
        margin-top: -50px;
    }

    .flow-arrow-block{
        height: 60px;
        width: calc((100% + 0px) / 3);
        padding: 0px;
    }

    .flow-arrow-diamond{
        position: absolute; 
        top: 0; 
        bottom: 0; 
        right: -20px; 
        width: 20px;
    }
    
    .flow-arrow-diamond div{
        position: absolute; 
        width: 42px; 
        height: 42px;
        transform: rotate(45deg); 
        top: 50%; 
        transform: translateX(-50%) translateY(-50%) rotate(45deg);
    }
}
