@import url("https://fonts.googleapis.com/css2?family=Nunito:wght@100;200;300;400;500;600;700;800;900");

/* Basics */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, div pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, figure, header, nav, section, article, aside, footer, figcaption { margin: 0; padding: 0; border: 0; outline: 0; }
.clearfix:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}
.clearfix {
  display: inline-block;
}
html[xmlns] .clearfix {
  display: block;
}
* html .clearfix {
  height: 1%;
}
ul, li {
  padding: 0;
  margin: 0;
  list-style: none;
}
header, nav, section, article, aside, footer, hgroup {
  display: block;
}
* {
  box-sizing: border-box;
}
html, body {
  font-family: 'Nunito', sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a {
  text-decoration: none !important;
}
h1, h2, h3, h4, h5, h6 {
  color: #1e1e1e;
  margin-top: 0px;
  margin-bottom: 0px;
  font-weight: 700;
}
ul {
  margin-bottom: 0px;
  list-style-type: circle;
}
p {
  font-size: 18px;
  line-height: 30px;
  color: #4a4a4a;
}
img {
  width: 100%;
  overflow: hidden;
}

/* Globals */
html, body {
  font-family: 'Nunito', sans-serif;
}
::selection {
  background: #0071f8;
  color: #fff;
}
::-moz-selection {
  background: #0071f8;
  color: #fff;
}
.icon-button a {
  display: inline-block;
  background-color: #1e1e1e;
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  height: 50px;
  line-height: 50px;
  padding: 0px 30px 0px 0px;
  border-radius: 25px;
  transition: all .3s;
}
.icon-button a i {
  background-color: #f35525;
  height: 50px;
  width: 50px;
  text-align: center;
  border-radius: 50%;
  line-height: 50px;
  display: inline-block;
  margin-right: 15px;
  margin-left: -1px;
}
.icon-button a:hover {
  color: #f35525;
}
.icon-button a:hover i {
  color: #fff;
}
.main-button a {
  display: inline-block;
  background-color: #1e1e1e;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  height: 40px;
  line-height: 40px;
  padding: 0px 30px;
  border-radius: 25px;
  transition: all .3s;
}
.main-button a:hover {
  background-color: #f35525;
  color: #fff;
}

/* Top header */
.background-header {
  background-color: #fff;
  height: 80px!important;
  position: fixed!important;
  top: 0!important;
  left: 0;
  right: 0;
  box-shadow: 0px 0px 10px rgba(0,0,0,0.15)!important;
  -webkit-transition: all .5s ease 0s;
  -moz-transition: all .5s ease 0s;
  -o-transition: all .5s ease 0s;
  transition: all .5s ease 0s;
}
.header-area {
  position: relative;
  background-color: #fff;
  height: 100px;
  z-index: 100;
  -webkit-transition: all .5s ease 0s;
  -moz-transition: all .5s ease 0s;
  -o-transition: all .5s ease 0s;
  transition: all .5s ease 0s;
}

/* Navigation */
.header-area .main-nav {
  background: transparent;
  display: flex;
}
.header-area .main-nav .logo {
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  display: inline-block;
}
.header-area .main-nav .logo img {
	height: 70px;
	width: auto;
	margin-top: 10px;
	margin-bottom: 10px;
}
.header-area .main-nav .logo h1 {
  line-height: 100px;
  font-size: 28px;
  text-transform: uppercase;
  color: #1e1e1e;
  font-weight: 700;
  letter-spacing: 2px;
  display: none;
}
.background-header .main-nav .logo h1 {
  line-height: 80px;
}
.header-area .main-nav ul.nav {
  flex-basis: 100%;
  margin-top: 30px;
  justify-content: right;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  position: relative;
  z-index: 999;
}
.header-area .main-nav .nav li:last-child {
  padding-right: 0px;
}
.header-area .main-nav .nav li {
  padding-left: 10px;
  padding-right: 10px;
  height: 100px;
  line-height: 100px;
}
.header-area .main-nav .nav li a {
  display: block;
  padding-left: 20px;
  padding-right: 20px;
  font-weight: 500;
  font-size: 16px;
  height: 40px;
  line-height: 40px;
  color: #1e1e1e;
  -webkit-transition: all 0.4s ease 0s;
  -moz-transition: all 0.4s ease 0s;
  -o-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
  border: transparent;
  letter-spacing: .25px;
}

.header-area .main-nav .nav li:hover a {
  color: #C15030;
}
.header-area .main-nav .nav li a.active {
  color: #C15030;
}
.background-header .main-nav .nav li a.active {
  color: #C15030;
}
.header-area .main-nav .menu-trigger {
  cursor: pointer;
  position: absolute;
  top: 23px;
  width: 32px;
  height: 40px;
  text-indent: -9999em;
  z-index: 99;
  right: 20px;
  display: none;
}
.background-header .main-nav .menu-trigger {
  top: 22px;
}
.background-header .main-nav ul.nav {
  margin-top: 20px;
}
.header-area .main-nav .menu-trigger span,
.header-area .main-nav .menu-trigger span:before,
.header-area .main-nav .menu-trigger span:after {
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  background-color: #1e1e1e;
  display: block;
  position: absolute;
  width: 30px;
  height: 2px;
  left: 0;
}
.header-area .main-nav .menu-trigger span:before,
.header-area .main-nav .menu-trigger span:after {
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  background-color: #1e1e1e;
  display: block;
  position: absolute;
  width: 30px;
  height: 2px;
  left: 0;
  width: 75%;
}
.header-area .main-nav .menu-trigger span:before,
.header-area .main-nav .menu-trigger span:after {
  content: "";
}

.header-area .main-nav .menu-trigger span {
  top: 16px;
}
.header-area .main-nav .menu-trigger span:before {
  -moz-transform-origin: 33% 100%;
  -ms-transform-origin: 33% 100%;
  -webkit-transform-origin: 33% 100%;
  transform-origin: 33% 100%;
  top: -10px;
  z-index: 10;
}
.header-area .main-nav .menu-trigger span:after {
  -moz-transform-origin: 33% 0;
  -ms-transform-origin: 33% 0;
  -webkit-transform-origin: 33% 0;
  transform-origin: 33% 0;
  top: 10px;
}
.header-area .main-nav .menu-trigger.active span,
.header-area .main-nav .menu-trigger.active span:before,
.header-area .main-nav .menu-trigger.active span:after {
  background-color: transparent;
  width: 100%;
}
.header-area .main-nav .menu-trigger.active span:before {
  -moz-transform: translateY(6px) translateX(1px) rotate(45deg);
  -ms-transform: translateY(6px) translateX(1px) rotate(45deg);
  -webkit-transform: translateY(6px) translateX(1px) rotate(45deg);
  transform: translateY(6px) translateX(1px) rotate(45deg);
  background-color: #1e1e1e;
}
.background-header .main-nav .menu-trigger.active span:before {
  background-color: #1e1e1e;
}
.header-area .main-nav .menu-trigger.active span:after {
  -moz-transform: translateY(-6px) translateX(1px) rotate(-45deg);
  -ms-transform: translateY(-6px) translateX(1px) rotate(-45deg);
  -webkit-transform: translateY(-6px) translateX(1px) rotate(-45deg);
  transform: translateY(-6px) translateX(1px) rotate(-45deg);
  background-color: #1e1e1e;
}
.background-header .main-nav .menu-trigger.active span:after {
  background-color: #1e1e1e;
}
.visible{
  display:inline !important;
}

@media (max-width: 1200px) {
  .header-area .main-nav .nav li {
    padding-left: 5px;
    padding-right: 5px;
  }
}

@media (max-width: 767px) {
  .background-header .main-nav {
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.15);
    border-radius: 0px 0px 25px 25px;
    width: 100%;
  }
  .background-header .main-nav .nav,
  .header-area .main-nav .nav {
    background-color: #fff;
  }
  .background-header .main-nav .nav li a,
  .header-area .main-nav .nav li a {
    line-height: 50px;
    height: 50px;
    font-weight: 400;
    color: #1e1e1e;
    background-color: #fff;
     border-radius: 0px 0px 25px 25px;
  }
  .background-header .main-nav .nav li,
  .header-area .main-nav .nav li {
    border-top: 1px solid #ddd;
    background-color: #f1f0fe;
    height: 50px;
    border-radius: 0px 0px 25px 25px;
  }
  .header-area .main-nav .nav {
    height: auto;
    flex-basis: 100%;
  }
  .header-area .main-nav .logo {
    position: absolute;
    left: 30px;
    top: 0px;
  }
  .background-header .main-nav .logo {
    top: 0px;
  }
  .background-header .main-nav .border-button {
    top: 0px !important;
  }
  .header-area .main-nav .border-button {
    position: absolute;
    top: 15px;
    right: 70px;
  }
  .header-area.header-sticky .nav li a:hover,
  .header-area.header-sticky .nav li a.active {
    color: #ee626b!important;
    opacity: 1;
  }
  .header-area.header-sticky .nav li.search-icon a {
    width: 100%;
  }
  .header-area .nav li:last-child a {
    background-color: transparent !important;
    font-weight: 300 !important;
    text-transform: capitalize !important;
  }
  .header-area {
    padding: 0px 15px;
    height: 80px;
    box-shadow: none;
    text-align: center;
  }
  .header-area .container {
    padding: 0px;
  }
  .header-area .logo {
    margin-left: 0px;
  }
  .header-area .menu-trigger {
    display: block !important;
  }
  .header-area .main-nav {
    overflow: hidden;
  }
  .header-area .main-nav .nav {
    float: none;
    width: 100%;
    display: none;
    -webkit-transition: all 0s ease 0s;
    -moz-transition: all 0s ease 0s;
    -o-transition: all 0s ease 0s;
    transition: all 0s ease 0s;
    margin-left: 0px;
  }
  .header-area .main-nav .nav li:first-child {
    border-top: 1px solid #eee;
  }
  .header-area.header-sticky .nav {
    margin-top: 80px !important;
  }
  .background-header.header-sticky .nav {
    margin-top: 80px !important;
  }
  .header-area .main-nav .nav li {
    width: 100%;
    background: #fff;
    padding-left: 0px !important;
    padding-right: 0px !important;
  }
  
}

