@import url('https://fonts.googleapis.com/css2?family=Electrolize&display=swap');


:root {
    --page-margin-color: #fcd89b;
    --header-background : #014075 ;
    --under-header-text : #bad4db;
    --under-header-text-dark : #a0afb4;
    --under-header-link : #e0b849;
    --hero-text-color : #f0f0f0;
    --background-color : #e3e9eb;
    --primary-color : #040506;
    --electric-text : #a7e0ff;
    --link-color: #dbd66f;
    --link-color-hover: #fffaa2;
    --dark-gold : #b7890b;
    --footer-background-color: #2a2116;
    --nav-link-color : #ffffff;
}


* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

html,body {
    /* font-family: 'Courier New', Courier, monospace; */
    font-family: sans-serif;
    font-size: 18px;
    -webkit-font-smoothing: antialiased;
    line-height: normal;
}

p {
    margin: 10px;
}

 /* HEADER SECTION  */

/* NAV AREA */

.nav-area {
    width: 100%;
    display: flex;
    flex-direction: row;
    padding-left: 5rem;
    color: var(--nav-link-color);
}

.nav-area nav {
    padding: 10px 0;
}

.nav-area nav ul {
    display: flex;
    flex-direction: row;
    list-style-type: none;
    flex-wrap: wrap;
}

.nav-area nav ul li{
    padding-right: 10px;
}

.nav-area a {
    text-decoration: none;
    color: inherit;
}

header {
    height: 100vh;
    background: var(--header-background);
}

header .hero-area{
    position: relative;
    width: 100%;
    /* background: linear-gradient(159deg, rgba(0,0,128,1) 0%, rgba(9,9,121,1) 58%, rgba(255,215,0,1) 100%); */
    /* background: linear-gradient(159deg, rgba(0,0,8,1) 0%, rgba(0,0,74,1) 61%, rgba(255,215,0,1) 100%); */
    background: url('assets/img/hero.jpg') no-repeat center center/cover;
    text-align: left;
    color: var(--hero-text-color);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

/* header .hero-area::before {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    width: 100%;
    height: 50vh;
    background: linear-gradient(180deg, rgba(0,0,0,.8) 0%, rgba(0,0,0,.2) 100%);
    
} */


header h1 {
    font-size: 100px;
    padding-left: 5rem;
    font-family: 'Electrolize', sans-serif;
    font-weight: 100;
    text-transform: capitalize;
    z-index: 100;
}

header h2 {
    font-size: 1.5rem;
    font-weight: 100;
}

.call-to-action {
    margin: 5rem;
    display: flex;
    flex-direction: column;
    align-items:flex-start;
    color: #fff;
    font-size: 40px;
}

/* .under-header {
    display: flex;
    flex-direction: row;
} */

header .services {
    margin-left: 5rem;
    width: 50%;
    padding: 3rem;
}

header .services h2{
    color: var(--under-header-text);
}

header .services ul {
    margin: 6px 20px;
}

header .services ul li{
    color: var(--under-header-text-dark);
}


.call-to-action .contact {
    font-size: 50px;

}

.call-to-action .contact .text{
    color: var(--under-header-text);
}

.call-to-action .contact .mobile{
    color: var(--electric-text);
}

.call-to-action .request-quote {
    font-size: 40px;
}

.call-to-action .request-quote a{
    text-decoration: none;
    color: var(--under-header-link);
}


/* GENERAL TAGS */

img {
    width: 100%;
    height: 100%;
}

.divider {
    margin: auto;
    border-top: #d68400 2px solid;
    width: 30%;
    margin-bottom: 2rem;
}

/* layout  */



/* .audio-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

audio {
    padding: 20px 0;
} */


 /* FORMS  */

 input,
 textarea {
    padding: .5rem;
    font-size: 18px;
    border-radius: 10px;
    border: #727171 1px solid;
    margin: 6px 0;
}

textarea {
    resize: none;
}

input:focus {
    outline: #a1bef0 1px solid;
  }

.form-group {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.form-group label{
    width: 30%;
}

.form-group input {
    width: 70%;
}

button {
    font-size: 2rem;
    color: #fff;
    background: rgb(18, 18, 18);
    padding: .5rem;
    border-radius: 6px;
    border: 0;
}

button:hover {
    cursor: pointer;
    background: #434343;
}

form {
    display: flex;
    flex-direction: column;

}

/* images */

.graphic-image-container {
    width: 200px;
    height: 200px;
}

.graphic-image-container img {
    width: 100%;
    height: 100%;
}

.image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
}

.image-grid.jobs{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.image-grid.jobs .img-container{
    width: 300;
    height: 300;
}

.job-item .caption {
    font-weight: bold;
}

.image-grid.certs .img-container {
    width: 300px;
    height: 200px;    
}



.image-text-area {
    display: flex;
    flex-direction: column;
}

.image-text-area .row {
    display: flex;
    flex-direction: row;
    margin: 10px 0;
}

.image-text-area .row:nth-child(odd) {
    flex-direction: row-reverse;
}

.image-text-area .row .col .img-container {
    width: 300px;
    height: 400px;
}

.image-text-area .row .col .img-container img{
    border-radius: 10px;
}




/* sections */


section .section-layout{
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: center;
    
}

section h2, section h3 {
    font-family: 'Electrolize', sans-serif;
    margin: 20px 0;
}

section .section-head {
    font-family: 'Electrolize', sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
}


section h1 {
    font-size: 72px;
    text-align: center;
    color: #01011c;
    margin: 1rem 0;
}

.section-layout .middle {
    width: 80%;
    padding: 10px;
} 

.section-layout .middle ul{
    margin-left: 20px;
} 

.section-layout .left, 
.section-layout .right {
    width: 10%;
    background: var(--page-margin-color);
}

.section-layout .left .img-container, 
.section-layout .right .img-container{
    width: 100px;
    margin: auto;
}



/* VALUES  */

.photo {
    width: 100%;
}

.panel  {
    padding: 2rem;
}

.panel h2 {
    margin: 1rem 0;
}

/* TESTIMONIALS  */

.people .row .col .citation{
    font-weight: bold;    
}

.people .row .col {
    padding-left: 10px;
}

.testimonial {
    position: relative;
}

.testimonial::before,
.testimonial::after {
  vertical-align: middle;
  content: '\201C'; /* Opening curly quote */
  font-size: 2em; /* Adjust the size as desired */
  color: #000; /* Set the color of the curly quotes */
  position: absolute;
}

.testimonial::after {
  content: '\201D'; /* Closing curly quote */
}

.testimonial::before {
    top: 0;
    left: -0.5em; /* Adjust the positioning as needed */
  }
  
  .testimonial::after {
    bottom: 0;
    right: -0.5em; /* Adjust the positioning as needed */
  }

/* FAQ  */

#faq .questions {
    display: flex;
    flex-direction: column;
}

#faq .questions h3 {
    margin: 10px;
}



