/* ===== Base ===== */
:root{
  --blue:#75b6ce;
  --blue-dark:#54899c;
  --green:#89c436;
  --green-dark:#5d8525;
  --text:#74787a;
  --text-dark:#666;
  --bg-light:#f8faf5;
  --white:#fff;
  --shadow:0 2px 12px rgba(0,0,0,.08);
}

*,
*::before,
*::after{
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  margin:0;
  font-family:'Open Sans',sans-serif;
  color:var(--text-dark);
  background:#fff;
  text-rendering:optimizeLegibility;
}

img{
  display:block;
  max-width:100%;
  height:auto;
}

iframe{
  border:0;
}

a{
  color:#0e4da3;
  text-decoration:none;
  transition:color .2s ease, background-color .2s ease, opacity .2s ease;
}

a:hover,
a:focus{
  color:var(--green);
  text-decoration:none;
}

a:focus{
  outline:none;
}

p{
  color:var(--text);
  margin:0 0 24px;
  line-height:1.7;
}

h1,h2,h3,h4,h5,h6{
  margin:0 0 20px;
  font-family:'Open Sans',sans-serif;
  color:var(--text);
}

section{
  padding:65px 0;
  text-align:center;
}

section h2.heading{
  margin-top:0;
  margin-bottom:25px;
  font-size:60px;
  line-height:1;
  font-weight:300;
  text-transform:uppercase;
  color:var(--blue);
}

section h3{
  margin-top:0;
  margin-bottom:20px;
  font-size:32px;
  font-weight:400;
  color:var(--text);
}

section p.helping-text{
  width:min(100%,560px);
  margin:0 auto 50px;
  font-size:18px;
  font-style:italic;
  font-weight:300;
  line-height:1.5;
  color:var(--text);
}

.right-padding-none{padding-right:0;}
.left-padding-none{padding-left:0;}
.nopadding{padding:0;}

/* ===== Accessibility ===== */
.sr-only{
  position:absolute;
  width:1px;
  height:1px;
  padding:0;
  margin:-1px;
  overflow:hidden;
  clip:rect(0,0,0,0);
  border:0;
}

.sr-only-focusable:active,
.sr-only-focusable:focus{
  position:static;
  width:auto;
  height:auto;
  margin:0;
  overflow:visible;
  clip:auto;
}

/* ===== Separator ===== */
.separator_wrapper{
  display:block;
  margin:0 0 25px;
}

.separator_wrapper::before,
.separator_wrapper::after{
  content:"";
  display:inline-block;
  width:210px;
  height:1px;
  vertical-align:middle;
  border-bottom:3px dashed var(--blue);
}

.separator_first_circle{
  display:inline-block;
  width:60px;
  height:38px;
  vertical-align:middle;
}

/* ===== Buttons ===== */
.main-btn,
.price-btn,
.hero-play-btn{
  transition:all .25s ease;
}

.main-btn{
  display:inline-block;
  width:300px;
  max-width:100%;
  height:60px;
  line-height:60px;
  border:none;
  border-radius:4px;
  background:var(--green);
  color:#f8f8f6;
  font-size:24px;
  font-family:'Courgette',cursive;
  box-shadow:none;
  text-align:center;
  cursor:pointer;
}

.main-btn i{
  margin-right:20px;
}

.main-btn:hover,
.main-btn:focus{
  color:#fff;
  background:var(--blue);
}

.hvr-sweep-to-right:before{
  background:var(--blue);
  border-radius:4px;
}

/* ===== Preloader ===== */
.ie #preloader{display:none;}

#preloader{
  position:fixed;
  inset:0;
  z-index:99;
  background:#fff;
}

#status{
  position:absolute;
  left:50%;
  top:50%;
  width:200px;
  height:200px;
  margin:-100px 0 0 -100px;
  background:url(../images/loading.gif) no-repeat center;
}

/* ===== Forms ===== */
.form-control{
  height:49px;
  border:1px solid #b3b3b3;
  border-radius:4px;
  box-shadow:none;
  color:#444;
}

.form-control:focus{
  border-color:#5f5f5f;
  background:#fff;
  box-shadow:none;
  outline:none;
}

