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

:root {
    /* --header-background : #ff7f00; */
    /* --header-background : #e65100; */
    /* --header-background : #2a65a9; */
    /* --header-background : #652aa9 ; */
    --header-background : #0f4177 ;
    --background-color : #e3e9eb;
    --primary-color : #040506;
    --electric-text : #a7e0ff;
    --link-color: #dbd66f;
    --link-color-hover: #fffaa2;
    --dark-gold : #b7890b;
    --footer-background-color: #170039;
    /* --alt-background-color :#646464;
    --nav-background : #fffdda;
    --menu-background : #ffe9d7;
    --sub-menu-border-color :#646464;
    --alt-text-background :#646464;
    --alt-text-color : #ffe9d7;
    --nav-link-text:#646464;
    --nav-link-text-hover:#323232;
    --footer-background-color: #212121;
    --item-counter-bg: #d72929; */
}


* {
    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 {
    top: 0;
    left: 0;
    height: 80px;
    width: 100%;
    position: fixed;
    display: flex;
    flex-direction: row;
    align-items: center;
    background: var(--primary-color);
    color: var(--dark-gold);
    z-index: 200;
}

.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;
}

.nav-area a:hover {
    color: var(--link-color-hover);
}

 /* change the enlighten electrical text  */

 .nav-area .enlighten-text-mobile {
    display: none;
 }

#enlighten-logo {
    padding: 6px;
    width: 50px;
    height: 50px;
}

#enlighten-logo g path {
    fill: var(--link-color);
}

/* POP-UP MENU  */

.menu-area.hidden {
    display: none;
}

.menu-area {
    position: fixed;
    top: 80px;
    margin-left: 10px;
    padding: 10px;
    background: #170039;
    border-radius: 10px;
    border: #333 1px solid;
    z-index: 300;
    font-size: 30px;
}

.menu-area nav li {
    margin: 4px 0;
    list-style: none;
}

.menu-area nav a {
    color: var(--link-color);
    text-decoration: none;
}

/* HEADER  */

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

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: center;
    align-items: center;
    color: #fff;
    height: 60vh;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
}

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


header h1 {
    color: #ffffff;
    font-size: 130px;
    font-family: 'Orbitron', sans-serif;
    font-weight: 100;
    text-transform: capitalize;
    z-index: 100;
}

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

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

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

.call-to-action .contact .text{
    color: #fff;
}

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

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

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


/* 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  */

 .request-quote-form {
    width: 60%;
 }
 
 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;
    align-items: center;
}


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

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




/* sections */

section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 40px;
}

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

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


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

/* 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: 1050px) {
    .call-to-action .contact {
        font-size: 60px;
    }

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

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


@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 {
        flex-direction: column;
        align-items: center;
    }

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

    .nav-area nav {
        display: none;
    }

    .nav-area .enlighten-text {
        display: none;
     }

    .nav-area .enlighten-text-mobile {
        display: inline-block;
        margin: auto;
        font-size: 40px;
     }

    button {
        font-size: 1rem;
    }
}

@media (max-width: 720px) {
    .hero-area h1{
        font-size: 60px;
    }

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

@media (max-width: 660px) {
    .image-grid.certs {
        display: flex;
        flex-direction: column;
    }
    
    .request-quote-form {
        width: 100%;
    }
  }


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

    button {
        font-size: .75rem;
    }

    header h1 {
        font-size: 2rem;
    }

    header h2 {
        font-size: 1rem;
    }

    .hero-area h1{
        font-size: 40px;
    }

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

    .nav-area .enlighten-text-mobile {
        font-size: 30px;
    }

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

    .form-group {
        flex-direction: column;
        align-items: flex-start;
    }

    .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;
    }
}


/* Height Queries  */

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

    footer {
        height: 100%;
    };
}