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

html {
    scroll-padding-top: 6em;
    scroll-behavior: smooth;
}

a {
    color: #fff;
    text-decoration: none;
}

img {
    width: 100%;
}

.orange {
    color: rgb(255, 131, 8);
}

.hardline {
    display: block;
    width: 100%;
    height: 1px;
    background-color: rgb(0, 0, 0, .3);
}

body {
    font-family: "Roboto", sans-serif;
}




header {
    position: sticky;
    top: 0;
    z-index: 2;
    background-color: black;
    height: 6em;
}
.header-container {
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 3em;
}
#header-logo img {
    width: 5em;
    transition: 500ms ease-in-out;
}
#header-logo img:hover {
    width: 6em;
}
header nav ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2em;
}
header nav ul li a {
    font-size: 14pt;
    transition: 500ms ease-in-out;
}
header nav ul li a:hover {
    color: rgb(255, 131, 8);
}

/* Active styling */
header nav a.is-active {
  color: rgb(255, 131, 8);
  text-decoration: underline;
  text-underline-offset: 0.25em;
  text-decoration-thickness: 2px;
}
header nav a { opacity: 0.9; transition: color .2s, opacity .2s; }
header nav a.is-active { opacity: 1; }

.mobile-header {
    display: none;
}

@media (min-width: 769px) {
    #mobile-menu { /* Built in JS */
        display: none !important;
    }
}

@media (max-width: 768px){
    .header-container {
        margin: 0 1em;
    }
    header nav {
        display: none;
    }
    .mobile-header {
        display: block;
        color: #fff;
        font-size: 24pt;
    }
    .mobile-header:hover {
        cursor: pointer;
    }
    /* prevent background scroll */
    body.no-scroll { overflow: hidden; }

    /* slide-down panel */
    #mobile-menu {
    position: fixed;
    top: 6em; left: 0; right: 0;
    background: #000;
    border-top: 1px solid rgba(255,255,255,.1);
    box-shadow: 0 12px 24px rgba(0,0,0,.35);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: transform .25s ease, opacity .25s ease;
    z-index: 2;            /* header is on top */
    }

    /* open state */
    #mobile-menu.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
    }

    #mobile-menu ul {
    list-style: none;
    margin: 0;
    padding: .75rem 1rem 1rem;
    display: grid;
    gap: .25rem;
    }
    #mobile-menu a {
    display: block;
    padding: .85rem .75rem;
    border-radius: 8px;
    font-size: 16pt;
    color: #fff;
    text-decoration: none;
    transition: background .2s ease, color .2s ease;
    }
    #mobile-menu a:hover {
    background: rgba(255,255,255,.06);
    color: rgb(255,131,8);
    }

    /* match active/hover look */
    #mobile-menu a.is-active {
    color: rgb(255,131,8);
    text-decoration: underline;
    text-underline-offset: .25em;
    text-decoration-thickness: 2px;
    }
}

#hero {
    position: relative;
    height: 40em;
    overflow: hidden;
    color: #fff;
}
#hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 0;
}
#hero-background {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -1;
    transform: translate(-50%, -50%);
    object-fit: cover;
}
.hero-container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 1em;
    margin: 0 3em;
    position: relative;
    z-index: 1; /* above overlay and video */
    text-align: center;
    color: white;
    padding: 2rem;
}
.hero__h3 {
    font-size: 26pt;
}
.hero__h2 {
    font-size: 36pt;
    font-weight: 900;
}
.contact-button {
    background-color: rgb(255, 131, 8);
    font-size: 2em;
    padding: 1rem 2rem;
    margin-top: 1em;
    font-weight: 500;
    border-radius: 10px;
    transition: 500ms ease-in-out;
}
.contact-button:hover {
    cursor: pointer;
    box-shadow: 0 0 10px 5px rgb(255, 131, 8);
    background-color: rgb(255, 155, 54);
}

@media (max-width: 768px){
    .hero-container {
        margin: 0 1em;
    }
    .hero__h3 {
        font-size: 24pt;
    }
    .hero__h2 {
        font-size: 30pt;
    }
}

/* Start of Discovery section */
#discovery-container {
    margin: 0 3em;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.discovery__grid {
    height: 30em;
    display: grid;
    grid-template-columns: 1fr 1fr;
}
.dg-left, .dg-right {
    display: flex;
    align-items: center;
    justify-content: center;
}
.dgl__h2 {
    font-size: 3em;
    font-weight: 600;
    text-align: center;
}
.dgr__slider {
  position: relative;
  max-width: 800px;
  margin: auto;
  overflow: hidden;
}

