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

:root {
    --opacity: .87;
    --offwhite: rgba(255,255,255,var(--opacity));
}

*, *::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    color: var(--offwhite);
    /* border: 1px solid red; */
}

body {
    font-family: 'Poppins', sans-serif;
    background: #221e1F;
    color: var(--offwhite);
    position: relative;
}

a {
    text-decoration: none;
}

ul {
list-style: none;
}

.main-header {
    /* border: solid 1px red; */
    position: fixed;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 3;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 60px;
    padding: 0 30px;
    background-color: #221e1F;
}

.main-header h1 {
    font-size: 1.5rem;
    text-align: center;
    max-width: 90%;
}

/* this class added by js */
/* #navbar.change-color {
    background: orange;
  } */

  /* this element added by JS to act as the observer*/
/* .myObserver {
    height: 1px;
    width: 1px;
  
    pointer-events: none;
    position: absolute;
    bottom: 0;
    z-index: -1;
    overflow: hidden;
  } */

  .logo {
    margin: auto;
}

.logosmall {
    display: none;
}

.desktop-main-menu {
    margin-right: 50px;
    padding: 20px;
    line-height: 1.25rem;
    text-align: center;
}

.desktop-main-menu ul {
    display: flex;
}

.desktop-main-menu ul li {
    position: relative;
    margin-right: 20px;
    padding-bottom: 2px;
}

.desktop-main-menu ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: #fff;
    transform: scaleX(0);
    transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    transform-origin: right center;
    
}

.desktop-main-menu ul li a:hover::after {
    transform: scaleX(1);
    transform-origin: left center;
    transition-duration: 0.4s;
}

/* .section-a {
    position: relative;
    display: flex;
    height: 90vh;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}  */

.mobile-description {
    /* display: none; */
    text-align: center;
    margin: 10px auto 15px;
}

.mobile-description-about {
    text-align: center;
    margin: 0px auto 15px;
}

.mobile-description-about h2 {
font-size: 2.25rem;
    font-weight: 600;
    line-height: 2.5rem;
    padding: 5px 20px 10px 20px;
    margin: auto;
}

.mobile-description-about p {
    text-align: left;
}

.about-bios h2 {
    margin-bottom: 5px;
}

.about-bios p {
    margin-bottom: 10px;
}

.section-a {
    position: relative;
    /* border: 1px red solid; */
    display: flex;
    align-items:  center;
    justify-content: center;
}

