@font-face {
    font-family: 'Eras Bold ITC';
    src: url('../fonts/ErasITC-Bold.eot');
    src: url('../fonts/ErasITC-Bold.eot?#iefix') format('embedded-opentype'),
        url('../fonts/ErasITC-Bold.woff2') format('woff2'),
        url('../fonts/ErasITC-Bold.woff') format('woff'),
        url('../fonts/ErasITC-Bold.ttf') format('truetype'),
        url('../fonts/ErasITC-Bold.svg#ErasITC-Bold') format('svg');
    font-weight: bold;
    font-style: normal;
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/

body {
  background: #fff;
  color: #111;
  font-family: "Open Sans", sans-serif;
}

a {
  color: #1a2a7c;
  transition: 0.5s;
}

a:hover,
a:active,
a:focus {
  color: #d5d824;
  outline: none;
  text-decoration: none;
}

p {
  padding: 0;
  margin: 0 0 30px 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Raleway", sans-serif;
  font-weight: 400;
  margin: 0 0 20px 0;
  padding: 0;
  color: #000;
}

.main-page {
  margin-top: 70px;
}

.wow {
  visibility: hidden;
}

.back-to-top {
  position: fixed;
  display: none;
  background: #d5d824;
  color: #000;
  width: 40px;
  height: 40px;
  text-align: center;
  border-radius: 50%;
  right: 15px;
  bottom: 15px;
  z-index: 10;
  transition: all 0.5s ease-in-out;
}
  
.back-to-top i {
  font-size: 24px;
  line-height: 40px;
}
  
.back-to-top:hover, 
.back-to-top:focus {
  background: #000;
  color: #fff;
  outline: none;
}
  
.call-now-btn {
  position: fixed;
  display: none;
  background: #d5d824;
  color: #1a2a7c;
  width: 100%;
  height: 50px;
  text-align: center;
  border-radius: 20px 20px 0 0;
  line-height: 50px;
  bottom: 0;
  z-index: 10;
  transition: all 0.5s ease-in-out;
}
  
.call-now-btn p {
  display: inline-block;
  font-family: "Raleway", sans-serif;
  font-size: 14px;
  font-weight: 600;
}
  
.call-now-btn i {
  font-size: 16px;
  line-height: 40px;
  padding-right: 3px;
}

.call-now-btn:hover, 
.call-now-btn:focus {
  background: #1a2a7c;
  color: #d5d824;
  outline: none;
}


/* Sections Header
--------------------------------*/

.section-header {
  margin-bottom: 60px;
  position: relative;
  padding-bottom: 20px;
}

.section-header::before {
  content: '';
  position: absolute;
  display: block;
  width: 60px;
  height: 5px;
  background: #d5d824;
  bottom: 0;
  left: calc(50% - 30px);
}

.section-header h2 {
  color: #1a2a7c;
  font-size: 36px;
  text-transform: uppercase;
  text-align: center;
  font-weight: 700;
  margin-bottom: 10px;
}

.section-header p {
  text-align: center;
  padding: 0;
  margin: 0;
  font-size: 18px;
  font-weight: 500;
  color: #9195a2;
}

.section-with-bg {
  background-color: #f7f7f7;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/

#header {
  position: fixed;
  left: 0;
  right: 0;
  transition: all 0.5s;
  z-index: 997;
}

#header.header-scrolled .bottom-header,
#header.header-fixed .bottom-header{
  background-color: #fff;
  box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.3);
  height: 80px;
  padding: 20px 0;
  transition: all 0.5s;
}

#header .bottom-header {
  height: 100px;
  padding: 25px 0;
  position: relative;
  transition: all 0.5s;
}

#header #logo  {
  display: inline-block;
}

#header #logo img {
  padding: 0;
  max-width: 300px;
  transition: all 0.5s;
}

