/*
body - #333333 
light blue- #1875a2
dark blue - #2b346d
gold - #e6821e
grey - #666666
light grey - #e1e1e1;
*/
/*Font import*/

@font-face {
    font-family: 'Roboto-Bold';
    src: url('../font/Roboto-Bold.ttf') format('otf'),
    url('../font/Roboto-Bold.woff') format('woff');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
    font-family: 'Roboto-Medium';
    src: url('../font/Roboto-Medium.ttf') format('otf'),
    url('../font/Roboto-Medium.ttf') format('woff');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
    font-family: 'Roboto-Light';
    src: url('../font/Roboto-Light.ttf') format('otf'),
    url('../font/Roboto-Light.woff') format('woff');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
    font-family: 'Avenir-Book';
    src: url('../font/AvenirLTStd-Book.otf') format('otf'),
    url('../font/AvenirLTStd-Book.woff') format('woff');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
    font-family: 'Avenir-Medium';
    src: url('../font/AvenirLTStd-Medium.otf') format('otf'),
    url('../font/AvenirLTStd-Medium.woff') format('woff');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
    font-family: 'Avenir-Black';
    src: url('../font/Avenir-Black.otf') format('otf'),
    url('../font/Avenir-Black.woff') format('woff');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
* {
    -webkit-tap-highlight-color: transparent; /* for removing the highlight */
}
html {
    min-width: 320px;
    max-width: 2480px;
    margin: auto;
    scroll-behavior: smooth;
  }

body {
    font-family: 'Avenir-Book', sans-serif;
}
:focus, :active{
    outline-color: transparent;
}
h1, h2 {
    font-family: 'Avenir-Black', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}
h3{
    font-family: 'Avenir-Black', sans-serif;
   font-size: 1.45rem;
}
.sub-title {
    font-size: 1.25rem;

}
p {
    font-family: 'Avenir-Book', sans-serif;
}
b, strong, .bold {
    font-family: 'Avenir-Black', sans-serif;
    letter-spacing: 0.075rem;
    font-weight: normal;
}
.bg-main-blue {
    background: #1875a2;
    color: #fff;
}

.bg-light-blue {
    background: rgba(24, 117, 162, 0.15);
    color: #666666;
}
.bg-light-grey {
    background: #e1e1e1;
}
.bg-footer {
    background: #666666;
}
.bg-gold {
    background: #e6821e;
}
.text-blue {
    color: #1876A2;
}
.text-dark-blue {
    color: #2b346d;
}
.text-light {
    font-family: 'Avenir-Book', sans-serif;
}
.gold-break {
    width: 3rem;
    height: 3px;
    background: #e6821e;
    margin: 1rem 0;
}
a,
a:hover {
    color: #fff;
    text-decoration: none;
}

.btn-gold,
.btn-gold.zone-in {
    font-family: 'Roboto-Bold', sans-serif;
    background: #fff;
    border: 1px solid #e6821e !important;
    text-align: center;
    width: 212px;
    padding: 0.5rem;
    color: #2b346d;   
}
.btn-gold.zone-in span {
    transform: translateX(-50%);
    width: 120%;
    font-size: 14px;
}
a.btn-gold:hover {

    color: #1875a2;
}

a.btn-grey:hover {

    color: #1875a2;
}
.hover-blue {
    transition: all 300ms ease-in-out;
}
.hover-blue:hover {
    background: #2b346d;
}
.row > div {
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    
}
nav {
    margin-right: 0;
    transition: all 500ms ease-in-out;
    z-index: 100;
}
/*  scroll css section here*/
#to_top {
    display: inline-block;
    background-color: #1875a2;
    color: #fff;
    padding: 0.5rem;
    text-align: center;
    position: fixed;
    bottom: 30px;
    right: 30px;
    border: solid 2px #FFF;
    transition: background-color .3s, 
      opacity .5s, visibility .5s, border .5s;
    opacity: 0;
    visibility: hidden;
    z-index: 10;
    border: 2px solid #1875a2;
  }
  #to_top:hover {
    cursor: pointer;
    transition: outline .5s;
    color: #1875a2;
    background: #fff;
   
  }
  #to_top:active {
    background-color: #519f9c;
  }
  #to_top.show {
    opacity: 0.75;
    visibility: visible;
  }

.sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    transition: ease-in-out all 300ms;
    background: #fff;
}
.sticky .filler {
    background: #fff;
    opacity: 0;
    position: absolute;
    width: 0;
    right: 0;
    height: calc(100% + 3px);
}
.navbar {
    padding-bottom: 0;
}
.navbar > .container{
    border-bottom: 2px solid #1875a2;
}
.navbar-nav .nav-item {
    padding-left: 1rem;
}
.navbar-expand-md .navbar-nav .nav-link {
    border-bottom: 3px solid transparent;
}
.navbar-expand-md .navbar-nav .nav-link.active {
    border-bottom: 3px solid #e6821e;
}
.dropdown-item.active, .dropdown-item:active {
    color: #fff;
    text-decoration: none;
    background-color: #e6821e;
}
a.nav-link,
a.dropdown-item {
    color: #1875a2;
    font-family: 'Avenir-Medium', sans-serif;
}
a.nav-link {
    text-align: right;
}
a.nav-link:hover,
a.dropdown-item:hover {
    color: #2b346d;
}
.navbar-expand-lg .navbar-nav .nav-link {
    padding-right: 1.75rem;
    padding-left: 1.75rem;
}
.navbar-brand {
    padding-bottom: 0.75rem
}
.navbar-brand img {
    max-height: 56px;
    transition: all 500ms ease-in-out;
}
.sticky .navbar-brand img {
    max-height: 42px;
    transition: all 500ms ease-in-out;
}
.dropdown-menu {
    border-radius: 0;
}
.dropdown-toggle::after {
    display: none;
}
.menu-overlay {
    opacity: 0;
}
.anchor {
    margin-top:-4rem;
    padding-top: 6rem;
}
@media (max-width: 768px) {
    @keyframes FadeIn { 
        0% {
          opacity: 0;
        }
      
        100% {
            opacity: 1;
        }
      }
      h1, h2 {
        font-size: 1.45rem;
    }
    .sub-title {
        font-size: 1.05rem;
    }
.mobile-position {
          object-position: -420px 0;
    }
    .navbar {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 10;
        transition: ease-in-out all 300ms;

    }
    .navbar-brand img {
        max-height: 42px;
        transition: all 500ms ease-in-out;
    }
    .sticky .navbar-brand img {
        max-height: 38px;
        transition: all 500ms ease-in-out;
    }
    .navbar > .container{
        border-bottom: none;
    }
    .navbar-collapse.collapsing{
        transition: all 500ms ease-in-out;
    }
    .navbar-collapse.show {
        height: 100vh;
        transition: all 500ms ease-in-out;
    }
    .navbar-nav {
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        margin-top:-1rem;
    }
    .nav-item {
        opacity: 0;
    }
    .nav-link {
        font-size:2rem;
        margin-left: auto;
    }
    .dropdown-item {
        font-size: 1.25rem;
    }
    .navbar-collapse.show .menu-overlay {
        animation: FadeIn 500ms linear;
        animation-fill-mode: both;
        animation-delay: 300ms;
    }
    .navbar-collapse.show .dropdown-item:nth-of-type(1),
    .navbar-collapse.show .nav-item:nth-of-type(1) {
        animation: FadeIn 500ms linear;
        animation-fill-mode: both;
        animation-delay: 300ms;
    }
    .navbar-collapse.show .dropdown-item:nth-of-type(2),
    .navbar-collapse.show .nav-item:nth-of-type(2) {
        animation: FadeIn 500ms linear;
        animation-fill-mode: both;
        animation-delay: 500ms;
    }
    .navbar-collapse.show .dropdown-item:nth-of-type(3),
    .navbar-collapse.show .nav-item:nth-of-type(3) {
        animation: FadeIn 500ms linear;
        animation-fill-mode: both;
        animation-delay: 700ms;
    }
    .navbar-collapse.show .dropdown-item:nth-of-type(4),
    .navbar-collapse.show .nav-item:nth-of-type(4) {
        animation: FadeIn 500ms linear;
        animation-fill-mode: both;
        animation-delay: 900ms;
    }
    .navbar-collapse.show .dropdown-item:nth-of-type(5),
    .navbar-collapse.show .nav-item:nth-of-type(5) {
        animation: FadeIn 500ms linear;
        animation-fill-mode: both;
        animation-delay: 1200ms;
    }
    .dropdown-menu {
        background-color: transparent;
    }

    .sticky {
        width: 100%;
    }
    .btn-gold {
        margin: 0 .75rem;
    }
    .dropdown-menu {
        border: none;
        text-align: right;
    }
    .dropdown-item {
        padding-right: 0;
    }
}
@media (min-width: 769px) {

    .navbar > .container:after {
        content : "";
        position: absolute;
        right    : 0;
        z-index: 100;
        bottom  : 0;
        width  : 2px;
        height   : 50%;  
        background: #1875a2;
        transition: all 500ms ease-in-out;
    }

    nav {
        transition: all 500ms ease-in-out;
    }
}
button {
    border: none;
}
/*Hamburger*/
#nav-icon3 {

    position: relative;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer;
}

