html{
  overflow-x: hidden;
  scroll-behavior: smooth;
}

header a span img{
    height: 60px; 
}
.cardreadbtn {
  display: flex;
  justify-content: space-between; /* text left, arrow right */
  align-items: center;
  width: 100%;
} 
.cardreadbtn {
  display: flex;
  justify-content: flex-end; /* moves arrow to right end */
  width: 100%;
}
.tag {
  opacity: 0;
  transform: translate(0, 10vh);
  transition: all 2s;
}

.tag.visible {
  opacity: 1;
  transform: translate(0, 0);
}

header, footer, nav, section, article, hgroup, figure {
  display: block;
}
a{
  text-decoration: none !important;
}
body {
  font-family: 'Montserrat'; ;
  font-size: 100%;
  line-height: 1.5;
  overflow: hidden;
  scroll-behavior: smooth;
}
.section1{
  margin: 80px auto 0 ;
}
.section2{
  z-index: 999;
  position: relative;
  margin: 0px auto -80px ;
}
.section3{
  background: #13273f;
  padding-top: 40px;
}
.section4 {
  margin: 80px auto 80px;
}
.container {
  margin-left: auto;
  margin-right: auto;
  max-width: 1200px;
}

.container:after {
  content: "";
  display: table;
  clear: both;
}

.container {
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
}
.container1 {
  margin-left: auto;
  margin-right: auto;
  max-width: 85%;
}

/* 
Full screen background image
*/
.hero {
  background-color: #fff;
  background-size: cover;
  width: 100%;
  position: relative;
  
}

/*
Blueish tint overlay
*/
.hero:after {
  content: '';
  background: rgba(0, 0, 64, 0);
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
}
.hamburger-label{
  color: #000 !important;
}
.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after{
  background-color: #000 !important;
}
/* 
Making sure everything in .hero sits above our :after elements 
*/
.hero * {
  position: relative;
  z-index: 1;
}
.hed-logo{
  margin-left: 20px;
  width: inherit;
}
#masthead {
  padding: 1.5em 0;
  position: fixed;
  width: 100%;
  height: 100px;
  background-color: #fff;
}
.hed-nav-a-img a img{
  width: 90%;
}
.hed-nav-a-img{
  width: 100%;
}
#masthead.is-active {
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.15);
}

/*
Using this method because browsers can transition opacity very cheaply as opposed to using background: rgba
https://www.html5rocks.com/en/tutorials/speed/high-performance-animations/
*/
#masthead:after {
  content: '';
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  opacity: 0;
  transition: opacity 0.3s ease;
}

#masthead.is-active:after {
  opacity: 1;
}

/*!
 * Hamburgers
 * @description Tasty CSS-animated hamburgers
 * @author Jonathan Suh @jonsuh
 * @site https://jonsuh.com/hamburgers
 * @link https://github.com/jonsuh/hamburgers
 */
.hamburger {
  background-color: transparent;
  border: 0;
  color: inherit;
  cursor: pointer;
  display: inline-block;
  float: left;
  font: inherit;
  margin: 0.8125em 0 0;
  overflow: visible; 
  outline: none;
  padding: 0;
  text-transform: none;
  transition: opacity 0.15s;
  -webkit-appearance: none;
}

.hamburger-box {
  width: 30px;
  height: 24px;
  display: inline-block;
  position: relative; 
}

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -2px; 
}

.hamburger-inner, 
.hamburger-inner::before, 
.hamburger-inner::after {
  width: 30px;
  height: 3px;
  background-color: #fff;
  border-radius: 4px;
  position: absolute;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  transition-duration: 0.15s;
  transition-timing-function: ease; 
}

#masthead.is-active .hamburger-inner, 
#masthead.is-active .hamburger-inner::before, 
#masthead.is-active .hamburger-inner::after {
    background-color: #000;
}

.hamburger-inner::before, 
.hamburger-inner::after {
  content: "";
  display: block; 
}

.hamburger-inner::before {
  top: -6px; 
}

.hamburger-inner::after {
  bottom: -6px; 
}

/*
 * Boring
 */
.hamburger--boring .hamburger-inner, 
.hamburger--boring .hamburger-inner::before, 
.hamburger--boring .hamburger-inner::after {
  transition-property: none; 
}

.hamburger--boring.is-active .hamburger-inner {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg); 
}

.hamburger--boring.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0; 
}

.hamburger--boring.is-active .hamburger-inner::after {
  bottom: 0;
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg); 
}

.hamburger-label-right {
  text-align: right;
  margin-top: -40px;

}
.hamburger-label-right a{
  margin-right: 5px;
}
.hamburger-label-right a img{
  width: 40px;
}
.hamburger-label {
  color: #fff;
  display: inline-block;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
  margin-left: 0.3125em;
  text-transform: uppercase;
}

#masthead.is-active .hamburger-label {
  color: #000;
}

.hamburger-box,
.hamburger-label {
  display: inline-block;
  vertical-align: middle;
}

#site-nav {
  clear: both;
  display: flex;
  flex-direction: column; 
  height: 0;
  overflow: hidden;
}

#site-nav.is-active {
  height: auto;
  overflow: visible;
  padding: 1.3em 0 1em 1em;
  background-color: #f7f7f7;
  border-radius: 0 0 20px 20px;
  margin-top: 25px;

}

.second-sec{
  background: url(second.png);
  padding: 150px 0 100px;
  /* margin-top: -45px; */
}

.col3{
  width: 27%;
  background-color: #000;
}

.col31{
  background-color: #D75528;
  border-radius: 0 20px 20px 0;
  width: 18%;
}

.dropdown label{
  color: #fff;
  margin: 10px 0 0;
  text-transform: uppercase;
}
.second-h2{
  /* Coffee Minas Villa */

width: 318px;
height: 136px;

font-family: 'Montserrat' ;
font-style: normal;
font-weight: 400;
font-size: 50px;
line-height: 68px;
display: flex;
align-items: center;

color: #000000;

}

.second-p{

width: 401px;
height: 138px;

/* Paragraph 18px */

font-family: 'Montserrat' ;
font-style: normal;
font-weight: 300;
font-size: 18px;
line-height: 22px;

color: #000000;

}

.subscription *{
  margin: 0;
  padding: 0;
  outline: 0;
}
.subscription{
  border: 5px solid #eee;
  border-radius: 20px;
  display: inline-block;
  margin: 0 auto -40px;
  z-index: 1;
  background: #fff;
}

.subscription input[type="text"]{
  font-size: 28px;
  padding: 5px 15px;
  border:none;
  color:#909090;
}
.subscription input[type="submit"]{
  background-color: transparent;
  color: #fff;
  /* text-shadow: 1px 1px 3px #fff; */
  font-weight: bold;
  /* box-shadow: inset 0 1px 1px rgba(255,255,0,.6);  */
	/* background-image: linear-gradient(rgba(255,207,92,.7), rgba(223,156,38,.8)); */
  font-size:20px;
  margin-top: 15px;
  margin-bottom: -13px;
  height: 84px;
  border: none;
  -webkit-transition: all 0.3s ease-in;
     -moz-transition: all 0.3s ease-in;
       -o-transition: all 0.3s ease-in;
          transition: all 0.3s ease-in;
}
.subscription input[type="submit"]:hover{
  background-color: transparent;
  -webkit-transition: all 0.3s ease-in;
     -moz-transition: all 0.3s ease-in;
       -o-transition: all 0.3s ease-in;
          transition: all 0.3s ease-in;
}

.dropbtn {
  background-color: transparent;
  color: #212529;
  font-weight: 500;
  font-size: 18px;
  /* padding: 5px 0 12px;
  width: 100%;
  /* font-weight: bold; */
  font-family: 'Montserrat' ;
  border: none;
  text-align: left;
}

.dropdown {
  position: relative;
  display: inline-block;
  padding: 0 20px;
}

