/* Fonts */

@font-face {
    font-family: 'Montserrat';
    src: url('/assets/fonts/Montserrat-ExtraBold.woff2') format('woff');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: local(''), url('/assets/fonts/Montserrat-Bold.woff2') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: local(''), url('/assets/fonts/Montserrat-Medium.woff2') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: local(''), url('/assets/fonts/Montserrat-SemiBold.woff2') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: local(''), url('/assets/fonts/Montserrat-Regular.woff2') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/* CSS Reset */

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

body {
    height: 100%;
    width: 100%;
    line-height: 1;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.25rem;
    overflow-x: hidden;
    background: #333333;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

html,
body {
    scroll-behavior: smooth;
    box-sizing: border-box;
    overflow-x: hidden;
}

body {
    position: relative;
}

/* Change font-family if needed */

* {
    box-sizing: border-box;
    color: inherit;
    text-decoration: none;
    list-style: none;
}

/* //////////////////// */
/* NAV */
/* //////////////////// */

nav.scrolled {
    background: white;
    transition: all 1s;
}

.desktop-nav-links {
    display: none;
}

.desktop-nav-links a {
    font-weight: 500;
    letter-spacing: 3px;
    font-size: 1rem;
}

.home-nav-link {
    margin-bottom: 2.25rem;
    font-weight: 500;
}

.home-nav-link a {
    padding: .75rem 1.25rem .75rem 1.25rem;
    background-color: #efefef;
    border-radius: .5rem;
    color: rgb(44, 44, 44);
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1rem;
    font-weight: bold;
    width: 100%;
}

.nav-links-dark .home-nav-link a {
    background-color: #444444;
    color: #fff;
}

@media only screen and (min-width: 0px) {
    .main-nav {
        position: fixed;
        display: flex;
        width: 100%;
        height: 4rem;
        justify-content: space-between;
        padding: 0rem 1rem;
        align-items: center;
        color: black;
        background: rgb(255, 255, 255);
        z-index: 100;
        font-family: 'Montserrat', sans-serif;
        -webkit-box-shadow: 0px 1px 8px 0px rgb(0 0 0 / 10%);
        box-shadow: 0px 1px 8px 0px rgb(0 0 0 / 10%);
    }

    .main-nav-dark {
        position: fixed;
        display: flex;
        width: 100%;
        height: 4rem;
        justify-content: space-between;
        padding: 0rem 1rem;
        align-items: center;
        color: white;
        background: #2C2C2C;
        z-index: 100;
        font-family: 'Montserrat', sans-serif;
    }

    .main-nav h1, .main-nav-dark h1 {
        color: black;
        font-weight: 100;
        font-size: 1.25rem;
        margin-left: 1rem;
    }

    .svg-logo {
        height: 4rem;
        max-height: 8rem;
        padding: .5rem 0rem;
        width: auto;
    }

    .svg-logo-dark {
        height: 3.275rem;
        max-height: 8rem;
        padding: .5rem 0rem;
        width: auto;
    }
}

@media only screen and (min-width: 768px) {
    .main-nav {
        position: fixed;
        display: flex;
        width: 100%;
        height: 4rem;
        justify-content: space-between;
        align-items: center;
        color: black;
        background: rgb(255, 255, 255);
        z-index: 100;
        font-family: 'Montserrat', sans-serif;
        -webkit-box-shadow: 0px 1px 8px 0px rgb(0 0 0 / 10%);
        box-shadow: 0px 1px 8px 0px rgb(0 0 0 / 10%);
    }

    .main-nav-dark {
        position: fixed;
        display: flex;
        width: 100%;
        height: 4rem;
        justify-content: space-between;
        align-items: center;
        color: white;
        background: rgb(44, 44, 44);
        z-index: 100;
        font-family: 'Montserrat', sans-serif;
        -webkit-box-shadow: 0px 1px 8px 0px rgb(0 0 0 / 10%);
        box-shadow: 0px 1px 8px 0px rgb(0 0 0 / 10%);
    }
}

.logo {
    letter-spacing: 3px;
    text-transform: uppercase;
    font-size: 1.25rem;
    margin-top: .2rem;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.nav-links {
    display: flex;
    width: 40%;
    justify-content: space-around;
}

.nav-inner {
    -webkit-box-shadow: -4px 5px 10px -7px rgba(0,0,0,0.75);
    -moz-box-shadow: -4px 5px 10px -7px rgba(0,0,0,0.75);
    box-shadow: -4px 5px 10px -7px rgba(0,0,0,0.75);
}

.nav-links-dark {
    display: flex;
    width: 40%;
    justify-content: space-around;
}

.burger {
    display: none;
    padding-right: 1rem;
    cursor: pointer;
}

.line {
    height: 2px;
    width: 35px;
    margin: 0.5rem 0;
    background: black;
    transition: transform 0.5s ease, opacity 0.5s ease;
}

.line-dark {
    height: 2px;
    width: 35px;
    margin: 0.5rem 0;
    background: white;
    transition: transform 0.5s ease, opacity 0.5s ease;
}

/* Check for Mobile */
@media screen and (min-width: 0px) {
    .burger {
        display: block;
    }

    .nav-links {
        position: fixed;
        color: rgb(99, 98, 98);
        top: 3.75rem;
        right: 0;
        height: 94vh;
        width: 50%;
        padding: 1rem 0rem;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        background: #fff;
        transform: translateX(100%);
        transition: transform .5s ease;
    }

    .nav-links-dark {
        position: fixed;
        color: rgb(99, 98, 98);
        top: 3.75rem;
        right: 0;
        height: 94vh;
        width: 50%;
        padding: 1rem 0rem;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        background: #2C2C2C;
        transform: translateX(100%);
        transition: transform .5s ease;
    }
}

@media screen and (min-width: 0px) {
    .nav-links {
        width: 100%;
    }
    .nav-links-dark {
        width: 100%;
    }
    .body-noscroll {
        overflow-y: hidden;
        height: 100vh;
        transition: all .5s;
    }
}

.main-nav.show .line1 {
    transform: translate(-10px) rotate(45deg) translate(15px);
}

.main-nav.show .line2 {
    opacity: 0;
}

.main-nav.show .line3 {
    transform: translate(-10px) rotate(-45deg) translate(15px);
}

.main-nav.show .nav-links {
    transform: translateX(0%);
}

/* /////////////////////// */

.main-nav-dark.show .line1 {
    transform: translate(-10px) rotate(45deg) translate(15px);
}

.main-nav-dark.show .line2 {
    opacity: 0;
}

.main-nav-dark.show .line3 {
    transform: translate(-10px) rotate(-45deg) translate(15px);
}

.main-nav-dark.show .nav-links-dark {
    transform: translateX(0%);
}

@media screen and (min-width: 768px) {
    .nav-links {
        width: 60%;
        height: 95vh;
    }
    .nav-links-dark {
        width: 60%;
        height: 95vh;
    }
    .body-noscroll {
        overflow-y: unset;
        height: auto;
        transition: none;
    }
}

ul li a {
    font-weight: bold;
}

@media screen and (min-width: 992px) {
    .hr-off {
        display: none;
    }
}

body {
    background-color: white;
}

.main-container {
    background-color: white;
}

.nav-links li a {
    font-size: 1rem;
}

.nav-links-dark li a {
    font-size: 1rem;
}

@media only screen and (min-width: 0px) {
    .nav-six-container {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        margin: 1rem 0rem;
        width: 20rem;
    }

    .nav-six-container>a {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        height: 7rem;
        margin: 0rem 0rem 1rem 0rem;
    }

    .six-container {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 4rem;
        margin: 0rem 1rem 0rem 1rem;
        text-align: center;
    }

    .six-container>p {
        font-size: .75rem;
        font-weight: bold;
    }

    .nav-links-dark .six-container > p {
        color: #fff;
    }

    .circle-icon {
        background-color: #efefef;
        height: 4rem;
        width: 4rem;
        border-radius: 50%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 1rem;
        margin-bottom: 1rem;
    }

    .nav-links-dark .circle-icon {
        background-color: #444444;
    }

    .nav-links-dark .circle-icon img {
        filter: invert(1);
    }

    .circle-icon>img {
        width: auto;
        height: 100%;
    }

    .nav-more-info p {
        font-size: 1.25rem;
        text-align: center;
        padding: 1.25rem 0rem;
        border-top: 1px solid hsla(0, 0%, 9%, .15);
        width: 12rem;
    }

    .nav-links-dark .nav-more-info p {
        border-top: 1px solid #fff;
    }

    .nav-links-dark .nav-more-info p {
        color: #fff;
    }

    .border-btm {
        border-bottom: 1px solid hsla(0, 0%, 9%, .15);
    }

    .nav-links-dark .border-btm {
        border-bottom: 1px solid #fff;
    }

    .nav-social-icons {
        padding: 2.25rem 0rem;
    }

    .nav-social-icons a {
        margin: 0rem 1rem;
    }

    .nav-links-dark .nav-social-icons a {
        filter: invert(1);
    }
}

@media only screen and (min-width: 1024px) {
    .desktop-nav-links {
        width: 20rem;
        display: inline-block;
        display: flex;
        justify-content: center;
        gap: 10%;
        text-transform: uppercase;
    }

    .burger {
        width: 192px;
        display: flex;
        flex-direction: column;
        align-items: flex-end;
    }

    .line {
        margin: .25rem;
    }

    .line-dark {
        margin: .25rem;
    }

    .nav-links {
        width: 25rem;
    }

    .nav-links-dark {
        width: 25rem;
    }
}

/* //////////////////// */
/* FOOTER */
/* //////////////////// */

.footer-container {
    height: auto;
    display: flex;
    flex-direction: column;
    padding: 2.5rem 1rem 1rem 1rem;
    background: linear-gradient(180deg, #e80050 0%, #8a226a 100%) !important;
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    line-height: 1.25;
}

.footer-container-dark {
    height: auto;
    display: flex;
    flex-direction: column;
    padding: 2.5rem 1rem 1rem 1rem;
    background: linear-gradient(180deg, #2C2C2C 0%, #242424 100%) !important;
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    line-height: 1.25;
}

.footer-top {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 5%;
}

.footer-title-section {
    width: auto;
    text-align:start;
    margin-bottom: 3rem;
}

.footer-section {
    width: 12rem;
    margin-bottom: 2rem;
}

@media only screen and (min-width: 768px) {

    .footer-title-section {
        margin-bottom: 1rem;
    }

    .footer-section {
        width: 12rem;
        margin-bottom: 1rem;
    }

}

.footer-title-section svg {
    pointer-events: none;
    margin: auto;
    margin-bottom: 1rem;
}

.footer-title-section .address {
    margin: 1rem 0rem;
    font-weight: bold;
}

.footer-header {
    margin-bottom: 1rem;
    font-size: 1.25rem;
    font-weight: 800;
    padding-bottom: .75rem;
    border-bottom: solid .1rem #fff;
}

.footer-section>a {
    font-size: 1rem;
    margin-bottom: 1rem;
    display: block;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.footer-section img {
    filter: invert(1);
    margin-right: 1rem;
}

.footer-section #map img {
    filter: invert(0);
    margin-right: 0rem;
    width: 18rem;
    height: auto;
    border-radius: 1rem;
    transition: all ease-in-out .5s;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: .75rem 0rem 0rem 0rem;
}

.footer-bottom p {
    font-size: .8rem;
    margin-top: .25rem;
    color: #fff;
}

@media only screen and (min-width: 0px) {
    .footer-maps {
        width: 18rem;
        margin: 0rem auto 2rem auto;
    }
    #map {
        width: 8rem;
        height: 220px;
    }
}

@media only screen and (min-width: 1180px) {
    .footer-maps {
        width: 18rem;
        margin: 0rem;
    }
}


@media only screen and (min-width: 1300px) {
    .footer-maps {
        width: 18rem;
    }
}

/* //////////////////// */
/* Other */
/* //////////////////// */

.container {
    padding: 0 0.5em;
    margin: auto;
}

.mb-1 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.footer-section #map img:hover {
    transform: scale(1.025);
}

.footer-container-dark .footer-section h3 {
    margin-top: 0rem;
    width: auto;
    letter-spacing: 0px;
}


/* The Modal (background) */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1000; /* Sit on top */
    padding-top: 100px; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
  }
  
  /* Modal Content */
  .modal-content {
    position: relative;
    margin: auto;
    width: fit-content;
    height: 28rem;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);
    -webkit-animation-name: animatetop;
    -webkit-animation-duration: 0.4s;
    animation-name: animatetop;
    animation-duration: 0.4s
  }

  @media only screen and (min-width: 300px) {
    .modal-content {
        height: 32rem;
      }
}

  @media only screen and (min-width: 390px) {
    .modal-content {
        height: 36rem;
      }
}

@media only screen and (min-width: 410px) {
    .modal-content {
        height: 39rem;
      }
}

@media only screen and (min-width: 768px) {
    .modal-content {
        height: 51rem;
      }
}

@media only screen and (min-width: 1024px) {
    .modal-content {
        height: 40rem;
      }
}

@media only screen and (min-width: 1200px) {
    .modal-content {
        height: 48rem;
      }
}
  
  /* Add Animation */
  @-webkit-keyframes animatetop {
    from {top:-300px; opacity:0} 
    to {top:0; opacity:1}
  }
  
  @keyframes animatetop {
    from {top:-300px; opacity:0}
    to {top:0; opacity:1}
  }
  
  /* The Close Button */
  .close {
    color: white;
    float: right;
    font-size: 7vh;
    font-weight: bold;
    text-shadow: 2px 2px 0px #000000;
  }
  
  .close:hover,
  .close:focus {
    color: #e62d2d;
    text-decoration: none;
    cursor: pointer;
    text-shadow: 2px 2px 0px #fff;
  }
  
  .modal-header {
    color: white;
    position: absolute;
    left: 87%;
  }
  
  .modal-body {}
  
  .modal-img {
    height: 100%;
    width: auto;
  }

  .modal-footer {
    padding: 2px 16px;
    background-color: #5cb85c;
    color: white;
  }
