/**
* Template Name: Groovin
* Updated: Jan 09 2024 with Bootstrap v5.3.2
* Template URL: https://bootstrapmade.com/groovin-free-bootstrap-theme/
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Open Sans", sans-serif;
  color: #444444;
}

a {
  color: #2ecc71;
  text-decoration: none;
}

a:hover {
  color: #74c92d;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Roboto Slab", sans-serif;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #2ecc71;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #6fc02c;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  background: #fff;
  transition: all 0.5s;
  z-index: 997;
  height: 80px;
}

#header .logo {
  font-size: 28px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}
/* .logo img{
  width: 85px;
} */
#header .logo a {
  color: #fff;
}

#header .logo img {
  max-height: 80px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar>ul>li {
  white-space: nowrap;
  padding: 10px 0 10px 22px;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4px;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  font-weight: 500;
  /* color: rgba(255, 255, 255, 0.7); */
  color: #000;
  white-space: nowrap;
  transition: 0.3s;
  text-transform: uppercase;
  position: relative;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar>ul>li>a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -6px;
  left: 0;
  background-color: #2ecc71;
  visibility: hidden;
  width: 0px;
  transition: all 0.3s ease-in-out 0s;
}

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

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: #000;
}

.navbar .getstarted,
.navbar .getstarted:focus {
  padding: 8px 25px;
  margin-left: 12px;
  border-radius: 4px;
  color: #000;
  font-weight: 400;
  font-family: "Poppins", sans-serif;
  border: 2px solid #2ecc71;
}

.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
  color: #fff;
  background: #2ecc71;
}

.navbar .getstarted:hover:before,
.navbar li:hover>.getstarted:before {
  visibility: hidden;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 22px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  text-transform: none;
  color: #2a2a2a;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: #2ecc71;
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #2ecc71;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(17, 17, 17, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #2a2a2a;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #2ecc71;
}

.navbar-mobile>ul>li {
  white-space: nowrap;
  padding: 0;
}

.navbar-mobile a:hover:before,
.navbar-mobile li:hover>a:before,
.navbar-mobile .active:before {
  visibility: hidden;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
  color: #2ecc71;
  padding-left: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: #2ecc71;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100vh;
  background-color: rgba(17, 17, 17, 0.8);
  overflow: hidden;
  padding: 0;
}

#hero .carousel-item {
  width: 100%;
  height: 100vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  transition: 0.3;
}

#hero .carousel-item::before {
  content: "";
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}

#hero .carousel-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#hero .carousel-content {
  text-align: center;
}

#hero h2 {
  color: #fff;
  margin-bottom: 30px;
  font-size: 48px;
  font-weight: 700;
}

#hero h2 span {
  color: #2ecc71;
}

#hero p {
  width: 80%;
  animation-delay: 0.4s;
  margin: 0 auto 30px auto;
  color: #fff;
}

#hero .carousel-inner .carousel-item {
  transition-property: opacity;
  background-position: center top;
}

#hero .carousel-inner .carousel-item,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
  opacity: 0;
}

#hero .carousel-inner .active,
#hero .carousel-inner .carousel-item-next.carousel-item-start,
#hero .carousel-inner .carousel-item-prev.carousel-item-end {
  opacity: 1;
  transition: 0.5s;
}

#hero .carousel-inner .carousel-item-next,
#hero .carousel-inner .carousel-item-prev,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
  left: 0;
  transform: translate3d(0, 0, 0);
}

#hero .carousel-control-next-icon,
#hero .carousel-control-prev-icon {
  background: none;
  font-size: 30px;
  line-height: 0;
  width: auto;
  height: auto;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  transition: 0.3s;
  color: rgba(255, 255, 255, 0.5);
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#hero .carousel-control-next-icon:hover,
#hero .carousel-control-prev-icon:hover {
  background: rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.8);
}

#hero .carousel-indicators li {
  list-style-type: none;
  cursor: pointer;
  background: #fff;
  overflow: hidden;
  border: 0;
  width: 12px;
  height: 12px;
  border-radius: 50px;
  opacity: 0.6;
  transition: 0.3s;
}

#hero .carousel-indicators li.active {
  opacity: 1;
  background: #2ecc71;
}

#hero .btn-get-started {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 32px 12px 32px;
  border-radius: 4px;
  transition: 0.5s;
  line-height: 1;
  margin: 10px;
  color: #fff;
  animation-delay: 0.8s;
  text-transform: uppercase;
  border: 2px solid #2ecc71;
  background: #2ecc71;
}

#hero .btn-get-started:hover {
  background: #6ab82a;
  border-color: #6ab82a;
  color: #fff;
}

@media (max-width: 768px) {
  #hero h2 {
    font-size: 28px;
  }
}

@media (min-width: 1024px) {
  #hero p {
    width: 60%;
  }

  #hero .carousel-control-prev,
  #hero .carousel-control-next {
    width: 5%;
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
}

.section-bg {
  background-color: #f1f1f1;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}

.section-title h2 {
  font-size: 32px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 0;
  color: #2ecc71;
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about .content {
  padding: 30px 0;
}

.about .content h3 {
  font-weight: 700;
  font-size: 34px;
  color: #2ecc71;
}

.about .content p {
  margin-bottom: 0;
}

.about .content .icon-box {
  margin-top: 25px;
}

.about .content .icon-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 5px 0 10px 60px;
}

.about .content .icon-box i {
  font-size: 48px;
  float: left;
  color: #2ecc71;
}

.color-primary{
  color: #2ecc71;
  
}
.about .content .icon-box p {
  font-size: 15px;
  color: #848484;
  margin-left: 60px;
}

.about .image {
  background: url("../images/deepali_1.webp") center center no-repeat;
  background-size: cover;
  height: 509px;
}

@media (max-width: 991px) {
  .about .image {
    text-align: center;
  }

  .about .image img {
    max-width: 80%;
  }
}

@media (max-width: 667px) {
  .about .image img {
    max-width: 100%;
  }
}

/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.counts {
  padding: 0 0 30px 0;
}

.counts .count-box {
  padding: 30px;
  width: 100%;
}

.counts .count-box i {
  display: block;
  font-size: 44px;
  color: #2ecc71;
  float: left;
  line-height: 0;
}

.counts .count-box span {
  font-size: 48px;
  line-height: 40px;
  display: block;
  font-weight: 700;
  color: #2a2a2a;
  margin-left: 60px;
}

.counts .count-box p {
  padding: 15px 0 0 0;
  margin: 0 0 0 60px;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  color: #505050;
}

.counts .count-box a {
  font-weight: 600;
  display: block;
  margin-top: 20px;
  color: #505050;
  font-size: 15px;
  font-family: "Poppins", sans-serif;
  transition: ease-in-out 0.3s;
}

.counts .count-box a:hover {
  color: #777777;
}

/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/
.clients {
  padding: 15px 0;
  text-align: center;
}

.clients img {
  max-width: 45%;
  transition: all 0.4s ease-in-out;
  display: inline-block;
  padding: 15px 0;
  filter: grayscale(100);
}

.clients img:hover {
  filter: none;
  transform: scale(1.15);
}

@media (max-width: 768px) {
  .clients img {
    max-width: 40%;
  }
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
  margin-bottom: 20px;
  text-align: center;
}

.services .icon {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  background: #fff;
  border-radius: 50%;
  transition: 0.5s;
  color: #2ecc71;
  overflow: hidden;
  box-shadow: 0px 0 25px rgba(0, 0, 0, 0.15);
}

.services .icon i {
  font-size: 36px;
  line-height: 0;
}

.services:hover .icon {
  box-shadow: 0px 0 25px rgba(92, 159, 36, 0.3);
}

.services .title {
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 18px;
  position: relative;
  padding-bottom: 15px;
}

.services .title a {
  color: #444444;
  transition: 0.3s;
}

.services .title a:hover {
  color: #2ecc71;
}

.services .title::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 2px;
  background: #2ecc71;
  bottom: 0;
  left: calc(50% - 25px);
}

.services .description {
  line-height: 24px;
  font-size: 14px;
}

/*--------------------------------------------------------------
# Why Us
--------------------------------------------------------------*/
.why-us .box {
  padding: 50px 30px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  transition: all ease-in-out 0.3s;
}

.why-us .box span {
  display: block;
  font-size: 28px;
  font-weight: 700;
  color: #8ed851;
}

.why-us .box h4 {
  font-size: 24px;
  font-weight: 600;
  padding: 0;
  margin: 20px 0;
  color: #2a2a2a;
}

.why-us .box p {
  color: #aaaaaa;
  font-size: 15px;
  margin: 0;
  padding: 0;
}

.why-us .box:hover {
  background: #2ecc71;
  padding: 30px 30px 70px 30px;
  box-shadow: 10px 15px 30px rgba(0, 0, 0, 0.18);
}

.why-us .box:hover span,
.why-us .box:hover h4,
.why-us .box:hover p {
  color: #fff;
}

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio .portfolio-item {
  margin-bottom: 30px;
}

.portfolio #portfolio-flters {
  padding: 0;
  margin: 0 auto 20px auto;
  list-style: none;
  text-align: center;
}

.portfolio #portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 8px 15px 10px 15px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  color: #444444;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
  border-radius: 3px;
}

.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
  color: #fff;
  background: #2ecc71;
}

.portfolio #portfolio-flters li:last-child {
  margin-right: 0;
}

.portfolio .portfolio-wrap {
  transition: 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
  background: rgba(42, 42, 42, 0.7);
}

.portfolio .portfolio-wrap::before {
  content: "";
  background: rgba(42, 42, 42, 0.7);
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  transition: all ease-in-out 0.3s;
  z-index: 2;
  opacity: 0;
}

.portfolio .portfolio-wrap img {
  transition: all ease-in-out 0.3s;
}

.portfolio .portfolio-wrap .portfolio-info {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 20px;
}

.portfolio .portfolio-wrap .portfolio-info h4 {
  font-size: 20px;
  color: #fff;
  font-weight: 600;
}

.portfolio .portfolio-wrap .portfolio-info p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  text-transform: uppercase;
  padding: 0;
  margin: 0;
  font-style: italic;
}

.portfolio .portfolio-wrap .portfolio-links {
  text-align: center;
  z-index: 4;
}

.portfolio .portfolio-wrap .portfolio-links a {
  color: #fff;
  margin: 0 5px 0 0;
  font-size: 28px;
  display: inline-block;
  transition: 0.3s;
}

.portfolio .portfolio-wrap .portfolio-links a:hover {
  color: #8ed851;
}

.portfolio .portfolio-wrap:hover::before {
  opacity: 1;
}

.portfolio .portfolio-wrap:hover img {
  transform: scale(1.2);
}

.portfolio .portfolio-wrap:hover .portfolio-info {
  opacity: 1;
}

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
  padding-top: 40px;
}

.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #2ecc71;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #2ecc71;
}

.portfolio-details .portfolio-info {
  padding: 30px;
  box-shadow: 0px 0 30px rgba(42, 42, 42, 0.08);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li+li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
}

/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team {
  background: #fff;
  padding: 60px 0;
}

.team .member {
  text-align: center;
  margin-bottom: 20px;
  background: #343a40;
  position: relative;
}

.team .member .member-info {
  opacity: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  transition: 0.2s;
}

.team .member .member-info-content {
  margin-top: -50px;
  transition: margin 0.2s;
}

.team .member:hover .member-info {
  background: rgba(0, 0, 0, 0.7);
  opacity: 1;
  transition: 0.4s;
}

.team .member:hover .member-info-content {
  margin-top: 0;
  transition: margin 0.4s;
}

.team .member h4 {
  font-weight: 700;
  margin-bottom: 2px;
  font-size: 18px;
  color: #fff;
}

.team .member span {
  font-style: italic;
  display: block;
  font-size: 13px;
  color: #fff;
}

.team .member .social {
  margin-top: 15px;
}

.team .member .social a {
  transition: color 0.3s;
  color: #fff;
}

.team .member .social a:hover {
  color: #2ecc71;
}

.team .member .social i {
  font-size: 18px;
  margin: 0 2px;
}

/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/
.pricing .box {
  padding: 20px;
  background: #f7f7f7;
  text-align: center;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}

.pricing .box h3 {
  font-weight: 400;
  padding: 15px;
  margin-top: 15px;
  font-size: 18px;
  font-weight: 600;
  color: #2a2a2a;
}

.pricing .box h4 {
  font-size: 42px;
  color: #2ecc71;
  font-weight: 500;
  font-family: "Open Sans", sans-serif;
  margin-bottom: 20px;
}

.pricing .box h4 sup {
  font-size: 20px;
  top: -15px;
  left: -3px;
}

.pricing .box h4 span {
  color: #bababa;
  font-size: 16px;
  font-weight: 300;
}

.pricing .box ul {
  padding: 0;
  list-style: none;
  color: #2a2a2a;
  text-align: center;
  line-height: 20px;
  font-size: 14px;
}

.pricing .box ul li {
  padding-bottom: 16px;
}

.pricing .box ul i {
  color: #2ecc71;
  font-size: 18px;
  padding-right: 4px;
}

.pricing .box ul .na {
  color: #ccc;
  text-decoration: line-through;
}

.pricing .box .btn-wrap {
  padding: 15px;
  text-align: center;
}

.pricing .box .btn-buy {
  display: inline-block;
  padding: 10px 40px 12px 40px;
  border-radius: 4px;
  border: 2px solid #2ecc71;
  color: #2ecc71;
  font-size: 14px;
  font-weight: 400;
  font-family: "Roboto", sans-serif;
  font-weight: 600;
  transition: 0.3s;
}

.pricing .box .btn-buy:hover {
  background: #2ecc71;
  color: #fff;
}

.pricing .recommended {
  background: #2ecc71;
}

.pricing .recommended h3,
.pricing .recommended h4,
.pricing .recommended h4 span,
.pricing .recommended ul,
.pricing .recommended ul .na {
  color: #fff;
}

.pricing .recommended .btn-buy {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
}

.pricing .recommended .btn-buy:hover {
  background: #fff;
  border-color: #fff;
  color: #2ecc71;
}

/*--------------------------------------------------------------
# Frequently Asked Questions
--------------------------------------------------------------*/
.faq .faq-list {
  /* padding: 0 100px; */
}

.faq .faq-list ul {
  padding: 0;
  list-style: none;
}

.faq .faq-list li+li {
  /* margin-top: 15px; */
}

.faq .faq-list li {
  /* padding: 20px; */
  padding-left: 20px;
  padding-bottom: 9px;
  padding-right: 20px;
  background: #fff;
  /* border-radius: 4px; */
  position: relative;
}