.dropdown-content {
  display: none;
  position: fixed;
  text-align: left !important;
  background-color: #f1f1f1;
  padding: 10px 20px 20px;
  min-width: 250px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown-content a {
  color: black;
  text-align: left !important;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.dropdown-content a:hover {background-color: #ddd;}

.dropdown:hover .dropdown-content {display: block;}

.dropdown:hover .dropbtn {background-color: transparent;}

.hero-img{
  height: 90vh;
  background:url(hero-bg.png);
  background-size: cover;
}
#site-nav .col { 
  padding-bottom: 2.5em;
} 

.h1-sty{
position: absolute;
width: 696px;
height: 108px;
left: 563px;
top: 296px;

font-family: 'Montserrat' ;
font-style: normal;
font-weight: 400;
font-size: 80px;
line-height: 108px;
text-align: center;

/* White */

color: #FFFFFF;

text-shadow: 0px 0px 10px #000000;
}
.h1-span-sty{
  /* The Yercaud experience */


position: absolute;
width: 581px;
height: 84px;
left: 777px;
top: 375px;

/* Dancing Script */

font-family: 'Montserrat' ;
font-style: normal;
font-weight: 400;
font-size: 70px;
line-height: 84px;
/* identical to box height */

text-align: center;

/* Yellow */

color: #F2C94C;

}

.containerq{
  width: 75%;
}
.menu-sty-both1 li{
  width: 25%;
}
.menu-sty-both1 li a{
  text-align: center;
  
}
.third-span-sty{
  margin: 15px auto 0;
  font-family: 'Montserrat' ;
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 20px;
  align-items: center;
  text-align: center;
  /* text-transform: uppercase; */
  color: #739696;

}
.third-span-sty1{
  margin: 15px auto 0;
  font-family: 'Montserrat' ;
  font-style: normal;
  font-weight: 600;
  font-size: 15px;
  line-height: 22px;
  align-items: center;
  text-align: center;
  text-transform: uppercase;
  color: #13273f;
}
.third-span-sty2{
  margin: 60px auto 70px;
  font-family: 'Montserrat' ;
  font-style: normal;
  /* font-weight: 600; */
  font-size: 15px;
  line-height: 22px;
  align-items: center;
  text-align: center;
  /* text-transform: uppercase; */
  color: #fff;

}
.third-span-sty3 {
  margin: 30px auto;
  font-family: 'Montserrat';
  font-style: normal;
  font-size: 15px;
  line-height: 20px;
  align-items: center;
  text-align: center;
  color: #fff;
}
.third-span-sty4{
  margin: 15px auto;
  font-family: 'Montserrat' ;
  font-style: normal;
  font-weight: 600;
  font-size: 15px;
  line-height: 28px;
  align-items: center;
  text-align: center;
  text-transform: uppercase;
  color: #13273f;
}
.menu-sty-both1{
  margin: -110px 50px 50px;
  width: 100%;
  display: flex;
  align-items: baseline;
}
.menu-sty-both1 li a img{
  width: 100%;

}
.forth-sec-p{
  margin-bottom: 70px;
  font-family: 'Montserrat' ;
  font-style: normal;
  font-weight: 700;
  font-size: 50px;
  line-height: 30px;
  text-transform: uppercase;

  /* P01 */

  color: #B4BEB4;
}
.forth-sec-p span{
  font-weight: 400;
  font-size: 16px;
  line-height: 0px !important;
  
  /* P01 */
  
  color: #B4BEB4;
  }
  .fourth-sec{
    background: url(image-36.png);
    background-size: cover;
    background-position: center center;
    max-height: 700px;
    min-height: 700px;
  }
  .fourth-sec-p{
    background-color: #F2F2F2;
    max-height: 700px;
    min-height: 700px;
  }
  .fourth-sec-p-sty{
    background-color: #fff;
    padding: 100px;
    position: relative;
    margin-left: -200px;
    margin-top: 80px;
    margin-right: 50px;
    width: 500px;
    height: 660px;
    box-shadow: 0px 4px 30px rgb(0 0 0 / 15%);
  }
  .fifth-sec{
    padding: 150px 150px 80px;
  }
  .fifth-sec-p{
    font-size: 20px;
    margin-top: 30px;
    width: 80%;
  }
  .fifth-sec-h1{
    font-weight: 500;
    font-size: 50px;
  }
  .fifth-sec-h1 span{
    color: #D75528;
    font-weight: bolder;
  }
  .fifth-sec-h11{
    color: #416E41;
    font-size: 50px;
    font-weight: 700;
    width: 100%;
  }
  .fifth-sec-h1-span{
    color: #D75528;
    font-size: 25px;
  }
  .slick-dots{
    display: none !important;
  }
  .fourth-sec-a{
    padding: 20px;
    text-align: center;
    background-color: #D75528;
    color: #fff;
    margin-top: 20px;
  }
  .seven-sec{
    padding: 80px 0;
  }
  .seven-sec-p{
    font-weight: 700;
    font-size: 60px;
    text-align: center;
    color: #00A5A5;
    margin-bottom: 0;
  }

  .seven-sec-p1{
    font-size: 20px;
    text-align: center;
    color: #000;
  }
  @media screen and (min-width: 1800px) {
    .fourth-sec-p-sty {
      background-color: #fff;
      padding: 100px;
      position: relative;
      margin-left: -100px !important;
      margin-top: 80px;
      margin-right: 50px;
      width: 500px;
      height: 660px;
      box-shadow: 0px 4px 30px rgb(0 0 0 / 15%);
  }
  }
  .items121{
    display: block;
  }
  .items131{
    display: none;
  }
  .ab-pad{
    padding: 100px ;
  }
  .mar-bot{
    margin: 80px auto 150px;
  }
  .pad-mo{
    padding: 80px;
  }
  .pad-m{
    padding: 0px 100px 80px;
  }
  .mar-mo{
    margin: 20px auto 100px;
  }
  .fira{
    color: #f5821f;
    font-size: 30px;
  }
  .sera{
    padding: 10px;
    color: #f5821f;
    font-size: 20px;
    margin-bottom: 0px;
    /*bottom: 0;*/
    /*position: absolute;*/
    /*margin-left: -15px;*/
  }
  .card2fs{
    font-size: 75px;
    margin-bottom:0px;
  }
  .card3fs{
    font-size: 35px;
  }
  .copy-p{
    color: #13273f;
    padding: 0px;
  }
  .form-pad{
    padding: 50px;
  }
@media screen and (max-width: 480px) {
    .card__text10 {
  font-size: 15px;
    text-transform: capitalize;
    font-weight: 400;
    height: auto !important;
    margin-top:20px;
}
    .card-celeq{
  padding-left:0px !important;
}
.heading6 {
    margin-left: 10px !important;
}
.heading2{
  font-size: 20px;
  font-weight: 800;
  color: #13273f;
  margin: 50px auto 30px;
}
  .items121{
    display: none;
  }
  .items131{
    display: block;
  }
  .form-pad{
    padding: 50px 30px !important;
  }
  .carousel-item .w-100{
     width:auto !important;
  }
  .copy-p{
    color: #13273f;
    padding: 25px 20px 0px 0px !important;
  }
  .third-span-sty3 {
    margin: 30px !important;
    font-family: 'Montserrat';
    font-style: normal;
    font-size: 15px;
    line-height: 20px;
    align-items: center;
    text-align: center;
    color: #fff;
  }
  .feed-h {
    position: unset !important;
    font-size: 35px;
    font-weight: 800;
    margin-bottom: 30px !important;
    padding-top: 0px !important;
    color: #fff;
  }
  .quote-pad{
    padding-top: 50px;
  }
  .heading9{
    font-size: 24px !important;
    font-weight: 800;
    color: #f5821f;
    margin: 0px auto 40px;
  }
  .card2fs{
    font-size: 60px !important;
  }
  .card3fs{
    font-size: 30px !important;
  }
  .car-text {
    color: #fff;
    font-size: 18px !important;
    font-weight: 600;
  }
  .car-text1 {
    color: #fff;
    font-size: 18px !important;
  }
  .car-text2 {
    color: #6e6e6e;
    font-size: 18px !important;
    font-weight: 600;
  }
  .car-text3{
    color: #6e6e6e;
    font-size: 18px !important;
  }
  .fira{
    color: #f5821f;
    font-size: 30px;
    margin-left: 25px !important;
  }
  .mar-mo{
    margin: 0px auto 50px;
  }
  .cel-bacim {
    background-image: url(../image/Asset\ 57.png);
    background-size: cover;
    background-position: center;
  }
  .pad-m{
    padding: 20px !important;
  }
  .pad-mo{
    padding: 20px !important;
  }
  .mob-pad{
    padding: 0px 30px !important;
  }
  .icop {
    background: #f5821f;
    padding: 50px 35px !important;
    border-radius: 50%;
  }
  .icop img{
    width: 60px !important;
  }
  .icop1 {
    background: #000000;
    padding: 50px 35px !important;
    border-radius: 50%;
  }
  .icop1 img{
    width: 60px !important;
  }
  .mar-bot{
    margin: 0px auto 80px !important;
  }
  .wid-col{
    width: 50% !important;
  }
  .mar {
    margin: 10px !important;
  }
  .eight-sec-sty {
    background: none !important;
    height: 460px !important;
  }
  .se-pad {
    padding: 0px !important;
  }
  .heading {
    font-size: 35px;
    font-weight: 800;
    text-align: center !important;
    color: #f5821f;
    margin-bottom: 30px !important;
  }
  .ico-container {
    background-color: #f5821f;
    width: 100% !important;
    border-radius: 30px;
  }
  .section1 {
    margin: 50px auto 0 !important;
  }
  .section2 {
    z-index: 999;
    position: relative;
    margin: 0px auto 40px !important;
  }
  .section3 {
    background: #ffffff !important;
    padding-top: 0px !important;
  }
  .text{
    font-size: 18px !important;
    color: #8c8c8c;
    line-height: 23px !important;
    margin-right: 0px !important;
    /* text-align: justify !important; */
    padding: 0px 20px !important;
    line-height: 28px;
  }
  .heading8{
    font-size: 35px;
    font-weight: 800;
    color: #f5821f;
    text-align: center !important;
    margin-bottom: 20px;
  }
  .ico-row{
    display: flex;
    padding: 50px 0 !important;
    justify-content: space-evenly;
  }
  .six-sec{
    margin-top: 105px;
  }
  .ma-top{
    margin-top: 50px;
  }
  .ab-pad{
    padding: 80px 0px 50px;
    margin: 0;
  }
  .widwe1{
      margin-left:15%;
  }
  .widwe{
    width: -webkit-fill-available;
    margin-bottom: 30px;
  }
  .car-num{
    float: left;
    background: #f5821f;
    margin: auto !important;
    border-radius: 20px;
    padding: 10px 30px;
  }
  .car-flex{
    display: flex;
    flex-wrap: wrap !important;
    align-items: center;
  }
  #customers-testimonials .item {
    background-image: url("../img/blue-banner.jpg")  !important;
    background-size: cover;
    text-align: center;
    padding: 30px 10px !important;
    margin: 20px;
    opacity: 1;
    -webkit-transform: scale3d(1.0, 1.0, 1);
    transform: scale3d(1.0, 1.0, 1);
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
  .car-flex1 {
    display: flex;
    flex-wrap: wrap !important;
    align-items: center;
    justify-content: space-evenly;
    margin: 50px auto !important;
  }
  .bord{
    border-bottom: none !important;
    border-right: none !important;
  }
  .bord2{
    border-bottom: none !important;
  }
  .bord3{
    border-right: none !important;
  }
  .bord11{
    border-bottom: none !important;
    border-right: none !important;
  }
  .bord12{
    border-bottom: none !important;
  }
  .bord13{
    border-right: none !important;
  }
  .bor-rig{
    border-right: none !important;
    padding-bottom: 40px;
    width: 50% !important;
  }
  .bor-rig1{
    border-right: none !important;
    padding-bottom: 40px;
    width: 50% !important;
  }
  .bor-rig2{
    border-right: none !important;
    padding-bottom: 40px;
    width: 50% !important;
  }
  .ins-pad{
    padding: 30px !important;
  }
  .cen-pad{
    padding: 50px 20px !important;
  }
  .carousel-caption h3 {
    font-size: 20px !important;
    line-height: 25px !important;
  }
  .carousel-caption h2 {
    font-size: 38px !important;
    font-weight: 900;
    line-height: 40px !important;
  }
  .slick-list {
    overflow: none !important;
  }
  .slick-next {
    margin-right: 25px !important;
  }
  .slick-prev {
    margin-left: 25px !important;
  }
  .hamburger-label-right {
    text-align: right;
    margin-top: -40px;
    margin-right: 10px;
}
  .post-slider h4 {
    margin-bottom: 10px !important;
  }
  .fifth-sec-p {
    width: 100%;
  }
  .post-slider .post-wrapper .post {
    margin: 0 22px !important;
  }
  .post-slider .next {
    right: 0px !important;
    z-index: 9;
  }
  .post-slider .post-wrapper {
    width: 100% !important;
    height: 320px !important;
    margin: 0px auto;
    overflow: hidden;
    padding: 10px 0px 10px 0px;
  }
  .post-slider .post-wrapper .post{
    width: 285px !important;
    margin-left: 7px !important;
    margin-right: 42px !important;
  }
  .menu-sty-both1 {
    margin: 0px 50px 0px;
    flex-direction: column;
  }
  .hrclass {
    display: none;
  }
  .fifth-sec {
    padding: 100px 25px 75px;
  }
  .mar-top {
    margin-top: 2rem !important;
  }
  .fourth-sec-p {
    background-color: #F2F2F2;
    max-height: 0px;
    min-height: 0px;
  }
  .fourth-sec-p-sty {
    background-color: #fff;
    padding: 100px 50px;
    position: relative;
    margin-left: -1px;
    margin-top: -609px;
    margin-right: 0;
    width: 100%;
    height: auto;
    box-shadow: 0px 4px 30px rgb(0 0 0 / 15%);
  }
  .menu-sty-both1 li{
    width: 100%;
    float: left;
    margin-bottom: 30px;
  }
  .menu-sty-both1 li a img{
    margin-left: -8px;
  }
  
  #reservation-form .col button {
    border-radius: 0px 0px 15px 15px !important;
  }
  #site-nav.is-active {
    padding: 1.3em 0 1em 0em;
  }
  .menu-sty-both li a img{
    width: 100%;
    float: left;
  }
  .menu-sty-both li{
    width: 50%;
  }
  .col-hei1{
    margin: 0;
  }
  .col-hei2{
    margin: -20px 0 10px 0;
  }
  .col-hei3{
    margin: 0px 0 10px 0;
  }
  .col-hei4{
    margin: 10px 0 10px 0;
  }
  #reservation-form .form-inline select.form-control {
    height: 32px;
  }
  .reservation-horizontal .col{
    width: 50%;
    padding-bottom: 10px;
  }

  .container-helper{
    width: 100% !important;
    margin: 0 auto;
    padding: 0 !important;
  }
  .hed-logo {
    margin-left: 15px;
    width: 100px;
    margin-top: 5px;
  } 
  .second-p {
    width: auto;
  }
  .container1 {
    margin-left: 7px;
    max-width: 93%;
  }
  .containerq{
    width: 100% !important;
  }
  
  .copy h1 {  
    font-size: 40px !important;
    margin-bottom: 6% !important;
  }
  .copy span{  
    font-size: 40px !important;
  }
  .copy p {
    font-size: 38px !important;
    margin-left: 0 !important;
    margin-top: 0 !important;
  }
  #reservation-form .col-sm-2 button {
    margin-top: 0;
    height: 108px;
    border-radius: 0 0px 15px 15px !important; 
    background-color: #D75528;
    border: none;
  }
  #reservation-form .reservation-horizontal, #reservation-form .reservation-vertical, #contact-form .contact-vertical{
    padding: 30px 0px 0px 0px !important;
  }
}
@media screen and (min-width: 550px) {
  
  #site-nav {
    flex-direction: row;
    flex-wrap: wrap;
  }
  
  #site-nav .col {
    flex: 0 0 50%;
  } 
}

