@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;
  }
  .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: #393a3a; */
    background-color: #c1a367;
    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:100px;
  }
  
  #logo {
    display:block;
    height:auto;
    width:150px;
  
    // set animation
	-webkit-transition: all 0.4s ease;
	transition: all 0.4s ease;
  }
  .dropdown:hover .dropdown-menu {
    display:block;
    margin-top: 0;
  }

/* -------- 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 ---------*/
  .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;
    color:#fff;
    width:100%;
    padding:20px;
    text-align:center;
    font-size:12px;
  }
  .pre-footer {
    display:block;
    background-color:#666;
    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: 200px;
    }
    .main-normal-mt, .main-home-mt {
      margin-top: 69px;
    }
    .hero-text {
    font-size: 40px;
    font-weight: bold;
    padding:10rem 5rem;
  }

  }