#header.header-scrolled #logo,
#header.header-fixed #logo{
  background-color: #fff;
  box-shadow: 0 0 3px 1px rgba(0, 0, 0, 0.3);
  margin-top: -52px;
  padding: 30px 20px;
  transition: all 0.5s;
}

#header.header-scrolled #logo img {
  max-width: 200px;
}

#header .top-header {
  position: relative;
  background-color: #f5f5f5;
  padding: 10px 0 13px;
}

#header .top-header ul {
  padding: 0;
  margin: 0;
  text-align: right;
}

#header .top-header li {
  display: inline-block;
  padding: 0 5px;
  margin: 0;
}

#header .top-header li:first-child {
  border-right: 1px solid #ccc;
  padding-right: 10px;
}

#header .top-header li.call-now a {
  color: #1a2a7c;
  background: #d5d824;
  padding: 7px 22px;
  border-radius: 50px;
  border: 2px solid #d5d824;
  transition: all ease-in-out 0.3s;
  font-weight: 600;
  font-size: 13px;
}

#header .top-header li.call-now a:hover {
  background: none;
}

#header .top-header li.call-now:hover a:before,
#header .top-header li.call-now.menu-active a:before {
  visibility: hidden;
}



/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/

/* Nav Menu Essentials */

.nav-menu,
.nav-menu * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu ul {
  position: absolute;
  display: none;
  top: 100%;
  left: 0;
  z-index: 99;
}

.nav-menu li {
  position: relative;
  white-space: nowrap;
}

.nav-menu > li {
  float: left;
}

.nav-menu li:hover > ul,
.nav-menu li.sfHover > ul {
  display: block;
}

.nav-menu ul ul {
  top: 0;
  left: 100%;
}

.nav-menu ul li {
  min-width: 180px;
}

/* Nav Menu Arrows */

.sf-arrows .sf-with-ul {
  padding-right: 30px;
}

.sf-arrows .sf-with-ul:after {
  content: "\f107";
  position: absolute;
  right: 15px;
  font-family: "Font Awesome 5 Free";
}

.sf-arrows ul .sf-with-ul:after {
  content: "\f105";
}

/* Nav Meu Container */

#nav-menu-container {
  float: right;
  margin: 0;
}

/* Nav Meu Styling */

.nav-menu a {
  padding: 8px;
  text-decoration: none;
  display: inline-block;
  color: #000;
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-size: 14px;
  outline: none;
}

.nav-menu .menu-active a,
.nav-menu a:hover {
  color: #1a2a7c;
}

.nav-menu > li {
  margin-left: 8px;
}

.nav-menu > li > a:before {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #d5d824;
  visibility: hidden;
  transition: all 0.3s ease-in-out 0s;
}

.nav-menu a:hover:before,
.nav-menu li:hover > a:before,
.nav-menu .menu-active > a:before {
  visibility: visible;
  width: 100%;
}

.nav-menu ul {
  margin: 22px 0 0 0;
  padding: 10px;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  background: #fff;
}

.nav-menu ul li {
  transition: 0.3s;
}

.nav-menu ul li a {
  padding: 10px;
  color: #060c22;
  transition: 0.3s;
  display: block;
  font-size: 13px;
  text-transform: none;
}

.nav-menu ul li:hover > a {
  background: #1a2a7c;
  color: #fff;
}

.nav-menu ul ul {
  margin: 0;
}

/* Mobile Nav Toggle */

#mobile-nav-toggle {
  position: fixed;
  right: 0;
  top: 0;
  z-index: 999;
  margin: 15px 15px 0 0;
  border: 0;
  background: none;
  font-size: 24px;
  display: none;
  transition: all 0.4s;
  outline: none;
  cursor: pointer;
}

#mobile-nav-toggle i {
  color: #000;
}

/* Mobile Nav Styling */

#mobile-nav {
  position: fixed;
  top: 0;
  padding-top: 18px;
  bottom: 0;
  z-index: 998;
  background: rgba(255, 255, 255, 0.97);
  left: -260px;
  width: 260px;
  overflow-y: auto;
  transition: 0.4s;
}