@media screen and (min-width: 768px) {
  #site-nav .col {
    flex: 0 0 33.333333333%;
  } 
}

@media screen and (min-width: 960px) {
  #site-nav {
    flex-wrap: nowrap;
  }
  .menu .navbar-nav.nav-dropdown {
    display: -webkit-flex;
}
  .navbar-expand-lg {
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -ms-flex-pack: start;
    justify-content: flex-start;
}
  
  #site-nav .col {
    flex: 0 0 20%;
  } 
  
  #site-nav .col:last-child {
    display: flex;
    justify-content: flex-end;
  }  
}

#site-nav h4 {
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

#site-nav ul {
  list-style-type: none;
  margin-top: 1em;
}

#site-nav li {
  margin-bottom: 0.3125em;
}

#site-nav li a {
  color: #b4b9ba;
  text-decoration: none;
  transition: color 0.3s ease;
}

#site-nav li a:hover,
#site-nav li a:focus {
  color: #686d6e;
}

#site-nav .social {
  margin: 0;
  overflow: hidden;
}

#site-nav .social li {
  float: left;
  margin: 0 0.3125em;
  width: 32px;
  height: 32px;
}

#site-nav .social li svg {
  display: block;
  fill: #b4b9ba;
  width: 100%;
  height: 100%;
  transition: fill 0.3s ease;
}