.slide {
  display: none;
  text-align: center;
}
.slider-title {
    font-family: "Saira", sans-serif;
    font-size: 32pt;
    font-weight: 600;
    margin: 0rem 0em 1rem;
    transition: 300ms ease-in-out;
}

.slide img {
  max-width: 70%;
  height: auto;
}

/* Arrows */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  padding: 16px;
  font-size: 24px;
  font-weight: bold;
  color: #888;
  user-select: none;
  transition: background 0.3s;
}

.prev:hover, .next:hover {
  color: #444;
}

.prev { left: 10px; }
.next { right: 10px; }

/* Dots */
.dots {
  text-align: center;
  margin-top: 1rem;
}

.dot {
  height: 12px;
  width: 12px;
  margin: 0 6px;
  background-color: #888;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
  transition: background-color 0.3s;
}

.dot.active {
  background-color: #444;
}


.discovery-site-section {
    margin: 4em 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.dss__h2 {
    font-size: 46pt;
    font-weight: 600;
}
.dss__h2-p {
    margin-top: 1rem;
    font-size: 18pt;
}
.dss__grid {
    display: grid;
    grid-template-columns: 4fr 1fr 4fr;
    margin: 3em 0;
    gap: 3em;
}
.dss__grid-l img, .dss__grid-r img {
    width: 80%;
}
.dss__grid-l, .dss__grid-r, .dss__grid-m {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.dss__grid-mobile {
    display: none;
}

@media (max-width: 768px){
    #discovery-container {
        margin: 0 1em;
    }
    .discovery__grid {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        height: auto;
        margin: 2em 0;
    }
    .dgl__h2 {
        font-size: 20pt;
    }
    .slider-title {
        font-size: 2em;
        white-space: nowrap;
    }
    .discovery-site-section h2 {
        font-size: 28pt;
    }
    .dss__grid {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .dss__grid-l, .dss__grid-m, .dss__grid-r {
        display: none;
    }
    .dss__grid-mobile {
        display: block;
    }

}
@media (max-width: 1024px){

}
@media (max-width: 1280px){

}

/* Start of about section (orange) */
#about {
    background-color: rgb(255, 131, 8);
    box-shadow: 0 0 5px 2px rgba(0, 0, 0, .4);
    padding: 2em 0;
}

#about__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin: 0 3em;
    height: 100%;
}

.ag-l, .ag-r {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: #fff;
}
.ag-l img {
    width: 50%;
}
.about__title h2 {
    font-size: 28pt;
}
.about__title p {
    font-size: 16pt;
}
.ag-r__grid {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 1em;
    margin-top: 1em;
}
.ag-card {
    background-color: #fff;
    color: rgb(255, 131, 8);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1em;
    border-radius: 8pt;
    text-align: center;
    font-size: 18pt;
    font-weight: 500;
    box-shadow: 1px 1px 3px 1px rgba(0, 0, 0, .4);
}
@media (max-width: 1024px) {
    .ag-l img {
        width: 70%;
    }
    .ag-r__grid {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 640px) {
    .ag-l {
        display: none;
    }
    #about__grid {
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 1em;
    }
}

/* Start of gallery section */
#gallery {
    margin: 3em;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.gallery__title {
    margin-bottom: 1em;
    margin: 0 0 2em;
    align-self: flex-start;
}
.gallery__title h2 {
    font-size: 36pt;
    font-weight: 500;
}
.gallery__title p {
    font-size: 20pt;
}
.gallery__grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 1em;
    height: 40em;
    overflow: hidden;
    transition: height 0.5s ease-in-out;
    padding: 1rem;
}
.gg-card {
    box-shadow: 0px 0px 5px 2px rgba(0, 0, 0, .3);
}

.gg-sm-btn {
    color: rgba(0, 0, 0, .4);
    font-size: 18pt;
    font-weight: 600;
    text-align: center;
    margin-top: 1rem;
    transition: 500ms ease-in-out;
}
.gg-sm-btn:hover {
    color: rgba(0, 0, 0, .6);
}

@media (max-width: 1024px) {
    .gallery__grid {
        grid-template-columns: 1fr 1fr 1fr;
    }
}
@media (max-width: 640px) {
    #gallery {
        margin: 3em 1em;
    }
    .gallery__grid {
        grid-template-columns: 1fr 1fr;
    }
}