.form-control-feedback{
  line-height:50px;
}

.contact-form .form-control{
  background:transparent;
  box-shadow:0 1px 1px rgba(0,0,0,.3);
}

.contact-form textarea.form-control{
  min-height:207px;
  resize:vertical;
}

.contact-form .form-group{
  margin-bottom:30px;
}

.contact-form .form-control::placeholder{
  color:#666;
}

.help-block,
.form-group .error{
  text-align:left;
}

.form-group .error{
  display:block;
  margin-top:5px;
  color:#f50;
}

.has-error .form-control:focus,
.has-success .form-control:focus{
  box-shadow:none;
}

/* ===== Back to top ===== */
.back-to-top{
  position:fixed;
  right:10px;
  bottom:15px;
  z-index:20;
  display:none;
  padding:.25em .5em;
  font-size:18px;
  color:#fff;
  background:var(--blue);
}

.back-to-top:hover{
  color:#fff;
  background:var(--green);
}

/* ===== Navbar ===== */
.main-menu{
  min-height:120px;
  margin:0;
  border:none;
  background:#fff;
  box-shadow:0 0 4px rgba(0,0,0,.15);
}

.navbar.navbar-default{
  margin:0;
  border:none;
}

.navbar-brand{
  height:auto;
  padding:27px 0 27px 15px;
}

.navbar-brand img{
  width:auto;
  height:auto;
}

.main-menu .navbar-nav > li{
  background:url(../images/nav-dot.png) no-repeat left center;
}

.main-menu .navbar-nav > li:first-child{
  background:none;
}

.navbar-default .navbar-nav > li > a{
  padding:50px 25px;
  font-size:16px;
  font-weight:300;
  color:var(--blue-dark);
  background:transparent !important;
}

.navbar-default .navbar-nav > li > a:hover,
.navbar-default .navbar-nav > li > a:focus,
.navbar-default .navbar-nav > li > a.active{
  color:var(--green);
  background:none;
}

.navbar-default .navbar-nav .hvr-underline-from-left:before{
  background:var(--blue-dark);
}

.navbar-default .navbar-nav > .active > a,
.navbar-default .navbar-nav > .active > a:hover,
.navbar-default .navbar-nav > .active > a:focus{
  background:none;
}

.dropdown-menu{
  border-top:none;
  border-color:#e7e7e7;
  box-shadow:0 0 4px rgba(0,0,0,.15);
}

.dropdown-menu > li > a{
  padding:15px 20px;
  font-size:16px;
  font-weight:300;
  color:var(--blue-dark);
}

.dropdown-menu > li > a:hover{
  color:var(--green);
  background:none;
}

/* ===== Hero / Slider ===== */

#slider{
  float:left;
  width:100%;
  padding:120px 0 0;
}

.slider-grid .item{
  position:relative;
  padding:0;
  line-height:0;
}

.hero-media{
  position:relative;
  overflow:hidden;
  background:transparent;
  line-height:0;
}

#slider{
  float:left;
  width:100%;
  padding:120px 0 0;
  background:#fff;
}

.slider-grid .item{
  position:relative;
  padding:0;
  line-height:0;
}

.hero-poster{
  position:relative;
  width:100%;
}

.hero-poster img,
.hero-media video{
  display:block;
  width:100%;
  height:auto;
  object-fit:cover;
}

.hero-overlay{
  position:absolute;
  inset:0;
  z-index:1;
  background:linear-gradient(to bottom, rgba(0,0,0,.30), rgba(0,0,0,.55));
  pointer-events:none;
}

/* ===== HERO TEXT ===== */

.slider-grid .item .text{
  position:absolute;
  top:120px;
  right:8%;
  width:500px;
  z-index:2;
  text-align:center;
}

.slider-grid .item .text.right{
  right:8%;
}

.slider-grid .item .text.left{
  left:6%;
}

.slider-grid .item .text h1,
.slider-grid .item .text h2{
  margin:0 0 24px;
  font-size:90px;
  font-weight:300;
  color:var(--blue);
}