#site-nav .social li:hover svg {
  fill: #686d6e;
}

#masthead-search {
  float: right;
  margin-top: 0.625em;
  width: 100%;
  max-width: 14em;
  position: relative;
  -webkit-appearance: none;
}

#masthead-search input {
  background: transparent;
  border: none;
  border-color: #fff;
  border-style: solid;
  border-width: 1px;
  border-radius: 50px;
  outline: none;
  width: 100%;
  padding: 0.75em 1.125em;
  transition: border-color 0.3s ease;
  -webkit-appearance: none;
}

#masthead-search button {
  background: none;
  border: none;
  color: #fff;
  font-size: 1em;
  padding: 0;
  position: absolute;
  top: 50%;
  right: 0.75em;
  transform: translateY(-50%);
  -webkit-appearance: none;
}

#masthead.is-active #masthead-search button {
  color: #b4b9ba;
}

#masthead.is-active #masthead-search input {
  border-color: #b4b9ba;
}

#masthead-search ::-webkit-input-placeholder {
    color:    #fff;
}

#masthead-search :-moz-placeholder {
   color:    #fff;
   opacity:  1;
}

#masthead-search ::-moz-placeholder {
   color:    #fff;
   opacity:  1;
}

#masthead-search :-ms-input-placeholder {
   color:    #fff;
}

#masthead.is-active #masthead-search ::-webkit-input-placeholder {
    color:    #b4b9ba;
}

#masthead.is-active #masthead-search :-moz-placeholder {
   color:    #b4b9ba;
   opacity:  1;
}

#masthead.is-active #masthead-search ::-moz-placeholder {
   color:    #b4b9ba;
   opacity:  1;
}

#masthead.is-active #masthead-search :-ms-input-placeholder {
   color: #b4b9ba
}

#masthead .col {
  opacity: 0;
}

#masthead.is-active .col {
  transform: translateY(40px);
  transition: opacity 0.3s ease;
  animation: fade-in-stagger 0.8s ease forwards;
}

#masthead.is-active .col:nth-child(1) {
    -webkit-animation-delay: 0;
}

#masthead.is-active .col:nth-child(2) {
    -webkit-animation-delay: 0.1s;
}

#masthead.is-active .col:nth-child(3) {
    -webkit-animation-delay: 0.2s;
}

#masthead.is-active .col:nth-child(4) {
    -webkit-animation-delay: 0.3s;
}

#masthead.is-active .col:nth-child(5) {
    -webkit-animation-delay: 0.4s;
}

@keyframes fade-in-stagger {
  to {
    opacity: 1;
    transform: translateY(0); 
  }
}

#hero1{
  background:url(hero-bg.png);
   background-size:cover;
   background-position:center center;
   background-attachment:fixed;
 }
 #hero11{
  background:url(image-36.png);
   background-size:cover;
   background-position:center center;
   background-attachment:fixed;
 }
 #hero111{
  background:url(image-20.png);
   background-size:cover;
   background-position:center center;

 }
 #hero2{background: url(https://s3-us-west-2.amazonaws.com/s.cdpn.io/21555/Melissani-cave-natural.jpg);
   background-size:cover;
   background-position:center center;
   background-attachment:fixed;
 }
 .herop, .content{
   text-align:center; 
   position:relative;
   width: 100%;
 }
 
 .inner{
   min-height:80vh;
   position: relative;
 }

 .copy{
   position:absolute; 
   top:50%; 
   height:10em; 
   margin-top:-5em; 
   width:100%;
   
 }

 .copy h2{
   
  font-family: 'Montserrat' ;
  font-style: normal;
  font-weight: 400;
  font-size: 60px;
  line-height: 80px;
  text-align: center;
  padding: 0 25%;
  color: #fff;
   }

 .copy h1{
   
  font-family: 'Montserrat' ;
  font-style: normal;
  font-weight: 400;
  font-size: 80px;
  line-height: 108px;
  text-align: center;

 }
 .copy span{
  font-size: 80px;
  
 }

 .copy p{
/* Dancing Script */

font-family: 'Montserrat' ;
font-style: normal;
font-weight: 400;
font-size: 70px;
line-height: 0;
margin-left: 250px;
/* identical to box height */

text-align: center;

/* Yellow */

color: #F2C94C;
 }
 .herop h1, .hero p{ 
   color:#fff;
 }
 
 .content h1, .content p{
   color:#333;
 }
 
 