/* Top carousel */
.carousel-caption {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 120px 10% 120px 10%;
    margin-top: 0px;
	top: 50%;
    transform: translateY(-50%);
}
.carousel-item h2 {
  font-size: 56px;
  font-weight: 500;
  color: #fff;
  line-height: 68px;
  text-shadow: 2px 2px 2px black;
  text-align: center;
}
.carousel-item p {
  font-size: 34px;
  font-weight: 500;
  color: #fff;
  line-height: 45px;
  text-shadow: 2px 2px 2px black;
  text-align: center;
}
.carousel.control-prev-icon {
  width: 50px;
  height: 50px;
  line-height: 50px;
  font-size: 24px;
  display: inline-block;
  color: #fff;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  opacity: 1;
  transition: all .3s;}
.carousel-control-next-icon, .carousel-control-prev-icon {
    display: inline-block;
    width: 4rem;
    height: 4rem;
	  color: #fff;
    background-repeat: no-repeat;
    background-position: 50%;
    background-size: 100% 100%;
	background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  opacity: 1;
  transition: all .3s;
}

/* About, services, photo, contact section */
.section p {margin-bottom: 15px;}
.section-heading h2 {
  font-size: 40px;
  font-weight: 700;
  margin-top: 20px;
  line-height: 56px;
  margin-top: 35px;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid #eee;
  text-align: center;
}
.section ul {
  padding: 20px  0;
}
.section ul, .section li {
  margin-left: 20px;
  list-style: square;
  font-size: 18px;
  line-height: 30px;
}