#mobile-nav ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

#mobile-nav ul li {
  position: relative;
}

#mobile-nav ul li a {
  color: #000;
  font-size: 17px;
  overflow: hidden;
  padding: 10px 22px 10px 15px;
  position: relative;
  text-decoration: none;
  width: 100%;
  display: block;
  outline: none;
}

#mobile-nav ul li a:hover {
  color: #666;
}

#mobile-nav ul li li {
  padding-left: 30px;
}

#mobile-nav ul .menu-has-children i {
  position: absolute;
  right: 0;
  z-index: 99;
  padding: 15px;
  cursor: pointer;
  color: #000;
}

#mobile-nav ul .menu-has-children i.fa-chevron-up {
  color: #1a2a7c;
}

#mobile-nav ul .menu-item-active {
  color: #1a2a7c;
}

#mobile-body-overly {
  width: 100%;
  height: 100%;
  z-index: 997;
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(255, 255, 255, 0.8);
  display: none;
}

/* Mobile Nav body classes */

body.mobile-nav-active {
  overflow: hidden;
}

body.mobile-nav-active #mobile-nav {
  left: 0;
}

body.mobile-nav-active #mobile-nav-toggle {
  color: #fff;
}

/*--------------------------------------------------------------
# Intro Section
--------------------------------------------------------------*/

#intro {
  width: 100%;
  background: url(../img/central-slider.jpg) bottom center;
  background-size: cover;
  overflow: hidden;
  position: relative;
  height: 70vh;
}

#intro:before {
  content: "";
  background: rgba(255, 255, 255, 0.5);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#intro .intro-container {
  position: absolute;
  bottom: 0;
  left: 0;
  top: 150px;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  text-align: center;
  padding: 0 15px;
}

#intro h1 {
  color: #1a2a7c;
  font-family: 'Eras Bold ITC';
  letter-spacing: 5px;
  font-size: 60px;
  font-weight: 600;
  text-transform: uppercase;
  -webkit-text-stroke: 1.5px #d4af37;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, .7);
}

#intro h1 span.yellow {
  font-size: 80px;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: #d5d824;
  -webkit-text-stroke: 2px #1a2a7c;
  text-shadow: none;
}

#intro ul {
  margin: 0 0 -80px;
  padding: 0;
  list-style: none;
}

#intro ul li {
  float: left;
  margin: 0;
  padding: 0;
}

#intro ul li.star-a {
  margin: 30px -3px 0;
}

#intro ul li.star-b {
  margin-top: 10px;
  padding: 0 10px;
}

#intro p {
  color: #000;
  font-weight: 700;
  font-size: 24px;
}

#intro ul li i {
  font-size: 30px;
  color: #d5d824;
  -webkit-text-stroke: 2px #1a2a7c;
  position: relative;
}

#intro p.area-desc {
  font-weight: 700;
  font-size: 26px;
}

#intro .about-btn {
  background: #d5d824;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 50px;
  transition: 0.5s;
  line-height: 1;
  margin: 10px;
  color: #1a2a7c;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  border: 2px solid #d5d824;
}

#intro .about-btn:hover {
  border: 2px solid #1a2a7c;
  background: transparent;
  color: #1a2a7c;
}

@-webkit-keyframes pulsate-btn {
  0% {
    -webkit-transform: scale(0.6, 0.6);
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    opacity: 0;
  }
}

@keyframes pulsate-btn {
  0% {
    -webkit-transform: scale(0.6, 0.6);
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    opacity: 0;
  }
}

/*--------------------------------------------------------------
# Hire Section
--------------------------------------------------------------*/

#hire {
  background: url("../img/Hire-Us.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  overflow: hidden;
  position: relative;
  padding: 60px 0;
}

#hire:before {
  content: "";
  background: rgba(0, 0, 0, 0.6);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#hire h2 {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #fff;
}