.faq .faq-list a {
  display: block;
  position: relative;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  padding: 0 30px;
  outline: none;
  cursor: pointer;
}

.faq .faq-list .icon-help {
  font-size: 28px;
  position: absolute;
  right: 0;
  left: 20px;
  /* bottom: 212px; */
  color: #2ecc71;
}

.faq .faq-list .icon-show,
.faq .faq-list .icon-close {
  font-size: 24px;
  position: absolute;
  right: 0;
  top: 0;
}

.faq .faq-list p {
  margin-bottom: 0;
  padding: 10px 0 0 0;
}

.faq .faq-list .icon-show {
  display: none;
}

.faq .faq-list a.collapsed {
  color: #343a40;
}

.faq .faq-list a.collapsed:hover {
  color: #2ecc71;
}

.faq .faq-list a.collapsed .icon-show {
  display: inline-block;
}

.faq .faq-list a.collapsed .icon-close {
  display: none;
}
.c_faq h2{
  font-size: 32px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 20px;
    padding-bottom: 0;
    color: #2ecc71;
    /* padding-left: 94px; */
}
.c_faq h5{
    margin-bottom: 20px;
    padding-bottom: 0;
    color: #fff;
    /* padding-left: 94px; */
}
@media (max-width: 1200px) {
  .faq .faq-list {
    padding: 0;
  }
  .c_faq h2,h5{
    padding-left: 0px;
  }
}

.panel-title {
  font-size:13px;
  position:relative;
  vertical-align: middle;
  top: -2px;
  font-weight: 400;
  }
  .panel-title i {
  position:relative;
  margin-right:15px;
  font-size:24px;
  top:3px;
  }
  .panel-title a {
  color:#777;
  }
  .panel-title a:hover {
  color:#777;
  }
  
  .panel-title:after {
  content:"\f054";
  display:inline-block;
  font-family:FontAwesome;
  font-style:normal;
  font-weight:normal;
  line-height:1;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  position:absolute;
  right:6px;
  top:50%;
  margin-top:-2px;
  font-size:15px;
  transition:all .5s;
  -moz-transition:all .5s;
  -webkit-transition:all .5s;
  }
  
  .panel-group .panel-heading {
  transition:all .35s;
  -moz-transition:all .35s;
  -webkit-transition:all .35s;
  padding:12px 15px;
  border-bottom:1px solid transparent;
  background-color:#FFF;
  }
  
  .panel-group .panel {
  border-radius:0;
  }
  
  .panel {
  border:1px solid transparent;
  box-shadow:none;
  border-bottom:none;
  }
  
  .panel-group .panel:first-child {
  border-top-right-radius:4px;
  border-top-left-radius:4px;
  }
  
  .panel-group .panel:last-child {
  border-bottom:1px solid #EEE;
  border-bottom-right-radius:4px;
  border-bottom-left-radius:4px;
  }
  
  .panel-group .panel + .panel {
  margin-top:0;
  }
  
  .panel-body {
  border-top:1px solid #EEE;
  padding:25px;
  }
  
  .panel-default {
  border-color:#EEE;
  }
  .panel-heading:hover {
  background-color:#FFF;
  }
  
  #accordion .panel a.selected .panel-heading {
  background-color:#39adff;
  border-radius:0;
  }
  
  #accordion .panel a.selected .panel-title {
  color:#FFF;
  }
  
  #accordion .panel a.selected .panel-title:after {
  content:"\f078";
  transition:all .5s;
  -moz-transition:all .5s;
  -webkit-transition:all .5s;
  }
  .panel-title:after {
    content:"\f054";
    display:inline-block;
    font-family:FontAwesome;
    font-style:normal;
    font-weight:normal;
    line-height:1;
    -webkit-font-smoothing:antialiased;
    -moz-osx-font-smoothing:grayscale;
    position:absolute;
    right:6px;
    top:50%;
    margin-top:-2px;
    font-size:15px;
    transition:all .5s;
    -moz-transition:all .5s;
    -webkit-transition:all .5s;
    }
/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .contact-info {
  margin-bottom: 20px;
  text-align: center;
}

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

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

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

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

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

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

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br+br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  animation: animate-loading 1s linear infinite;
}

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

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
  border-color: #2ecc71;
}

.contact .php-email-form button[type=submit] {
  background: #2ecc71;
  border: 0;
  padding: 10px 30px 12px 30px;
  color: #fff;
  transition: 0.4s;
  border-radius: 4px;
}

.contact .php-email-form button[type=submit]:hover {
  background: #6ab82a;
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@media (min-width: 768px) {
  .contact .contact-phone {
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
  }

  .contact .contact-address,
  .contact .contact-phone,
  .contact .contact-email {
    padding: 20px 0;
  }
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background: #f6f6f6;
  min-height: 40px;
  margin-top: 80px;
}

.breadcrumbs h2 {
  font-size: 28px;
  font-weight: 400;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}

.breadcrumbs ol li+li {
  padding-left: 10px;
}

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #444444;
  content: "/";
}

@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }

  .breadcrumbs ol {
    display: block;
  }

  .breadcrumbs ol li {
    display: inline-block;
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #111111;
  padding: 0 0 30px 0;
  color: #fff;
  font-size: 14px;
}

#footer .footer-top {
  background: #1d1d1d;
  border-bottom: 1px solid #2f2f2f;
  padding: 60px 0 30px 0;
}

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

#footer .footer-top .footer-info h3 {
  font-size: 24px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
}

#footer .footer-top .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Roboto", sans-serif;
  color: #fff;
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #2a2a2a;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
  background: #2ecc71;
  color: #fff;
  text-decoration: none;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  position: relative;
  padding-bottom: 12px;
}

#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: 2px;
  color: #8ed851;
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

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

#footer .footer-top .footer-links ul a {
  color: #fff;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  color: #81d33d;
}

#footer .footer-top .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 4px;
}

#footer .footer-top .footer-newsletter form input[type=email] {
  border: 0;
  padding: 4px;
  width: calc(100% - 110px);
}

#footer .footer-top .footer-newsletter form input[type=submit] {
  position: absolute;
  top: 0;
  right: -2px;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: #2ecc71;
  color: #fff;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
}

#footer .footer-top .footer-newsletter form input[type=submit]:hover {
  background: #6ab82a;
}

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

#footer .credits {
  padding-top: 10px;
  text-align: center;
  font-size: 13px;
  color: #fff;
}

#gallery button {
  margin-right: 1px;
  margin-left: 1px;
  }
  #gallery .col-sm-3 .img-thumb {
  height: 200px;
  }
  #gallery h4 {
  font-weight: 400;
  color: #39adff;
  }
  .gallery-img-wrapper {
  position: relative;
  }
  .gallery-hover {
  position: absolute;
  text-align: center;
  width: 100%;
  height: 100%;
  color: #FFF;
  background-color:rgba(0,0,0,0.5);
  border: 3px solid #39adff;
  opacity: 0;
      -webkit-transition: all 0.45s;
    -moz-transition: all 0.45s;
    -o-transition: all 0.45s;
    transition: all 0.45s;
    z-index: 10;
    border-radius:4px;
  }
  .gallery-hover i {
  position: relative;
  font-size: 12px;
  top: 1px;
  }
  .gallery-hover-buttons {
  position: absolute;
  top: 50%;
  width: 100%;
  margin-top: -12px;
  color: #FFF;
      -webkit-transition: all 0.25s;
    -moz-transition: all 0.25s;
    -o-transition: all 0.25s;
    transition: all 0.25s;
  }
  .gallery-hover-buttons a{
  font-family: 'Roboto Slab', sans-serif;
  border: 1px solid #FFF;
  border-radius: 4px;
  padding: 8px 18px;
  margin: 0 1px;
  color: #FFF;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
      -webkit-transition: all 0.25s;
    -moz-transition: all 0.25s;
    -o-transition: all 0.25s;
    transition: all 0.25s;
  }
  .gallery-hover-buttons a:last-child {
  padding: 8px 10px;
  }
  .gallery-hover-buttons a:hover {
  background-color:#FFF;
  color: #39adff;
  border: 1px solid #FFF;
  }
  .gallery-hover:hover {
  opacity: 1;
  }
  .gallery-text {
  padding: 0 0 25px;
  }

  
/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  box-sizing: content-box;
  min-height: 320px;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50%;
  margin: -40px 0 0 40px;
  position: relative;
  z-index: 2;
  border: 6px solid #fff;
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 45px;
  color: #111;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #999;
  margin: 0 0 0 45px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: #b2e4e6;
  font-size: 26px;
}

.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: relative;
  top: 10px;
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 15px 0 15px;
  padding: 20px 20px 60px 20px;
  background: #f0fafa;
  position: relative;
  border-radius: 6px;
  position: relative;
  z-index: 1;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #2ecc71;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #2ecc71;
}
/*--------------------------------------------------------------
# Gallery
--------------------------------------------------------------*/
.gallery {
  overflow: hidden;
}

.gallery .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.gallery .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #2ecc71;
}

.gallery .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #2ecc71;
}

.gallery .swiper-slide-active {
  text-align: center;
}

@media (min-width: 992px) {
  .gallery .swiper-wrapper {
    padding: 40px 0;
  }

  .gallery .swiper-slide-active {
    border: 6px solid #2ecc71;
    /*padding: 44px;*/
    background: #fff;
    z-index: 1;
    transform: scale(1.2);
    margin-top: 10px;
  }
}

/*--------------------------------------------------------------
# Departments
--------------------------------------------------------------*/
.departments .nav-tabs {
  border: 0;
}

.departments .nav-link {
  border: 0;
  padding: 20px;
  color: #555555;
  border-radius: 0;
  border-left: 5px solid #fff;
  cursor: pointer;
}

.departments .nav-link h4 {
  font-size: 18px;
  font-weight: 600;
  transition: 0.3s;
}

.departments .nav-link p {
  font-size: 14px;
  margin-bottom: 0;
}

.departments .nav-link:hover h4 {
  color: #2ecc71;
}

.departments .nav-link.active {
  background: #f7fcfc;
  border-color: #2ecc71;
}

.departments .nav-link.active h4 {
  color: #2ecc71;
}

.departments .tab-pane.active {
  animation: slide-down 0.5s ease-out;
}

.departments .tab-pane img {
  float: left;
  max-width: 300px;
  padding: 0 15px 15px 0;
}

@media (max-width: 768px) {
  .departments .tab-pane img {
    float: none;
    padding: 0 0 15px 0;
    max-width: 100%;
  }
  .modal-title {
    font-weight: 600;
    font-family: 'Playfair Display', serif;
    margin-left: 9rem !important;
  }
}

.departments .tab-pane h3 {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #2ecc71;
}

.departments .tab-pane p {
  color: #777777;
}

.departments .tab-pane p:last-child {
  margin-bottom: 0;
}

@keyframes slide-down {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info-box {
  color: #444444;
  text-align: center;
  box-shadow: 0 0 20px rgba(214, 215, 216, 0.5);
  padding: 20px 0 30px 0;
}

.contact .info-box i {
  font-size: 32px;
  color: #2ecc71;
  border-radius: 50%;
  padding: 8px;
  border: 2px dotted #2ecc71;
}

.contact .info-box h3 {
  font-size: 20px;
  color: #777777;
  font-weight: 700;
  margin: 10px 0;
}

.contact .info-box p {
  padding: 0;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.contact .php-email-form {
  box-shadow: 0 0 20px rgba(214, 215, 216, 0.5);
  padding: 30px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br+br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 4px;
  box-shadow: none;
  font-size: 14px;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
  border-color: #3fbbc0;
}

.contact .php-email-form input {
  padding: 10px 15px;
}

.contact .php-email-form textarea {
  padding: 12px 15px;
}

.contact .php-email-form button[type=submit] {
  background: #2ecc71;
  border: 0;
  padding: 10px 30px;
  color: #fff;
  transition: 0.4s;
  border-radius: 4px;
}
.contact .php-email-form {
  box-shadow: 0 0 20px rgba(214, 215, 216, 0.5);
  padding: 30px;
}
.contact .php-email-form button[type=submit]:hover {
  background: #65c9cd;
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}
.enquiry_frm input{
  margin-bottom: 10px;
}
.pop_up_btn {
    background: var(--brown-color);
    color: #000;
    padding: 8px 16px;
    font-size: 16px;
    border: 2px solid #000;
    border-radius: 4px;
    margin-top: 14px;
}
.modal-title {
  font-weight: 600;
  font-family: 'Playfair Display', serif;
  margin-left: 7rem !important;
}
.mobile_enquiry{
  display: none;
}

/* === ACCORDIAN === */
.panel-title {
  font-size:13px;
  position:relative;
  vertical-align: middle;
  top: -2px;
  font-weight: 400;
  }
  .panel-title i {
  position:relative;
  margin-right:15px;
  font-size:24px;
  top:3px;
  }
  .panel-title a {
  color:#777;
  }
  .panel-title a:hover {
  color:#777;
  }
  
  .panel-title:after {
  content:"\f054";
  display:inline-block;
  font-family:FontAwesome;
  font-style:normal;
  font-weight:normal;
  line-height:1;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  position:absolute;
  right:6px;
  top:50%;
  margin-top:-2px;
  font-size:15px;
  transition:all .5s;
  -moz-transition:all .5s;
  -webkit-transition:all .5s;
  }
  
  .panel-group .panel-heading {
  transition:all .35s;
  -moz-transition:all .35s;
  -webkit-transition:all .35s;
  padding:12px 15px;
  border-bottom:1px solid transparent;
  background-color:#FFF;
  }
  
  .panel-group .panel {
  border-radius:0;
  }
  
  .panel {
  border:1px solid transparent;
  box-shadow:none;
  border-bottom:none;
  }
  
  .panel-group .panel:first-child {
  border-top-right-radius:4px;
  border-top-left-radius:4px;
  }
  
  .panel-group .panel:last-child {
  border-bottom:1px solid #EEE;
  border-bottom-right-radius:4px;
  border-bottom-left-radius:4px;
  }
  
  .panel-group .panel + .panel {
  margin-top:0;
  }
  
  .panel-body {
  border-top:1px solid #EEE;
  padding:25px;
  }
  
  .panel-default {
  border-color:#EEE;
  }
  .panel-heading:hover {
  background-color:#FFF;
  }
  
  #accordion .panel a.selected .panel-heading {
  background-color:#39adff;
  border-radius:0;
  }
  
  #accordion .panel a.selected .panel-title {
  color:#FFF;
  }
  
  #accordion .panel a.selected .panel-title:after {
  content:"\f078";
  transition:all .5s;
  -moz-transition:all .5s;
  -webkit-transition:all .5s;
  }
  .footer {
    background-color: #F5F5F5;
    padding-top: 25px;
    padding-bottom: 15px;
}
.footer .social-icons i {
    border-radius: 4px;
    font-size: 16px;
    margin-right: 4px;
    padding: 6px;
    text-align: center;
    color: #777;
    border: none;
    cursor: pointer;
    position: relative;
    top: -5px;
    z-index: 1;
    background-color: none;
    border: 1px solid #777;
}
section {
position: relative;
}
.bg-img {
position: absolute;
z-index: -1;
top: 0;
left: 0;
width: 100%;
height: 100%;
width: 100%;
height: 100%;
background-repeat: repeat;
background-position: center center;
}
.fullwidth-section {
position: relative;
padding-top:100px;
padding-bottom:100px;
}
.fullwidth-section.half-padding {
position: relative;
padding-top:50px;
padding-bottom:50px;
}
.parallax {
position: absolute;
background-attachment: fixed;
background-position: top center;
z-index: -1;
top: 0;
left: 0;
width: 100%;
height: 100%;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

/* Page Loading */
#pageloader {
width:100%;
height:100%;
position:fixed;
background-color:#FFF;
z-index:999999;
}