/* CONTACT  */

/* .contact-card {
    display: flex;
    flex-direction: column;
    width: 50%;
    margin: auto;
}

.contact-card * {
    margin: 1rem 0;
} */


/* FOOTER  */
footer {
    background: var(--footer-background-color);
    height: 16vh;
    color: #fff;
    padding-top: 20px;
    text-align: center;
  }
  
  footer .social-icons {
    width: 50%;
    display: flex;
    flex-direction: row;
    margin: auto;
    justify-content: space-around;
  }
  
  footer a {
    text-decoration: none;
  }
  
  footer svg{
    width: 3rem;
    color: #fff;
  }

  @media (max-width: 1000px) {
    header .hero-area{
        background: url('assets/img/hero_small.jpg') no-repeat center center/cover;
    }

    header .hero-area::before {
        position: absolute;
        top: 0;
        left: 0;
        content: "";
        width: 100%;
        height: 100%;
        background: linear-gradient(180deg, rgba(0,0,0,.8) 0%, rgba(0,0,0,.2) 100%);
        
    }

    header .hero-area {
        height: 100%;
    }

    .nav-area,
    .hero-text,
    .services,
    .call-to-action {
        z-index: 100;
    }

    header .services ul li,
    header .services h2 {
        color: #fff;
    }

  }

  @media (max-width: 990px) {
    .image-grid.certs {
        grid-template-columns: 1fr 1fr;
    }
  }

  @media (max-width: 930px) {
    .left, 
    .right{
        display: none;
    }
  }


@media (max-width: 760px) {

    .image-text-area .row {
        flex-direction: column;
        align-items: center;
    }
    

    .image-text-area .row:nth-child(odd) {
        flex-direction: column;
    }

    .image-text-area .row .col .img-container {
        width: 400px;
    }


    button {
        font-size: 1rem;
    }

    header .hero-area{
        background: url('assets/img/hero_small_mob.jpg') no-repeat center center/cover;
    }

    .call-to-action .contact {
        font-size: 30px;
        margin: auto;
    }

    .call-to-action .request-quote {
        font-size: 30px;
        margin: auto;
    }
}

@media (max-width: 660px) {
    .image-grid.certs {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    header .services {
        width: 100%;
        margin-left: 0;
    }

    header .services ul li {
        color: #fff;
    }


    .nav-business-title {
        display: none;
    }

    header h1 {
        padding-left: 0;
        text-align: center;
    }

    .nav-area {
        padding-left: 0;
        margin: auto;
        justify-content: center;
    }

    .image-grid.certs .img-container {
        width: 200px;
        height: 160px;
    }

    .call-to-action .contact {
        font-size: 20px;
    }

    .call-to-action .request-quote {
        font-size: 20px;
    }

  }


  @media (max-width: 460px) {
    section h1 {
        font-size: 2rem;
    }

    button {
        font-size: .75rem;
    }

    header h1 {
        font-size: 60px;
    }

    .image-text-area.people {
        width: 100%;
    }

    .people .row .col {
        padding-left: 0;
    }

    .image-text-area .row .col .img-container {
        width: 100%;
    }

    footer svg {
        width: 1.5rem;
    }
}


@media (max-width: 450px) {
    section h1 {
        font-size: 2rem;
    }

    button {
        font-size: .75rem;
    }

    header h1 {
        font-size: 50px;
    }

    header h2 {
        font-size: 1rem;
    }

    .nav-area nav ul {
        justify-content: center;
    }

    header  {
        height: 100%;
    }

    /* header:before {
        height: 100%;
    } */
}


/* Height Queries  */

@media (max-height: 610px) {
    header {
        height: 100%;
    }

    footer {
        height: 100%;
    };
}