@charset "utf-8";
/* CSS Document */

  #header {

    -webkit-backdrop-filter: saturate(150%) blur(10px);
    backdrop-filter: saturate(150%) blur(10px);

    // set animation
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
  }
  #header, #header2 {
    box-shadow: 0px 18px 20px -10px #0000008f;
    }
    .navbar-default .navbar-nav > li > a {
      color:#fff;
  }
  .navbar-dark .navbar-nav .nav-link:hover {
	  color: rgba(255,255,255,.90);
  }
  .nav-link, .nav-link:visited {
	  -webkit-transition: all .2s ease-out;
	  -moz-transition: all .2s ease-out;
	  -ms-transition: all .2s ease-out;
	  -o-transition: all .2s ease-out;
	  transition: all .2s ease-out;
  }
  .navbar {
	  padding: 0 1rem;
    background-color: rgba(36,89,251,0.8);
  }
  .dropdown-item.active, .dropdown-item:active {
	  background-color: #bac7d3;
  }
  .navbar .nav-link.disabled, .navbar-nav .nav-link.show {
    font-weight:700;
    color:#fff;
  }
  .nav-item, .nav-item:visited {
    display: inline-block;
    position: relative;
    color: #393a3a;
  }
  .nav-item:after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #3ec9fc;
    transform-origin: bottom center;
    transition: transform 0.5s ease-out;
  }
  
  .nav-item:hover:after {
    transform: scaleX(1);
    transform-origin: bottom center;
  }


  #header2.sticky {
	text-align: left;
	background-color:rgba(240, 241, 241, 0.95) !important;
  }

  #logo.sticky_size {
    height: auto;
    width:200px;
  }
  
  #logo {
    display:block;
    height:auto;
    width:300px;
  
    // set animation
	-webkit-transition: all 0.4s ease;
	transition: all 0.4s ease;
  }
  .dropdown:hover .dropdown-menu {
    display:block;
    margin-top: 0;
    background-color: rgba(36,89,251,0.8);
  }

  .aquaBlue {
    color: rgba(36,89,251,1);
  }

/* -------- slider ---------*/
  .hero-slider {
    position: relative;
    width: 100%;
    height: 100vh; /* Adjust as needed */
    overflow: hidden;
  }

  .slider-images {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
    height: 100%;
  }

  .slider-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0; /* Hidden by default */
    transition: opacity 3s ease-in-out; /* Fade transition */
  }

  .slider-image.active {
    opacity: 1; /* Visible when active */
  }
/* --------End slider ---------*/
/* --------Hero ---------*/
  .hero-bg {
    display:inline-block;
    width:100%;
    height:600px;
    text-align:center;
    background-image: url(../img/13450DeerCanyon-7.jpg);
    background-attachment: fixed;
    /* background-size: 1140px 600px; */
    background-repeat: repeat;
    background-position: center bottom;
    color:#fff;
    font-size:30px;
    margin:0;
  }
  .hero-text {
    font-size: 60px;
    font-weight: bold;
    padding:10rem 5rem;
  }
  .hero-overlay {
    display:inline-block;
    width: 100%;
    height: 600px;
    margin:0 auto;
    background-color: rgba(0,0,0,0.7);

    -webkit-backdrop-filter: saturate(150%) blur(10px);
    /* backdrop-filter: saturate(150%) blur(5px); */
  }
/* --------End Hero ---------*/
/* --------Video ---------*/
video {
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 1;
  }
  .video-holder {
    width: 100%;
    height: 700px;
    overflow: hidden;
    position: relative;
  }
  .overlay {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 2;
    background: rgba(0,0,0,0.5);

    -webkit-backdrop-filter: saturate(150%) blur(5px);
    backdrop-filter: saturate(150%) blur(5px);
  }
  .home-content {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    top: 200px;
    color: #fff;
    z-index: 3;
  }
  .home-content h1 {
    font-family: Playfair Display, serif;
    text-align: center;
    text-transform: uppercase;
    font-size: 50px;
    line-height: 1.1;
  }
  .middle-line {
    height: 50px;
    width: 2px;
    background: #fff;
    margin: 40px auto;
  }
  .home-content a {
    font-size: 20px;
    border: 1px solid #f1f1f1;
    border-radius: 5px;
    background: transparent;
    color: #fff;
    margin: 0 auto;
    padding: 16px 30px;
    cursor: pointer;
  }
  .home-content a:hover {
    background-color: rgba(255,255,255,.9);
    color: rgba(0,0,0,0.9);
  }
  .quote-content {
    max-width: 800px;
    position: relative;
    top: 60px;
    color: #fff;
    z-index: 3;
  }
  .quote-content p {
    font-size:24px;
  }
/* --------End Video ---------*/

  .highlight-bg {
    background-color: rgba(4,57,128, 0.1);
  }
  .highlight-container {
    border: solid 1px rgba(4,57,128, .5);
    padding: 25px;
  }



  .main-normal-mt {
    margin-top: 133px;
    padding-top: 50px;
  }
  .main-home-mt {
    margin-top: 95px;
  }
  footer {
    display:block;
    /* background-color:#444; */
    background-color: rgba(29,69,190,0.9);
    color:#fff;
    width:100%;
    padding:20px;
    text-align:center;
    font-size:12px;
  }
  .pre-footer {
    display:block;
    /* background-color:#666; */
    background-color: rgba(36,89,251,0.8);
    color:#fff;
    width:100%;
    padding:20px;
    min-height:180px;
  }
  .pre-footer a, .pre-footer a:visited, .pre-footer a:link,
  footer a {
    color:#fff;
  
    -webkit-transition: all .2s ease-out;
      -moz-transition: all .2s ease-out;
      -ms-transition: all .2s ease-out;
      -o-transition: all .2s ease-out;
      transition: all .2s ease-out;
  }
  .pre-footer a:hover {
    color: #ddd;
    /*margin-left: 5px;*/
  }
  footer a:hover {
    color: #ddd;
  }
  .pre-footer li {
    list-style-type: none;
  }
  .footer-title {
    font-size:18px;
    border-bottom:solid 1px #999;
    margin-bottom:10px;
    font-weight:bold;
  }
  .fa-icon {
    font-size: 55px;
    color: rgb(109, 109, 109);
  }
  .footer-icon {
    color: #fff;
    margin-right: 30px;
    font-size: 30px;
  
    -webkit-transition: all .2s ease-out;
      -moz-transition: all .2s ease-out;
      -ms-transition: all .2s ease-out;
      -o-transition: all .2s ease-out;
      transition: all .2s ease-out;
  }
  .footer-icon:hover {
    color: #999;
  }
  .url {
    display: none;
  }

  .mobile_hide {
    display:block;
  }
  .mobile_only {
    display:none;
  }
  
  @media (max-width: 620px) {
    .mobile_hide {
      display:none;
    }
    .mobile_only {
      display:block;
    }
    #logo {
      width:100%;
      max-width: 300px;
    }
    .main-normal-mt, .main-home-mt {
      margin-top: 69px;
    }
    .hero-text {
    font-size: 40px;
    font-weight: bold;
    padding:10rem 5rem;
  }
  .quote-content p {
    font-size:20px;
  }

  }