.loader-img {
position:absolute;
width:auto;
height:height;
margin:-27px 0 0 -27px;
top:50%;
margin-top: -40px;
left:50%;
margin-left: -40px;
text-align:center;
}
/* =================================  */
/* ========== 3. HELPER CLASSES ==========  */
/* =================================  */
.color-primary {
color: #39adff !important;
}
.bg-primary {
color: #fff;
background-color: #39adff !important;
}
.border-primary {
border-color: #39adff !important;
}
.color-white {
color:#FFF !important;
}
.bg-white {
background-color:#FFF !important;
}
.border-white {
border-color: #FFF !important;
}
.color-dark {
color:#333!important;
}
.bg-dark {
background-color:#333!important;
}
.bg-transparent {
background-color: transparent !important;
}
.weight-300 {
font-weight: 300;
}
.weight-400 {
font-weight: 400;
}
.weight-500 {
font-weight: 500;
}
.weight-600 {
font-weight: 600;
}
.weight-700 {
font-weight: 700;
}
.weight-800 {
font-weight: 800;
}
.weight-900 {
font-weight: 900 !important;
}
.uppercase {
text-transform: uppercase;
}
.kill-top-margin {
margin-top: 10px!important;
}
.kill-bottom-margin {
margin-bottom: 0 !important;
}
.kill-top-padding {
padding-top: 0 !important;
}
.kill-bottom-padding {
padding-bottom: 0 !important;
}
.img-center {
margin: 0 auto;
}
.rounded {
border-radius: 1000px !important;
}
/* =================================  */
/* ========== 4. HEADING STYLES ==========  */
/* =================================  */
h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  font-family: 'Roboto Slab', sans-serif;
  font-weight: 700;
  color: #555;
  line-height: 1.4;
  position: relative;
  z-index: 1;
}

h1,
h2,
h3 {
  margin-top: 30px;
  margin-bottom: 30px;
}
h4,
h5,
h6 {
  margin-top: 15px;
  margin-bottom: 10px;
}
h1,
.h1 {
  font-size: 36px;
  margin-top: 40px;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #39adff;
}
h2,
.h2 {
  font-size: 30px;
}
h3,
.h3 {
  font-size: 24px;
}
h4,
.h4 {
  font-size: 18px;
}
h5,
.h5 {
  font-size: 14px;
}
h6,
.h6 {
  font-size: 12px;
}

/* =================================  */
/* ============ 5. IMAGE STYLES ==========  */
/* =================================  */
img {
max-width: 100%;
border-radius: 4px;
}
.img-thumb {
position:relative;
width:100%;
overflow:hidden;
background-repeat:no-repeat;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
background-position:center center;
border-radius:4px;
}
.img-float-left {
position: relative;
float: left;
border-radius: 1px;
margin: 20px 20px 20px 0;
padding: 0;
max-width: 100%;
}
.img-float-right {
position: relative;
float: right;
border-radius: 1px;
margin: 20px 0 20px 20px;
padding: 0;
max-width: 100%;
}
.img-outline {
padding: 4px;
border: 1px solid #39adff;
background-color: #FFF;
}
		.img-hover {
	position: absolute;
	border-radius: 4px;
	background-color:rgba(0,0,0,0);
	width: 100%;
	height: 100%;
	    -webkit-transition: all 0.35s;
  -moz-transition: all 0.35s;
  -o-transition: all 0.35s;
  transition: all 0.35s;
	}
	.img-hover:hover {
	background-color:rgba(0,0,0,0.5);
	}
	.img-hover i {
	position: absolute;
	font-size: 12px;
	color: #FFF;
	top: 50%;
	right: 50%;
	margin-right: -18px;
	margin-top: -18px;
	padding: 10px;
	border-radius: 4px;
	border: 1px solid #FFF;
opacity: 0;
z-index: -1;
	    -webkit-transition: all 0.55s;
  -moz-transition: all 0.55s;
  -o-transition: all 0.55s;
  transition: all 0.55s;
}
	.img-hover:hover i {
	opacity: 1;
		z-index: 1;
	}
.img-hover i:hover {
color: #39adff;
background-color: #FFF;
}
/* =================================  */
/* ========== 6. BLOG STYLES ==========  */
/* =================================  */
.blog-img-wrapper .img-thumb {
height: 250px;
}
.blog-img-wrapper {
position: relative;
border-radius: 4px;
}
.blog-hover {
position: absolute;
text-align: center;
width: 100%;
height: 100%;
color: #FFF;
background-color:rgba(0,0,0,0.5);
border: 3px solid #39adff;
opacity: 0;
    -webkit-transition: all 0.45s;
  -moz-transition: all 0.45s;
  -o-transition: all 0.45s;
  transition: all 0.45s;
  z-index: 10;
  border-radius:4px;
}
.blog-hover i {
position: relative;
font-size: 12px;
top: 1px;
}
.blog-hover-buttons {
position: absolute;
top: 50%;
width: 100%;
margin-top: -12px;
color: #FFF;
    -webkit-transition: all 0.25s;
  -moz-transition: all 0.25s;
  -o-transition: all 0.25s;
  transition: all 0.25s;
}
.blog-hover-buttons a{
font-family: 'Roboto Slab', sans-serif;
border: 1px solid #FFF;
border-radius: 4px;
padding: 8px 10px;
margin: 0 1px;
color: #FFF;
font-weight: 700;
font-size: 11px;
letter-spacing: 1px;
text-transform: uppercase;
    -webkit-transition: all 0.25s;
  -moz-transition: all 0.25s;
  -o-transition: all 0.25s;
  transition: all 0.25s;
}
.blog-hover-buttons a:hover {
background-color:#FFF;
color: #39adff;
border: 1px solid #FFF;
}
.blog-hover:hover {
opacity: 1;
}
.blog-text { 
position: relative;
margin-bottom: 30px;
}
#blog h6 {
font-weight: 400;
}

#blog-posts h2 a, #blog-posts h2 a:visited, #blog-posts-masonry h4 a, #blog-posts-masonry h4 a:visited, #blog h4 a, #blog h4 a:visited {
color: #39adff;
}
#blog-posts h2 a:hover, #blog-posts h2 a:active, #blog-posts-masonry h4 a:hover, #blog-posts-masonry h4 a:active, #blog h4 a:hover, #blog h4 a:active  {
color: #555;
}
#blog-posts hr {
margin-bottom: 40px;
}
#blog-posts .blog-img-wrapper .img-thumb {
height: 450px;
}
/* Comments Section */
#comments h4 {
text-transform: uppercase;
font-weight: 700;
margin-top: 30px;
margin-bottom: 30px;
}
#comments h5 {
margin-top: 0;
}
#comments ul {
list-style: none;
margin: 0;
padding: 0;
}
#comments li {
margin-top: 0px;
}
#comments ul ul {
list-style: none;
margin-left: 80px;
padding: 0;
}
#comments .avatar {
float: left;
border-radius: 4px;
padding: 4px;
border: 1px solid #39adff;
width: 80px;
height: 80px;
margin-right: 20px;
}
#comments .comment {
margin-left: 0px;
margin-right: 20px;
padding-top: 30px;
padding-bottom: 30px;
border-bottom: 1px solid #EEE;
}
#comments .author {
display: inline-block;
}
#comments .date {
display: inline-block;
float: right;
color: #555;
}
#reply h4 {
text-transform: uppercase;
font-weight: 700;
margin-top: 30px;
margin-bottom: 30px;
}
/* ====================================== */
/* ======= 7. SIDEBAR STYLES AND WIDGETS ======= */
/* ====================================== */
#sidebar .input-group input {
background-color:rgba(0,0,0,0);
color:#777;
border:2px solid #EEE;
padding:8px;
height:auto;
font-size:13px;
box-shadow:none;
}

#sidebar .input-group .input-group-btn .btn {
margin-left:0;
padding:11px 12px 10px;
}
#sidebar h4 {
margin-top: 40px;
margin-bottom: 20px;
text-transform: uppercase;
font-weight: 700;
}
#sidebar div:first-child h4 {
margin-top: 0;
}
#sidebar ul {
list-style: none;
margin: 0;
padding: 0;
}
#sidebar li:before {
  font-family: 'FontAwesome';
    content: "\f101";
	margin-right: 6px;
	color: #555;
}
#sidebar li {
margin: 0;
padding: 5px 0;
border-bottom: 1px solid #EEE;
}

#sidebar .tagcloud a {
  font-family: 'Roboto Slab', sans-serif;
padding: 0px 0px 8px 0px;
border-radius: 2px;
margin-bottom: 2px;
display: inline-block;
line-height: 1;
transition:all .5s,;
-moz-transition:all .5s;
/* Firefox 4 */
-webkit-transition:all .5s;
}
#sidebar .widget_calendar #wp-calendar {
  font-family: 'Roboto Slab', sans-serif;
width: 100%;
}
#sidebar .widget_calendar #wp-calendar caption {
width: 100%;
font-weight: 700;
color: #FFF;
background-color: #39adff;
font-size: 16px;
padding: 10px 5px;
border-top-left-radius: 1px;
border-top-right-radius: 1px;
}
#sidebar .widget_calendar #wp-calendar th {
color: #FFF;
background-color: #39adff;
border-right: 1px solid #39adff;
border-left: 1px solid #39adff;
border-top: 1px solid #39adff;
text-align: center;
font-size: 12px;
}
#sidebar .widget_calendar #wp-calendar td {
color: #555;
text-align: center;
padding: 4px;
background-color: #F5F5F5;
}
#sidebar .widget_calendar #wp-calendar tbody {
border-right: 1px solid #EEE;
border-left: 1px solid #EEE;
border-bottom: 1px solid #EEE;
padding-top: 5px;
}
#sidebar .widget_calendar #wp-calendar #prev a {
float: left;
padding: 5px;
padding-top: 0;
color: #FFF;
}
#sidebar .widget_calendar #wp-calendar #next a {
float: right;
padding: 5px;
padding-top: 0;
color: #FFF;
}
#sidebar .widget_calendar #wp-calendar #prev a:hover, #sidebar .widget_calendar #wp-calendar #next a:hover {
color: #39adff;
}
/* ====================================== */
/* ========== 8. SCROLL TO TOP BUTTON ========== */
/* ====================================== */

.scrollup i {
position: fixed;
border-radius: 4px;
bottom: 20px;
right: 20px;
padding: 8px 11px;
line-height: 1;
font-size: 20px;
text-align: center;
color: #FFF;
cursor: pointer;
background-color: rgba(0,0,0,0.5);
    -webkit-transition: all 0.35s;
  -moz-transition: all 0.35s;
  -o-transition: all 0.35s;
  transition: all 0.35s;
  z-index: 10;
}
.scrollup i:hover {
background-color: #39adff;
}

/* ================================= */
/* ========== 9. IMAGE OVERLAYS ========== */
/* ================================= */
/* Add the class to the background element you wish to have the overlay over */
	.img-overlay1:after{
		background: url(../img/pat1.png) repeat;
		content:'';
		width: 100%;
		height: 100%;
		top:0;
		left:0;
		position: absolute;
		opacity: 0.5;
	}
		.img-overlay2:after{
		background: url(../img/pat2.png) repeat;
		content:'';
		width: 100%;
		height: 100%;
		top:0;
		left:0;
		position: absolute;
		opacity: 0.5;
	}
	.img-overlay3:after{
		background: url(../img/pat3.png) repeat;
		content:'';
		width: 100%;
		height: 100%;
		top:0;
		left:0;
		position: absolute;
		opacity: 0.5;
	}
		.img-overlay4:after{
		background: url(../img/pat4.png) repeat;
		content:'';
		width: 100%;
		height: 100%;
		top:0;
		left:0;
		position: absolute;
		opacity: 0.5;
	}
	.transparent{
		background:transparent !important;
	}
.img-overlay-solid {
position: absolute;
width: 100%;
height: 100%;
	top: 0;
	left: 0;
}

/* ===============================================  */
/* ========== 10. ICON FEATURE BOXES STYLES ==========  */
/* ===============================================  */

/* === Vertical 3 Column === */
.icon-feature-vertical {
text-align: center;
margin-top: 20px;
margin-bottom: 30px;
}

.icon-feature-vertical  i {
font-size:50px;
}



/* === Horizontal Icons Large === */
.icon-feature-horizontal {
display:table;
margin-top: 20px;
margin-bottom: 20px;
}

.icon-feature-horizontal .icon {
display:table-cell;
padding-top:15px;
}

.icon-feature-horizontal .icon i {
font-size:30px;
border: 1px solid;
padding: 12px;
border-radius: 4px;
}

.icon-feature-horizontal .content {
display:table-cell;
vertical-align:top;
text-align:left;
padding-left:20px;
}
/* === Horizontal Icons Small === */
.icon-feature-horizontal-sm {
display:table;
/* margin-top: ; */
margin-bottom: 20px;
}

.icon-feature-horizontal-sm .icon {
display:table-cell;
padding-top:15px;
}

.icon-feature-horizontal-sm .icon i {
font-size:20px;
border: 1px solid;
padding: 8px;
border-radius: 4px;
}