.section-a-about {
    margin-top: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-a video {
    width: 100vw;
    height: 50vw;
    position: relative;
    object-fit: cover;
    top: 0;
    left: 0;
    opacity: .75;
} 

.section-a img {
    width: 100vw;
    height: 50vw;
    position: relative;
    object-fit: cover;
    top: 0;
    left: 0;
    opacity: .75;
} 

.section-a-inner {
    position: absolute;
    /* border: 1px solid yellow; */
    text-align: center;
    padding: 20px;
}

.section-a-inner h2 {
    font-size: 2.25rem;
    font-weight: 600;
    line-height: 2.5rem;
    padding: 20px 20px 10px 20px;
    color: var(--offwhite);
    margin: auto;
  
}

.section-a-inner h3 {
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1.75rem;
    padding: 0px 30px 5px 20px;
    margin: auto;
}

.section-a-inner p {
    font-size: 1.25rem;
    line-height: 1.75rem;
    font-weight: 400;
    padding-bottom: 10px;
}

.section-inner {
    position: absolute;
    bottom: 200px;
    left: 150px;
    max-width: 560px;
}

.call-to-action {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.call-to-action a {
    background: rgba(186, 12, 47, .84);
    padding: 10px 30px;
    color: #111;
    margin: auto;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.25rem;
    transition: 0.2s;
    border-radius: 5px;
}

.call-to-action a:hover {
    letter-spacing: 6px;
}

.call-to-action p {
    padding: 5px;
    font-size: 1em;
}

.arrow {
    display: none;
    position: relative;
    bottom: -1.75rem;
    /* left: 50%; */
    /* margin-left: -20px; */
    width: 30px;
    height: 30px;
    background-image: url(arrow.png);
    background-size:contain;
}

.bounce {
    animation: bounce 2s infinite;
}

    @keyframes bounce {
        0%, 20%, 50%, 80%, 100% {
            transform: translateY(0);
        }
        40% {
            transform: translateY(-20px);
        }
        60% {
            transform: translateY(-15px);
        }
    }

.cmp-button {
  position: relative;
  cursor: pointer;
  font-family: "Merriweather Sans", sans-serif;
  font-weight: bold;
  font-size: 1rem;
  text-align: center;
  transition: all 250ms cubic-bezier(0.19, 1, 0.22, 1);
  border: solid 1px var(--offwhite);
}
  

.cmp-button::before {
    content: '';
    position: absolute;
    border: 1px solid rgba(255, 255, 255, 0);
    transition: all 250ms cubic-bezier(0.19, 1, 0.22, 1); 
}
    
  .cmp-button:hover::before, .cmp-button:active::before, .cmp-button:focus::before {
    border-color: white;
    top: 0.25rem;
    right: 0.25rem;
    bottom: 0.25rem;
    left: 0.25rem;
    /* border: solid 1px rgba(255,255,255,0);  */
}

/* .consultation h3 {
    background: #ffde59;
    border-radius: 5px;
    font-size: 1rem;
    text-transform: uppercase;
    text-align: center;
    margin: 0;
    padding: 5px;
    display: block;
    width: fit-content;
    margin: auto;
    border: 1px solid var(--offwhite);
    color: #222;
    font-family: "Merriweather Sans", sans-serif;
} */


.consultation p {
    padding: 10px 20px 15px 20px;
    text-align: center;
}

.consultation-about p {
    padding: 3px;
    text-align: center;
}

.freeconsultation {
    text-align: center;
}

.button-76 {
  background-color: #BA0C2F;
  background: radial-gradient(circle, hsla(348, 88%, 39%, 1) 0%, hsla(347, 51%, 31%, 1) 100%);
  border: 0;
  border-radius: .25rem;
  box-sizing: border-box;
  color: rgba(255,255,255,.92);
  width: 60%;
  cursor: pointer;
  font-family: "Merriweather", Palatino, "Palatino Linotype", "Book Antiqua", Georgia, serif;
  font-weight: 500;
  font-size: 1.5rem; /* 18px */
  line-height: 1.75rem; /* 28px */
  padding: 1rem 1.25rem;
  text-align: center;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;

}

.button-76:hover {
  box-shadow: none;
}

@media (min-width: 1024px) {
  .button-76 {
    font-size: 1.5rem; /* 24px */
    padding: 1rem 1.5rem;
    line-height: 2rem; /* 32px */
  }
}

#contact-us {
    display: flex;
    text-align: center;
    line-height: 1.2rem;
    padding: 0.15rem 0.5rem;
    margin: auto;
    display: block;
    border: 1px solid var(--offwhite);
    width: 80%;
}

#contact-us input[type=text], textarea {
    margin: auto;
    display: block;
    cursor: text;
    text-align: start;
    text-rendering: auto;
    appearance: auto;
    /* margin-bottom: 10px; */
    font-size: 1.2rem;
    width: 100%;
    max-width: 600px;
    color: black;
}

#contact-us label {
    display: block;
    font-size: 1.2rem;
    /* border: 1px solid red; */
    padding-top: 10px;
    padding-bottom: 5px;

}

#contact-us label:first-of-type {
    padding-top: 5px;
}

.contact-us-about {
    display: flex;
    text-align: center;
    line-height: 1.2rem;
    padding: 0.15rem 0.5rem;
    margin: auto;
    border: 1px solid var(--offwhite);
    /* justify-content: space-evenly; */
    width: 80%;
}

