/* # START ############################################# */

html, body {
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
}

h1,h2,h3,h4,h5,h6,p {
    margin: 0;
    padding: 0;
}

body {
    background-color: white;
    color: #212529
}

a { text-decoration: none; }

/* ##################################################### */

/* # HEADER ############################################ */

header {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    color: white;
    text-align: center;
    transition: 0.5s all ease;
    z-index: 9;
    padding: 0.5rem;
    background-color: black;
}
header a h4 {
    text-decoration: none;
    color: white;
}

header a:hover h4 {
    color: white;
}

header nav {
    display: none; 
    width: 100%;
    height: 2rem; 
    overflow: hidden;
    margin: 0;
    padding: 0;
    z-index: 99;
}

header nav ul{
    display: flex;
    justify-content: center;
    width: 100%;
    margin: 0;
    padding: 0;
    height: 100%;
}
  
header nav li{
    display: block;
    float: left;
    text-align: center;
    height: 100%;
    border:none;
    position: relative;
}

header nav a {
    display: block;
    float: left;
    color:gray;
    width: 100%;
    padding: 0 1rem;
    line-height: 2rem;
    text-decoration: none;
    text-transform: uppercase;
    font-size: small;
}

header nav a:hover { color:inherit; }

header nav li::after{
    content: '';
    position: absolute;
    width: 0px;
    height: 1px;
    left: 50%;
    bottom:0;
    background-color: white;
    transition: all ease-in-out .2s;
}

header nav li:hover::after{
    width: 100%;
    left: 0;
    background-color: white;
    z-index: 99;
}

header .navmobile {
    display: block;
    margin: 0 0 0 0;
    width: 100%;
    padding: 0 2rem;
    text-align: left;
    background: inherit;
}

header .navmobile a {
    text-decoration: none;
    color: gray;
}

header button {
    border: none;
    background-color: transparent;
    color: gray;
    outline: none;
    }

header button:focus {
    border: none;
}

@media (min-width: 768px) {
    header nav          { display: block; }
    header > .navmobile { display: none;  }
    header > button     { display: none;  }
    header > .title     { font-size: 2.5rem  !important; }
    header > .subtitle  { font-size: 1.25rem !important; }
}


/* ##################################################### */

/* # BANNER ############################################ */

#banner {
    padding: 6rem 0 0 0 !important;
    width: 100%;
    height: 100vh;
    background-size: cover;
    background-attachment: fixed;
    justify-content: center;
    color: white;
}

#banner:before {
    content: "";
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
}

#banner .banner-container {
    position: absolute;
    bottom: 0;
    left: 0;
    top: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    padding: 0 2rem;
}

#banner h1 {
    color: inherit;
    font-size: 4rem;
    font-weight: 600;
    text-transform: uppercase;
    z-index: 1;
}

#banner p {
    color: inherit;
    font-size: 2rem;
    font-weight: 600;
    text-transform: uppercase;
    z-index: 1;
}

#banner span {
    color: #f82249;
    font-weight: normal;
}

#banner video {
    position: absolute;
    right: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
    opacity: 0;
    z-index: 0;
    transition: 4s all ease;
}

/* ##################################################### */

/* # SECTION ########################################### */

section {
    width: 100%;
    margin: 0;
    padding: 5rem 0;
    overflow: hidden;
    position: relative;
}

section .section-title {
    margin: 0;
    padding: 0;
    align-self: center;
    text-align: center;
    font-weight: 700;
    text-transform: uppercase;
}

section .section-subtitle {
    margin: 0;
    padding: 0;
    align-self: center;
    text-align: center;
    opacity: 50%;
}

section div.wrap { margin: 2rem 0; }

section .overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    opacity: 0;
    transition: .5s ease;
    background-color:rgba( 0, 0, 0, .5 ) ;
  }
section a:hover .overlay {
    opacity: 1;
}

section .text {
    color: white;
    font-size: 20px;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    text-align: center;
    text-transform: uppercase;
  }

/* ##################################################### */

/* # ABOUT ############################################# */

#about { background: #f0f4f8;}

/* ##################################################### */

/* # CONTACT ########################################### */
#contact {
    background: #fff;
}

#contact input, #contact textarea {
    margin: 0 0 1rem 0;
    padding: 1rem;
}

#contact textarea { resize: none; }

#contact .btn-contact-submit {
    width: 100%;
    padding: 1rem;
    color: #ffffff;
    background: #f82249;
}

#contact .btn-contact-submit:hover { background: #dc3545; }

#contact .contact-card-top {
    margin: 0 0 1rem 0;
    width: 100%;
    height: calc( 50% - 1rem );
    padding: 1rem;
}

#contact .contact-card-btm {
    height: 50%;
    padding: 1rem;
}

#contact [class*='contact-card'] i {
    color: #f82249;
    font-weight: 700;
}

#contact [class*='contact-card'] h4 {
    color: inherit;
    font-weight: 700;
}

#contact [class*='contact-card'] p {
    color: inherit;
    text-decoration: none;
}

#contact [class*='contact-card'] a {
    color: inherit;
    text-decoration: none;
}
/* ##################################################### */

/* # INSERT ############################################ */

#insert { display: none; }

/* ##################################################### */

/* # VIMEO ############################################# */

#vimeo {
    display: none;
    background-color: black;
    -moz-transition: all 0.3s;
    -webkit-transition: all 0.3s;
    transition: all 1s;
}

#vimeo-title {
    color:#f82249;
    text-transform:capitalize;
    text-align: center;
    margin: 0 0 2rem 0;
}

/* ##################################################### */

/* # GALLERY ########################################### */
#gallery a img {
    -moz-transition: all 0.3s;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

#gallery a:hover img {
    border-radius: 1.5rem;
    transform: scale(.9);
}
/* ##################################################### */

/* # FOOTER ############################################ */

footer { display: none; }

#footer-social a, #footer-social a:hover {
    text-decoration: none;
    color: #ffffff;
}

#footer-nav a {
    text-decoration: none;
    color: #777777;
    transition: all 0.3s;
}

#footer-nav a:hover {
    color: #ffffff;
}

#footer-copy {
    color:#777777;
    font-size: small;
}
/* ##################################################### */

/* # GENERAL ########################################### */
.position-relative { position: relative; }

/* ##################################################### */