#hire h3 {
  font-size: 18px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: #fff;
}

#hire p {
  font-size: 14px;
  margin-bottom: 20px;
  color: #fff;
  font-weight: 600;
}

#hire ul {
  list-style: none;
  margin: 0;
  padding: 0;
  line-height: normal;
}

#hire ul.s-col li {
  display: inline;
  font-size: 14px;
  color: #fff;
  font-weight: 600;
  margin: 0;
  padding: 0;
}

#hire ul.d-col li {
  width: 46%;
  display: inline-block;
  font-size: 14px;
  color: #fff;
  font-weight: 600;
  margin: 0;
  margin-left: 20px;
  padding: 0;
}

#hire ul i {
  color: #d5d824;
  position: absolute;
  line-height: 20px;
  margin-left: -20px;
}

#hire ul li a {
  color: #d5d824;
}

#hire ul li a:hover {
  color: #fff;
}


/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/

#services {
  padding: 60px 0;
}

#services .service {
  border: 1px solid #e5e5e5;
  background: #fff;
  margin-bottom: 30px;
}

#services .service:hover .service-img img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

#services .service-img {
  overflow: hidden;
  margin-bottom: 15px;
}

#services .service-img img {
  transition: 0.3s ease-in-out;
}

#services h3 {
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 13px;
  padding: 0 20px;
}

#services a {
  color: #1a2a7c;
}

#services a:hover {
  color: #d5d824;
}

#services .services-list {
	list-style: none;
	padding: 0 20px;
	margin: 0;
}

#services .services-list li {
  color: #555;
  font-style: italic;
  font-size: 15px;
  padding: 5px 0;
}

#services .services-list li:last-child {
  margin-bottom: 20px;
}

#services .services-list li i {
  color: #d5d824;
  padding-right: 5px;
}

#services p {
  padding: 0 20px;
  margin-bottom: 20px;
  color: #555;
  font-style: italic;
  font-size: 15px;
  text-align: justify;
}


/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/

#about {
  padding: 60px 0;
}

#about .container-fluid {
  margin-bottom: 3px;
}

#about .about-map iframe {
  width: 100%;
  height: 100%;
  min-height: 300px;
}

#about .about-info {
  background: url("../img/about-us.jpg") center center no-repeat;
  background-size: cover;
  position: relative;
  padding-top: 60px;
  padding-bottom: 60px;
}

#about .about-info:before {
  content: "";
  background: rgba(255, 255, 255, 0.7);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#about .about-info h3 {
  font-size: 36px;
  font-weight: 700;
  color: #1a2a7c;
}

#about .about-info p {
  color: #000;
  font-weight: 600;
  margin-bottom: 0;
  text-align: justify;
}


/*--------------------------------------------------------------
# Service Page
--------------------------------------------------------------*/

#header.services {
  background-color: #fff;
  box-shadow: 0 0 3px 1px rgba(0, 0, 0, 0.3);
  margin-top: 0;
}

#header.services .bottom-header {
  height: 80px;
  padding: 22px 0;
}

#header.services.header-scrolled,
#header.services.header-fixed{
  box-shadow: none;
}

#header.services #logo {
  margin-top: -52px;
  padding: 30px 20px;
}

#header.services #logo img {
  padding: 0;
  max-width: 190px;
  transition: all 0.5s;
}

#service-details {
  padding: 200px 0 60px;
}

#service-details img.s-img-border {
  border: 2px solid #aaa;
  border-radius: 0 70px 0 70px;
  box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.4);
}

#service-details .details h2 {
  color: #555;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 10px;
}

#service-details .details ul {
  margin-bottom: 10px;
}

#service-details .details ul li {
  color: #555;
  font-size: 15px;
}

#service-details .details ul.split-list li {
  width: 49.8%;
  float: left;
}

#service-details .details ul.split-list li:last-child {
  padding-bottom: 10px;
}