/* Reservation Form
-------------------------------------------------- */
#reservation-form {
	margin-top: -50px;
}
/* Vertical */
#reservation-form .reservation-horizontal, #reservation-form .reservation-vertical, #contact-form .contact-vertical {
	-webkit-border-radius: 5px 5px 5px 5px;
	border-radius: 20px;
    border: 5px solid #ffffff;
	-webkit-box-shadow: 0 3px 0 0 rgba(0,0,0,0.12);
	box-shadow: 0 3px 0 0 rgba(0,0,0,0.12);
	padding: 0px 0px 0px 15px;
	z-index: 0;
	background-color: #000;
}
#reservation-form .reservation-vertical h2 {
	margin-top: 0;
	margin-bottom: 12px;
}
#reservation-form .reservation-vertical h4 {
	display: inline-block;
	margin-top: 0;
	margin-bottom: 0;
}
/* Price */
#reservation-form .price {
	padding: 10px 25px;
	font-weight: bold;
	text-align: center;
	margin-bottom: 12px;
	font-size: 18px;
	display: block;
	border: 1px dashed #ebebeb;
}
#reservation-form .price h4 {
	color: #333;
	padding-right: 5px;
}
#reservation-form .price span {
	color: #979797;
	font-weight: normal;
	padding-left: 5px;
	font-size: 11px;
}
/* Horizontal */
.form-inline .form-control{
	width: 100%;
  padding-left: 0;
  font-size: 20px;
  font-weight: bold;
}
#reservation-form .reservation-horizontal .col-sm-1, #reservation-form .reservation-horizontal .col-sm-2, #reservation-form .reservation-horizontal .col-sm-3 {
	padding-left: 10px;
	padding-right: 10px;
	margin: 0;
}
#reservation-form .form-inline select.form-control {
	width: 100% !important;
  padding-left: 0;
  font-size: 20px;
  font-weight: bold;
  height: 35px;
}
#reservation-form .form-inline .form-group {
	width: 100%;
  padding: 0px 0;
}
/* Icons */
#reservation-form .popover-icon i {
	color: #9f9f9f;
	font-size: 18px;
}
#reservation-form .fa.infield {
	position: absolute;
	float: right;
	right: 57px;
	margin-top: 35px;
	font-size: 14px;
}
#reservation-form .form-inline .fa.infield {
	position: absolute;
	float: right;
	right: 18.84px;
	font-size: 14px;
	top: 0;
	width: 15px;
}
/* Button */
#reservation-form .col button {
  font-weight: bold;
  margin-top: 0;
  height: 85px;
  border-radius: 0 15px 15px 0;
  background-color: #D75528;
  border: none;
}
/* Guests */
#reservation-form .guests-select {
	z-index: 100;
	cursor: pointer;
}
#reservation-form .guests-select .guests {
	margin-top: -261px;
	width: 200px;
	height: auto;
	-webkit-border-radius: 5px 5px 5px 5px;
	border-radius: 5px 5px 5px 5px;
	border: 1px solid #ebebeb;
	-webkit-box-shadow: 0 3px 0 0 rgba(0,0,0,0.12);
	box-shadow: 0 3px 0 0 rgba(0,0,0,0.12);
	z-index: 500;
	background-color: #000;
	position: absolute;
	padding: 20px;
	cursor: default !important;
	display: none;
	animation-name: fadeIn;
	animation-duration: 0.2s;
	animation-iteration-count: 1;
	animation-timing-function: ease-out;
	-webkit-animation-name: fadeIn;
	-webkit-animation-duration: 0.2s;
	-webkit-animation-iteration-count: 1;
	-webkit-animation-timing-function: ease-out;
	-moz-animation-name: fadeIn;
	-moz-animation-duration: 0.2s;
	-moz-animation-iteration-count: 1;
	-moz-animation-timing-function: ease-out;
}
#reservation-form .form-inline .guests-select .form-group {
	padding-bottom: 15px;
}
/* Datepicker*/
#reservation-form .hasDatepicker {
	cursor: pointer;
}
/* Error Message */
.error_message {
	color: #F00;
}
#error{
	display: none;
}
/* Rooms
-------------------------------------------------- */
/* Room Thumbnails */
.room-thumb {
	width: 356px;
	height: 283px;
	float: left;
	overflow: hidden;
	position: relative;
	border: 1px solid #ebebeb;
	-webkit-box-shadow: 0 2px 0 0 #e0e0e0;
	box-shadow: 0 2px 0 0 #e0e0e0;
	-webkit-backface-visibility: hidden;
	-webkit-perspective: 5000;
}
.room-thumb .mask {
	width: 356px;
	height: 281px;
	position: absolute;
	overflow: hidden;
	top: 0;
	left: 0
}
.room-thumb img {
	display: block;
	position: relative;
	width: 100%;
	border-bottom: 1px solid #ebebeb;
}
.room-thumb .main {
	border-bottom: 1px solid #ebebeb;
	height: 55px;
}
.room-thumb .main h5 {
	font-size: 14px;
	font-weight: bold;
	position: relative;
	padding: 10px 0 0 20px;
	display: inline-block;
}
.room-thumb .main .price {
	display: inline;
	float: right;
	font-size: 18px;
	font-weight: bold;
	height: 55px;
	padding: 6px 25px;
	border-top: none;
	border-right: 1px solid #ebebeb;
	border-bottom: 1px solid #ebebeb;
	border-left: 1px solid #ebebeb;
	-webkit-backface-visibility: hidden;
	-webkit-perspective: 1000;
	}