.contact-us-about input[type=text], textarea {
    margin: auto;
    display: block;
    cursor: text;
    text-align: start;
    text-rendering: auto;
    appearance: auto;
    margin-bottom: 10px;
    font-size: 1rem;
    width: 100%;
    max-width: 600px;
    color: black;
}

.form-container {
    /* border: 1px solid yellow; */
    width: 80%;
    margin: auto;
}

.info {
    width: 80%;
    margin: 5px auto;
    /* border: 1px solid red; */
}

.info iframe {
    margin-top: 10px;
}

.smallmap {
    display: none;
}

.info h3 {
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 1.5rem;
}

.info p {
    font-size: 1rem;
    margin: auto;
    padding: 1px;
}

.form {
    margin: auto;
    /* border: 1px solid orange; */
    text-align: center;
    padding-bottom: 10px;
}

.width {
    min-width: 40%;
}

.form.width p {
    display: block;
}

.contact-us-button {
        background-color: #BA0C2F;
        background: radial-gradient(circle, hsla(348, 88%, 39%, 1) 0%, hsla(347, 51%, 31%, 1) 100%);
        border: 0;
        border-radius: .25rem;
        color: rgba(255,255,255,.92);
        width: 60%;
        cursor: pointer;
        font-family: "Merriweather", Palatino, "Palatino Linotype", "Book Antiqua", Georgia, serif;
        font-weight: 500;
        font-size: 1.125rem; /* 18px */
        line-height: 1.75rem; /* 28px */
        /* padding: 1rem 1.25rem; */
        text-align: center;
        user-select: none;
        -webkit-user-select: none;
        touch-action: manipulation;
        margin: 15px auto;
      }

      .form p:hover {
        box-shadow: none;
      }

.req {
    padding: 10px;
}

.submit-button {
    background: rgba(186, 12, 47, 1);
    padding: 15px 40px;
    margin: auto;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.5rem;
    font-size: 1.25rem;
    transition: 0.2s;
    border-radius: 5px;
    border: 1px solid var(--offwhite);
    -webkit-appearance: none;
}

footer {
    position: relative;
    padding-top: 5px;
    /* border: solid blue 1px; */
}

footer ul {
    position: relative;
    /* border: solid yellow 1px; */
}

footer ul li {
    /* border: 1px red solid; */
    font-size: .75rem;
    text-align: center;
}
footer ul li:last-child {
    margin-bottom: 20px;
}

.hamburger {
    position: fixed;
    top: 23px;
    right: 18px;
    z-index: 10;
    cursor: pointer;
    width: 20px;
    height: 20px;
    background: none;
    border: none;
}

.hamburger-top,
.hamburger-middle,
.hamburger-bottom {
    position: absolute;
    width: 20px;
    height: 2px;
    top: 0;
    left: 0;
    background: var(--offwhite);
    transition: all 0.5s;
}

.hamburger-middle {
    transform: translateY(5px);
}

.hamburger-bottom {
    transform: translateY(10px);
}

/* Transition hamburger to X when open */
.open {
    transform: rotate(90deg);
}

.open .hamburger-top {
    transform: rotate(45deg) translateY(6px) translateX(6px);
}

.open .hamburger-middle {
    display: none;
}

.open .hamburger-bottom {
    transform: rotate(-45deg) translateY(6px) translateX(-6px);
}

.overlay-show {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,.5);
    z-index: 3;
}

.stop-scrolling {
    overflow: hidden;
}

.mobile-only {
    display: none;
}

/* Mobile menu */
.mobile-main-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 350px;
    height: 100%;
    background: #000;
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateX(100%);
    transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

/* Bring menu from right */
.show-menu {
    transform: translateX(0);
}

.mobile-main-menu ul {
    display: flex;
    flex-direction: column;
    align-items: end;
    justify-content: center;
    padding: 50px;
    width: 100%;
}