#service-details .details p {
  color: #555;
  font-size: 15px;
  margin-bottom: 10px;
  text-align: justify;
}


/*--------------------------------------------------------------
# Gallery Section
--------------------------------------------------------------*/

#gallery {
  padding: 10px 60px 0 60px;
  overflow: hidden;
}

#gallery .owl-nav,
#gallery .owl-dots {
  margin-top: 25px;
  text-align: center;
}

#gallery .owl-item {
  border-left: 2px solid #fff;
  border-right: 2px solid #fff;
}

#gallery .owl-dot {
  display: inline-block;
  margin: 0 5px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ddd;
}

#gallery .owl-dot.active {
  background-color: #d5d824;
}

#gallery .gallery-carousel .owl-stage-outer {
  overflow: visible;
}

#gallery .gallery-carousel .center {
  border: 6px solid #d5d824;
  margin: -10px;
  box-sizing: content-box;
  padding: 4px;
  background: #fff;
  z-index: 1;
}


/*--------------------------------------------------------------
# Brands Section
--------------------------------------------------------------*/

#brands {
  padding: 60px 0;
}

#brands .brands-wrap {
  border-top: 1px solid #ddd;
  border-left: 1px solid #ddd;
  margin-bottom: 30px;
}

#brands .brand-logo {
  padding: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-right: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.5);
  height: 160px;
}

#brands .brand-logo:hover img {
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}

#brands img {
  transition: all 0.4s ease-in-out;
}


/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/

#contact {
  padding: 60px 0;
}

#contact .contact-info {
  margin-bottom: 20px;
  text-align: center;
}

#contact .contact-info i {
  font-size: 48px;
  display: inline-block;
  margin-bottom: 10px;
  color: #d5d824;
}

#contact .contact-info address,
#contact .contact-info p {
  margin-bottom: 0;
  color: #666;
}

#contact .contact-info h3 {
  font-size: 18px;
  margin-bottom: 15px;
  font-weight: bold;
  text-transform: uppercase;
  color: #1a2a7c;
}

#contact .contact-info a {
  color: #666;
}

#contact .contact-info a:hover {
  color: #d5d824;
}

#contact .contact-address,
#contact .contact-phone,
#contact .contact-email {
  margin-bottom: 20px;
}

#contact .form #sendmessage {
  color: #d5d824;
  border: 1px solid #d5d824;
  display: none;
  text-align: center;
  padding: 15px;
  font-weight: 600;
  margin-bottom: 15px;
}

#contact .form #errormessage {
  color: red;
  border: 1px solid red;
  display: none;
  text-align: center;
  padding: 15px;
  font-weight: 600;
  margin-bottom: 15px;
}

#contact .form #sendmessage.show,
#contact .form #errormessage.show,
#contact .form .show {
  display: block;
}

#contact .form .validation {
  color: red;
  display: none;
  margin: 0 0 20px;
  font-weight: 400;
  font-size: 13px;
}

#contact .form input,
#contact .form textarea {
  padding: 10px 14px;
  border-radius: 0;
  box-shadow: none;
  font-size: 15px;
}

#contact .form input:focus,
#contact .form textarea:focus {
  border-color: #d5d824;
}

#contact .form button[type="submit"] {
  background: #d5d824;
  border: 0;
  padding: 10px 40px;
  color: #1a2a7c;
  transition: 0.4s;
  border-radius: 50px;
  cursor: pointer;
  font-weight: 600;
}

#contact .form button[type="submit"]:hover {
  background: #1a2a7c;
  color: #d5d824;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

#footer {
  background: #eee;
  padding: 0 0 25px 0;
  color: #555;
  font-size: 14px;
}

#footer .footer-top {
  background: #e5e5e5;
  padding: 60px 0 30px 0;
}

#footer .footer-top .footer-info {
  margin-bottom: 30px;
}

