/**
* Template Name: Laura - v2.1.0
* Template URL: https://bootstrapmade.com/laura-free-creative-bootstrap-theme/
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: acumin-pro, sans-serif;
  font-weight: 300;
  font-style: normal;
  color: rgb(65, 64, 66);
}
a {
  color: #00AEEF;
}
a:hover {
  color: #00AEEF;
  text-decoration: none;
}
h1, h2, h3, h4, h5, h6 {
  font-family: neue-haas-unica, sans-serif;
  font-weight: 500;
  font-style: normal;
  color: #00AEEF;
}
.aa-blue {
  color: #00AEEF;
}
.aa-grey {
  color: #666;
}
.aa-bg-blue {
  background-color: rgb(0, 174, 239);
}
.aa-bg-grey {
  background-color: rgb(50, 50, 50);
}
/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  display: none;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
}
.back-to-top i {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  background: #00AEEF;
  color: #fff;
  transition: all 0.4s;
}
.back-to-top i:hover {
  color: #fff;
}
/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  z-index: 997;
  transition: all 0.5s;
  height: 80px;
  background: rgba(25, 28, 31, 0.8);
  padding: 1rem;
}
#header.header-transparent {
  background: transparent;
}
#header .navbar-brand {
  display: none;
  position: absolute;
  left: 25px;
}
#header .navbar-brand img {
  float: left;
  padding-right: 2em;
}
#header .home {
  display: none;
}
#header.header-scrolled {
  height: 90px;
  background: rgba(99, 100, 102, 1);
}
#header.header-scrolled .home {
  display: block;
  animation: fadeIn ease 3s;
  -webkit-animation: fadeIn ease 3s;
  -moz-animation: fadeIn ease 3s;
  -o-animation: fadeIn ease 3s;
  -ms-animation: fadeIn ease 3s;
}
#header.header-scrolled .navbar-brand {
  display: block;
  animation: fadeIn ease 10s;
  -webkit-animation: fadeIn ease 10s;
  -moz-animation: fadeIn ease 10s;
  -o-animation: fadeIn ease 10s;
  -ms-animation: fadeIn ease 10s;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-o-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-ms-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
.nav-menu, .nav-menu * {
  margin: 0;
  padding: 0;
  list-style: none;
}
.nav-menu > ul {
  display: flex;
}
.nav-menu > ul > li {
  position: relative;
  justify-content: center;
}
.nav-menu a {
  display: block;
  position: relative;
  color: #fff;
  padding: 10px 15px;
  transition: 0.3s;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
}
.nav-menu a:hover, .nav-menu .active > a,
.nav-menu li:hover > a {
  color: #00AEEF;
  text-decoration: none;
}
.nav-menu .drop-down ul {
  display: block;
  position: absolute;
  left: 0;
  top: calc(100% + 30px);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  padding: 10px 0;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: ease all 0.3s;
}
.nav-menu .drop-down:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}
.nav-menu .drop-down li {
  min-width: 180px;
  position: relative;
}
.nav-menu .drop-down ul a {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  text-transform: none;
  color: #3b434a;
}
.nav-menu .drop-down ul a:hover, .nav-menu .drop-down ul .active > a, .nav-menu .drop-down ul li:hover > a {
  color: #00AEEF;
}
.nav-menu .drop-down > a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 5px;
}
.nav-menu .drop-down .drop-down ul {
  top: 0;
  left: calc(100% - 30px);
}
.nav-menu .drop-down .drop-down:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
}
.nav-menu .drop-down .drop-down > a {
  padding-right: 35px;
}
.nav-menu .drop-down .drop-down > a:after {
  content: "\eaa0";
  font-family: IcoFont;
  position: absolute;
  right: 15px;
}
@media (max-width: 1366px) {
  .nav-menu .drop-down .drop-down ul {
    left: -90%;
  }
  .nav-menu .drop-down .drop-down:hover > ul {
    left: -100%;
  }
  .nav-menu .drop-down .drop-down > a:after {
    content: "\ea9d";
  }
}
/* Mobile Navigation */
.mobile-nav-toggle {
  position: fixed;
  right: 15px;
  top: 15px;
  z-index: 9998;
  border: 0;
  background: none;
  font-size: 24px;
  transition: all 0.4s;
  outline: none !important;
  line-height: 1;
  cursor: pointer;
  text-align: right;
}
.mobile-nav-toggle i {
  color: #fff;
}
.mobile-nav {
  position: fixed;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  z-index: 9999;
  overflow-y: auto;
  background: #fff;
  transition: ease-in-out 0.2s;
  opacity: 0;
  visibility: hidden;
  border-radius: 10px;
  padding: 10px 0;
}
.mobile-nav * {
  margin: 0;
  padding: 0;
  list-style: none;
}
.mobile-nav a {
  display: block;
  position: relative;
  color: #3b434a;
  padding: 10px 20px;
  font-weight: 500;
  outline: none;
}
.mobile-nav a:hover, .mobile-nav .active > a, .mobile-nav li:hover > a {
  color: #00AEEF;
  text-decoration: none;
}
.mobile-nav .drop-down > a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 10px;
  position: absolute;
  right: 15px;
}
.mobile-nav .active.drop-down > a:after {
  content: "\eaa1";
}
.mobile-nav .drop-down > a {
  padding-right: 35px;
}
.mobile-nav .drop-down ul {
  display: none;
  overflow: hidden;
}
.mobile-nav .drop-down li {
  padding-left: 20px;
}
.mobile-nav-overly {
  width: 100%;
  height: 100%;
  z-index: 9997;
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(36, 41, 46, 0.6);
  overflow: hidden;
  display: none;
  transition: ease-in-out 0.2s;
}
.mobile-nav-active {
  overflow: hidden;
}
.mobile-nav-active .mobile-nav {
  opacity: 1;
  visibility: visible;
}
.mobile-nav-active .mobile-nav-toggle i {
  color: #fff;
}
@media (max-width: 575px) {
  #header .navbar-brand img {
    width: 60%;
  }
  #header .navbar-brand p.telephone {
    font-size: 1.2em;
    clear: left;
  }
}
/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100vh;
  background-position: center center;
  background-size: cover;
  position: relative;
  background: linear-gradient(rgba(12, 12, 12, 0.24), rgba(0, 0, 0, 0.24));
}
#hero:before {
  content: "";
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}
#hero .hero-container {
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 200px 15px;
}
#hero h1 {
  margin: 0 0 10px 0;
  font-size: 64px;
  color: #fff;
}
#hero h2 {
  color: #eee;
  margin-bottom: 50px;
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 1px;
}
#hero .btn-scroll {
  transition: 0.4s;
  color: rgba(255, 255, 255, 0.6);
  animation: up-down 1s ease-in-out infinite alternate-reverse both;
}
#hero .btn-scroll i {
  font-size: 48px;
  background: rgba(0, 174, 239, 0.7);
}
#hero .btn-scroll:hover {
  color: #00AEEF;
}
#slider-area {
  height: 100vh;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background-position: 100%;
}
#slider-area .owl-item div {
  height: 100vh;
  width: 100%;
  background-repeat: no-repeat;
  background-position: 100%;
  background-size: cover;
}
@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
}
@media (max-width: 575px) {
  #hero h1 {
    font-size: 40px;
  }
  #hero h2 {
    text-align: center;
    margin-top: 30px;
    font-size: 20px;
  }
}
@-webkit-keyframes up-down {
  0% {
    transform: translateY(5px);
  }
  100% {
    transform: translateY(-5px);
  }
}
@keyframes up-down {
  0% {
    transform: translateY(5px);
  }
  100% {
    transform: translateY(-5px);
  }
}
/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
}
.section-bg {
  background-color: white;
}
.section-title {
  text-align: center;
  padding: 30px 0;
  position: relative;
}
.section-title h2 {
  font-size: 32px;
  letter-spacing: 2px;
  margin-bottom: 20px;
  padding-bottom: 0;
  color: #00AEEF;
}
.section-title p {
  margin-bottom: 0;
}
@media (max-width: 575px) {
  .section-title h2 {
    font-size: 28px;
    margin-bottom: 15px;
  }
  .section-title span {
    font-size: 38px;
  }
}
/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services {
  background-image: url(../images/Ian.jpg);
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: contain;
  height: 100%;
  position: relative;
}
@media (max-width: 1024px) {
  .services {
    background-position-x: -320px;
  }
}
@media (max-width: 990px) {
  .services {
    background-image: url(../images/Ian-fade.jpg);
    background-position-x: -320px; 
    }
}
  .services img.yearbadge {
    max-width: 150px;
    margin: 12px auto;
    display: block;
  }