.icon-feature-horizontal-sm .content {
display:table-cell;
vertical-align:top;
text-align:left;
padding-left:20px;
}
/* ============================================================ */
/* ================= 11. CONTACT PAGE MAP STYLES ======================= */
/* ============================================================ */
.map-wrapper {
margin-top: 20px;
margin-bottom: 20px;
position:relative;
width:100%;
height:400px;
overflow:hidden;
}

#map-canvas {
width:100%;
height:400px;
border:0;
}

#contact form {
position:relative;
z-index:3;
}

#contact .form-group {
color:#FFF;
}

#contact .form-group input, #contact .form-group textarea {
background-color:#F5F5F5;
color:#555;
border:none;
padding:8px 10px;
height:auto;
font-size:13px;
border-radius: 2px;
box-shadow:none;
border: 1px solid #EEE;
}
#contact .form-group textarea {
border-radius: 2px;
}
#contact label {
font-family: 'Roboto Slab', sans-serif;
max-width: 100%;
color: #555;
font-size: 13px;
font-weight: 400;
margin-top: 10px;
}
/* Form Validation */
#error {
	color: #FFF;
	margin-top: 5px;
	font-size:14px;
	display:none;
}
.success-field {
background-color:rgba(71,164,71,0.5) !important;
}
.required-field {
background-color:rgba(245,99,99,0.5) !important;
}

/* ============================================================ */
/* ================= 12. FORM STYLES ======================= */
/* ============================================================ */
form {
position:relative;
z-index:3;
}
.form-wrapper {
background-color:rgba(60,62,71,.8);
padding: 20px 40px;
border-radius: 2px;
}

.form-group {
color:#FFF;
}

.form-group input, .form-group textarea {
border-radius: 2px;
background-color:rgba(0,0,0,0);
color:#777;
border:2px solid #EEE;
padding:8px;
height:auto;
font-size:13px;
  -webkit-box-shadow: none;
box-shadow:none;
}
.form-control:focus {
  border-color: #ccc;
  outline: 0;
  -webkit-box-shadow: none;
   box-shadow:none;
}
.form-group textarea {
border-radius: 2px;
}
label {
font-family: 'Roboto Slab', sans-serif;
max-width: 100%;
color: #555;
font-size: 13px;
font-weight: 400;
margin-top: 10px;
}
/* Form Validation */
#error {
	color: #FFF;
	margin-top: 5px;
	font-size:14px;
	display:none;
}
#reply #error {
color: #777;
}
.success-field {
background-color:rgba(71,164,71,0.5) !important;
}
.required-field {
background-color:rgba(245,99,99,0.5) !important;
}
/* ======================================================== */
/* ================= 13. TEAM MEMBERS ======================= */
/* ======================================================== */
.team-wrapper {
position: relative;
width: 100%;
height: 100%;
margin-top: 20px;
text-align: center;
}


/* TEAM STYLE 2 - SLIDER DISPLAY */
#team-slider .team-wrapper {
padding: 15px;
text-align: center;
}
#team-slider .owl-controls {
position: absolute;
top: -10px;
right: 10px;
width: 100%;
text-align: right;
}

/* TEAM STYLE 3 - TRADITIONAL DISPLAY */
.team-img-wrapper {
position: relative;
width: 100%;
height: 100%;
margin: 0 auto;
padding: 4px;
border-radius: 4px;
border: 1px solid #39adff;
}
.team-img-wrapper-hover {
position: absolute;
text-align: center;
width: 100%;
height: 100%;
margin-left: -4px;
margin-top: -4px;
background-color:rgba(0,0,0,0.5);
opacity: 0;
border-radius: 4px;
    -webkit-transition: all 0.45s;
  -moz-transition: all 0.45s;
  -o-transition: all 0.45s;
  transition: all 0.45s;
  border: 3px solid #39adff;
}
.team-img-wrapper-hover:hover {
opacity: 1;
}
.team-img-wrapper img {
border-radius: 4px;
width: 100%;
/*height: 190px;*/
}
.team-img-wrapper .social-icons {
position: absolute;
top: 50%;
margin-top: -9px;
width: 100%;
}
.team-img-wrapper .social-icons i {
color: #FFF;
border-color: #FFF;
}
/* ============================================================ */
/* ================= 14. SOCIAL ICON STYLES ======================= */
/* ============================================================ */
.social-icons i {
border-radius:4px;
font-size:16px;
margin-right: 4px;
padding: 6px;
text-align: center;
color: #555;
border: none;
cursor: pointer;
position: relative;
z-index: 1;
background-color: none;
border: 1px solid #555;
}
.social-icons i:hover {
border: 1px solid #39adff;
color: #39adff;
}

/* ============================================================ */
/* ================= 15. COUNTER STYLES ======================= */
/* ============================================================ */
.counter {
font-size: 60px;
line-height: 1;
font-weight: 300;
}
.counter-section i {
border-radius:500px;
font-size:56px;
width: 120px;
height: 120px;
line-height: 120px;
margin-top:0;
margin-bottom:20px;
text-align: center;
color: #FFF;
border: 1px solid #FFF;
}
/* ============================================================ */
/* ================= 16. ACCORDION AND TABS ======================= */
/* ============================================================ */
/* === ACCORDIAN === */
.panel-title {
font-size:13px;
position:relative;
vertical-align: middle;
top: -2px;
font-weight: 400;
}
.panel-title i {
position:relative;
margin-right:15px;
font-size:24px;
top:3px;
}
.panel-title a {
color:#777;
}
.panel-title a:hover {
color:#777;
}

.panel-title:after {
content:"\f054";
display:inline-block;
font-family:FontAwesome;
font-style:normal;
font-weight:normal;
line-height:1;
-webkit-font-smoothing:antialiased;
-moz-osx-font-smoothing:grayscale;
position:absolute;
right:6px;
top:50%;
margin-top:-2px;
font-size:15px;
transition:all .5s;
-moz-transition:all .5s;
-webkit-transition:all .5s;
}

.panel-group .panel-heading {
transition:all .35s;
-moz-transition:all .35s;
-webkit-transition:all .35s;
padding:12px 15px;
border-bottom:1px solid transparent;
background-color:#FFF;
}

.panel-group .panel {
border-radius:0;
}

.panel {
border:1px solid transparent;
box-shadow:none;
border-bottom:none;
}

.panel-group .panel:first-child {
border-top-right-radius:4px;
border-top-left-radius:4px;
}

.panel-group .panel:last-child {
border-bottom:1px solid #EEE;
border-bottom-right-radius:4px;
border-bottom-left-radius:4px;
}

.panel-group .panel + .panel {
margin-top:0;
}

.panel-body {
border-top:1px solid #EEE;
padding:25px;
}

.panel-default {
border-color:#EEE;
}
.panel-heading:hover {
background-color:#FFF;
}

#accordion .panel a.selected .panel-heading {
background-color:#39adff;
border-radius:0;
}

#accordion .panel a.selected .panel-title {
color:#FFF;
}

#accordion .panel a.selected .panel-title:after {
content:"\f078";
transition:all .5s;
-moz-transition:all .5s;
-webkit-transition:all .5s;
}
/* === TABS === */
.nav-tabs {
border-bottom:1px solid #EEE;

}
.nav-tabs h5 {
margin: 0;
font-size: 13px;
font-weight: 400;
}
.nav-tabs > li.active > a,.nav-tabs > li.active > a:hover,.nav-tabs > li.active > a:focus {
color:#39adff;
}

.nav-tabs > li > a {
font-size:13px;
font-weight: 400;
margin-right:2px;
color:#777;
line-height:1.42857;
border-radius:3px 3px 0 0;
background-color:#FFF;
border:0;
}

.nav-tabs > li.active > a {
background-color:#FFF;
border-top:1px solid #39adff;
}

.nav-tabs i {
margin-right:4px;
}

.tab-pane {
padding:15px 25px;
border-width:1px;
border-style:solid;
border-color:transparent #EEE #EEE;
border-bottom-right-radius:4px;
border-bottom-left-radius:4px;
background-color: #FFF;
}

.nav-tabs > li > a:hover {
border-color:#EEE;
}

.nav-tabs > li.active > a,.nav-tabs > li.active > a:hover,.nav-tabs > li.active > a:focus {
border:1px solid #EEE;
border-bottom-color:transparent;
background-color:#FFF;
}

.nav-tabs#tabs > li > a {
background-color:#FFF;
border: 1px solid #EEE;
border-bottom: 1px solid EEE;
}

.nav-tabs#tabs > li.active > a {
background-color:#FFF;
border-top:1px solid #39adff;
border-bottom: 1px solid #FFF;
border-top-right-radius: 4px;
border-top-left-radius: 4px;
}

.nav#tabs > li {
position:relative;
display:block;
}

/* ============================================================ */
/* ================= 17. Core Owl Carousel CSS File v1.3.2 ============== */
/* ============================================================ */
/* clearfix */
.owl-carousel .owl-wrapper:after {
	content: ".";
	display: block;
	clear: both;
	visibility: hidden;
	line-height: 0;
	height: 0;
}
/* display none until init */
.owl-carousel{
	display: none;
	position: relative;
	width: 100%;
	-ms-touch-action: pan-y;
}
.owl-carousel .owl-wrapper{
	display: none;
	position: relative;
	-webkit-transform: translate3d(0px, 0px, 0px);
}
.owl-carousel .owl-wrapper-outer{
	overflow: hidden;
	position: relative;
	width: 100%;
}
.owl-carousel .owl-wrapper-outer.autoHeight{
	-webkit-transition: height 500ms ease-in-out;
	-moz-transition: height 500ms ease-in-out;
	-ms-transition: height 500ms ease-in-out;
	-o-transition: height 500ms ease-in-out;
	transition: height 500ms ease-in-out;
}
	
.owl-carousel .owl-item{
	float: left;
}
.owl-controls .owl-page,
.owl-controls .owl-buttons div{
	cursor: pointer;
}
.owl-controls {
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

/* mouse grab icon */
.grabbing { 
    cursor:url(grabbing.png) 8 8, move;
}

/* fix */
.owl-carousel  .owl-wrapper,
.owl-carousel  .owl-item{
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility:    hidden;
	-ms-backface-visibility:     hidden;
  -webkit-transform: translate3d(0,0,0);
  -moz-transform: translate3d(0,0,0);
  -ms-transform: translate3d(0,0,0);
}

.owl-theme .owl-controls{
	margin-top: 10px;
	text-align: center;
}

/* Styling Next and Prev buttons */

.owl-theme .owl-controls .owl-buttons div{
	color: #FFF;
	display: inline-block;
	zoom: 1;
	*display: inline;/*IE7 life-saver */
	margin: 5px;
	padding: 3px 10px;
	font-size: 12px;
	-webkit-border-radius: 30px;
	-moz-border-radius: 30px;
	border-radius: 30px;
	background: #000;
	filter: Alpha(Opacity=50);/*IE7 fix*/
	opacity: 0.5;
}
.owl-prev, .owl-next {
font-family: "Roboto Slab";
font-size: 12px;
font-weight: 800;
}
/* Clickable class fix problem with hover on touch devices */
/* Use it for non-touch hover action */
.owl-theme .owl-controls.clickable .owl-buttons div:hover{
	filter: Alpha(Opacity=100);/*IE7 fix*/
	opacity: 1;
	text-decoration: none;
}

/* Styling Pagination*/

.owl-theme .owl-controls .owl-page{
	display: inline-block;
	zoom: 1;
	*display: inline;/*IE7 life-saver */
}
.owl-theme .owl-controls .owl-page span{
	display: block;
	width: 15px;
	height: 15px;
	margin: 5px 4px;
	filter: Alpha(Opacity=50);/*IE7 fix*/
	opacity: 0.5;
	border: 1px solid #39adff;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
}

.owl-theme .owl-controls .owl-page.active span,
.owl-theme .owl-controls.clickable .owl-page:hover span{
	filter: Alpha(Opacity=100);/*IE7 fix*/
	opacity: 1;
	background-color: #39adff;
}

/* If PaginationNumbers is true */

.owl-theme .owl-controls .owl-page span.owl-numbers{
	height: auto;
	width: auto;
	color: #FFF;
	padding: 2px 10px;
	font-size: 12px;
	-webkit-border-radius: 30px;
	-moz-border-radius: 30px;
	border-radius: 30px;
}

/* preloading images */
.owl-item.loading{
	min-height: 150px;
	background: url(AjaxLoader.gif) no-repeat center center
}
/* ============================================================ */
/* ================= 18. PORTFOLIO STYLES ======================= */
/* ============================================================ */

#portfolio button {
margin-right: 1px;
margin-left: 1px;
}
#portfolio .col-sm-3 .img-thumb {
height: 200px;
}
#portfolio h4 {
font-weight: 400;
color: #39adff;
}
.portfolio-img-wrapper {
position: relative;
}
.portfolio-hover {
position: absolute;
text-align: center;
width: 100%;
height: 100%;
color: #FFF;
background-color:rgba(0,0,0,0.5);
border: 3px solid #39adff;
opacity: 0;
    -webkit-transition: all 0.45s;
  -moz-transition: all 0.45s;
  -o-transition: all 0.45s;
  transition: all 0.45s;
  z-index: 10;
  border-radius:4px;
}
.portfolio-hover i {
position: relative;
font-size: 12px;
top: 1px;
}
.portfolio-hover-buttons {
position: absolute;
top: 50%;
width: 100%;
margin-top: -12px;
color: #FFF;
    -webkit-transition: all 0.25s;
  -moz-transition: all 0.25s;
  -o-transition: all 0.25s;
  transition: all 0.25s;
}
.portfolio-hover-buttons a{
font-family: 'Roboto Slab', sans-serif;
border: 1px solid #FFF;
border-radius: 4px;
padding: 8px 18px;
margin: 0 1px;
color: #FFF;
font-weight: 700;
font-size: 11px;
letter-spacing: 1px;
text-transform: uppercase;
    -webkit-transition: all 0.25s;
  -moz-transition: all 0.25s;
  -o-transition: all 0.25s;
  transition: all 0.25s;
}
.portfolio-hover-buttons a:last-child {
padding: 8px 10px;
}
.portfolio-hover-buttons a:hover {
background-color:#FFF;
color: #39adff;
border: 1px solid #FFF;
}
.portfolio-hover:hover {
opacity: 1;
}
.portfolio-text {
padding: 0 0 25px;
}
/* ============================================================ */
/* ================= 18. gallery STYLES ======================= */
/* ============================================================ */