#footer .footer-top .footer-info h3 {
  font-size: 26px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  color: #555;
}

#footer .footer-top .footer-info img {
  width: 95%;
  
  margin: 0 auto 10px;
}

#footer .footer-top .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Raleway", sans-serif;
  color: #555;
  text-align: justify;
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #222636;
  color: #eee;
  line-height: 36px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
  background: #1a2a7c;
  color: #fff;
}

#footer .footer-top h4 {
  font-size: 14px;
  font-weight: bold;
  color: #555;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 12px;
  border-bottom: 2px solid #d5d824;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 5px;
  color: #1a2a7c;
  font-size: 18px;
}

#footer .footer-top .footer-links ul li {
  border-bottom: 1px solid #f5f5f5;
  padding: 10px 0;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #555;
}

#footer .footer-top .footer-links ul a:hover {
  color: #1a2a7c;
}

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}

#footer .footer-top .footer-contact p {
  line-height: 26px;
}

#footer .copyright {
  text-align: center;
  padding-top: 30px;
}

/*--------------------------------------------------------------
# Responsive Media Queries
--------------------------------------------------------------*/

@media (min-width: 768px) {
  #contact .contact-address, #contact .contact-phone, #contact .contact-email {padding: 20px 0;}
  #contact .contact-phone {border-left: 1px solid #ddd; border-right: 1px solid #ddd;}
}

@media (min-width: 1024px) {
  .call-now-btn {width: 20%; right: 6px;}
  #intro {background-attachment: fixed; height: 76vh;}
  #hire {background-attachment: fixed;}
}

@media (max-width: 1199px) {
  #header .container {max-width: 100%;}
  #header .bottom-header {margin-top: -2px;}
  .nav-menu a {padding: 8px 4px;}
}

@media (max-width: 991px) {
  #header {transition: all 0.5s;}  
  #header .bottom-header {background-color: transparent; height: 80px; margin-top: -1px;}
  #header.header-scrolled #logo, #header.header-fixed #logo{background-color: transparent; box-shadow: none; margin-top: -20px; padding: 0;}
  #header.header-scrolled #logo img, #header.header-fixed #logo img{max-width: 190px;}
  #header.services #logo {margin-top: -21px; padding: 0;}
  #header.services.header-scrolled #logo, #header.services.header-fixed #logo{margin-top: -21px; padding: 0;}
  #header #logo {margin-top: -20px;}
  #header #logo img {max-width: 250px;}
  #header .top-header {text-align: center; margin: 0; padding: 5px 0;}
  #header .top-header ul {text-align: center;}
  #header .top-header li {display: block;padding: 0;}
  #header .top-header li:first-child {border: 0;}
  #header .top-header li.call-now a {display: none;}
  #nav-menu-container {display: none;}
  #mobile-nav-toggle {display: inline; padding-top: 65px;}
  #intro .intro-container {top: 120px;}
  #intro ul {margin: 0 0 -40px;}
  #intro ul li.star-a {margin: 17px 0 0;}
  #intro ul li.star-b {margin-top: 7px;padding: 0 5px;}
  #intro ul li i {font-size: 16px; -webkit-text-stroke: 1.2px #000;}
  #intro h1 {font-size: 30px; -webkit-text-stroke: 0.8px #d4af37;}
  #intro h1 span.yellow {font-size: 40px; -webkit-text-stroke: 1.5px #000;}
  #intro p {font-size: 14px;}
  #intro p.area-desc {font-size: 20px;}
  #hire {background-position: left -20px center;}
  #hire h3 {margin-top: 20px;}
  #hire ul.d-col li {width: 100%;}
  #hire ul.s-col li {display: block;}
  #service-details .details h2 {margin-top: 20px;}
  #service-details .details ul.split-list li {width: 100%;}
  #footer .copyright {padding-bottom: 40px;}
}

@media (max-width: 574px) {
  #about .about-info h3 {font-size: 24px;}
}