.slider-grid .item .text h1 strong,
.slider-grid .item .text h2 strong{
  display:block;
  font-family:'Courgette',cursive;
  font-size:62px;
  font-weight:400;
  color:var(--green);
}

.slider-grid .item .text h1 span,
.slider-grid .item .text h2 span{
  display:block;
  font-size:62px;
  font-weight:300;
  color:var(--blue);
}

/* ===== PLAY BUTTON ===== */

.hero-play-btn{
  position:absolute;
  left:25px;
  bottom:25px;
  top:auto;
  transform:none;

  background:none;
  border:none;

  font-size:44px;
  color:#000;

  width:auto;
  height:auto;
  padding:0;

  cursor:pointer;
  z-index:5;
}

.hero-play-btn:hover{
  opacity:.7;
}

/* ===== About ===== */
#about{
  float:left;
  width:100%;
  padding:65px 0 0;
  background:var(--bg-light);
}

.circle-img{
  width:400px;
  height:400px;
  padding:8px;
  border-radius:50%;
  background:rgba(255,255,255,.6);
}

.circle-img:hover{
  opacity:.7;
}

.circle-img img{
  border-radius:50%;
}

.circle-img.green img{
  border:8px solid #88c336;
}

.circle-img.blue{
  position:relative;
  top:-90px;
  z-index:9;
  float:right;
}

.circle-img.blue img{
  border:8px solid var(--blue);
}

.stats{
  float:left;
  width:100%;
  min-height:480px;
  padding:150px 0;
  border-top:10px solid #f0f2ed;
  border-bottom:10px solid #f0f2ed;
  background:url(../images/status-bg.jpg) center/cover no-repeat;
}

#numbers{
  margin-bottom:0;
}

#numbers li{
  padding:0 27px;
}

#numbers li span{
  font-size:56px;
  font-weight:700;
  color:#497180;
}

#numbers li h4{
  margin:0;
  font-size:60px;
  line-height:70px;
  font-weight:400;
  font-family:'Courgette',cursive;
  color:#fff;
}

#numbers li h5{
  margin:0;
  font-size:36px;
  font-weight:300;
  color:#fff;
}

/* ===== Team ===== */
#team{
  float:left;
  width:100%;
  background:#fff;
}

.members-grid{
  margin-top:50px;
}

.members-grid .thumbnail{
  margin-bottom:0;
  padding:0;
  border:none;
  border-radius:0;
}

.members-grid .thumbnail .img-wrap{
  position:relative;
  overflow:hidden;
  width:220px;
  height:220px;
  margin:0 auto 30px;
  border-radius:50%;
  background:none;
}

.members-grid .thumbnail img{
  width:100%;
  height:100%;
  object-fit:cover;
  border-radius:50%;
}
}

.members-grid .thumbnail .img-wrap a{
  display:block;
  width:100%;
  height:100%;
  position:static;
  border-radius:50%;
}
}

.members-grid .thumbnail img{
  margin:0;
  padding:0;
  border-radius:50%;
}

.members-grid .thumbnail .img-wrap:hover img{
  opacity:.8;
}

.members-grid .caption{
  margin-top:0;
  padding:0;
  background:none;
}

.members-grid .caption h3{
  margin-bottom:10px;
  font-size:36px;
  line-height:1;
  font-weight:300;
  color:var(--text);
}

.members-grid .caption h4{
  margin-bottom:15px;
  font-size:18px;
  font-weight:400;
  color:var(--green);
}

.members-grid .caption p{
  margin-bottom:25px;
  font-size:15px;
  line-height:24px;
  color:var(--text);
}

.members-grid .social li a{
  display:block;
  font-size:28px;
  color:var(--blue);
}

.members-grid .social li a:hover{
  color:var(--green);
}

.hvr-reveal:before{
  z-index:2;
  border-color:var(--green);
  border-radius:50%;
}

.hvr-reveal:hover:before,
.hvr-reveal:focus:before,
.hvr-reveal:active:before{
  border-width:8px;
  border-radius:50%;
}

/* ===== Pricing ===== */
#plans{
  float:left;
  width:100%;
  background:url(../images/pricing-bg.jpg) center/cover no-repeat;
}