#nav-icon3 span {
    display: block;
    position: absolute;
    height: 3px;
    width: 2rem;
    background: #1875a2;
    border-radius: 9px;
    opacity: 1;
    left: -2rem;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
}
#nav-icon3 span:nth-child(1) {
    top: -33px;
}
#nav-icon3 span:nth-child(2),#nav-icon3 span:nth-child(3) {
    top: -24px;
}
#nav-icon3 span:nth-child(4) {
    top: -15px;
}
#nav-icon3.open span:nth-child(1) {
    top: -15px;
    width: 0%;
    left: 50%;
}
#nav-icon3.open span:nth-child(2) {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}
#nav-icon3.open span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
#nav-icon3.open span:nth-child(4) {
    top: -15px;
    width: 0%;
    left: 50%;
}

.hero {
    margin-top: 0px;
}
.carousel-item img {
    min-height: 680px;
    height: 95vh;
    object-fit: cover;
}
.carousel-fade .carousel-inner .caorousel-item {
    opacity: 0;
    transition-property: opacity;
    transition-duration: 500ms;
    transition-timing-function:linear;
  }
  
  .carousel-fade .carousel-inner .active {
    opacity: 1;
  }
  
  .carousel-fade .carousel-inner .active.left,
  .carousel-fade .carousel-inner .active.right {

    opacity: .5;
    z-index: 0;
  }
  
  .carousel-fade .carousel-inner .next.left,
  .carousel-fade .carousel-inner .prev.right {
    opacity: 1;
    z-index: 2;
  }
  
  .carousel-fade .carousel-control {
    z-index: 5;
  }
.carousel,
.carousel-inner,
.carousel-inner .carousel-item {
  min-height: 650px;
  height: 95vh;
  z-index: -1;
}
.carousel-indicators li {
    box-sizing: content-box;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-right: 3px;
    margin-left: 3px;
    text-indent: -999px;
    cursor: pointer;
    background-color: #fff;
    background-clip: padding-box;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    opacity: .5;
    transition: opacity 0.6s ease;
}
/* Background Banner */

#slideshow-container {
    width: 100%;
    min-height: 650px;
    height: 95vh;
  }
  
  .slideshow-pane1 {
    width: 100%;
    height: 100%;
    position: absolute;
  }
  
  .slideshow-img {
    width: 100%;
    height: 100%;
    position: absolute;
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    box-sizing: border-box;
    transition: opacity 3.2s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 3.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 3.2s;
  }
  
  .slideshow-bg-center {
    background-position: center;
  }
  
  .slideshow-overlay {
    width: 100%;
    height: 100%;
    position: absolute;
    float: left;
    top: 0px;
    left: 0px;
    background-color: rgba(0, 0, 0, 0.3);
  }
  

@media (max-width: 768px) {
    .horsol-overlay {
        display: none;
    }
}
.zone-in {
    position: relative;
    display: block;
    overflow: hidden;
    width: 100%;
    height: 40px;
    max-width: 260px;
    text-transform: uppercase;
    cursor: pointer;
    border: none;
  }
.zone-in:before, .zone-in:after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    border-top: 20px solid #2b346d;
    border-bottom: 20px solid #2b346d;
    z-index: 0;
}
.btn-gold.zone-in:before, .btn-gold.zone-in:after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    border-top: 20px solid #e6821e;
    border-bottom: 20px solid #e6821e;
    z-index: 0;

}
.btn-gold.zone-in{
    color: #2b346d;
    transition: all 300ms ease;

}
.btn-gold.zone-in:hover{
    color: #fff;
}
.zone-in:before {
    border-right: 20px solid transparent;
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
    transition: transform 300ms ease-in-out;
}
.zone-in:after {
    border-left: 40px solid transparent;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    transition: transform 300ms ease-in-out;
}