.room-thumb .main .price span {
	display: block;
	color: #979797;
	font-size: 11px;
	font-weight: normal;
	text-align: center;
}
.room-thumb .content {
	position: relative;
	padding: 20px;
	text-align: left;
}
.room-thumb .content button {
	margin-top: 5px;
}
.room-thumb .content p span {
	font-weight: bold;
	display: block;
}
.room-thumb .content i {
	padding-right: 5px;
}
.room-thumb img {
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.room-thumb .mask {
	background-color: #fff;
	-webkit-transform: translateY(228px);
	-moz-transform: translateY(228px);
	-o-transform: translateY(228px);
	-ms-transform: translateY(228px);
	transform: translateY(228px);
	-ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=100)";
	filter: alpha(opacity=100);
	opacity: 1;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.room-thumb:hover .mask {
	-webkit-transform: translateY(0px);
	-moz-transform: translateY(0px);
	-o-transform: translateY(0px);
	-ms-transform: translateY(0px);
	transform: translateY(0px);
}
.room-thumb:hover img {
	-webkit-transform: translateY(-228px);
	-moz-transform: translateY(-228px);
	-o-transform: translateY(-228px);
	-ms-transform: translateY(-228px);
	transform: translateY(-228px);
}
/* Room List */
.room-list {
	margin-top: -60px;
	margin-bottom: -60px;
}
.room-list .room-thumb {
	margin-bottom: 60px;
}
.form-group label{
  color: #fff;
  text-transform: uppercase;
  justify-content: left;
}
.form-group i{
  color: #fff;
}
.form-group input{
  width: 100%;
  color: #fff;
  background-color: transparent;
  border: none;
  font-size: 20px;
  font-weight: 900;

}

.form-control{
  color: #fff;
  background-color: transparent;
  border: none;
}

.form-control:focus, .form-control:hover{
  background-color: transparent;
  border: none;
}

::-webkit-calendar-picker-indicator {
  filter: invert(1);
}
.reservation-inner-sty{
  padding: 15px 15px 0 15px !important;
  border-right: 1px solid #fff;
  border-left: 1px solid #fff;
}
.reservation-inner-sty1{
  padding: 0 15px 0 15px !important;
  border-right: 1px solid #fff;
}

.container-helper{
  width: 95%;
  margin: 0 auto;
  padding: 50px 0;
}
ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

li {
  float: left;
}

li a {
  display: block;
  color: white;
  text-align: center;
  padding: 16px;
  text-decoration: none;
}

.post-slider{
  position: relative;
}
.post-slider .next{
  position: absolute;
  top:50%;
  right: 30px;
  font-size: 2em;
  color: #d75528;
  cursor: pointer;
}
.post-slider .prev{
  position: absolute;
  top:50%;
  left: 30px;
  font-size: 2em;
  color:#d75528;
  cursor: pointer;
}
.post-slider .post-wrapper{
  width: 84%;
  height: 350px;
  margin:0px auto;
  overflow: hidden;
  padding:10px 0px 10px 0px;
}
.post-slider .post-wrapper .post{
  height: 300px;
  width: 300px;
  margin:0px 10px;
  display: inline-block;
  /* background: #6DD5FA; */
  border-radius: 5px;
  /* box-shadow: 1rem 1rem 1rem -1rem #a0a0a033; */
}
.post-slider .post-wrapper .post .post-info{
  padding: 0px 5px;
}
.post-slider .post-wrapper .post .slider-image{
  width: 100%;
  border-radius: 20px;
}
.post-slider h4{
  padding:5px 5px 5px 15px;
  color:#fff;
  margin-top: -45px;
  margin-bottom: 15px;

}
.post-slider a{
  text-decoration: none;
  color: inherit;
}
.page-wrapper a:hover{
  color:black;
}

/* FILTRE BOUTON */

.six-sec .container-fluid{
  padding-left: 0;
}

.six-sec-second{
  padding-left: 40px;
  display: flex;
  align-items: center;
}

.carousel-indicators {bottom: 30px;}
/* .carousel-indicators li {width: 100px; } */
.carousel-indicators li img{border: 1px solid #fff;}


.card {
  text-align: left;
  border: none;
}
.card__img {
  margin-bottom: 10px;
}
.card__img1 {
  margin-bottom: 30px;
  padding: 50px 50px 20px;
}
.card__title {
  font-family: 'Montserrat' ;
  text-transform: capitalize;
  color: var(--dark);
  line-height: 35px;
  font-size: 24px;
}
.card__text {
  font-family: 'Montserrat' ;
  color: var(--grey);
  font-size: 16px;
  line-height: 26px;
  margin-bottom: 20px;
}

.divider {
  background-color: var(--faded-gray);
  height: 2px;
  max-width: 30px;
  margin: 15px auto 20px;
}
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 35px;
  max-width: 84%;
  margin: 50px auto 0;
  padding: 0 10px;
}
.card__img img {
  width: 100%;
  vertical-align: top;
}

.map-card{
  width: 500px;
    height: 550px;
    margin-left: 60%;
    margin-top: 25px;
    padding: 30px;
    background-color: #13273f;
    color: #FFFFFF;
}

.map-card1{
  padding: 40px;
  background-color: #fff;
  height: 100%;
}

.card {
	margin: 0 auto;
	border: none;
}
.card .carousel-item {
	min-height: 250px;
}
.card .carousel-caption {
	padding: 0;
	right: 15px;
	left: 15px;
	top: 15px;
	color: #3d3d3d;
	padding: 15px;
}
.card .carousel-caption .col-sm-3 {
	display: flex;
	align-items: center;
}
.card .carousel-caption .col-sm-9 {
	text-align: left;
}
.card .carousel-control-prev, .card .carousel-control-next {
	color: #3d3d3d !important;
	opacity: 1 !important;
}
.carousel-control-prev-icon, .carousel-control-next-icon {
	background-image: none;
	color: #d75528;
	font-size: 14px;
	background-color: transparent;
	height: 32px;
	line-height: 32px;
	width: 32px;
}
.carousel-control-prev-icon:hover, .carousel-control-next-icon:hover {
	opacity: 0.85;
}
.carousel-control-prev {
  left: 40%;
  top: 45%;

}
.carousel-control-next {
  right: 21%;
  top: 45%;
}
.midline {
	width: 60px;
	border-top: 1px solid #d43025;
}
.carousel-caption h2 {
	font-size: 60px;
  font-weight: 900;
  line-height: 55px;
  font-family: 'Montserrat', sans-serif;
}
.carousel-caption h3 {
  font-size: 35px;
  line-height: 35px;
  font-family: 'Montserrat', sans-serif;
}
 @media (min-width: 320px) and (max-width: 575px) {
.carousel-caption {
  bottom: 10px !important;
  padding-bottom: 0px !important;
  left: 10% !important;
}
.carousel-item{
  height: 90vh;
}
.card .carousel-caption {
	left: 0;
	top: 0;
	margin-bottom: 15px;
}
.card .carousel-caption img {
	margin: 0 auto;
}
.carousel-control-prev {
	left: 35%;
	top: 105%;
}
.carousel-control-next {
	right: 35%;
	top: 105%;
}
.card .carousel-caption h3 {
	margin-top: 0;
	font-size: 16px;
	font-weight: 700;
}
}
@media (min-width: 576px) and (max-width: 767px) {
.carousel-caption {
	position: relative;
}
.card .carousel-caption {
	left: 0;
	top: 0;
	margin-bottom: 15px;
}
.card .carousel-caption img {
	margin: 0 auto;
}
.card .carousel-caption h3, .card .carousel-caption small {
	text-align: center;
}
.carousel-control-prev {
	left: 35%;
	top: 105%;
}
.carousel-control-next {
	right: 35%;
	top: 105%;
}
}
@media (min-width: 767px) and (max-width: 991px) {
.card .carousel-caption h3 {
	margin-top: 0;
	font-size: 16px;
	font-weight: 700;
}
}
.test-1{
  padding-left: 35px;
  display: flex;
  align-items: center;
}
.pt-5-pb-3{
  padding: 80px  0 60px;
}

.footer {
  background: #f5821f;
  padding-top: 0px;
  padding-bottom: 0px;
}
/*END FOOTER SOCIAL DESIGN*/
.single_footer{}
@media only screen and (max-width:768px) { 
.single_footer{
  margin-bottom:30px;
  text-align: left !important;
}
}
.single_footer h4 {
  color: #13273f;
  margin-top: 0;
  margin-bottom: 10px;
  font-weight: 600;
  /* text-transform: uppercase; */
  font-size: 18px;
}
/* .single_footer h4::after {
  content: "";
  display: block;
  height: 2px;
  width: 40px;
  background: #fff;
  margin-top: 20px;
} */
.single_footer p{color:#fff;}
.single_footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.single_footer ul li{}
.single_footer ul li a {
  color: #fff;
  padding:  0;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  line-height: 22px;
  font-size: 18px;
  text-align: left;
  text-transform: capitalize;
}
.single_footer ul li a:hover { color: #fff; }

.single_footer_address{}
.single_footer_address ul{}
.single_footer_address ul li{color:#fff;}
.single_footer_address ul li span {
  font-weight: 400;
  color: #fff;
  line-height: 22px;
}
.contact_social ul {
  list-style: outside none none;
  margin: 0;
  padding: 0;
}

/*START NEWSLETTER CSS*/
.subscribe {
  display: block;
  position: relative;
  margin-top: 15px;
  width: 100%;
}
.subscribe__input {
background-color: #fff;
border: medium none;
border-radius: 5px;
color: #333;
display: block;
font-size: 15px;
font-weight: 500;
height: 60px;
letter-spacing: 0.4px;
margin: 0;
padding: 0 150px 0 20px;
text-align: center;
text-transform: capitalize;
width: 100%;
}
@media only screen and (max-width:768px) { 
.subscribe__input{padding: 0 50px 0 20px;}
}

.subscribe__btn {
background-color: transparent;
border-radius: 0 25px 25px 0;
color: #01c7e9;
cursor: pointer;
display: block;
font-size: 20px;
height: 60px;
position: absolute;
right: 0;
top: 0;
width: 60px;
}
.subscribe__btn i{transition: all 0.3s ease 0s;}
@media only screen and (max-width:768px) { 
.subscribe__btn{right:0px;}
}

.subscribe__btn:hover i{
  color:#ff3666;
}
button {
  padding: 0;
  border: none;
  background-color: transparent;
  -webkit-border-radius: 0;
  border-radius: 0;
}
/*END NEWSLETTER CSS*/

/*START SOCIAL PROFILE CSS*/
.social_profile {
  /* margin-top:40px; */
}
.social_profile ul{
list-style: outside none none;
margin: 0;
padding: 0;
}
.social_profile ul li{float:left;}
.social_profile ul li a {
  text-align: center;
  border: 0px;
  padding:0;
  text-transform: uppercase;
  transition: all 0.3s ease 0s;
  margin: 0px;
  font-size: 18px;
  color: #fff;
  border-radius: 30px;
  width: 40px;
  height: 40px;
  line-height: 20px;
  display: block;
  /* background-color: #D75528; */
  
}
.items12{
  display: block;
}
.items13{
  display: none !important;
}
@media only screen and (max-width:768px) { 
.social_profile ul li a{margin-right:10px;margin-bottom:10px;}
}
@media only screen and (max-width:480px) { 
    .widwe1{
      margin-left:0%;
  }
  .items12{
    display: none !important;
  }
  .items13{
    display: block !important;
  }
  .copy h2 {
    font-family: 'Montserrat' ;
    font-style: normal;
    font-weight: 400;
    font-size: 38px;
    line-height: 48px;
    text-align: center;
    padding: 0 10px !important;
    color: #fff;
  }
  .grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 35px;
    max-width: 88%;
    margin: 37px auto 0;
    padding: 0px 0px;
}
  .map-card p{
    float: none !important;
  }
  .map-card {
    width: 100%;
    height: 439px;
    margin-left: 0%;
    margin-top: 20px;
    padding: 40px 30px;
    background-color: #13273f;
  }
  .mobi-roe{
    padding: 40px 40px 20px 30px;
  }
  .social_profile ul li a {
    width: auto;
    height: auto;
    line-height: 30px;
    padding: 0px 10px 0px 0px !important;
  }
  }

/*END SOCIAL PROFILE CSS*/
.copyright {
  margin-top: 40px;
  padding-top: 40px;
  color:#fff;
  font-size: 15px;
  border-top: 1px solid rgba(255,255,255,0.4);
  text-align: center;
}
.copyright a{color:#01c7e9;transition: all 0.2s ease 0s;}
.copyright a:hover{color:#ff3666;}
.single_footer ul li{
  float: none;
}
.eight-sec-sty{
  background: url(location.jpg);
  height: 600px;
  width: 100%;
  margin: 0;
}

.stay-card-sty h3{
  text-align: center;
  margin-top: -50px;
}
.stay-card img{
  border-radius: 50px;
}

.stay-card-sty span{
  background: #fff;
  border-radius: 50px;
  margin-bottom: 20px;
  width: 100px;
  text-align: center;
  color: #fff;
  padding: 0 10px;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.15);
}

.stay-card-sty i{
  color: #fff;
-webkit-transform: rotate(180deg);
-moz-transform: rotate(180deg);
-o-transform: rotate(180deg);
-ms-transform: rotate(180deg);
transform: rotate(180deg);
}
.stay-card-sty h3:hover span{
  background: #2F80ED;
  border-radius: 50px;
  margin-bottom: 20px;
  width: 100px;
  text-align: center;
  color: #2F80ED;
  padding: 0 10px;
}

.stay-card-sty h3:hover i{
  color: #2F80ED;
-webkit-transform: rotate(180deg);
-moz-transform: rotate(180deg);
-o-transform: rotate(180deg);
-ms-transform: rotate(180deg);
transform: rotate(180deg);
}
.items {
  width: 90%;
  margin: 0px auto;
  margin-top: 100px
}

.slick-slide {
  margin: 10px
}

.slick-slide img {
  width: 100%;
  border: 0px solid #fff
}

.slick-prev:before {
  content: '' !important;
}
.slick-prev {
  background-image: url(arrowsleft.png) !important;
  width: 72px !important;
  height: 72px !important;
  margin-left: 120px;
  z-index: 10 !important;
}

.slick-next:before {
  content: '' !important;
}
.slick-next {
  background-image: url(arrowsright.png) !important;
  width: 72px !important;
  height: 72px !important;
  margin-right: 120px;
}
.items12 .slick-list {
  position: relative;
  display: block;
  overflow: visible !important;
  margin: 0;
  padding: 0;
}
.fifth1-sec{
  padding: 80px 0 30px;
}
.fifth11-sec{
  padding: 20px 0 30px;
}
.post-Informatique{
  margin-bottom: 50px;
}
.post-Informatique img{
  border-radius: 30px;
  width: 100%;
}
.postinfo{
  margin-top: -50px;
  margin-left: 20px;
  margin-bottom: 50px;
}
.postinfo h4 a{
  color: #fff;
}
.do-p-sty{
  margin: 50px 20% 60px;
  text-align: center;
}

.post-info-1 h4{
  font-family: 'Montserrat' ;
}

.post-info-1 p{
  
}

.contact-forn-sty{
  padding: 50px 80px;
background: #FFFFFF;
/* Box Shadow */

box-shadow: 0px 4px 30px rgba(0, 0, 0, 0.15);
}

.contact-frm-sty input, textarea{
  
position: static;
width: 100%;
padding: 10px 20px;

/* Primary/ White */

background: #FFFFFF;
/* P02 */

border: 1px solid #D75528;
box-sizing: border-box;
border-radius: 25px;

/* Inside auto layout */

flex: none;
order: 0;
flex-grow: 0;
margin: 0px !important;
}

li {
  font-size: 1.2rem;
  line-height: 1.5;
}


header{
	position: fixed;
	width: 100%;
	top: 0;
	right: 0;
	z-index: 1000;
	display: flex;
	align-items: center;
	justify-content: space-between;
	background: #FFFFFF;
	padding: 10px 5%;
	transition: all .50s ease;
}
.logo{
	display: flex;
	align-items: center;
}
.logo i{
	color: var(--main-color);
	font-size: 28px;
	margin-right: 3px;
}
.logo span{
	color: var(--text-color);
	font-size: 1.7rem;
	font-weight: 600;
}
.navbar{
	display: flex;
}
.navbar a{
  font-size: 18px;
	color: var(--text-color);
	font-size: 1.1rem;
	font-weight: 500;
	padding: 5px 0;
	margin: 0px 15px;
	transition: all .50s ease;
}
.navbar a:hover{
	color: var(--main-color);
}
.navbar .menuactive{
	color: var(--main-color);
  border-bottom: 4px solid #f5821f;
}
.main{
	display: flex;
	align-items: center;
  padding-left: 60px;
}
.main a{
  margin: auto 5px ;
	color: var(--text-color);
	font-size: 1.1rem;
	font-weight: 500;
	transition: all .50s ease;
}
.user{
	display: flex;
	align-items: center;
}
.user i{
	color: var(--main-color);
	font-size: 28px;
	margin-right: 7px;
}
.main a:hover{
	color: var(--main-color);
}
#menu-icon{
	font-size: 35px;
	color: var(--text-color);
	cursor: pointer;
	z-index: 10001;
	display: none;
}


@media (max-width: 1280px){
	header{
		padding: 14px 2%;
		transition: .2s;
	}
	.navbar a{
		padding: 5px 0;
		margin: 0px 20px;
	}
}

@media (max-width: 1090px){
	#menu-icon{
		display: block;
    margin-right: 20px;
	}
  .main{
    padding-left: 0px;
  }
  .logo{
    margin-left: 10px;
  }
	.navbar{
		position: absolute;
		top: 100%;
		right: -100%;
		width: 100%;
    height: auto;
    background: #e0e0e0;
		display: flex;
		flex-direction: column;
		justify-content: flex-start;
		/* border-radius: 10px; */
		transition: all .50s ease;
	}
	.navbar a{
		display: block;
		margin: 12px 0;
		padding: 0px 5px;
		transition: all .50s ease;
	}
	.navbar a:hover{
		color: var(--text-color);
		transform: translateY(5px);
	}
	.navbar a.menuactive{
		color: var(--text-color);
	}
	.navbar.open{
		right: 0%;
	}
}


.carousel-indicators li {
  display:inline-block;
  border-radius:50%;
  background:#ffffff;
  /* padding:8px; */
  margin:10px 5px;
}
.carousel-indicators li {
  width: 10px;
  height: 0px !important;
  opacity: 1 !important;
  border-bottom: 1px solid transparent !important;
}
.carousel-indicators .active{
  background: #f5821f;
}
.carousel-caption {
  
  bottom: 140px;
  text-align: left;
}
.align-center{
  text-align: center;
}
.heading{
  font-size: 35px;
  font-weight: 800;
  color: #f5821f;
  margin-bottom: 50px;
}
.heading1{
  font-size: 35px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 50px;
}
.heading2{
  font-size: 35px;
  font-weight: 800;
  color: #13273f;
  margin: 50px auto 30px;
}
.heading3{
  font-size: 60px;
  font-weight: 900;
  color: #13273f;
  /* margin: 50px auto 0px; */
}
.heading4{
  font-size: 60px;
  font-weight: 900;
  color: #ffffff;
}
.heading5{
  font-size: 60px;
  font-weight: 900;
  color: #f5821f;
}
.heading6{
  font-size: 35px;
  font-weight: 800;
  color: #000;
  margin-left: 40px;
}
.heading7{
  font-size: 35px;
  font-weight: 800;
  color: #ffffff;
  margin-top: 30px;
}
.heading8{
  font-size: 35px;
  font-weight: 800;
  color: #f5821f;
  margin-bottom: 20px;
}
.heading9{
  font-size: 35px;
  font-weight: 800;
  color: #f5821f;
  margin: 0px auto 40px;
}
.text{
  font-size: 20px;
  color: #000;
  line-height: 28px;
  margin-right: 40px;
}
.iconp{
  color: #ffffff;
  font-size: 40px;
  background: #f5821f;
  border-radius: 50%;
  padding: 50px;
}
.hrclass{
  border: 1px solid #f5821f;
  width: 88%;
}
.mar-top{
  margin-top: 7rem;
}
.bl-color{
  background: #13273f;
  padding: 100px 40px 120px;
}
.bl-color1{
  background: #13273f;
  padding-top: 50px;
}
.blu-color{
  background: #13273f;
}

.grid1 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 25px;
  max-width: 84%;
  margin: 50px auto 0;
  padding: 0 10px;
}
.card1 {
  text-align: center;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
.card2 {
  text-align: center;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  background: #13273f;
}
.card__contenido{
  text-align: center;
  padding:10px;
}
.card__title1 {
  font-family: 'Montserrat';
  text-transform: uppercase;
  color: var(--dark);
  line-height: 22px;
  font-weight: 600;
  font-size: 18px;
}
.card__title2 {
  font-family: 'Montserrat';
  text-transform: uppercase;
  line-height: 26px;
  font-weight: 600;
  font-size: 20px;
}
.card__text1 {
  font-family: 'Montserrat';
  color: var(--grey);
  font-size: 15px;
  line-height: 17px;
  margin: auto 20px 30px;
}
.card__text10 {
  font-size: 15px;
    text-transform: capitalize;
    font-weight: 400;
    height: 110px;
    margin-top:20px;
}
.card__text2 {
  font-family: 'Montserrat';
  font-size: 18px;
  color: #fff;
  line-height: 20px;
  margin: auto 10px 20px;
}
.m-top{
  margin-top: -170px;
}


#customers-testimonials .item {
  background-image: url("../img/blue-banner.jpg")  !important;
  background-size: cover;
  text-align: center;
  padding: 100px 200px;
  margin: 20px;
  /* margin-bottom: 50px; */
  opacity: 1;
  /* -webkit-transform: scale3d(0.8, 0.8, 1);
  transform: scale3d(0.8, 0.8, 1); */
  -webkit-transform: scale3d(1.0, 1.0, 1);
  transform: scale3d(1.0, 1.0, 1);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
#customers-testimonials .owl-item.active.center .item {
  opacity: 1;
  -webkit-transform: scale3d(1.0, 1.0, 1);
  transform: scale3d(1.0, 1.0, 1);
}
.owl-carousel .owl-item img {
  transform-style: preserve-3d;
  /* max-width: 90px; */
  /* margin: 0 auto 17px; */
}
#customers-testimonials.owl-carousel .owl-dots .owl-dot.active span, #customers-testimonials.owl-carousel .owl-dots .owl-dot:hover span {
  background: #f5821f;
  transform: translate3d(0px, -50%, 0px) scale(0.6);
}
#customers-testimonials.owl-carousel .owl-dots {
  display: block;
  width: 100%;
  text-align: center;
  margin-top: -50px;
}
#customers-testimonials.owl-carousel .owl-dots .owl-dot {
  display: inline-block;
  outline: none;
}
#customers-testimonials.owl-carousel .owl-dots .owl-dot span {
  background: rgb(233, 231, 231);
  display: inline-block;
  height: 20px;
  margin: 0 2px 5px;
  transform: translate3d(0px, -50%, 0px) scale(0.3);
  transform-origin: 50% 50% 0;
  transition: all 250ms ease-out 0s;
  width: 20px;
  border-radius: 100%;
}