.mobile-main-menu ul li {
    margin-bottom: 20px;
    font-size: 18px;
    border-bottom: 1px #555 dotted;
    width: 100%;
    text-align: right;
    padding-bottom: 8px;
}

.mobile-main-menu ul li a {
    color: var(--offwhite);
    transition: color 0.6s;
}

.mobile-main-menu ul li a:hover {
    color: #aaa;
}

/* Inner Pages */

.section-b {
    position: relative;
} 

/* .section-b-headline ul {
    display: flex;
    justify-content:center;
    flex-wrap:wrap;
    margin: 15px 0px;
} */

/* .section-b-headline ul li {
   /* border: 1px solid red;
   max-width: 80%;
   text-align: center;
   padding: 5px;
   line-height: 1.5rem;
   text-transform: uppercase;
} */

.section-b-main-area {
    /* border: blue 1px solid; */
    display: flex;
    min-height: 100%;
    flex-direction: column;
    margin: 10px auto;
    padding: 0px 10px 10px 10px;
    max-width: 60%;
    flex-flow: row wrap; 
    justify-content: center;
    /* border: 1px red solid; */
    /* background-color: #7C92A6; */
}

/* .section-b-container {
    max-width: 80%;
    margin: auto;
    border: yellow 1px solid;
} */

.section-b-parent {
    display: flex;
    flex-direction: column;
    /* border: 1px red solid; */
}

.section-b-row {
    /* border: blue 1px solid; */
    flex-grow: 1;
    background-color: #221e1F;
}

.section-b-box {
    /* max-width: 20%;
    flex: 1 0 10%; */
    /* flex: 1; */
    margin: 5px 10px 1em;
    border: 1px solid #efefef;
    border-radius: 2px;
    padding: 15px;
    cursor: pointer;
    /* max-width: 80%; */
}

.box-lists {
    margin: 10px 10px 5px 10px;
}

.box-lists ul {
    list-style-type: circle;
    margin: 10px;
}

.box-lists li {
    margin: 5px;
}

/* .box-lists hr {
    margin-top: 20px;
} */

.hover-color {
    display: block;
    background-size: 300% 100%;
    border-radius: 5px;
    /* background-color: #556573; */
    /* background-color: #5B83A6; */
    background-color: #4A6B87;
    background-size: 200% 200%;
    background-position: top;
    transition: all .3s;
}

