@charset "utf-8";
/* CSS Document */

  .color-primary {
    color: #1c669a;
  }
  .color-orange {
    color: #f89b4b;
  }
  .orange-button {
    color: #fff;
    background-color: #f89b4b;
  }
  .orange-button:hover {
    color: #fff;
    background-color: #f08528;
  }
  .color-primary-bg {
    background-color: #1c669a;
  }
  
  #header {
    background-color: rgba(255,255,255, 0.9) !important;

    -webkit-backdrop-filter: saturate(150%) blur(10px);
    backdrop-filter: saturate(150%) blur(10px);
    border-bottom: solid 1px #dfdfdf;

    // 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;
  }

  #header2.sticky a:link, #header2.sticky a:visited,
  #header.sticky a:link, #header.sticky a:visited,
  #header a:link, #header a:visited {
	color: rgba(0,0,0,0.6) !important;
  }

  #header2.sticky a:hover, #header.sticky a:hover,
  #header2 a:hover, #header a:hover {
	color: rgba(0,0,0,0.9) !important;
  }

  #header2.sticky {
	text-align: left;
	background-color:rgba(240, 241, 241, 0.95) !important;
  }

  #logo.sticky_size {
    height: auto;
    width:280px;
  }
  
  #logo {
    display:block;
    height:auto;
    width:292px;
  
    // set animation
	-webkit-transition: all 0.4s ease;
	transition: all 0.4s ease;
  }
  .main-normal-mt {
    margin-top: 70px;
  }
  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;
  }

  .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;
    }

  }