.about, .services, .gallery {
  width: 100%;
  margin-top: 80px;
  margin-bottom: 40px;
  padding: 0 10%;
}
.contact {
  width: 100%;
  margin-top: 80px;
  margin-bottom: 100px;
}
.about h3, .services h3, .contact h3 {
  font-size: 22px;
  line-height: 40px;
}
.gallery h3 {
  font-size: 28px;
  line-height: 46px;
  text-align: center;
  margin-top: 30px;
  margin-bottom: 30px;
}
h3.gallery-subheading {margin-top: 100px;}

/* gallery */
.gallery {padding-bottom: 70px;}
.gallery .gallery-item {overflow: hidden; border-right: 3px solid #fff; border-bottom: 3px solid #fff; height: 300px; text-align: center;}
.gallery .gallery-item img {transition: all ease-in-out 0.4s;}
.gallery .gallery-item:hover img {transform: scale(1.1);}

/* Footer */
footer {
  margin-top: 10px;
  padding: 25px 0 25px 0;
  background-color: #F48220;
  min-height: 60px;
}
footer p {
  text-align: center;
  line-height: 26px;
  color: #fff;
  font-size: 17px;
  font-weight: 400;
}
footer p a {
  color: #fff;
  transition: all .3s;
  position: relative;
  z-index: 3;
}
footer p a:hover {
  opacity: 0.75;
}


/* Responsive */
body {
  overflow-x: hidden;
}

@media (max-width: 767px) {
  .header-area .main-nav .logo h1 {
    line-height: 80px !important;
  }
  .main-banner .carousel-item h2 {
  font-size: 36px;
  font-weight: 500;
  color: #fff;
  line-height: 48px;
  margin-bottom: 30px;
}
.carousel-caption {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 80px 5% 80px 5%;
    margin-top: 0px;
	top: 50%;
    transform: translateY(-50%);
}
.carousel-item h2 {
  font-size: 38px;
  font-weight: 500;
  color: #fff;
  line-height: 52px;
  text-shadow: 2px 2px 2px black;
}
.carousel-item p {
  font-size: 26px;
  font-weight: 500;
  color: #fff;
  line-height: 34px;
  text-shadow: 2px 2px 2px black;
}
.gallery .gallery-item {overflow: hidden; border-right: 3px solid #fff; border-bottom: 3px solid #fff; height: 230px; text-align: center;}
.about, .services, .gallery {width: 100%; margin-top: 60px; margin-bottom: 40px; padding: 0 5%; }
p {font-size: 16px; line-height: 28px; color: #4a4a4a;}
.section-heading h2 {font-size: 40px; line-height: 56px; margin-bottom: 30px; padding-bottom: 30px;}
 }

@media (max-width: 992px) {
  .header-area .main-nav .logo h1 {
    line-height: 100px;
  }
  .carousel .item h2 {
    width: 100%;
  }
  .background-header .main-nav .logo h1 {
    line-height: 80px;
  }
  .header-area .main-nav .nav li a {
    padding-left: 3px;
    padding-right: 3px;
  }
  .header-area .main-nav .nav li:last-child a {
    padding-right: 15px;
  }
.carousel-item h2 {
  font-size: 38px;
  font-weight: 500;
  color: #fff;
  line-height: 52px;
  text-shadow: 2px 2px 2px black;
}
.carousel-item p {
  font-size: 22px;
  font-weight: 500;
  color: #fff;
  line-height: 38px;
  text-shadow: 2px 2px 2px black;
}
}

@media (max-width: 1200px) {
  .main-banner .carousel-item {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 180px 12% 180px 20%;
  margin-top: 0px;
}
}