.car-flex{
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
}

.car-flex1 {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    margin: 30px auto;
}
.car-num{
  float: left;
  background: #f5821f;
  border-radius: 20px;
  padding: 10px 30px;
}
.car-num1{
  float: left;
  background: #13273f;
  border-radius: 20px;
  padding: 10px 30px;
  color: #fff;
}
.car-text{
  color: #fff;
  font-size: 20px;
  font-weight: 600;
}
.car-text1{
  color: #fff;
  font-size: 20px;
}
.car-text2 {
  color: #6e6e6e;
  font-size: 20px;
  font-weight: 600;
}
.car-text3{
  color: #6e6e6e;
  font-size: 20px;
}
.quote-sec{
  margin: 0 auto;
  /* display: flex; */
}
.img-wid{
  /* width: 120px; */
}
.img-wid1{
  margin-top: 30px;
}
.mar{
  margin: 40px;
}
.ico-row{
  display: flex;
  padding: 100px 0;
  justify-content: space-evenly;
}
.ico-row1{
  display: flex;
  padding: 0px 0px 20px;
  justify-content: space-evenly;
}
.ico-container{
  background-color: #f5821f;    
  width: 80%;
  border-radius: 30px;
}
.color-or{
  background-color: #f5821f;    
}
.color-or1{
  background-color: #f5821f;   
  padding: 50px 0px 80px; 
  display: block;
}
.select-loc{
  width: 200px;
  border-radius: 30px;
  padding: 10px;
  margin-bottom: 20px;
}
.flo-lef{
  /* float: left; */
}
.form-group input {
  width: 80%;
  color: #13273f;
  background-color: #fff3f3;
  border: none;
  font-size: 20px;
  font-weight: 900;
}
.sub-btn{
    color: #13273f;
    background: #f5821f;
    padding: 8px 40px;
    font-size: 22px;
    border: none;
    border-radius: 25px;
}
.form-control {
  color: #13273f !important;
  background-color: white !important;
  border: none;
  border-radius: 30px;
}
.foot-link{
  color: #13273f !important;
  margin-top: 0;
  margin-bottom: 10px;
  font-weight: 600;
  /* text-transform: uppercase; */
  font-size: 18px !important;
}
.feed-h{
  position: absolute;
  left: 15%;
  z-index: 10;
  font-size: 35px;
  font-weight: 800;
  padding-top: 60px;
  color: #fff;
}
.quote-p{
  text-align: center;
  font-size: 18px;
  font-family: Georgia;
}
blockquote {
  border:none;
  font-family:Georgia;
  margin-bottom:-60px;
  quotes: "\201C""\201D""\2018""\2019";
}