.services .service-box {
  position: relative;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 10px 29px 0 rgba(68, 88, 144, 0.1);
  transition: all 0.3s ease-in-out;
  text-align: center;
  border: 1px solid #bbb;
    width: 100%;
}
.services .service-box-inner {
  padding: 30px;
}
.services .icon {
  margin: 0 auto 20px auto;
  padding-top: 17px;
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  width: 72px;
  height: 72px;
  background: #00AEEF;
}
.services .icon i {
  font-size: 36px;
  line-height: 1;
  color: #fff;
}
.services .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
  color: #00AEEF;
  transition: 0.3s;
}
.services .description, #about .description {
  font-size: 15px;
  line-height: 28px;
  margin-bottom: 0;
}
.services .service-box:hover {
  border-color: #00AEEF;
}
.services .service-box:hover .title {
  color: rgb(65, 64, 66);
}
/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
#about {}
#about .box {
  padding: 30px;
  border: 1px solid rgb(0, 174, 239);
  font-weight: 600;
  font-size: 18px;
    width: 100%;
}
#about .box::before {
  content: " ";
  background: url(/images/snowflake.png) no-repeat 0 0;
  width: 150px;
  height: 150px;
  position: absolute;
  top: 10px;
  right: 20px;
  background-size: contain;
}
@media (max-width: 990px) {
  #about .box {
    border: none;
      border-bottom: 1px solid #00AEEF
  }
  #about .box::before {
    background: none;
  }
}
@media (max-width: 768px) {
  #about .box {
    text-align: center;
  }
}
/*--------------------------------------------------------------
# Parallax
--------------------------------------------------------------*/
#parallax {
  background: linear-gradient(rgba(2, 2, 2, 0.5), rgba(0, 0, 0, 0.5)), url("../images/warm-reception.jpg") fixed center center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 240px 0;
}
#parallax::before {}
#parallax p {
  color: #fff;
}
@media (min-width: 1025px) {
  #parallax {
    background-position: fixed;
  }
}
@media (max-width: 1024px) {
  #parallax {
    background-attachment:unset;
    padding:20px 0;
    }
}
@media (max-width: 768px) {
  #parallax {
    background-attachment:unset;
    padding:200px 0;
    }
}
/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
#testimonials {
  background: linear-gradient(rgba(0, 174, 239, 0.5), rgba(0, 0, 0, 0.5)), url("../images/warm-reception2.jpg") fixed center center;
}
.testimonials .testimonial-wrap {
  padding-left: 50px;
}
.testimonials .testimonial-item {
  box-sizing: content-box;
  padding: 30px;
  margin: 30px 15px;
  min-height: 200px;
  box-shadow: 5px 2px 12px rgba(0, 0, 0, 0.48);
  position: relative;
  background: #fff;
  border-radius: 15px;
}
.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 10px;
  border: 6px solid #fff;
  float: left;
  margin: 0 10px 0 0;
}
.testimonials .testimonial-item h3 {
  margin-top: .5em;
}
.testimonials .testimonial-item .quote-icon-left, 
.testimonials .testimonial-item .quote-icon-right {
  color: #00AEEF;
  position: absolute
}
.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}
.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: absolute;
  bottom: -55px;
  font-size: 96px;
  color: rgba(0, 0, 0, .09);
}
.testimonials .testimonial-item p {
  font-style: italic;
  margin: 30px auto 15px auto;
  position: relative;
}
.testimonials .owl-nav, 
.testimonials .owl-dots {
  margin-top: 5px;
  text-align: center;
}
.testimonials .owl-dot {
  display: inline-block;
  margin: 0 5px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ddd !important;
}
.testimonials .owl-dot.active {
  background-color: #00AEEF !important;
}
.bx-icon {
  font-size: 24px;
  color: #fff;
  border-radius: 50%;
  padding: 15px;
  background: #00AEEF;
  float: left;
  margin-right: 1em;
}
@media (max-width: 767px) {
  #testimonials {
      background-image: none;
    }
      
      .testimonials .testimonial-wrap {
    padding-left: 0;
  }
  .testimonials .testimonial-item {
    padding: 30px;
    margin: 15px;
  }
  .testimonials .testimonial-item .testimonial-img {
    position: static;
    left: auto;
  }
}
/*--------------------------------------------------------------
# Contact Us
--------------------------------------------------------------*/
.contact .info-box {
  color: rgb(65, 64, 66);
  text-align: center;
  box-shadow: 0 0 30px rgba(186, 188, 190, 0.6);
  padding: 20px 0 30px 0;
}
.contact .info-box i.bx {
  font-size: 24px;
  color: #fff;
  border-radius: 50%;
  padding: 15px;
  background: #00AEEF;
}
.contact .info-box h3 {
  font-size: 20px;
  color: rgb(65, 64, 66);
  font-weight: 700;
  margin: 10px 0;
}
.contact .info-box p {
  padding: 0;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}