.hover-color:hover {
    background-image: linear-gradient(to top, #ADC8D9 51%, transparent 50%);
    background-position: 0 100%;
    transition: all .3s;
    color: #fff
}

.hover-color:hover a {
    color: #fff
}

.section-b-box h4 {
    font-family: "Merriweather", Palatino, "Palatino Linotype", "Book Antiqua", Georgia, serif;
    margin-bottom: 10px;
    font-size: 1.4rem;
    text-align: center;
}

.pages h4 {
    margin-bottom: 0px;
}

.pages {
    text-align: left;
}

.pages p {
    line-height: 1.6rem;
}

.pages h4 {
    padding-bottom: 10px;
}

.font-opacity h4, p {
    opacity: .95;
}

.box1 {
    /* background-image: url(../img/bigbend.jpg); */
    border: yellow 1px solid;

}

.section-c {
    background-image: url(../img/bigbendsun.jpg);
}

.section-animate {
    animation: fadeIn 2s ease-in-out;
}

/* Stats */

/* Animations */

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(140px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes fadeBounce {
    0%,
    20%,
    50%,
    80%,
    100% {
        opacity: 0;
        transform: translateY(-20px);
    }
    40% {
        opacity: 1;
        transform: translateY(0);
    }
}

.copytext {
        display: none;
    }

/* Media Queries */

@media (max-width: 575px) {
    .submit-button {
        padding: 20px 50px;
        line-height: 2px;
        /* font-size: 1.25rem; */
    }
}

@media (max-width: 960px) {
    .desktop-main-menu {
        display: none;
    }

    .mobile-only {
        display: block;
    }

}

@media (max-width: 1233px) {
    /* Hide desktop menu */
    .desktop-main-menu {
        display: none;
    }

    .contact-us-about {
        flex-direction: column-reverse;
    }
    /* .logo {
        position: absolute;
        left: 0px;
        /* border: 1px red solid; */


    }

@media (max-width: 700px) {
    .map {
        display: none;
    }

    .info {
        margin-bottom: 0px;
    }

    .contact-us-button {
        margin-top: 10px;
    }

    /* .smallmap {
        display: block;
    } */
}


@media (max-width: 650px) {
    .section-a-inner h2 {
        font-size: 1.75rem;
        line-height: 1.75rem;
    } 

    .section-a-inner h3 {
        font-size: 1rem;
        line-height: 1.25rem;
        padding-left: 30px;
        padding-right: 30px;
    }

    .section-b-box h4 {
    /* margin-bottom: 10px; */
    font-size: 1.2rem;
    font-weight: 600;
    text-align: center;
    }

    .call-to-action {
        margin-top: 5x;
    }
}

@media (max-width: 515px) {
    
    .section-a-inner h2 {
            font-size: 1.45rem;
        }
    .section-a-inner h3 {
            line-height: 1rem;
            margin-bottom: 0px;
            padding-bottom: 0px;
        }

    .call-to-action a {
        font-size: .8rem;
        margin-top: 5px;
    }
}

@media (max-width: 496px) {

    .logo {
        display: none;
        }

    .logosmall {
        display: block;
        position: absolute;
        left: 0px;
    }
    
    .section-a-inner h2 {
       padding-bottom: 5px;
    }

    .call-to-action {
        margin-top: 5px;
    }

    .section-a-inner h3 {
        display: none;
    }

    .mobile-description p {
        display: block;
        /* border: 1px red solid; */
    }

    /* .copytext {
        display: none;
    } */

    /* .box-lists hr {
        display: none;
    } */

    /* .section-b-row {
        margin: auto;
        /* border: red 1px solid;
        display: flex;
    } */

    /* .section-b-box {
        /* border: yellow 1px solid; */
        /* justify-content: space-between; 
    }*/

    .section-b-box h4 {
        font-size: 1.2rem;
        line-height: 1.25rem;
    }
    .box-lists {
        /* width: 0; */
        font-size: .9rem;
        margin: auto;
    }
}

@media (max-width: 375px) {
    
    .section-b-box {
        margin: auto;
        margin: 10px auto;
    }

    .section-b-box h4 {
        font-size: 1.rem;
        margin-bottom: 0px;
    }

    .box-lists {
        display: none;
    }
    .call-to-action {
        margin-bottom: 15px;
    }
}

/* @media (min-width: 767px) {
    .big-bend-img-for-mobile {
        display: none;
    } 
} */


/* @media (max-width: 630px) {
    footer ul {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
    } }


@media (max-width: 600px) {
    .section-inner {
        bottom: 75px;
        left: 20px;
    }

    /* .section-inner h2 {
        font-size: 40px;
    } */

    /* footer ul li:first-child {
        position: absolute;
        top: 30px;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    footer ul li {
        margin-right: 15px;
    } */


    /* .section-inner-center h3 {
        font-size: 50px;
    } */

    /* Stats */
    .stats {
        flex-direction: column;
    }

    .stats div {
        margin-bottom: 20px;
    }





/*  (min-width: 375px) {
    .text h2 {
        font-size: 2rem;
        font-weight: 400;
        line-height: 2rem;
    }
    text h3 {
    margin: 20px 0;
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1.25rem;
    margin: 15px;
    /* text-transform: uppercase; 
}
/* 
.text p {
    font-size: 1rem;
    font-weight: 400;

}

} */