blockquote h3 {
    padding: 0 10px;
  font-size: 18px;
  font-style: italic;
  font-weight: 600;
  color: #13273f;
}

blockquote h3:before { 
content: open-quote;
font-weight: bold;
margin-left: -270px;
font-size:100px;
line-height: 0;
color:#f5821f;
} 
blockquote h3:after { 
content: close-quote;
font-weight: bold;
margin-right: -270px;
font-size:100px;
color:#f5821f;

}
.quote-pr{
  text-align: center;
  font-size: 14px;
  font-family: 'Montserrat';
  padding: 0 10px;
}
.icop{
  background: #f5821f;
  padding: 80px 50px;
  border-radius: 50%;
}
.icop1{
  background: #000000;
  padding: 80px 50px;
  border-radius: 50%;
}
.ins-pad{
  padding: 100px 20px 0px 70px;
}
.cen-pad{
  padding: 80px 200px;
}
.bor-rig{
  border-right: 2px dotted #13273f;
}
.bor-rig1{
  border-right: 2px dotted #ffffff;
}
.bor-rig2{
  border-right: 2px dotted #c1c1c1;
}
.cel-bacim{
  background-image: url("../image/Asset\ 57.png");
}
.cel-card{
  background: #f5821f;
  padding: 10px;
  margin: 10px -5px;
  border-radius: 10px;
}
.cel-p{
  color: #fff;
  font-size: 18px;
}
.cel-card a:hover{
  color: #fff;
}
.card-cele{
  padding: 30px;
  margin-bottom: 50px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
.card-cele img{
  margin-bottom: 30px;
  width: -webkit-fill-available;
}
.card-cele:hover{
  background: #13273f;
  color:#fff
}
.card-cele .card__title1:hover{
  color:#fff
}
.card-cele p:hover{
  color:#fff
}
.card-celeq{
  padding-top: 10px;
  padding-left:30px;
  
}
.card-celeq img{
  margin-bottom: 30px;
  width: -webkit-fill-available;
}

table {
  font-family: 'Montserrat';
  border-collapse: collapse;
  width: 100%;
  border-bottom: 2px solid #898585;
}

td, th {
  /* border: 1px solid #dddddd; */
  text-align: left;
  padding: 8px;
}

tr:nth-child(even) {
  background-color: #dddddd;
}
.sey-bacim{
  background-image: url("../image/Asset\ 45.png");
  background-position: center;
  background-size: cover;
}
.se-pad{
  padding: 100px 80px;
}
.bord{
  /*border-bottom: 2px dotted #fff;*/
  border-right: 2px dotted #fff;
}
.bord2{
  border-bottom: 2px dotted #fff;
}
.bord3{
  border-right: 2px dotted #fff;
}

.bord11{
  border-bottom: 2px dotted #13273f;
  border-right: 2px dotted #13273f;
}
.bord12{
  border-bottom: 2px dotted #13273f;
}
.bord13{
  border-right: 2px dotted #13273f;
}
.social-test img{
  width: 40px !important;
  margin:10px;
}
.social-test{
display: flex;
justify-content: center;
}
.card-cele1{
  padding: 30px;
  margin-bottom: 50px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  background:#f5821f;
}
.card__title3 {
  font-family: 'Montserrat';
  text-transform: uppercase;
  line-height: 26px;
  font-weight: 600;
  margin-top: 20px;
  font-size: 20px;
  color: #fff;
}
.test-text{
  color: #fff;
  font-size: 18px;
  margin: auto;
}
#card1,
#card2,
#card3 {
  display: none;
}