#gallery button {
margin-right: 1px;
margin-left: 1px;
}
#gallery .col-sm-3 .img-thumb {
height: 200px;
}
#gallery h4 {
font-weight: 400;
color: #39adff;
}
.gallery-img-wrapper {
position: relative;
}
.gallery-hover {
position: absolute;
text-align: center;
width: 100%;
height: 100%;
color: #FFF;
background-color:rgba(0,0,0,0.5);
border: 3px solid #39adff;
opacity: 0;
    -webkit-transition: all 0.45s;
  -moz-transition: all 0.45s;
  -o-transition: all 0.45s;
  transition: all 0.45s;
  z-index: 10;
  border-radius:4px;
}
.gallery-hover i {
position: relative;
font-size: 12px;
top: 1px;
}
.gallery-hover-buttons {
position: absolute;
top: 50%;
width: 100%;
margin-top: -12px;
color: #FFF;
    -webkit-transition: all 0.25s;
  -moz-transition: all 0.25s;
  -o-transition: all 0.25s;
  transition: all 0.25s;
}
.gallery-hover-buttons a{
font-family: 'Roboto Slab', sans-serif;
border: 1px solid #FFF;
border-radius: 4px;
padding: 8px 18px;
margin: 0 1px;
color: #FFF;
font-weight: 700;
font-size: 11px;
letter-spacing: 1px;
text-transform: uppercase;
    -webkit-transition: all 0.25s;
  -moz-transition: all 0.25s;
  -o-transition: all 0.25s;
  transition: all 0.25s;
}
.gallery-hover-buttons a:last-child {
padding: 8px 10px;
}
.gallery-hover-buttons a:hover {
background-color:#FFF;
color: #39adff;
border: 1px solid #FFF;
}
.gallery-hover:hover {
opacity: 1;
}
.gallery-text {
padding: 0 0 25px;
}
/* ============================================= */
/* ========== 19. ISOTOPE FILTERING SCRIPT ========== */
/* ============================================= */
#isotope, #isotope-masonry {
width:100%;
margin-top:0;
}

.isotope-item {
z-index:2;
}

.isotope-hidden.isotope-item {
pointer-events:none;
z-index:1;
}

.isotope,.isotope .isotope-item {
-webkit-transition-duration:1s;
-moz-transition-duration:1s;
-ms-transition-duration:1s;
-o-transition-duration:1s;
transition-duration:1s;
}

.isotope {
-webkit-transition-property:height, width;
-moz-transition-property:height, width;
-ms-transition-property:height, width;
-o-transition-property:height, width;
transition-property:height, width;
}

.isotope .isotope-item {
-webkit-transition-property:0 opacity;
-moz-transition-property:0 opacity;
-ms-transition-property:0 opacity;
-o-transition-property:0 opacity;
transition-property:transform, opacity;
}

#isotope .col-sm-3, #isotope-masonry .col-sm-3, #isotope .col-md-3, #isotope-masonry .col-md-3 {
width:24.9%;
}
#isotope .col-sm-4,#isotope-masonry .col-sm-4, #isotope .col-md-4,#isotope-masonry .col-md-4 {
width:33.3%;
}

@media (max-width: 768px) {
#isotope .col-sm-3, #isotope-masonry .col-sm-3, #isotope .col-md-3, #isotope-masonry .col-md-3 {
width:100%;
}

#isotope .col-sm-4, #isotope-masonry .col-sm-4, #isotope .col-md-4, #isotope-masonry .col-md-4 {
width:100%;
}
}

#isotope-filter {
margin-bottom: 40px;
}
/* ============================================= */
/* ========== 20. TESTIMONIALS SLIDER ========== */
/* ============================================= */
.testimonial-slider p {
font-size: 18px;
font-weight: 400;
margin-top: 40px;
}
.testimonial-slider .carousel-indicators {
position: relative;
top: 20px;
}
.testimonial-slider .carousel-indicators li {
display: inline-block;
width: 15px;
height: 15px;
margin: 2px;
text-indent: -999px;
cursor: pointer;
background-color: rgba(0, 0, 0, 0);
border: 1px solid #39adff;
border-radius: 4px;
}
.testimonial-slider .carousel-indicators li.active {
background-color: #39adff;
}

/* ============================================================ */
/* ================= 21. BREADCRUMBS STYLES ======================= */
/* ============================================================ */
.breadcrumb {
  position: relative;
  top: 40px;
    margin-bottom: 0px;
    list-style: none outside none;
    background-color: transparent;
    border-radius: 0;
	color: #555;
	font-size: 14px;
	font-weight: 400;
}
.breadcrumb > li + li:before {
	font-family: 'FontAwesome';
    padding: 0px 5px;
	content: "\f101";
	color: #555;
}
.breadcrumb > .active {
    color: #555;
}
#bread-crumb {
padding-top: 100px;
padding-bottom: 40px;
}
/* ============================================================ */
/* ================= 22. PAGINATION STYLES ======================= */
/* ============================================================ */
.pagination {
  font-family: 'Roboto Slab', sans-serif;
  font-weight: 500;
}
.pagination > li:first-child > a, .pagination > li:first-child > span {
margin-left: 0;
border-top-left-radius: 4px;
border-bottom-left-radius: 4px;
}
.pagination > li:last-child > a, .pagination > li:last-child > span {
border-top-right-radius: 4px;
border-bottom-right-radius: 4px;
}
.pagination > li > a:hover, .pagination > li > span:hover, .pagination > li > a:focus, .pagination > li > span:focus {
color: #39adff;
background-color: #eee;
border-color: #ddd;
}
.pagination > li > a, .pagination > li > span {
position: relative;
float: left;
padding: 6px 12px;
margin-left: -1px;
line-height: 1.42857143;
color: #555;
text-decoration: none;
background-color: #fff;
border: 1px solid #ddd;
}
.pagination > .active > a, .pagination > .active > span, .pagination > .active > a:hover, .pagination > .active > span:hover, .pagination > .active > a:focus, .pagination > .active > span:focus {
z-index: 2;
color: #fff;
cursor: default;
background-color: #39adff;
border-color: #39adff;
}
/* Pager */
.pager li > a, .pager li > span {
  font-family: 'Roboto Slab', sans-serif;
    display: inline-block;
    padding: 5px 14px;
    background-color: #FFF;
    border: 1px solid #39adff;
	color: #39adff;
    border-radius: 4px;
	  font-weight: 500;
}
.pager li > a:hover, .pager li > span {
    background-color: #39adff;
    border: 1px solid #39adff;
	color: #FFF;
}
/* ============================================================ */
/* ================= 23. PROGRESS BAR STYLES ======================= */
/* ============================================================ */
.progress {
  font-family: 'Roboto Slab', sans-serif;
  font-weight: 500;
  height: 30px;
  margin-bottom: 20px;
  overflow: hidden;
  background-color: #f5f5f5;
  border: 1px solid #EEE;
  border-radius: 3px;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.progress-bar {
  float: left;
  width: 0;
  height: 100%;
  font-size: 12px;
  line-height: 30px;
  color: #fff;
  text-align: center;
  background-color: #39adff;
  -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .15);
          box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .15);
  -webkit-transition: width .6s ease;
          transition: width .6s ease;
}
/* ============================================================ */
/* ================= 24. TABLE STYLES ======================= */
/* ============================================================ */
table {
  max-width: 100%;
  background-color: transparent;
}
th {
  font-family: 'Roboto Slab', sans-serif;
  text-align: left;
}
.table {
  width: 100%;
  margin-bottom: 20px;
}
.table > thead > tr > th,
.table > tbody > tr > th,
.table > tfoot > tr > th,
.table > thead > tr > td,
.table > tbody > tr > td,
.table > tfoot > tr > td {
  padding: 8px;
  line-height: 1.42857143;
  vertical-align: top;
  border-top: 1px solid #EEE;
}
.table > thead > tr > th {
  vertical-align: bottom;
  border-bottom: 2px solid #EEE;
}
.table > caption + thead > tr:first-child > th,
.table > colgroup + thead > tr:first-child > th,
.table > thead:first-child > tr:first-child > th,
.table > caption + thead > tr:first-child > td,
.table > colgroup + thead > tr:first-child > td,
.table > thead:first-child > tr:first-child > td {
  border-top: 0;
}
.table > tbody + tbody {
  border-top: 2px solid #EEE;
}
.table .table {
  background-color: #fff;
}
.table-striped > tbody > tr:nth-child(2n+1) > td, .table-striped > tbody > tr:nth-child(2n+1) > th {
    background-color: #F5F5F5;
}

/* ================================= */
/* ========== 25. FOOTER STYLES ========== */
/* ================================= */
.footer {
background-color: #F5F5F5;
padding-top: 25px;
padding-bottom: 15px;
}
.footer .social-icons i {
border-radius:4px;
font-size:16px;
margin-right: 4px;
padding: 6px;
text-align: center;
color: #777;
border: none;
cursor: pointer;
position: relative;
top: -5px;
z-index: 1;
background-color: none;
border: 1px solid #777;
}
.footer .social-icons i:hover {
border: 1px solid #39adff;
color: #39adff;
}
/* ============================================================ */
/* ================= 26. STYLE SWITCHER STYLES ======================= */
/* ============================================================ */
.style-switch-wrapper {
position: fixed;
top: 100px;
left: -250px;
width: 250px;
height: auto;
background-color:rgba(60,62,71,0.8);
border-bottom-right-radius: 4px;
padding: 20px 20px;
z-index: 1000;
-webkit-transition: all 0.35s;
-moz-transition:  all 0.35s;
-o-transition:  all 0.35s;
transition:  all 0.35s;
}
.style-switch-wrapper.active {
left: 0;
}
.style-switch-button {
position: absolute;
top: 0;
left: 250px;
width: 50px;
height: 50px;
background-color:rgba(60,62,71,0.8);
border-top-right-radius: 4px;
border-bottom-right-radius: 4px;
z-index: 1000;
cursor: pointer;
}
.style-switch-button i {
color: #FFF;
position: relative;
line-height: 1;
top:15px;
left: 15px;
font-size: 20px;
}
.style-switch-wrapper button {
width: 25px;
height: 25px;
border-radius: 25px;
padding: 0;
margin-bottom: 5px;
}
.style-switch-wrapper button:active, .style-switch-wrapper button:focus {
border: 2px solid #FFF;
}
.style-switch-wrapper #default {
background-color: #39adff;
padding: 0;
}
.style-switch-wrapper #metro {
background-color: #F56363;
}
.style-switch-wrapper #midnight {
background-color: #3071a7;
}
.style-switch-wrapper #tangerine {
background-color: #ff8263;
}
.style-switch-wrapper #lime {
background-color: #2ecc71;
}
.style-switch-wrapper #aqua {
background-color: #1abc9c;
}
.style-switch-wrapper #purple {
background-color: #9b59b6;
}
.style-switch-wrapper #gold {
background-color: #ffdb49;
}
.style-switch-wrapper #fire {
background-color: #ff9845;
}
.style-switch-wrapper #pink {
background-color: #fa3dad;
}
.style-switch-wrapper #marine {
background-color: #327CCB;
}
.style-switch-wrapper #green {
background-color: #99c87a;
}
.logo {
  width: 85px;
}
.social-icons-m {
	float:right;
	margin-right:10px;
}
.social-icons-d {
	float:right;
	margin-left:10px;
}
.testimonials-item p {
    color: #fff;
    line-height: 26px;
	margin-top: 14%;
}
.testimonials-item h5 {
    color: #fff;
    font-family: 'Lato', sans-serif;
}
.testimonials-item em {
    color: gray;
}
.testimonials-div .swiper-container {
    margin-top: -80px;
    padding-left: 20px;
    padding-right: 20px;
}
.testimonials-section .title {
    margin-bottom: 100px;
}
.testimonials-div .container {
    position: relative;
}
.testimonials-div .container .swiper-button-prev {
    left: -20px;
    border: 1px solid #fff;
    /* padding: 10px; */
    z-index: 1;
}
.testimonials-div .container .swiper-button-prev::after {
    font-size: 24px;
    color: #fff;
}
.testimonials-div .container .swiper-button-next {
    right: -20px;
    border: 1px solid #fff;
    /* padding: 10px; */
    z-index: 1; 
}
.testimonials-div .container .swiper-button-next::after {
    font-size: 24px;
    color: #fff;
}
/* .c_testi h1{
	padding-top: 80px;
} */
@media only screen and (max-width: 1199px) {
	.testimonials-div .container .swiper-button-prev {
        left: -5px;
    }
    .testimonials-div .container .swiper-button-next {
        right: -5px;
    }
}
@media only screen and (max-width:991px) {
	.testimonials-div .container .swiper-button-prev {
        left: 3px;
    }
    .testimonials-div .container .swiper-button-next {
        right: 3px;
    }
}
.enquiry_frm input{
  margin-bottom: 10px;
}
.pop_up_btn {
    background: var(--brown-color);
    color: #000;
    padding: 8px 16px;
    font-size: 16px;
    border: 2px solid #000;
    border-radius: 4px;
    margin-top: 14px;
}
.modal-title {
  font-weight: 600;
  font-family: 'Playfair Display', serif;
}
.mobile_enquiry{
  display: none;
}

.fullwidth-section {
  position: relative;
  padding-top:100px;
  padding-bottom:100px;
  }
  .fullwidth-section.half-padding {
  position: relative;
  padding-top:50px;
  padding-bottom:50px;
  }
  /* ================================ */