.zone-in:hover:before {
    -webkit-transform: translateX(-30%);
            transform: translateX(-30%);
    transition: transform 300ms ease-in-out;
}
.zone-in:hover:after {
    -webkit-transform: translateX(30%);
            transform: translateX(30%);
    transition: transform 300ms ease-in-out;
}

.after-hero {
    margin-top: -5rem;
    padding-top: 10rem;
}
input {
  border-radius: 0;
}
input.form-control {
    border: none;
    border-bottom: 1px solid #ccc;
    border-radius: 0;
    color: #ccc;
}
.form-group a:hover {
    color: #2b346d;
}
footer {
    font-size: 14px;
    color: #fff;
}
footer a {
    margin-bottom: 0.75rem;
    transition: all 300ms ease-in-out;
    
}
footer a:hover {
    opacity: 0.75;
}

footer img {
    max-width: 180px;
    width: 100%;
}
.about-us-last {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index:5;
}
@media (max-width: 768px) {
    .about-us-last {
        position: relative;
    }
    footer {
        text-align: center;
    }
    footer img {
        max-width: 120px;
    }
}

.max-div-width{
    max-width:950px;
}

.link-btn-grey {
	padding:10px 30px;
	text-align:center;
	background-color:#666;
	border-bottom:3px solid #cacaca;
	width:auto;
	color:#FFF;
	display:inline-block;
	margin:10px 20px 45px 0px;
	font-weight:700;
	letter-spacing:1px;
	font-size:16px;
	float:left;
}

.link-btn-grey:hover {
	color:#fff;
	background-color:#333;
	-moz-transition: all .2s ease-in;
    -o-transition: all .2s ease-in;
    -webkit-transition: all .2s ease-in;
    transition: all .2s ease-in;
}

.ft-video-div{
    top: 0px;
    left: -50px;
    width: 100%;
    height: 100%;
}

.ft-d-video-div{
    width: 100%;
    height: 100%;
}

@media (min-width: 390px){
    .ft-video-div{
        left: -60px;
    }
}

@media (min-width: 500px){
    .ft-video-div{
        left: 0px;
    }

}

.video-section{
    min-height:auto;
    height: auto;
}

@media (min-width: 768px){
    
    .video-section{
        max-height: 95vh;
        /*height: 95vh;*/
    }
    
    .hero {
        margin-top: -110px;
    }

}

.highlights-box{
    padding: 10px 0px;
    border-bottom: 2px solid #000;
    margin-bottom: 20px;
}

.hight-text{
    text-decoration: none;
    color: #212529;
}

.hight-text:hover{
    text-decoration: none;
    color: #212529;
}

.blue-box{
    background-color:#D4E5EF;
    padding:20px;
}

.contact-map-icon{
    width:15px;
}

 .res-link-wrapper{
      display:flex;
      flex-wrap:wrap;
      margin-left:-30px;
      margin-right:-30px;
  }
  .res-link{
      color:#000;
      transition: all .3s ease-in-out;
      text-decoration:none;
      word-wrap: break-word;
      padding-left:30px;
      padding-right:30px;
      width:100%;
      display:block;
      margin-bottom:60px;
  }
  
  
  
  @media (min-width: 768px) {
      .res-link{
          width: 50%;
      }
  }
  
  @media (min-width: 992px) {
      .res-link{
          width: 33.333333%;
      }
  }
  
  .res-link:hover{
      color:#000;
  }
  
  .res-link-footer{
     font-size:1rem;
     font-weight:600;
  }
  
  .res-link-content{
      min-height:65px;
      font-size:1rem;
  }
  
  .res-img-box{
      border:1px solid #000;
      margin-bottom:16px;
      position:relative;
  }
  
  .res-dark-layer{
      background-color:rgba(0,0,0, 0.4);
      position:absolute;
      width:100%;
      height:100%;
      top:0px;
      left:0px;
      opacity:0;
      transition: all .3s ease-in-out;
  }
  
   .res-link:hover .res-dark-layer{
       opacity:1;
   }