.flat .plan{
  position:relative;
  margin:0 0 15px;
  padding:0;
  list-style:none;
  text-align:center;
  border-radius:0;
  background:url(../images/price-n-ng.png) no-repeat 0 80px;
}

.flat .plan:hover{
  box-shadow:0 0 20px rgba(0,0,0,.3);
  background-image:url(../images/price-s-bg.png);
}

.flat .plan .flower{
  position:absolute;
  top:-16px;
  left:0;
  right:0;
  z-index:-1;
  width:35px;
  height:38px;
  margin:auto;
  background:url(../images/green-flower.png) top center no-repeat;
}

.flat .plan:hover .flower{
  background-image:url(../images/blue-flower.png);
}

.flat .plan .plan-name{
  min-height:80px;
  margin:0;
  padding:15px;
  font-size:28px;
  line-height:50px;
  font-style:italic;
  font-weight:800;
  color:#fff;
  background:var(--green);
}

.flat .plan:hover .plan-name{
  background:#67a0b5;
}

.flat .plan ul{
  margin-bottom:0;
  padding:0 25px;
}

.flat .plan li{
  padding:25px 0;
  border-bottom:1px dashed #659cb0;
}

.flat .plan li p,
.flat .plan li strong{
  margin:0;
  font-size:20px;
  line-height:26px;
  color:#fff;
}

.flat .plan li strong{
  font-weight:800;
}

.flat .plan .price-wrap{
  display:block;
  width:170px;
  height:170px;
  margin:30px auto 24px;
  padding:10px;
  border-radius:50%;
  background:rgba(103,160,181,.35);
}

.flat .plan:hover .price-wrap{
  background:rgba(128,184,50,.5);
}

.flat .plan .price-wrap .price-box{
  display:block;
  width:150px;
  height:150px;
  padding:32px 0;
  border-radius:50%;
  text-align:center;
  background:#67a0b5;
}

.flat .plan:hover .price-wrap .price-box{
  background:var(--green);
}

.flat .plan .price-wrap .price-box p{
  margin:0;
  font-size:20px;
  line-height:26px;
  font-style:italic;
  font-weight:400;
  color:#476f7d;
}

.flat .plan:hover .price-wrap .price-box p{
  color:#547822;
}

.flat .plan .price-wrap .price-box strong{
  margin:0;
  font-size:56px;
  line-height:56px;
  font-weight:400;
  font-family:'Courgette',cursive;
  color:#fff;
}

.flat .plan .price-btn{
  width:100%;
  height:80px;
  line-height:80px;
  border:none;
  border-radius:0;
  background:var(--green);
  color:#f8f8f6;
  font-size:30px;
  font-family:'Courgette',cursive;
  box-shadow:none;
}

.flat .plan .price-btn i{
  margin-right:20px;
}

.flat .plan .price-btn:hover,
.flat .plan .price-btn:focus{
  color:#fff;
  background:var(--blue);
}

/* ===== Portfolio ===== */
#portfolio{
  float:left;
  width:100%;
}

.portfolio-items,
.portfolio-filter{
  margin:0;
  padding:0;
  list-style:none;
}

.portfolio-filter{
  margin-bottom:50px;
  text-align:center;
}

.portfolio-filter > li{
  display:inline-block;
}

.portfolio-filter > li > a.btn{
  padding:6px 15px;
  border:none;
  background:var(--blue);
  color:#fff;
  font-size:20px;
  font-weight:400;
  font-family:'Courgette',cursive;
}

.portfolio-filter > li > a.btn:hover,
.portfolio-filter > li > a.btn.active{
  background:var(--green);
  box-shadow:none;
}

.portfolio-items > li{
  float:left;
  margin:0;
  padding:0;
}

.portfolio-items.col-4 > li{
  width:24.9%;
}

.portfolio-item .item-main{
  margin:0;
  padding:0;
  border:none;
  text-align:center;
  background:#fff;
}

.portfolio-item img{
  width:100%;
}

.portfolio-item .portfolio-image{
  position:relative;
}