/* ======== TABLE OF CONTENTS ========= */
/* ================================ */
/*
1. GOOGLE FONTS
2. BASIC STYLES
3. HELPER CLASSES
4. HEADING STYLES
5. IMAGE STYLES
6. BLOG STYLES
7. SIDEBAR STYLES AND WIDGETS
8. SCROLL TO TOP BUTTON
9. IMAGE OVERLAY STYLES
10. ICON FEATURE BOXES STYLES
11. CONTACT PAGE STYLES
12. FORM STYLES
13. TEAM MEMBERS
14. SOCIAL ICONS
15. COUNTER STYLES
16. ACCORDION AND TABS
17. OWL SLIDER
18. PORTFOLIO STYLES
19. ISOTOPE SORTING SCRIPT
20. TESTIMONIALS SLIDER
21. BREADCRUMBS STYLES
22. PAGINATION STYLES
23. PROGRESS BARS
24. TABLE STYLES
25. FOOTER STYLES
26. STYLE SWITCHER
*/
/* =============================== */
/* ========== 1. GOOGLE FONTS ==========*/
/* =============================== */
@import url(http://fonts.googleapis.com/css?family=Open+Sans:400,300,600,700,800);
@import url(http://fonts.googleapis.com/css?family=Roboto+Slab:400,700,300);
/* =================================  */
/* ========== 2. BASIC STYLES ==========  */
/* =================================  */
html { 
	-webkit-font-smoothing: antialiased !important;
     font-smoothing: antialiased !important;
	text-rendering: optimizeLegibility !important;
	overflow-x: hidden;
	width: 100%;
	height: 100%;
	position: relative;
}
body {
	font-family: 'Open Sans', sans-serif;
	background-color: #FFF;
	color: #777;
	font-size: 13px;
	font-weight: 400;
	line-height: 1.64285;
	overflow-x: hidden;
	height: auto;
	position: relative;
}
a, a:link, a:visited {
text-decoration: none;
color: #555;
  outline: 0;
      -webkit-transition: all 0.25s;
  -moz-transition: all 0.25s;
  -o-transition: all 0.25s;
  transition: all 0.25s;
}
a:active, a:hover {
color: #39adff;
  outline: 0;
}
section {
position: relative;
}
.bg-img {
position: absolute;
z-index: -1;
top: 0;
left: 0;
width: 100%;
height: 100%;
width: 100%;
height: 100%;
background-repeat: repeat;
background-position: center center;
}
.fullwidth-section {
position: relative;
padding-top:100px;
padding-bottom:100px;
}
.fullwidth-section.half-padding {
position: relative;
padding-top:50px;
padding-bottom:50px;
}
.parallax {
position: absolute;
background-attachment: fixed;
background-position: top center;
z-index: -1;
top: 0;
left: 0;
width: 100%;
height: 100%;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

/* Page Loading */
#pageloader {
width:100%;
height:100%;
position:fixed;
background-color:#FFF;
z-index:999999;
}

.loader-img {
position:absolute;
width:auto;
height:height;
margin:-27px 0 0 -27px;
top:50%;
margin-top: -40px;
left:50%;
margin-left: -40px;
text-align:center;
}
/* =================================  */
/* ========== 3. HELPER CLASSES ==========  */
/* =================================  */
.color-primary {
color: #39adff !important;
}
.bg-primary {
color: #fff;
background-color: #39adff !important;
}
.border-primary {
border-color: #39adff !important;
}
.color-white {
color:#FFF !important;
}
.bg-white {
background-color:#FFF !important;
}
.border-white {
border-color: #FFF !important;
}
.color-dark {
color:#333!important;
}
.bg-dark {
background-color:#333!important;
}
.bg-transparent {
background-color: transparent !important;
}
.weight-300 {
font-weight: 300;
}
.weight-400 {
font-weight: 400;
}
.weight-500 {
font-weight: 500;
}
.weight-600 {
font-weight: 600;
}
.weight-700 {
font-weight: 700;
}
.weight-800 {
font-weight: 800;
}
.weight-900 {
font-weight: 900 !important;
}
.uppercase {
text-transform: uppercase;
}
.kill-top-margin {
margin-top: 10px!important;
}
.kill-bottom-margin {
margin-bottom: 0 !important;
}
.kill-top-padding {
padding-top: 0 !important;
}
.kill-bottom-padding {
padding-bottom: 0 !important;
}
.img-center {
margin: 0 auto;
}
.rounded {
border-radius: 1000px !important;
}
/* =================================  */
/* ========== 4. HEADING STYLES ==========  */
/* =================================  */
h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  font-family: 'Roboto Slab', sans-serif;
  font-weight: 700;
  color: #555;
  line-height: 1.4;
  position: relative;
  z-index: 1;
}

h1,
h2,
h3 {
  margin-top: 30px;
  margin-bottom: 30px;
}
h4,
h5,
h6 {
  margin-top: 15px;
  margin-bottom: 10px;
}
h1,
.h1 {
  font-size: 36px;
  margin-top: 40px;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #39adff;
}
h2,
.h2 {
  font-size: 30px;
}
h3,
.h3 {
  font-size: 24px;
}
h4,
.h4 {
  font-size: 18px;
}
h5,
.h5 {
  font-size: 14px;
}
h6,
.h6 {
  font-size: 12px;
}

/* =================================  */
/* ============ 5. IMAGE STYLES ==========  */
/* =================================  */
img {
max-width: 100%;
border-radius: 4px;
}
.img-thumb {
position:relative;
width:100%;
overflow:hidden;
background-repeat:no-repeat;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
background-position:center center;
border-radius:4px;
}
.img-float-left {
position: relative;
float: left;
border-radius: 1px;
margin: 20px 20px 20px 0;
padding: 0;
max-width: 100%;
}
.img-float-right {
position: relative;
float: right;
border-radius: 1px;
margin: 20px 0 20px 20px;
padding: 0;
max-width: 100%;
}
.img-outline {
padding: 4px;
border: 1px solid #39adff;
background-color: #FFF;
}
		.img-hover {
	position: absolute;
	border-radius: 4px;
	background-color:rgba(0,0,0,0);
	width: 100%;
	height: 100%;
	    -webkit-transition: all 0.35s;
  -moz-transition: all 0.35s;
  -o-transition: all 0.35s;
  transition: all 0.35s;
	}
	.img-hover:hover {
	background-color:rgba(0,0,0,0.5);
	}
	.img-hover i {
	position: absolute;
	font-size: 12px;
	color: #FFF;
	top: 50%;
	right: 50%;
	margin-right: -18px;
	margin-top: -18px;
	padding: 10px;
	border-radius: 4px;
	border: 1px solid #FFF;
opacity: 0;
z-index: -1;
	    -webkit-transition: all 0.55s;
  -moz-transition: all 0.55s;
  -o-transition: all 0.55s;
  transition: all 0.55s;
}
	.img-hover:hover i {
	opacity: 1;
		z-index: 1;
	}
.img-hover i:hover {
color: #39adff;
background-color: #FFF;
}
/* =================================  */
/* ========== 6. BLOG STYLES ==========  */
/* =================================  */
.blog-img-wrapper .img-thumb {
height: 250px;
}
.blog-img-wrapper {
position: relative;
border-radius: 4px;
}
.blog-hover {
position: absolute;
text-align: center;
width: 100%;
height: 100%;
color: #FFF;
background-color:rgba(0,0,0,0.5);
border: 3px solid #39adff;
opacity: 0;
    -webkit-transition: all 0.45s;
  -moz-transition: all 0.45s;
  -o-transition: all 0.45s;
  transition: all 0.45s;
  z-index: 10;
  border-radius:4px;
}
.blog-hover i {
position: relative;
font-size: 12px;
top: 1px;
}
.blog-hover-buttons {
position: absolute;
top: 50%;
width: 100%;
margin-top: -12px;
color: #FFF;
    -webkit-transition: all 0.25s;
  -moz-transition: all 0.25s;
  -o-transition: all 0.25s;
  transition: all 0.25s;
}
.blog-hover-buttons a{
font-family: 'Roboto Slab', sans-serif;
border: 1px solid #FFF;
border-radius: 4px;
padding: 8px 10px;
margin: 0 1px;
color: #FFF;
font-weight: 700;
font-size: 11px;
letter-spacing: 1px;
text-transform: uppercase;
    -webkit-transition: all 0.25s;
  -moz-transition: all 0.25s;
  -o-transition: all 0.25s;
  transition: all 0.25s;
}
.blog-hover-buttons a:hover {
background-color:#FFF;
color: #39adff;
border: 1px solid #FFF;
}
.blog-hover:hover {
opacity: 1;
}
.blog-text { 
position: relative;
margin-bottom: 30px;
}
#blog h6 {
font-weight: 400;
}

#blog-posts h2 a, #blog-posts h2 a:visited, #blog-posts-masonry h4 a, #blog-posts-masonry h4 a:visited, #blog h4 a, #blog h4 a:visited {
color: #39adff;
}
#blog-posts h2 a:hover, #blog-posts h2 a:active, #blog-posts-masonry h4 a:hover, #blog-posts-masonry h4 a:active, #blog h4 a:hover, #blog h4 a:active  {
color: #555;
}
#blog-posts hr {
margin-bottom: 40px;
}
#blog-posts .blog-img-wrapper .img-thumb {
height: 450px;
}
/* Comments Section */
#comments h4 {
text-transform: uppercase;
font-weight: 700;
margin-top: 30px;
margin-bottom: 30px;
}
#comments h5 {
margin-top: 0;
}
#comments ul {
list-style: none;
margin: 0;
padding: 0;
}
#comments li {
margin-top: 0px;
}
#comments ul ul {
list-style: none;
margin-left: 80px;
padding: 0;
}
#comments .avatar {
float: left;
border-radius: 4px;
padding: 4px;
border: 1px solid #39adff;
width: 80px;
height: 80px;
margin-right: 20px;
}
#comments .comment {
margin-left: 0px;
margin-right: 20px;
padding-top: 30px;
padding-bottom: 30px;
border-bottom: 1px solid #EEE;
}
#comments .author {
display: inline-block;
}
#comments .date {
display: inline-block;
float: right;
color: #555;
}
#reply h4 {
text-transform: uppercase;
font-weight: 700;
margin-top: 30px;
margin-bottom: 30px;
}
/* ====================================== */
/* ======= 7. SIDEBAR STYLES AND WIDGETS ======= */
/* ====================================== */
#sidebar .input-group input {
background-color:rgba(0,0,0,0);
color:#777;
border:2px solid #EEE;
padding:8px;
height:auto;
font-size:13px;
box-shadow:none;
}

#sidebar .input-group .input-group-btn .btn {
margin-left:0;
padding:11px 12px 10px;
}
#sidebar h4 {
margin-top: 40px;
margin-bottom: 20px;
text-transform: uppercase;
font-weight: 700;
}
#sidebar div:first-child h4 {
margin-top: 0;
}
#sidebar ul {
list-style: none;
margin: 0;
padding: 0;
}
#sidebar li:before {
  font-family: 'FontAwesome';
    content: "\f101";
	margin-right: 6px;
	color: #555;
}
#sidebar li {
margin: 0;
padding: 5px 0;
border-bottom: 1px solid #EEE;
}

#sidebar .tagcloud a {
  font-family: 'Roboto Slab', sans-serif;
padding: 0px 0px 8px 0px;
border-radius: 2px;
margin-bottom: 2px;
display: inline-block;
line-height: 1;
transition:all .5s,;
-moz-transition:all .5s;
/* Firefox 4 */
-webkit-transition:all .5s;
}
#sidebar .widget_calendar #wp-calendar {
  font-family: 'Roboto Slab', sans-serif;
width: 100%;
}
#sidebar .widget_calendar #wp-calendar caption {
width: 100%;
font-weight: 700;
color: #FFF;
background-color: #39adff;
font-size: 16px;
padding: 10px 5px;
border-top-left-radius: 1px;
border-top-right-radius: 1px;
}
#sidebar .widget_calendar #wp-calendar th {
color: #FFF;
background-color: #39adff;
border-right: 1px solid #39adff;
border-left: 1px solid #39adff;
border-top: 1px solid #39adff;
text-align: center;
font-size: 12px;
}
#sidebar .widget_calendar #wp-calendar td {
color: #555;
text-align: center;
padding: 4px;
background-color: #F5F5F5;
}
#sidebar .widget_calendar #wp-calendar tbody {
border-right: 1px solid #EEE;
border-left: 1px solid #EEE;
border-bottom: 1px solid #EEE;
padding-top: 5px;
}
#sidebar .widget_calendar #wp-calendar #prev a {
float: left;
padding: 5px;
padding-top: 0;
color: #FFF;
}
#sidebar .widget_calendar #wp-calendar #next a {
float: right;
padding: 5px;
padding-top: 0;
color: #FFF;
}
#sidebar .widget_calendar #wp-calendar #prev a:hover, #sidebar .widget_calendar #wp-calendar #next a:hover {
color: #39adff;
}
/* ====================================== */
/* ========== 8. SCROLL TO TOP BUTTON ========== */
/* ====================================== */

.scrollup i {
position: fixed;
border-radius: 4px;
bottom: 20px;
right: 20px;
padding: 8px 11px;
line-height: 1;
font-size: 20px;
text-align: center;
color: #FFF;
cursor: pointer;
background-color: rgba(0,0,0,0.5);
    -webkit-transition: all 0.35s;
  -moz-transition: all 0.35s;
  -o-transition: all 0.35s;
  transition: all 0.35s;
  z-index: 10;
}
.scrollup i:hover {
background-color: #39adff;
}

/* ================================= */
/* ========== 9. IMAGE OVERLAYS ========== */
/* ================================= */
/* Add the class to the background element you wish to have the overlay over */
	.img-overlay1:after{
		background: url(../img/pat1.png) repeat;
		content:'';
		width: 100%;
		height: 100%;
		top:0;
		left:0;
		position: absolute;
		opacity: 0.5;
	}
		.img-overlay2:after{
		background: url(../img/pat2.png) repeat;
		content:'';
		width: 100%;
		height: 100%;
		top:0;
		left:0;
		position: absolute;
		opacity: 0.5;
	}
	.img-overlay3:after{
		background: url(../img/pat3.png) repeat;
		content:'';
		width: 100%;
		height: 100%;
		top:0;
		left:0;
		position: absolute;
		opacity: 0.5;
	}
		.img-overlay4:after{
		background: url(../img/pat4.png) repeat;
		content:'';
		width: 100%;
		height: 100%;
		top:0;
		left:0;
		position: absolute;
		opacity: 0.5;
	}
	.transparent{
		background:transparent !important;
	}
.img-overlay-solid {
position: absolute;
width: 100%;
height: 100%;
	top: 0;
	left: 0;
}

/* ===============================================  */
/* ========== 10. ICON FEATURE BOXES STYLES ==========  */
/* ===============================================  */

/* === Vertical 3 Column === */
.icon-feature-vertical {
text-align: center;
margin-top: 20px;
margin-bottom: 30px;
}

.icon-feature-vertical  i {
font-size:50px;
}



/* === Horizontal Icons Large === */
.icon-feature-horizontal {
display:table;
margin-top: 20px;
margin-bottom: 20px;
}

.icon-feature-horizontal .icon {
display:table-cell;
padding-top:15px;
}

.icon-feature-horizontal .icon i {
font-size:30px;
border: 1px solid;
padding: 12px;
border-radius: 4px;
}