.contact .info-box p a {
  display: inline-block;
  position: relative;
}
.contact .info-box p a:after {
  content: '';
  position: absolute;
  left: 0;
  display: inline-block;
  height: 1em;
  width: 100%;
  border-bottom: 1px solid #00AEEF;
  margin-top: 10px;
  opacity: 0;
  -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
  transition: opacity 0.35s, transform 0.35s;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.contact .info-box p a:hover:after {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}
/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: url(../images/air-conditioning.jpg) 0 -200px no-repeat;
  background-size: cover;
  color: #fff;
  font-size: 14px;
  text-align: center;
  padding: 20px 0;
  position: relative;
}
#footer::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.85);
}
#footer .container {
  position: relative;
}
#footer p {
  font-size: small;
  padding: 0;
  margin: 0 0 40px 0;
}
@media (max-width: 990px) {
  #footer {
    background-position: 0 0;
  }
  #footer p {
      text-align: center!important
  }
}
  @media (max-width: 575.98px) {
    /*Manage Display Headers for Mobile Devices*/
    .display-1 {
      font-size: 3rem;
      font-weight: 300;
      line-height: 1.0;
    }
    .display-2 {
      font-size: 2.75rem;
      font-weight: 300;
      line-height: 1.0;
    }
    .display-3 {
      font-size: 2.25rem;
      font-weight: 300;
      line-height: 1.0;
    }
    .display-4 {
      font-size: 1.75rem;
      font-weight: 300;
      line-height: 1.0;
    }
  }