.portfolio-item .overlay{
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  opacity:0;
  text-align:center;
  background:rgba(255,255,255,.9);
  transition:opacity .3s ease;
}

.portfolio-item:hover .overlay{
  opacity:1;
}

.portfolio-item .overlay .preview{
  position:relative;
  top:50%;
  display:inline-block;
  margin-top:-45px;
  font-size:50px;
  color:var(--green);
}

/* Isotope */
.isotope-item{z-index:2;}
.isotope-hidden.isotope-item{z-index:1;}

.isotope,
.isotope .isotope-item{
  transition-duration:.8s;
}

.isotope{
  transition-property:height,width;
}

.isotope .isotope-item{
  transition-property:transform,opacity;
}

.isotope.no-transition,
.isotope.no-transition .isotope-item,
.isotope .isotope-item.no-transition,
.isotope.infinite-scrolling{
  transition:none;
}

/* ===== Booking ===== */
#booking{
  float:left;
  width:100%;
  min-height:480px;
  padding:100px 0;
  border-top:10px solid #f7f7f7;
  border-bottom:10px solid #f7f7f7;
  background:url(../images/booking-bg.jpg) center/cover no-repeat;
}

#booking h2,
#booking h3{
  margin:0 0 25px;
  font-size:80px;
  line-height:70px;
  font-weight:400;
  font-family:'Courgette',cursive;
  color:#fff;
}

#booking p{
  margin:0 0 15px;
  font-size:48px;
  line-height:50px;
  font-weight:700;
  color:#fff;
}

#booking p span{
  font-size:42px;
  font-weight:300;
}

#booking p strong{
  font-size:48px;
  line-height:60px;
  font-weight:400;
  font-family:'Courgette',cursive;
  color:var(--green-dark);
}

#booking i.fa{
  font-size:48px;
  color:var(--green-dark);
}

/* ===== FAQ ===== */
#faq{
  float:left;
  width:100%;
  background:#fff;
}

#faq .row{
  text-align:left;
}

#faq h2.heading{
  text-align:center;
}

/* ===== Contact ===== */
#contact{
  float:left;
  width:100%;
  padding-bottom:0;
  background:url(../images/contact-bg.jpg) center/cover no-repeat;
}

.contact-form .main-btn{
  text-align:center;
}

.contact-form .main-btn i{
  margin-right:20px;
}

/* ===== Map ===== */
.map{
  float:left;
  width:100%;
  height:580px;
  padding:0;
}

.map iframe{
  width:100%;
  height:100%;
}

/* ===== Social / Footer ===== */
.social{
  margin-bottom:70px;
  margin-left:0;
}

.social li a img{
  width:40px;
  height:40px;
}

footer{
  float:left;
  width:100%;
  padding:70px 0 0;
  text-align:center;
  background:url(../images/footer-bg.jpg) center/cover no-repeat;
}

footer .foot-line{
  float:left;
  width:100%;
  padding:9px 0;
  background:#1f1f1f;
}

footer .foot-line p{
  margin:0;
  font-size:15px;
  line-height:36px;
  font-weight:300;
  color:#666;
}

footer .foot-line p strong,
footer .foot-line p a{
  font-weight:700;
  font-style:italic;
  color:#666;
}

/* ===== Responsive ===== */
@media (min-width:1200px){
  .container{
    width:1200px;
  }
}

@media (max-width:1024px){
  .navbar-default .navbar-nav > li > a{
    padding-left:15px;
    padding-right:15px;
  }

  .slider-grid .item .text.right{right:1%;}
  .slider-grid .item .text.left{left:1%;}
  .slider-grid .item .text{
    top:90px;
    width:450px;
  }

  .slider-grid .item .text h1,
  .slider-grid .item .text h2{
    font-size:45px;
  }

  .slider-grid .item .text h1 strong,
  .slider-grid .item .text h2 strong{
    font-size:35px;
  }

  .slider-grid .item .text h1 span,
  .slider-grid .item .text h2 span{
    font-size:35px;
  }

  .owl-theme .owl-controls{
    bottom:25px;
  }

  .flat .plan ul{
    padding:0 15px;
  }

  .flat .plan li p,
  .flat .plan li strong{
    font-size:16px;
  }

  .clients-grid .media .media-body{
    padding:28px 25px;
  }

  #numbers li{
    padding:0 16px;
  }

  #numbers li span{font-size:48px;}
  #numbers li h4{font-size:50px;}
  #numbers li h5{font-size:30px;}

  .portfolio-items.col-4 > li{
    width:24.97%;
  }

  .members-grid .thumbnail img{
    width:170px;
    margin:50px 0 0 20px;
  }

  .members-grid .thumbnail .img-wrap{
    background-size:contain;
  }
}