.icon-feature-horizontal .content {
display:table-cell;
vertical-align:top;
text-align:left;
padding-left:20px;
}
/* === Horizontal Icons Small === */
.icon-feature-horizontal-sm {
display:table;
/* margin-top: ; */
margin-bottom: 20px;
}

.icon-feature-horizontal-sm .icon {
display:table-cell;
padding-top:15px;
}

.icon-feature-horizontal-sm .icon i {
font-size:20px;
border: 1px solid;
padding: 8px;
border-radius: 4px;
}

.icon-feature-horizontal-sm .content {
display:table-cell;
vertical-align:top;
text-align:left;
padding-left:20px;
}
/* ============================================================ */
/* ================= 11. CONTACT PAGE MAP STYLES ======================= */
/* ============================================================ */
.map-wrapper {
margin-top: 20px;
margin-bottom: 20px;
position:relative;
width:100%;
height:400px;
overflow:hidden;
}

#map-canvas {
width:100%;
height:400px;
border:0;
}

#contact form {
position:relative;
z-index:3;
}

#contact .form-group {
color:#FFF;
}

#contact .form-group input, #contact .form-group textarea {
background-color:#F5F5F5;
color:#555;
border:none;
padding:8px 10px;
height:auto;
font-size:13px;
border-radius: 2px;
box-shadow:none;
border: 1px solid #EEE;
}
#contact .form-group textarea {
border-radius: 2px;
}
#contact label {
font-family: 'Roboto Slab', sans-serif;
max-width: 100%;
color: #555;
font-size: 13px;
font-weight: 400;
margin-top: 10px;
}
/* Form Validation */
#error {
	color: #FFF;
	margin-top: 5px;
	font-size:14px;
	display:none;
}
.success-field {
background-color:rgba(71,164,71,0.5) !important;
}
.required-field {
background-color:rgba(245,99,99,0.5) !important;
}

/* ============================================================ */
/* ================= 12. FORM STYLES ======================= */
/* ============================================================ */
form {
position:relative;
z-index:3;
}
.form-wrapper {
background-color:rgba(60,62,71,.8);
padding: 20px 40px;
border-radius: 2px;
}

.form-group {
color:#FFF;
}

.form-group input, .form-group textarea {
border-radius: 2px;
background-color:rgba(0,0,0,0);
color:#777;
border:2px solid #EEE;
padding:8px;
height:auto;
font-size:13px;
  -webkit-box-shadow: none;
box-shadow:none;
}
.form-control:focus {
  border-color: #ccc;
  outline: 0;
  -webkit-box-shadow: none;
   box-shadow:none;
}
.form-group textarea {
border-radius: 2px;
}
label {
font-family: 'Roboto Slab', sans-serif;
max-width: 100%;
color: #555;
font-size: 13px;
font-weight: 400;
margin-top: 10px;
}
/* Form Validation */
#error {
	color: #FFF;
	margin-top: 5px;
	font-size:14px;
	display:none;
}
#reply #error {
color: #777;
}
.success-field {
background-color:rgba(71,164,71,0.5) !important;
}
.required-field {
background-color:rgba(245,99,99,0.5) !important;
}
/* ======================================================== */
/* ================= 13. TEAM MEMBERS ======================= */
/* ======================================================== */
.team-wrapper {
position: relative;
width: 100%;
height: 100%;
margin-top: 20px;
text-align: center;
}


/* TEAM STYLE 2 - SLIDER DISPLAY */
#team-slider .team-wrapper {
padding: 15px;
text-align: center;
}
#team-slider .owl-controls {
position: absolute;
top: -10px;
right: 10px;
width: 100%;
text-align: right;
}

/* TEAM STYLE 3 - TRADITIONAL DISPLAY */
.team-img-wrapper {
position: relative;
width: 100%;
height: 100%;
margin: 0 auto;
padding: 4px;
border-radius: 4px;
border: 1px solid #39adff;
}
.team-img-wrapper-hover {
position: absolute;
text-align: center;
width: 100%;
height: 100%;
margin-left: -4px;
margin-top: -4px;
background-color:rgba(0,0,0,0.5);
opacity: 0;
border-radius: 4px;
    -webkit-transition: all 0.45s;
  -moz-transition: all 0.45s;
  -o-transition: all 0.45s;
  transition: all 0.45s;
  border: 3px solid #39adff;
}
.team-img-wrapper-hover:hover {
opacity: 1;
}
.team-img-wrapper img {
border-radius: 4px;
width: 100%;
/*height: 190px;*/
}
.team-img-wrapper .social-icons {
position: absolute;
top: 50%;
margin-top: -9px;
width: 100%;
}
.team-img-wrapper .social-icons i {
color: #FFF;
border-color: #FFF;
}
/* ============================================================ */
/* ================= 14. SOCIAL ICON STYLES ======================= */
/* ============================================================ */
.social-icons i {
border-radius:4px;
font-size:16px;
margin-right: 4px;
padding: 6px;
text-align: center;
color: #555;
border: none;
cursor: pointer;
position: relative;
z-index: 1;
background-color: none;
border: 1px solid #555;
}
.social-icons i:hover {
border: 1px solid #39adff;
color: #39adff;
}

/* ============================================================ */
/* ================= 15. COUNTER STYLES ======================= */
/* ============================================================ */
.counter {
font-size: 60px;
line-height: 1;
font-weight: 300;
}
.counter-section i {
border-radius:500px;
font-size:56px;
width: 120px;
height: 120px;
line-height: 120px;
margin-top:0;
margin-bottom:20px;
text-align: center;
color: #FFF;
border: 1px solid #FFF;
}
/* ============================================================ */
/* ================= 16. ACCORDION AND TABS ======================= */
/* ============================================================ */
/* === ACCORDIAN === */
.panel-title {
font-size:13px;
position:relative;
vertical-align: middle;
top: -2px;
font-weight: 400;
}
.panel-title i {
position:relative;
margin-right:15px;
font-size:24px;
top:3px;
}
.panel-title a {
color:#777;
}
.panel-title a:hover {
color:#777;
}

.panel-title:after {
content:"\f054";
display:inline-block;
font-family:FontAwesome;
font-style:normal;
font-weight:normal;
line-height:1;
-webkit-font-smoothing:antialiased;
-moz-osx-font-smoothing:grayscale;
position:absolute;
right:6px;
top:50%;
margin-top:-2px;
font-size:15px;
transition:all .5s;
-moz-transition:all .5s;
-webkit-transition:all .5s;
}

.panel-group .panel-heading {
transition:all .35s;
-moz-transition:all .35s;
-webkit-transition:all .35s;
padding:12px 15px;
border-bottom:1px solid transparent;
background-color:#FFF;
}

.panel-group .panel {
border-radius:0;
}

.panel {
border:1px solid transparent;
box-shadow:none;
border-bottom:none;
}

.panel-group .panel:first-child {
border-top-right-radius:4px;
border-top-left-radius:4px;
}

.panel-group .panel:last-child {
border-bottom:1px solid #EEE;
border-bottom-right-radius:4px;
border-bottom-left-radius:4px;
}

.panel-group .panel + .panel {
margin-top:0;
}

.panel-body {
border-top:1px solid #EEE;
padding:25px;
}

.panel-default {
border-color:#EEE;
}
.panel-heading:hover {
background-color:#FFF;
}

#accordion .panel a.selected .panel-heading {
background-color:#39adff;
border-radius:0;
}

#accordion .panel a.selected .panel-title {
color:#FFF;
}

#accordion .panel a.selected .panel-title:after {
content:"\f078";
transition:all .5s;
-moz-transition:all .5s;
-webkit-transition:all .5s;
}
/* === TABS === */
.nav-tabs {
border-bottom:1px solid #EEE;

}
.nav-tabs h5 {
margin: 0;
font-size: 13px;
font-weight: 400;
}
.nav-tabs > li.active > a,.nav-tabs > li.active > a:hover,.nav-tabs > li.active > a:focus {
color:#39adff;
}

.nav-tabs > li > a {
font-size:13px;
font-weight: 400;
margin-right:2px;
color:#777;
line-height:1.42857;
border-radius:3px 3px 0 0;
background-color:#FFF;
border:0;
}

.nav-tabs > li.active > a {
background-color:#FFF;
border-top:1px solid #39adff;
}

.nav-tabs i {
margin-right:4px;
}

.tab-pane {
padding:15px 25px;
border-width:1px;
border-style:solid;
border-color:transparent #EEE #EEE;
border-bottom-right-radius:4px;
border-bottom-left-radius:4px;
background-color: #FFF;
}

.nav-tabs > li > a:hover {
border-color:#EEE;
}

.nav-tabs > li.active > a,.nav-tabs > li.active > a:hover,.nav-tabs > li.active > a:focus {
border:1px solid #EEE;
border-bottom-color:transparent;
background-color:#FFF;
}

.nav-tabs#tabs > li > a {
background-color:#FFF;
border: 1px solid #EEE;
border-bottom: 1px solid EEE;
}

.nav-tabs#tabs > li.active > a {
background-color:#FFF;
border-top:1px solid #39adff;
border-bottom: 1px solid #FFF;
border-top-right-radius: 4px;
border-top-left-radius: 4px;
}

.nav#tabs > li {
position:relative;
display:block;
}

/* ============================================================ */
/* ================= 17. Core Owl Carousel CSS File v1.3.2 ============== */
/* ============================================================ */
/* clearfix */
.owl-carousel .owl-wrapper:after {
	content: ".";
	display: block;
	clear: both;
	visibility: hidden;
	line-height: 0;
	height: 0;
}
/* display none until init */
.owl-carousel{
	display: none;
	position: relative;
	width: 100%;
	-ms-touch-action: pan-y;
}
.owl-carousel .owl-wrapper{
	display: none;
	position: relative;
	-webkit-transform: translate3d(0px, 0px, 0px);
}
.owl-carousel .owl-wrapper-outer{
	overflow: hidden;
	position: relative;
	width: 100%;
}
.owl-carousel .owl-wrapper-outer.autoHeight{
	-webkit-transition: height 500ms ease-in-out;
	-moz-transition: height 500ms ease-in-out;
	-ms-transition: height 500ms ease-in-out;
	-o-transition: height 500ms ease-in-out;
	transition: height 500ms ease-in-out;
}
	
.owl-carousel .owl-item{
	float: left;
}
.owl-controls .owl-page,
.owl-controls .owl-buttons div{
	cursor: pointer;
}
.owl-controls {
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

/* mouse grab icon */
.grabbing { 
    cursor:url(grabbing.png) 8 8, move;
}

/* fix */
.owl-carousel  .owl-wrapper,
.owl-carousel  .owl-item{
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility:    hidden;
	-ms-backface-visibility:     hidden;
  -webkit-transform: translate3d(0,0,0);
  -moz-transform: translate3d(0,0,0);
  -ms-transform: translate3d(0,0,0);
}

.owl-theme .owl-controls{
	margin-top: 10px;
	text-align: center;
}

/* Styling Next and Prev buttons */

.owl-theme .owl-controls .owl-buttons div{
	color: #FFF;
	display: inline-block;
	zoom: 1;
	*display: inline;/*IE7 life-saver */
	margin: 5px;
	padding: 3px 10px;
	font-size: 12px;
	-webkit-border-radius: 30px;
	-moz-border-radius: 30px;
	border-radius: 30px;
	background: #000;
	filter: Alpha(Opacity=50);/*IE7 fix*/
	opacity: 0.5;
}
.owl-prev, .owl-next {
font-family: "Roboto Slab";
font-size: 12px;
font-weight: 800;
}
/* Clickable class fix problem with hover on touch devices */
/* Use it for non-touch hover action */
.owl-theme .owl-controls.clickable .owl-buttons div:hover{
	filter: Alpha(Opacity=100);/*IE7 fix*/
	opacity: 1;
	text-decoration: none;
}

/* Styling Pagination*/

.owl-theme .owl-controls .owl-page{
	display: inline-block;
	zoom: 1;
	*display: inline;/*IE7 life-saver */
}
.owl-theme .owl-controls .owl-page span{
	display: block;
	width: 15px;
	height: 15px;
	margin: 5px 4px;
	filter: Alpha(Opacity=50);/*IE7 fix*/
	opacity: 0.5;
	border: 1px solid #39adff;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
}

.owl-theme .owl-controls .owl-page.active span,
.owl-theme .owl-controls.clickable .owl-page:hover span{
	filter: Alpha(Opacity=100);/*IE7 fix*/
	opacity: 1;
	background-color: #39adff;
}

/* If PaginationNumbers is true */

.owl-theme .owl-controls .owl-page span.owl-numbers{
	height: auto;
	width: auto;
	color: #FFF;
	padding: 2px 10px;
	font-size: 12px;
	-webkit-border-radius: 30px;
	-moz-border-radius: 30px;
	border-radius: 30px;
}

/* preloading images */
.owl-item.loading{
	min-height: 150px;
	background: url(AjaxLoader.gif) no-repeat center center
}
/* ============================================================ */
/* ================= 18. PORTFOLIO STYLES ======================= */
/* ============================================================ */

#portfolio button {
margin-right: 1px;
margin-left: 1px;
}
#portfolio .col-sm-3 .img-thumb {
height: 200px;
}
#portfolio h4 {
font-weight: 400;
color: #39adff;
}
.portfolio-img-wrapper {
position: relative;
}
.portfolio-hover {
position: absolute;
text-align: center;
width: 100%;
height: 100%;
color: #FFF;
background-color:rgba(0,0,0,0.5);
border: 3px solid #39adff;
opacity: 0;
    -webkit-transition: all 0.45s;
  -moz-transition: all 0.45s;
  -o-transition: all 0.45s;
  transition: all 0.45s;
  z-index: 10;
  border-radius:4px;
}
.portfolio-hover i {
position: relative;
font-size: 12px;
top: 1px;
}
.portfolio-hover-buttons {
position: absolute;
top: 50%;
width: 100%;
margin-top: -12px;
color: #FFF;
    -webkit-transition: all 0.25s;
  -moz-transition: all 0.25s;
  -o-transition: all 0.25s;
  transition: all 0.25s;
}
.portfolio-hover-buttons a{
font-family: 'Roboto Slab', sans-serif;
border: 1px solid #FFF;
border-radius: 4px;
padding: 8px 18px;
margin: 0 1px;
color: #FFF;
font-weight: 700;
font-size: 11px;
letter-spacing: 1px;
text-transform: uppercase;
    -webkit-transition: all 0.25s;
  -moz-transition: all 0.25s;
  -o-transition: all 0.25s;
  transition: all 0.25s;
}
.portfolio-hover-buttons a:last-child {
padding: 8px 10px;
}
.portfolio-hover-buttons a:hover {
background-color:#FFF;
color: #39adff;
border: 1px solid #FFF;
}
.portfolio-hover:hover {
opacity: 1;
}
.portfolio-text {
padding: 0 0 25px;
}
/* ============================================================ */
/* ================= 18. gallery STYLES ======================= */
/* ============================================================ */