/* Start of contact section */
#contact {
    height: 36em;
    background-color: rgb(255, 131, 8);
    box-shadow: 0 0 5px 2px rgba(0, 0, 0, .4);
    display: flex;
    justify-content: center;
    align-items: center;
}
.contact__grid {
    margin: 0 3em;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6em;
}
.cg-l {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: #fff;
}
.cg-l h2 {
    font-size: 42pt;
}
.cg-l p {
    font-size: 20pt;
}
.cgl-hardline {
    display: block;
    width: 100%;
    height: 2px;
    background-color: rgba(255, 255, 255, 1);
    margin-top: 1rem;
}
.cgl-description {
    margin: 1rem 0;
    text-align: center;
}
.cgl-direct-contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}
.cgl-direct-contact a {
    font-size: 20pt;
    text-decoration: underline;
}

.cg-r {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 2px 2px 5px 2px rgba(0, 0, 0, .4);
    
}

.cg-r .form-container{
    display: flex;
    align-items: center;
    border-radius: 8px;
    justify-content: center;
    height: 30em;
}

.calendly-inline-widget {
    min-width: 100%;
    min-height: 100%;
    width: 100%;
    height: 100%;
    border-radius: 8px;
}

.contact__mobile {
    display: none;
}

@media (max-width: 768px) {
    #contact {
        height: 46em;
    }
    .contact__grid {
        display: none;
    }
    .contact__mobile {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        height: 90%;
        background-color: #fff;
        margin: 0 3em;
        border-radius: 8px;
        box-shadow: 2px 2px 5px 2px rgba(0, 0, 0, .4);
    }
    .contact__mobile .contact__mobile__title {
        font-size: 16pt;
        white-space: nowrap;
        margin: 1em 0;
        padding: .5 1em;
        text-align: center;
    }
    .contact__mobile .form-container {
        max-height: 100%;
        height: 100%;
    }
    .contact__mobile__alternate {
        margin: 1em 0;
        font-size: 16pt;
        text-align: center;
        padding: .5em 1em;
    }
    .contact__mobile__alternate a {
        color: #000;
    }
}

/* Start of faq section */
.faq-container {
    margin: 2em 3em;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.faq-header {
    align-self: flex-start;
}

.faq-header h2 {
    font-size: 36pt;
}

.faq-header p {
    font-size: 20pt;
}

.faq-list {
    width: 100%;
}

.faq-item {
    margin-top: 1rem;
    border: 1px solid #888;
    border-radius: 12px;
    transition: 500ms ease-in-out;
    padding: 10px 10px;
}

.faq-item button, .faq-a {
    width: 100%;
    font-size: 18pt;
    text-align: left;
    background: none;
    border: none;
    transition: 500ms ease-in-out;
    color: #000;
}

.faq-q:hover {
    color: rgb(255, 131, 8);
    cursor: pointer;
}
.faq-a p {
    margin-top: 1rem;
    font-size: 18pt;
}
.faq-item .faq-q[aria-expanded="true"] {
    color: rgb(255, 131, 8) !important;
}


/* Start of footer section */
footer {
    background-color: #000;
    color: #fff;
}
footer a {
    transition: 500ms ease-in-out;
}
footer a:hover {
    color: rgb(255, 131, 8);
}
.footer__container {
    margin: 0 3em;
    padding: 1em 0;
    text-align: center;
    display: grid;
    grid-template-columns: 1fr 2fr 2fr;
    gap: 3em;
}
#footer__logo {
    display: flex;
    align-items: center;
    justify-content: center;

}
#footer__nav {
    list-style-type: none;
    display: grid;
    grid-template-rows: 1fr 1fr 1fr 1fr 1fr 1fr;
    align-items: center;
    font-size: 16pt;
}
.footer-title {
    font-size: 20pt;
    font-weight: 600;
}
#footer__contact {
    display: grid;
    grid-template-rows: 2fr 1fr 2fr 1fr 2fr 2fr;
    align-items: center;
}
#footer__contact a {
    font-size: 16pt;
}
#footer__copyright {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    color: #000;
    padding: 10px 0;
}

@media (max-width: 768px) {
    .footer__container {
        grid-template-columns: 1fr 1fr;
        align-items: center;
        justify-content: center;
    }
    #footer__contact {
        display: none;
    }
}