@media (max-width:768px){
  .main-menu{
    min-height:80px;
  }

  .navbar-brand{
    padding:15px;
  }

  .navbar-brand img{
    width:120px;
  }

  .navbar-default .navbar-nav > li > a{
    padding:31px 11px;
    font-size:12px;
  }

  .dropdown-menu > li > a{
    padding:12px 20px;
    font-size:14px;
    text-align:center;
  }

  #slider{
    padding-top:80px;
  }

  .slider-grid .item .text{
    top:20px;
    width:330px;
  }

  .slider-grid .item .text h1{
    margin-bottom:15px;
    font-size:35px;
  }

  .slider-grid .item .text h1 strong{
    font-size:20px;
  }

  .slider-grid .item .text h1 span{
    font-size:20px;
  }

  .slider-grid .item .text h2{
    margin-bottom:15px;
    font-size:55px;
  }

  .slider-grid .item .text h2 strong,
  .slider-grid .item .text h2 span{
    font-size:42px;
  }

  .main-btn{
    width:250px;
    height:50px;
    line-height:50px;
    font-size:18px;
  }

  .main-btn i{
    margin-right:15px;
  }

  section h2.heading{
    font-size:48px;
    line-height:48px;
  }

  .stats{
    min-height:340px;
    padding:100px 0;
  }

  #numbers li span{font-size:36px;}
  #numbers li h4{font-size:36px;}
  #numbers li h5{font-size:24px;}

  .flat .plan{
    margin-bottom:35px;
    background-repeat:repeat;
  }

  .flat .plan ul{
    padding:0 25px;
  }

  .flat .plan li p{font-size:20px;}
  .flat .plan li strong{font-size:16px;}

  .portfolio-items.col-4 > li{
    width:33.3%;
  }

  #booking h2,
  #booking h3{
    font-size:60px;
  }

  #booking p{
    font-size:36px;
  }

  #booking p span{
    font-size:36px;
  }

  #booking i.fa{
    font-size:36px;
  }

  .members-grid .thumbnail img{
    width:204px;
    margin:34px 0 0 22px;
  }


@media screen and (max-width:767px){
  .main-menu .navbar-nav > li{
    text-align:center;
    background:none;
  }

  .navbar-default .navbar-nav > li > a{
    padding:6px 15px;
  }
}

@media (max-width:640px){
  .right-padding-none,
  .left-padding-none{
    padding-left:15px;
    padding-right:15px;
  }
}

@media (max-width:480px){

  .slider-grid .item .text{
  position:absolute;
  top:110px;
  right:8%;
  width:520px;
  max-width:50%;
}
  .slider-grid .item .text h1{
    font-size:38px;
  }

  .slider-grid .item .text h1 strong{
    font-size:26px;
  }

  .slider-grid .item .text h1 span{
    font-size:18px;
  }

  .hero-play-btn{
    left:15px;
    bottom:15px;
    border-top:14px solid transparent;
    border-bottom:14px solid transparent;
    border-left:22px solid #000;
  }

}

@media (max-width:340px){
  .owl-theme .owl-controls{
    display:none;
  }

  .separator_wrapper::before,
  .separator_wrapper::after{
    width:100px;
  }

  .members-grid .thumbnail img{
    width:205px;
    margin:35px 0 0 20px;
  }

  .portfolio-items.col-4 > li{
    width:99.9%;
  }

  .portfolio-filter > li > a.btn{
    padding:6px 8px;
    font-size:14px;
  }
}