#gallery button {
margin-right: 1px;
margin-left: 1px;
}
#gallery .col-sm-3 .img-thumb {
height: 200px;
}
#gallery h4 {
font-weight: 400;
color: #39adff;
}
.gallery-img-wrapper {
position: relative;
}
.gallery-hover {
position: absolute;
text-align: center;
width: 100%;
height: 100%;
color: #FFF;
background-color:rgba(0,0,0,0.5);
border: 3px solid #39adff;
opacity: 0;
    -webkit-transition: all 0.45s;
  -moz-transition: all 0.45s;
  -o-transition: all 0.45s;
  transition: all 0.45s;
  z-index: 10;
  border-radius:4px;
}
.gallery-hover i {
position: relative;
font-size: 12px;
top: 1px;
}
.gallery-hover-buttons {
position: absolute;
top: 50%;
width: 100%;
margin-top: -12px;
color: #FFF;
    -webkit-transition: all 0.25s;
  -moz-transition: all 0.25s;
  -o-transition: all 0.25s;
  transition: all 0.25s;
}
.gallery-hover-buttons a{
font-family: 'Roboto Slab', sans-serif;
border: 1px solid #FFF;
border-radius: 4px;
padding: 8px 18px;
margin: 0 1px;
color: #FFF;
font-weight: 700;
font-size: 11px;
letter-spacing: 1px;
text-transform: uppercase;
    -webkit-transition: all 0.25s;
  -moz-transition: all 0.25s;
  -o-transition: all 0.25s;
  transition: all 0.25s;
}
.gallery-hover-buttons a:last-child {
padding: 8px 10px;
}
.gallery-hover-buttons a:hover {
background-color:#FFF;
color: #39adff;
border: 1px solid #FFF;
}
.gallery-hover:hover {
opacity: 1;
}
.gallery-text {
padding: 0 0 25px;
}
/* ============================================= */
/* ========== 19. ISOTOPE FILTERING SCRIPT ========== */
/* ============================================= */
#isotope, #isotope-masonry {
width:100%;
margin-top:0;
}

.isotope-item {
z-index:2;
}

.isotope-hidden.isotope-item {
pointer-events:none;
z-index:1;
}

.isotope,.isotope .isotope-item {
-webkit-transition-duration:1s;
-moz-transition-duration:1s;
-ms-transition-duration:1s;
-o-transition-duration:1s;
transition-duration:1s;
}

.isotope {
-webkit-transition-property:height, width;
-moz-transition-property:height, width;
-ms-transition-property:height, width;
-o-transition-property:height, width;
transition-property:height, width;
}

.isotope .isotope-item {
-webkit-transition-property:0 opacity;
-moz-transition-property:0 opacity;
-ms-transition-property:0 opacity;
-o-transition-property:0 opacity;
transition-property:transform, opacity;
}

#isotope .col-sm-3, #isotope-masonry .col-sm-3, #isotope .col-md-3, #isotope-masonry .col-md-3 {
width:24.9%;
}
#isotope .col-sm-4,#isotope-masonry .col-sm-4, #isotope .col-md-4,#isotope-masonry .col-md-4 {
width:33.3%;
}

@media (max-width: 768px) {
#isotope .col-sm-3, #isotope-masonry .col-sm-3, #isotope .col-md-3, #isotope-masonry .col-md-3 {
width:100%;
}

#isotope .col-sm-4, #isotope-masonry .col-sm-4, #isotope .col-md-4, #isotope-masonry .col-md-4 {
width:100%;
}
}

#isotope-filter {
margin-bottom: 40px;
}
/* ============================================= */
/* ========== 20. TESTIMONIALS SLIDER ========== */
/* ============================================= */
.testimonial-slider p {
font-size: 18px;
font-weight: 400;
margin-top: 40px;
}
.testimonial-slider .carousel-indicators {
position: relative;
top: 20px;
}
.testimonial-slider .carousel-indicators li {
display: inline-block;
width: 15px;
height: 15px;
margin: 2px;
text-indent: -999px;
cursor: pointer;
background-color: rgba(0, 0, 0, 0);
border: 1px solid #39adff;
border-radius: 4px;
}
.testimonial-slider .carousel-indicators li.active {
background-color: #39adff;
}

/* ============================================================ */
/* ================= 21. BREADCRUMBS STYLES ======================= */
/* ============================================================ */
.breadcrumb {
  position: relative;
  top: 40px;
    margin-bottom: 0px;
    list-style: none outside none;
    background-color: transparent;
    border-radius: 0;
	color: #555;
	font-size: 14px;
	font-weight: 400;
}
.breadcrumb > li + li:before {
	font-family: 'FontAwesome';
    padding: 0px 5px;
	content: "\f101";
	color: #555;
}
.breadcrumb > .active {
    color: #555;
}
#bread-crumb {
padding-top: 100px;
padding-bottom: 40px;
}
/* ============================================================ */
/* ================= 22. PAGINATION STYLES ======================= */
/* ============================================================ */
.pagination {
  font-family: 'Roboto Slab', sans-serif;
  font-weight: 500;
}
.pagination > li:first-child > a, .pagination > li:first-child > span {
margin-left: 0;
border-top-left-radius: 4px;
border-bottom-left-radius: 4px;
}
.pagination > li:last-child > a, .pagination > li:last-child > span {
border-top-right-radius: 4px;
border-bottom-right-radius: 4px;
}
.pagination > li > a:hover, .pagination > li > span:hover, .pagination > li > a:focus, .pagination > li > span:focus {
color: #39adff;
background-color: #eee;
border-color: #ddd;
}
.pagination > li > a, .pagination > li > span {
position: relative;
float: left;
padding: 6px 12px;
margin-left: -1px;
line-height: 1.42857143;
color: #555;
text-decoration: none;
background-color: #fff;
border: 1px solid #ddd;
}
.pagination > .active > a, .pagination > .active > span, .pagination > .active > a:hover, .pagination > .active > span:hover, .pagination > .active > a:focus, .pagination > .active > span:focus {
z-index: 2;
color: #fff;
cursor: default;
background-color: #39adff;
border-color: #39adff;
}
/* Pager */
.pager li > a, .pager li > span {
  font-family: 'Roboto Slab', sans-serif;
    display: inline-block;
    padding: 5px 14px;
    background-color: #FFF;
    border: 1px solid #39adff;
	color: #39adff;
    border-radius: 4px;
	  font-weight: 500;
}
.pager li > a:hover, .pager li > span {
    background-color: #39adff;
    border: 1px solid #39adff;
	color: #FFF;
}
/* ============================================================ */
/* ================= 23. PROGRESS BAR STYLES ======================= */
/* ============================================================ */
.progress {
  font-family: 'Roboto Slab', sans-serif;
  font-weight: 500;
  height: 30px;
  margin-bottom: 20px;
  overflow: hidden;
  background-color: #f5f5f5;
  border: 1px solid #EEE;
  border-radius: 3px;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.progress-bar {
  float: left;
  width: 0;
  height: 100%;
  font-size: 12px;
  line-height: 30px;
  color: #fff;
  text-align: center;
  background-color: #39adff;
  -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .15);
          box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .15);
  -webkit-transition: width .6s ease;
          transition: width .6s ease;
}
/* ============================================================ */
/* ================= 24. TABLE STYLES ======================= */
/* ============================================================ */
table {
  max-width: 100%;
  background-color: transparent;
}
th {
  font-family: 'Roboto Slab', sans-serif;
  text-align: left;
}
.table {
  width: 100%;
  margin-bottom: 20px;
}
.table > thead > tr > th,
.table > tbody > tr > th,
.table > tfoot > tr > th,
.table > thead > tr > td,
.table > tbody > tr > td,
.table > tfoot > tr > td {
  padding: 8px;
  line-height: 1.42857143;
  vertical-align: top;
  border-top: 1px solid #EEE;
}
.table > thead > tr > th {
  vertical-align: bottom;
  border-bottom: 2px solid #EEE;
}
.table > caption + thead > tr:first-child > th,
.table > colgroup + thead > tr:first-child > th,
.table > thead:first-child > tr:first-child > th,
.table > caption + thead > tr:first-child > td,
.table > colgroup + thead > tr:first-child > td,
.table > thead:first-child > tr:first-child > td {
  border-top: 0;
}
.table > tbody + tbody {
  border-top: 2px solid #EEE;
}
.table .table {
  background-color: #fff;
}
.table-striped > tbody > tr:nth-child(2n+1) > td, .table-striped > tbody > tr:nth-child(2n+1) > th {
    background-color: #F5F5F5;
}

/* ================================= */
/* ========== 25. FOOTER STYLES ========== */
/* ================================= */
.footer {
background-color: #F5F5F5;
padding-top: 25px;
padding-bottom: 15px;
}
.footer .social-icons i {
border-radius:4px;
font-size:16px;
margin-right: 4px;
padding: 6px;
text-align: center;
color: #777;
border: none;
cursor: pointer;
position: relative;
top: -5px;
z-index: 1;
background-color: none;
border: 1px solid #777;
}
.footer .social-icons i:hover {
border: 1px solid #39adff;
color: #39adff;
}
/* ============================================================ */
/* ================= 26. STYLE SWITCHER STYLES ======================= */
/* ============================================================ */
.style-switch-wrapper {
position: fixed;
top: 100px;
left: -250px;
width: 250px;
height: auto;
background-color:rgba(60,62,71,0.8);
border-bottom-right-radius: 4px;
padding: 20px 20px;
z-index: 1000;
-webkit-transition: all 0.35s;
-moz-transition:  all 0.35s;
-o-transition:  all 0.35s;
transition:  all 0.35s;
}
.style-switch-wrapper.active {
left: 0;
}
.style-switch-button {
position: absolute;
top: 0;
left: 250px;
width: 50px;
height: 50px;
background-color:rgba(60,62,71,0.8);
border-top-right-radius: 4px;
border-bottom-right-radius: 4px;
z-index: 1000;
cursor: pointer;
}
.style-switch-button i {
color: #FFF;
position: relative;
line-height: 1;
top:15px;
left: 15px;
font-size: 20px;
}
.style-switch-wrapper button {
width: 25px;
height: 25px;
border-radius: 25px;
padding: 0;
margin-bottom: 5px;
}
.style-switch-wrapper button:active, .style-switch-wrapper button:focus {
border: 2px solid #FFF;
}
.style-switch-wrapper #default {
background-color: #39adff;
padding: 0;
}
.style-switch-wrapper #metro {
background-color: #F56363;
}
.style-switch-wrapper #midnight {
background-color: #3071a7;
}
.style-switch-wrapper #tangerine {
background-color: #ff8263;
}
.style-switch-wrapper #lime {
background-color: #2ecc71;
}
.style-switch-wrapper #aqua {
background-color: #1abc9c;
}
.style-switch-wrapper #purple {
background-color: #9b59b6;
}
.style-switch-wrapper #gold {
background-color: #ffdb49;
}
.style-switch-wrapper #fire {
background-color: #ff9845;
}
.style-switch-wrapper #pink {
background-color: #fa3dad;
}
.style-switch-wrapper #marine {
background-color: #327CCB;
}
.style-switch-wrapper #green {
background-color: #99c87a;
}
.logo {
  width: 85px;
}
.social-icons-m {
	float:right;
	margin-right:10px;
}
.social-icons-d {
	float:right;
	margin-left:10px;
}
.testimonials-item p {
    color: #fff;
    line-height: 26px;
	margin-top: 14%;
}
.testimonials-item h5 {
    color: #fff;
    font-family: 'Lato', sans-serif;
}
.testimonials-item em {
    color: gray;
}
.testimonials-div .swiper-container {
    margin-top: -80px;
    padding-left: 20px;
    padding-right: 20px;
}
.testimonials-section .title {
    margin-bottom: 100px;
}
.testimonials-div .container {
    position: relative;
}
.testimonials-div .container .swiper-button-prev {
    left: -20px;
    border: 1px solid #fff;
    /* padding: 10px; */
    z-index: 1;
}
.testimonials-div .container .swiper-button-prev::after {
    font-size: 24px;
    color: #fff;
}
.testimonials-div .container .swiper-button-next {
    right: -20px;
    border: 1px solid #fff;
    /* padding: 10px; */
    z-index: 1; 
}
.testimonials-div .container .swiper-button-next::after {
    font-size: 24px;
    color: #fff;
}
/* .c_testi h1{
	padding-top: 80px;
} */
@media only screen and (max-width: 1199px) {
	.testimonials-div .container .swiper-button-prev {
        left: -5px;
    }
    .testimonials-div .container .swiper-button-next {
        right: -5px;
    }
}
@media only screen and (max-width:991px) {
	.testimonials-div .container .swiper-button-prev {
        left: 3px;
    }
    .testimonials-div .container .swiper-button-next {
        right: 3px;
    }
}
.enquiry_frm input{
  margin-bottom: 10px;
}
.pop_up_btn {
    background: var(--brown-color);
    color: #000;
    padding: 8px 16px;
    font-size: 16px;
    border: 2px solid #000;
    border-radius: 4px;
    margin-top: 14px;
}
.modal-title {
  font-weight: 600;
  font-family: 'Playfair Display', serif;
}
.mobile_enquiry{
  display: none;
}
.thank_section {
    width: 100%;
    height: 100vh;
    position: relative;
}
.thankyou_row {
    width: 30%;
    position: absolute;
    left: 50%;
    transform: translate(-50%,-50%);
    top: 50%;
    box-shadow: 0 0 6px #ccc;
    border-radius: 4px;
    padding: 40px 10px;
    text-align: center;
}
.thankyou_row img {
    width: 70px;
}
.thankyou_row h3 {
    font-weight: 700;
    margin-top: 20px;
    font-family: 'Playfair Display', serif;
    margin-bottom: 16px;
}
.thankyou_row h4 {
    margin-bottom: 10px;
    font-weight: 600;
}
.thankyou_row a {
    margin-top: 20px;
    display: inline-block;
    text-decoration: none;
    color: #fff;
}
@media only screen and (min-width: 320px) and (max-width: 767px){
    .thankyou_row {
        width: 90%;
        padding: 24px 10px;
    }
}

