/**
* Website Name: W + M Fencing
*/

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
@font-face {
    font-family: Alice;
    src: url('../fonts/Alice-Regular.ttf');
    font-weight: normal;
    font-style: normal
}
.alice{
    font-family: Alice, serif !important;
}
body {
  font-family: "Open Sans", sans-serif;
  color: #4d4643;
}

a {
  color: inherit;
  text-decoration: none;
  color: #74432b;
}
main a {
    font-weight: 600;
}
a:hover {
  color: inherit;
  text-decoration: none;
}

h1{
  font-size: 26px;
  line-height: 1.2;
  margin-bottom: 8px;
  font-weight: 600;
}
.for-bug-2{
  font-size: 16px;
}
.heading-d-none{
  display:none !important;
}
ul {
  list-style: none;
}
p{
  margin-bottom: 16px;
}
h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
 text-transform:uppercase;
 color: #000;
}
/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 3px;
  right: 15px;
  bottom: 15px;
  background: #74432b;
  color: #fff;
  transition: display 0.5s ease-in-out;
  z-index: 99999;
  cursor: pointer;
}

.back-to-top i {
  font-size: 24px;
  position: absolute;
  top: 8px;
  left: 8px;
}

.back-to-top:hover {
  color: #fff;
  background: #74432b;
  transition: 0.3s ease-in-out;
}

/*--------------------------------------------------------------
# Disable AOS delay on mobile
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  background: #fff;
  transition: all 0.5s;
  z-index: 997;
  padding: 6px 0;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#header .logo {
  font-size: 28px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

#header .logo a {
  color: #111;
}

#header .logo a span {
  color: #1bbd36;
}

/*
ADJUST THIS TO FIX LOGO IN MOBILE MENU
*/

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

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
.nav-menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
  color: #2b271f;
}

.nav-menu > ul {
  display: flex;
  align-items: center;
}

.nav-menu > ul > li {
  position: relative;
  white-space: nowrap;
  padding: 10px 0 10px 24px;
}

.nav-menu a {
  display: block;
  position: relative;
  color: #2b271f;
  transition: 0.3s;
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 600;
  font-family: "Lato", sans-serif;
}

.nav-menu a:hover, .nav-menu .active > a, .nav-menu li:hover > a {
  color: #74432b;
}

.nav-menu .drop-down ul {
  display: block;
  position: absolute;
  left: 15px;
  top: calc(100% + 30px);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  padding: 0px 0;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  border-top: 2px solid #74432b;
}

.nav-menu .drop-down:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.nav-menu .drop-down li {
  min-width: 180px;
  position: relative;
}

.nav-menu .drop-down ul a {
  padding: 7px 20px;
  font-size: 14px;
  font-weight: 500;
  text-transform: none;
  color: #2b271f;
  border-bottom: 1px solid #ebebeb;
}

.nav-menu .drop-down ul a:hover, .nav-menu .drop-down ul .active > a, .nav-menu .drop-down ul li:hover > a {
  color: #74432b;
}

.nav-menu .drop-down > a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 5px;
}

.nav-menu .drop-down .drop-down ul {
  top: 0;
  left: calc(100% - 30px);
}

.nav-menu .drop-down .drop-down:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
}

.nav-menu .drop-down .drop-down > a {
  padding-right: 35px;
}

.nav-menu .drop-down .drop-down > a:after {
  content: "\eaa0";
  font-family: IcoFont;
  position: absolute;
  right: 15px;
}

/* @media (max-width: 1366px) {
  .nav-menu .drop-down .drop-down ul {
    left: -90%;
  }
  .nav-menu .drop-down .drop-down:hover > ul {
    left: -100%;
  }
  .nav-menu .drop-down .drop-down > a:after {
    content: "\ea9d";
  }
} */

/* Mobile Navigation */
.mobile-nav-toggle {
  position: fixed;
  right: 15px;
  top: 28px;
  z-index: 9998;
  border: 0;
  background: none;
  font-size: 24px;
  transition: all 0.4s;
  outline: none !important;
  line-height: 1;
  cursor: pointer;
  text-align: right;
}

.mobile-nav-toggle i {
  color: #74432b;
}

.mobile-nav {
  position: fixed;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  z-index: 9999;
  overflow-y: auto;
  background: #fff;
  transition: ease-in-out 0.2s;
  opacity: 0;
  visibility: hidden;
  border-radius: 10px;
  padding: 10px 0;
}

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

.mobile-nav a {
  display: block;
  position: relative;
  color: #111;
  padding: 10px 20px;
  font-weight: 500;
  outline: none;
}

.mobile-nav a:hover, .mobile-nav .active > a, .mobile-nav li:hover > a {
  color: #74432b;
  text-decoration: none;
}
.mobile-nav .drop-down{
  position: relative;
}
.mobile-nav .drop-down:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 10px;
  position: absolute;
  right: 15px;
  top: 10px;
}

.mobile-nav .active.drop-down:after {
  content: "\eaa1";
}
@media (max-width: 991px){
  a.after-dropdown1 {
    display: inline-block;
}
a.after-dropdown2 {
    display: inline-block;
}
}
.mobile-nav .drop-down > a {
  padding-right: 35px;
}

.mobile-nav .drop-down ul {
  display: none;
  overflow: hidden;
}

.mobile-nav .drop-down li {
  padding-left: 20px;
}

.mobile-nav-overly {
  width: 100%;
  height: 100%;
  z-index: 9997;
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(0, 0, 0, 0.6);
  overflow: hidden;
  display: none;
  transition: ease-in-out 0.2s;
}

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

.mobile-nav-active .mobile-nav {
  opacity: 1;
  visibility: visible;
}

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

/*--------------------------------------------------------------
# Header Social Links
--------------------------------------------------------------*/
.header-social-links {
  padding-left: 14px;
  margin-left: 20px;
  border-left: 1px solid #c4c4c4;
}

.header-social-links a {
  color: #a0a0a0;
  padding-left: 6px;
  display: inline-block;
  line-height: 1px;
  transition: 0.3s;
}

.header-social-links a:hover {
  color: #1bbd36;
}

@media (max-width: 768px) {
  .header-social-links {
    padding: 0 48px 0 0;
    border-left: 0;
  }
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 83vh;
  background-color: rgb(255 255 255 / 80%);
  overflow: hidden;
  position: relative;
  margin: 32px 0 0 0;
}

#hero .carousel-item {
  width: 100%;
  height: calc(83vh - 70px);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.slider-content img {
    max-width: 200px;
}

.slider-content h2 {
    color: #fff;
    margin-top: 12px;
    font-size: 70px;
    font-family: 'Alice';
}

.slider-content p {
    margin: 0;
    color: #fff;
}
#hero .container {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  position: absolute;
  bottom: 0;
  top: 70px;
  left: 0;
  right: 0;
}

#hero .carousel-content {
  background: rgba(4, 4, 4, 0.7);
  padding: 20px;
  color: #fff;
  -webkit-animation-duration: .5s;
  animation-duration: .5s;
  border-top: 5px solid #74432b;
  margin-bottom: 40px;
}

#hero .carousel-content h2 {
  color: #fff;
  margin-bottom: 20px;
  font-size: 28px;
  font-weight: 700;
}

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

#hero .btn-get-started:hover {
  background: #74432b;
  color: #fff;
  text-decoration: none;
}

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

#hero .carousel-inner .carousel-item,
#hero .carousel-inner .active.carousel-item-left,
#hero .carousel-inner .active.carousel-item-right {
  opacity: 0;
}

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

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

#hero .carousel-control-prev, #hero .carousel-control-next {
  width: 10%;
  opacity: 1;
}

#hero .carousel-control-next-icon, #hero .carousel-control-prev-icon {
  background: none;
  font-size: 36px;
  line-height: 1;
  width: auto;
  height: auto;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  padding: 10px;
  transition: 0.3s;
  color: rgba(255, 255, 255, 0.5);
}

#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 {
  cursor: pointer;
  background: #fff;
  overflow: hidden;
  border: 0;
  width: 12px;
  height: 12px;
  border-radius: 50px;
  opacity: .6;
  transition: 0.3s;
}

#hero .carousel-indicators li.active {
  opacity: 1;
  background: #74432b;
}

@media (min-width: 1024px) {
  #hero .carousel-control-prev, #hero .carousel-control-next {
    width: 5%;
  }
}

@media (max-width: 992px) {
  #hero {
    padding-top: 45px;
  }
  #hero .carousel-item {
    height: calc(100vh - 58px);
  }
}

@media (max-width: 768px) {
  #hero .carousel-content {
    margin: 0 40px 60px 40px;
  }
  #hero .carousel-content h2 {
    margin-bottom: 15px;
    font-size: 22px;
  }
  #hero .carousel-content p {
    font-size: 15px;
  }
}

@media only screen and (min-width: 451px) and (max-width: 3000px) {
  #hero-2 {
    display: none;
  }
}

@media only screen and (min-width: 200px) and (max-width: 450px) {

  #hero {
    display:none;
  }

  #hero-2 {
    width: 100%;
    height: 340px;
    background-color: rgba(0, 0, 0, 0.8);
    overflow: hidden;
    position: relative;
    padding: 78px 0 0 0;
  }
    #hero-2 .slider-content{
      text-align: center;
    }
  #hero-2 .slider-content h2{
    color: #fff;
    margin-top: 12px;
    font-size: 18px;
    margin-bottom: 4px;
  }
  #hero-2 .slider-content p{
    margin: 0;
    color: #fff;
    font-size: 12px;
  }
    #hero-2 .slider-content img{
    max-width: 110px;
  }
  #hero-2 .carousel-item {
    width: 100%;
    height: calc(320px - 70px);
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
  }
  
  #hero-2 .container {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    position: absolute;
    bottom: 0;
    top: 70px;
    left: 0;
    right: 0;
  }
  
  #hero-2 .carousel-content {
    background: rgba(4, 4, 4, 0.7);
    padding: 20px;
    color: #fff;
    -webkit-animation-duration: .5s;
    animation-duration: .5s;
    border-top: 5px solid #74432b;
    margin-bottom: 40px;
  }
  
  #hero .carousel-content h2 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 28px;
    font-weight: 700;
  }
  
  #hero-2 .btn-get-started {
    font-family: "Roboto", sans-serif;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 12px 32px;
    border-radius: 4px;
    transition: 0.5s;
    line-height: 1;
    margin: 10px;
    color: #fff;
    -webkit-animation-delay: 0.8s;
    animation-delay: 0.8s;
    border: 2px solid #74432b;
  }
  
  #hero-2 .btn-get-started:hover {
    background: #74432b;
    color: #fff;
    text-decoration: none;
  }
  
  #hero-2 .carousel-inner .carousel-item {
    transition-property: opacity;
    background-position: cover;
        display: flex;
    align-items: center;
    justify-content: center;
  }
  
  #hero-2 .carousel-inner .carousel-item,
  #hero-2 .carousel-inner .active.carousel-item-left,
  #hero-2 .carousel-inner .active.carousel-item-right {
    opacity: 0;

  }
  
  #hero-2 .carousel-inner .active,
  #hero-2 .carousel-inner .carousel-item-next.carousel-item-left,
  #hero-2 .carousel-inner .carousel-item-prev.carousel-item-right {
    opacity: 1;
    transition: 0.5s;
  }
  
  #hero-2 .carousel-inner .carousel-item-next,
  #hero-2 .carousel-inner .carousel-item-prev,
  #hero-2 .carousel-inner .active.carousel-item-left,
  #hero-2 .carousel-inner .active.carousel-item-right {
    left: 0;
    transform: translate3d(0, 0, 0);
  }
  
  #hero-2 .carousel-control-prev, #hero .carousel-control-next {
    width: 10%;
    opacity: 1;
  }
  
  #hero-2 .carousel-control-next-icon, #hero .carousel-control-prev-icon {
    background: none;
    font-size: 36px;
    line-height: 1;
    width: auto;
    height: auto;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 10px;
    transition: 0.3s;
    color: rgba(255, 255, 255, 0.5);
  }
  
  #hero-2 .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-2 .carousel-indicators li {
    cursor: pointer;
    background: #fff;
    overflow: hidden;
    border: 0;
    width: 12px;
    height: 12px;
    border-radius: 50px;
    opacity: .6;
    transition: 0.3s;
  }
  
  #hero-2 .carousel-indicators li.active {
    opacity: 1;
    background: #d35c14;
  }
  
  /* @media (min-width: 1024px) {
    #hero .carousel-control-prev, #hero .carousel-control-next {
      width: 5%;
    }
  }
  
  @media (max-width: 992px) {
    #hero {
      padding-top: 58px;
    }
    #hero .carousel-item {
      height: calc(100vh - 58px);
    }
  }
  
  @media (max-width: 768px) {
    #hero .carousel-content {
      margin: 0 40px 60px 40px;
    }
    #hero .carousel-content h2 {
      margin-bottom: 15px;
      font-size: 22px;
    }
    #hero .carousel-content p {
      font-size: 15px;
    }
  } */
}  

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

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

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

.section-title h1 {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  font-family: "Lato", sans-serif;
}

.section-title h2::after {
  content: '';
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: #74432b;
  bottom: 0;
  left: calc(50% - 25px);
}

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

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

.breadcrumbs h2 {
  font-size: 26px;
  font-weight: 300;
  color: #fff;
}

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

.breadcrumbs ol a {
  color: #fff;
}

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

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

@media (max-width: 991px) {
  .breadcrumbs {
    margin-top: 58px;
  }
  .breadcrumbs .d-flex {
    display: block !important;
  }
  .breadcrumbs ol {
    display: block;
  }
  .breadcrumbs ol li {
    display: inline-block;
  }
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
  text-align: center;
  padding: 32px 20px 32px 20px;
  transition: all ease-in-out 0.3s;
  background: #fff;
}
.services .icon-box .icon img {
    width: 100%;
}
.services .icon-box a {
    padding: 8px 24px;
    background: #74432b;
    color: #fff;
    display: inline-block;
    margin-top: 20px;
    border-radius: 5px;
    border: 2px solid #74432b;
    transition: 0.5s;
}
.services .icon-box a:hover {
    background: transparent;
    color: #74432b;
}
.services .icon-box .icon {
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: ease-in-out 0.3s;
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 22px;
}

.services .icon-box .icon i {
  font-size: 36px;
  transition: 0.5s;
  position: relative;
}

.services .icon-box .icon svg {
  position: absolute;
  top: 0;
  left: 0;
}

.services .icon-box .icon svg path {
  transition: 0.5s;
  fill: #f5f5f5;
}

.services .icon-box h3 {
  font-weight: 600;
  margin: 10px 0 15px 0;
  font-size: 22px;
}

.services .icon-box h3 a {
  color: #111;
  transition: ease-in-out 0.3s;
}

.services .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.services .icon-box:hover {
  border-color: #fff;
  box-shadow: 0px 0 35px 0 rgba(0, 0, 0, 0.08);
}

.services .iconbox-blue i {
  color: #74432b;
}

.services .iconbox-blue:hover .icon i {
  color: #fff;
}

.services .iconbox-blue:hover .icon path {
  fill: #74432b;
}

.services .iconbox-orange i {
  color: #ffa76e;
}

.services .iconbox-orange:hover .icon i {
  color: #fff;
}

.services .iconbox-orange:hover .icon path {
  fill: #74432b;
}

.services .iconbox-pink i {
  color: #6a3c24;
}e80368

.services .iconbox-pink:hover .icon i {
  color: #fff;
}

.services .iconbox-pink:hover .icon path {
  fill: #74432b;
}

.services .iconbox-yellow i {
  color: #ffbb2c;
}

.services .iconbox-yellow:hover .icon i {
  color: #fff;
}

.services .iconbox-yellow:hover .icon path {
  fill: #ffbb2c;
}

.services .iconbox-red i {
  color: #ff5828;
}

.services .iconbox-red:hover .icon i {
  color: #fff;
}

.services .iconbox-red:hover .icon path {
  fill: #ff5828;
}

.services .iconbox-teal i {
  color: #11dbcf;
}

.services .iconbox-teal:hover .icon i {
  color: #fff;
}

.services .iconbox-teal:hover .icon path {
  fill: #11dbcf;
}

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

.portfolio #portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 8px 20px 10px 20px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
  color: #4d4643;
  transition: all 0.3s;
  border-radius: 4px;
}

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

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

.portfolio .portfolio-item {
  margin-bottom: 30px;
}

.portfolio .portfolio-item .portfolio-info {
  opacity: 0;
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 0;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  background: rgba(255, 255, 255, 0.9);
  padding: 15px;
}

.portfolio .portfolio-item .portfolio-info h4 {
  font-size: 18px;
  color: #fff;
  font-weight: 600;
  color: #111;
}

.portfolio .portfolio-item .portfolio-info p {
  color: #444444;
  font-size: 14px;
  margin-bottom: 0;
}

.portfolio .portfolio-item .portfolio-info .preview-link, .portfolio .portfolio-item .portfolio-info .details-link {
  position: absolute;
  right: 40px;
  font-size: 24px;
  top: calc(50% - 18px);
  color: #2b2b2b;
}

.portfolio .portfolio-item .portfolio-info .preview-link:hover, .portfolio .portfolio-item .portfolio-info .details-link:hover {
  color: #1bbd36;
}

.portfolio .portfolio-item .portfolio-info .details-link {
  right: 10px;
}

.portfolio .portfolio-item .portfolio-links {
  opacity: 0;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 3;
  position: absolute;
  transition: all ease-in-out 0.3s;
}

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

.portfolio .portfolio-item .portfolio-links a:hover {
  color: #57e76f;
}

.portfolio .portfolio-item:hover .portfolio-info {
  opacity: 1;
  bottom: 20px;
}

/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/
.clients .clients-wrap {
  border-top: 1px solid #ececec;
  border-left: 1px solid #ececec;
}

.clients .client-logo {
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-right: 1px solid #ececec;
  border-bottom: 1px solid #ececec;
  overflow: hidden;
  background: #fff;
  height: 100px;
}

.clients .client-logo img {
  transition: all 0.3s ease-in-out;
  height: 36px;
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
}

.clients .client-logo:hover img {
  -webkit-filter: none;
  filter: none;
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# About Us
--------------------------------------------------------------*/
.about-us .content h2 {
  font-weight: 700;
  font-size: 42px;
  line-height: 60px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.about-us .content h2 {
  font-weight: 500;
  line-height: 32px;
  font-size: 24px;
}

.about-us .content ul {
  list-style: none;
  padding: 0;
}

.about-us .content ul li {
  padding: 10px 0 0 28px;
  position: relative;
}

.about-us .content ul i {
  left: 0;
  top: 7px;
  position: absolute;
  font-size: 20px;
  color: #74432b;
}

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

/*--------------------------------------------------------------
# Our Team
--------------------------------------------------------------*/
.team .member {
  margin-bottom: 20px;
  overflow: hidden;
  text-align: center;
  border-radius: 5px;
  background: #fff;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

.team .member .member-img {
  position: relative;
  overflow: hidden;
}

.team .member .social {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  height: 40px;
  opacity: 0;
  transition: ease-in-out 0.3s;
  text-align: center;
  background: rgba(255, 255, 255, 0.85);
}

.team .member .social a {
  transition: color 0.3s;
  color: #111;
  margin: 0 10px;
  padding-top: 8px;
  display: inline-block;
}

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

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

.team .member .member-info {
  padding: 25px 15px;
}

.team .member .member-info h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 18px;
  color: #111;
}

.team .member .member-info span {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: #b4aca8;
}

.team .member .member-info p {
  font-style: italic;
  font-size: 14px;
  line-height: 26px;
  color: #847872;
}

.team .member:hover .social {
  opacity: 1;
}

/*--------------------------------------------------------------
# Our Skills
--------------------------------------------------------------*/
.skills .progress {
  height: 50px;
  display: block;
  background: none;
}

.skills .progress .skill {
  padding: 0;
  margin: 0 0 6px 0;
  text-transform: uppercase;
  display: block;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  color: #111;
}

.skills .progress .skill .val {
  float: right;
  font-style: normal;
}

.skills .progress-bar-wrap {
  background: #e7e7e7;
}

.skills .progress-bar {
  width: 1px;
  height: 10px;
  transition: .9s;
  background-color: #1bbd36;
}

/*--------------------------------------------------------------
# Features
--------------------------------------------------------------*/
.features .icon-box {
  display: flex;
  align-items: center;
  padding: 20px;
  background: #fff;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  transition: ease-in-out 0.3s;
}

.features .icon-box i {
  font-size: 32px;
  padding-right: 10px;
  line-height: 1;
}

.features .icon-box h3 {
  font-weight: 700;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-size: 16px;
}

.features .icon-box h3 a {
  color: #111;
  transition: ease-in-out 0.3s;
}

.features .icon-box h3 a:hover {
  color: #1bbd36;
}

/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/
.pricing .box {
  padding: 20px;
  background: #fff;
  text-align: center;
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.12);
  border-radius: 5px;
  position: relative;
  overflow: hidden;
}

.pricing h3 {
  font-weight: 400;
  margin: -20px -20px 20px -20px;
  padding: 20px 15px;
  font-size: 16px;
  font-weight: 600;
  color: #847872;
  background: #f8f8f8;
}

.pricing h4 {
  font-size: 36px;
  color: #1bbd36;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  margin-bottom: 20px;
}

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

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

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

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

.pricing ul i {
  color: #1bbd36;
  font-size: 18px;
  padding-right: 4px;
}

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

.pricing .btn-wrap {
  margin: 20px -20px -20px -20px;
  padding: 20px 15px;
  background: #f8f8f8;
  text-align: center;
}

.pricing .btn-buy {
  background: #1bbd36;
  display: inline-block;
  padding: 8px 35px 10px 35px;
  border-radius: 4px;
  color: #fff;
  transition: none;
  font-size: 14px;
  font-weight: 400;
  font-family: "Roboto", sans-serif;
  font-weight: 600;
  transition: 0.3s;
}

.pricing .btn-buy:hover {
  background: #2ae149;
}

.pricing .featured h3 {
  color: #fff;
  background: #1bbd36;
}

.pricing .advanced {
  width: 200px;
  position: absolute;
  top: 18px;
  right: -68px;
  transform: rotate(45deg);
  z-index: 1;
  font-size: 14px;
  padding: 1px 0 3px 0;
  background: #1bbd36;
  color: #fff;
}

/*--------------------------------------------------------------
# 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;
  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;
}

.faq .faq-list .icon-help {
  font-size: 24px;
  position: absolute;
  right: 0;
  left: 20px;
  color: lightgray;
}

.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;
  transition: 0.3s;
}

.faq .faq-list a.collapsed:hover {
  color: #1bbd36;
}

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

.faq .faq-list a.collapsed .icon-close {
  display: none;
}

@media (max-width: 1200px) {
  .faq .faq-list {
    padding: 0;
  }
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials .testimonial-item {
  box-sizing: content-box;
  padding: 40px;
  box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.08);
  position: relative;
  background: #fff;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50px;
  border: 6px solid #fff;
  float: left;
  margin: 0 10px 0 0;
}

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

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

.testimonials .testimonial-item .quote-icon-left, .testimonials .testimonial-item .quote-icon-right {
  color: #dddddd;
  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: 15px 0 0 0;
  padding: 0;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info-wrap {
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
}

.contact .info {
  background: #fff;
}

.contact .info i {
  font-size: 20px;
  color: #1bbd36;
  float: left;
  width: 44px;
  height: 44px;
  border: 1px solid #1bbd36;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s;
}

.contact .info h4 {
  padding: 0 0 0 60px;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #111;
}

.contact .info p {
  padding: 0 0 0 60px;
  margin-bottom: 0;
  font-size: 14px;
  color: #444444;
}

.contact .info:hover i {
  background: #1bbd36;
  color: #fff;
}

.contact .php-email-form {
  width: 100%;
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.12);
  padding: 30px;
  background: #fff;
}

.contact .php-email-form .form-group {
  padding-bottom: 8px;
}

.contact .php-email-form .validate {
  display: none;
  color: red;
  margin: 0 0 15px 0;
  font-weight: 400;
  font-size: 13px;
}

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

.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;
  -webkit-animation: animate-loading 1s linear infinite;
  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;
  border-radius: 4px;
}

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

.contact .php-email-form input {
  height: 44px;
}

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

.contact .php-email-form button[type="submit"] {
  background: #1bbd36;
  border: 0;
  padding: 10px 24px;
  color: #fff;
  transition: 0.4s;
  border-radius: 4px;
}

.contact .php-email-form button[type="submit"]:hover {
  background: #2ae149;
}

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

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

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

.portfolio-details .portfolio-details-container {
  position: relative;
}

.portfolio-details .portfolio-details-carousel {
  position: relative;
  z-index: 1;
}

.portfolio-details .portfolio-details-carousel .owl-nav, .portfolio-details .portfolio-details-carousel .owl-dots {
  margin-top: 5px;
  text-align: left;
}

.portfolio-details .portfolio-details-carousel .owl-dot {
  display: inline-block;
  margin: 0 10px 0 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ddd !important;
}

.portfolio-details .portfolio-details-carousel .owl-dot.active {
  background-color: #1bbd36 !important;
}

.portfolio-details .portfolio-info {
  padding: 30px;
  position: absolute;
  right: 0;
  bottom: -70px;
  background: #fff;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  z-index: 2;
}

.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: 50px;
}

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

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

@media (max-width: 768px) {
  .portfolio-details .portfolio-info {
    position: static;
    margin-top: 30px;
  }
}

/*--------------------------------------------------------------
# Blog
--------------------------------------------------------------*/
.blog {
  padding: 40px 0 20px 0;
}

.blog .entry {
  padding: 30px;
  margin-bottom: 60px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

.blog .entry .entry-img {
  max-height: 400px;
  margin: -30px -30px 20px -30px;
  overflow: hidden;
}

.blog .entry .entry-title {
  font-size: 28px;
  font-weight: bold;
  padding: 0;
  margin: 0 0 20px 0;
}

.blog .entry .entry-title a {
  color: #111;
  transition: 0.3s;
}

.blog .entry .entry-title a:hover {
  color: #1bbd36;
}

.blog .entry .entry-meta {
  margin-bottom: 15px;
  color: #aaaaaa;
}

.blog .entry .entry-meta ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}

.blog .entry .entry-meta ul li + li {
  padding-left: 20px;
}

.blog .entry .entry-meta i {
  font-size: 14px;
  padding-right: 4px;
}

.blog .entry .entry-meta a {
  color: #5e5e5e;
  font-size: 14px;
  display: inline-block;
  line-height: 20px;
  transition: 0.3s;
}

.blog .entry .entry-meta a:hover {
  color: #1bbd36;
}

.blog .entry .entry-content p {
  line-height: 24px;
}

.blog .entry .entry-content .read-more {
  -moz-text-align-last: right;
  text-align-last: right;
}

.blog .entry .entry-content .read-more a {
  display: inline-block;
  background: #1bbd36;
  color: #fff;
  padding: 7px 25px;
  transition: 0.3s;
  font-size: 14px;
  border-radius: 4px;
}

.blog .entry .entry-content .read-more a:hover {
  background: #1ed33c;
}

.blog .entry .entry-content h3 {
  font-size: 22px;
  margin-top: 30px;
  font-weight: bold;
}

.blog .entry .entry-content blockquote {
  overflow: hidden;
  background-color: #fafafa;
  padding: 60px;
  position: relative;
  text-align: center;
  margin: 20px 0;
}

.blog .entry .entry-content blockquote p {
  color: #4d4643;
  line-height: 1.6;
  margin-bottom: 0;
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
}

.blog .entry .entry-content blockquote .quote-left {
  position: absolute;
  left: 20px;
  top: 20px;
  font-size: 36px;
  color: #e7e7e7;
}

.blog .entry .entry-content blockquote .quote-right {
  position: absolute;
  right: 20px;
  bottom: 20px;
  font-size: 36px;
  color: #e7e7e7;
}

.blog .entry .entry-content blockquote::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  margin-top: 20px;
  margin-bottom: 20px;
}

.blog .entry .entry-footer {
  padding-top: 10px;
  border-top: 1px solid #e6e6e6;
}

.blog .entry .entry-footer i {
  color: #5e5e5e;
  display: inline;
}

.blog .entry .entry-footer a {
  color: #8b8b8b;
  transition: 0.3s;
}

.blog .entry .entry-footer a:hover {
  color: #1bbd36;
}

.blog .entry .entry-footer .cats {
  list-style: none;
  display: inline;
  padding: 0 20px 0 0;
  font-size: 14px;
}

.blog .entry .entry-footer .cats li {
  display: inline-block;
}

.blog .entry .entry-footer .tags {
  list-style: none;
  display: inline;
  padding: 0;
  font-size: 14px;
}

.blog .entry .entry-footer .tags li {
  display: inline-block;
}

.blog .entry .entry-footer .tags li + li::before {
  padding-right: 6px;
  color: #6c757d;
  content: ",";
}

.blog .entry .entry-footer .share {
  font-size: 16px;
}

.blog .entry .entry-footer .share i {
  padding-left: 5px;
}

.blog .entry-single {
  margin-bottom: 30px;
}

.blog .blog-author {
  padding: 20px;
  margin-bottom: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog .blog-author img {
  width: 120px;
}

.blog .blog-author h4 {
  margin-left: 140px;
  font-weight: 600;
  font-size: 22px;
  margin-bottom: 0px;
  padding: 0;
}

.blog .blog-author .social-links {
  margin: 0 0 5px 140px;
}

.blog .blog-author .social-links a {
  color: #777777;
}

.blog .blog-author p {
  margin-left: 140px;
  font-style: italic;
  color: #bfb9b6;
}

.blog .blog-comments {
  margin-bottom: 30px;
}

.blog .blog-comments .comments-count {
  font-weight: bold;
}

.blog .blog-comments .comment {
  margin-top: 30px;
  position: relative;
}

.blog .blog-comments .comment .comment-img {
  width: 50px;
}

.blog .blog-comments .comment h5 {
  margin-left: 65px;
  font-size: 16px;
  margin-bottom: 2px;
}

.blog .blog-comments .comment h5 a {
  font-weight: bold;
  color: #4d4643;
  transition: 0.3s;
}

.blog .blog-comments .comment h5 a:hover {
  color: #1bbd36;
}

.blog .blog-comments .comment h5 .reply {
  padding-left: 10px;
  color: #111;
}

.blog .blog-comments .comment time {
  margin-left: 65px;
  display: block;
  font-size: 14px;
  color: #777777;
  margin-bottom: 5px;
}

.blog .blog-comments .comment p {
  margin-left: 65px;
}

.blog .blog-comments .comment.comment-reply {
  padding-left: 40px;
}

.blog .blog-comments .reply-form {
  margin-top: 30px;
  padding: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog .blog-comments .reply-form h4 {
  font-weight: bold;
  font-size: 22px;
}

.blog .blog-comments .reply-form p {
  font-size: 14px;
}

.blog .blog-comments .reply-form input {
  border-radius: 0;
  padding: 20px 10px;
  font-size: 14px;
  border-radius: 4px;
}

.blog .blog-comments .reply-form input:focus {
  box-shadow: none;
  border-color: #57e76f;
}

.blog .blog-comments .reply-form textarea {
  border-radius: 0;
  padding: 10px 10px;
  font-size: 14px;
  border-radius: 4px;
}

.blog .blog-comments .reply-form textarea:focus {
  box-shadow: none;
  border-color: #57e76f;
}

.blog .blog-comments .reply-form .form-group {
  margin-bottom: 25px;
}

.blog .blog-comments .reply-form .btn-primary {
  padding: 8px 20px;
  border: 0;
  border-radius: 4px;
  background-color: #1bbd36;
}

.blog .blog-comments .reply-form .btn-primary:hover {
  background-color: #1ed33c;
}

.blog .blog-pagination {
  color: #444444;
}

.blog .blog-pagination ul {
  display: flex;
  padding-left: 0;
  list-style: none;
}

.blog .blog-pagination li {
  border: 1px solid white;
  margin: 0 5px;
  transition: 0.3s;
}

.blog .blog-pagination li.active {
  background: white;
}

.blog .blog-pagination li a {
  color: #b4aca8;
  padding: 7px 16px;
  display: inline-block;
}

.blog .blog-pagination li.active, .blog .blog-pagination li:hover {
  background: #1bbd36;
  border: 1px solid #1bbd36;
  border-radius: 4px;
}

.blog .blog-pagination li.active a, .blog .blog-pagination li:hover a {
  color: #fff;
}

.blog .blog-pagination li.disabled {
  background: #fff;
  border: 1px solid white;
}

.blog .blog-pagination li.disabled i {
  color: #f6f5f5;
  padding: 10px 16px;
  display: inline-block;
}

.blog .sidebar {
  padding: 30px;
  margin: 0 0 60px 20px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

.blog .sidebar .sidebar-title {
  font-size: 20px;
  font-weight: 700;
  padding: 0 0 0 0;
  margin: 0 0 15px 0;
  color: #111;
  position: relative;
}

.blog .sidebar .sidebar-item {
  margin-bottom: 30px;
}

.blog .sidebar .search-form form {
  background: #fff;
  border: 1px solid #ddd;
  padding: 3px 10px;
  position: relative;
  border-radius: 4px;
}

.blog .sidebar .search-form form input[type="text"] {
  border: 0;
  padding: 4px;
  width: calc(100% - 40px);
}

.blog .sidebar .search-form form button {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 15px;
  margin: -1px;
  background: #1bbd36;
  color: #fff;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
}

.blog .sidebar .search-form form button:hover {
  background: #1ed33c;
}

.blog .sidebar .categories ul {
  list-style: none;
  padding: 0;
}

.blog .sidebar .categories ul li + li {
  padding-top: 10px;
}

.blog .sidebar .categories ul a {
  color: #2b2b2b;
  transition: 0.3s;
}

.blog .sidebar .categories ul a:hover {
  color: #1bbd36;
}

.blog .sidebar .categories ul a span {
  padding-left: 5px;
  color: #aaaaaa;
  font-size: 14px;
}

.blog .sidebar .recent-posts .post-item + .post-item {
  margin-top: 15px;
}

.blog .sidebar .recent-posts img {
  width: 80px;
  float: left;
}

.blog .sidebar .recent-posts h4 {
  font-size: 15px;
  margin-left: 95px;
  font-weight: bold;
}

.blog .sidebar .recent-posts h4 a {
  color: black;
  transition: 0.3s;
}

.blog .sidebar .recent-posts h4 a:hover {
  color: #1bbd36;
}

.blog .sidebar .recent-posts time {
  display: block;
  margin-left: 95px;
  font-style: italic;
  font-size: 14px;
  color: #777777;
}

.blog .sidebar .tags {
  margin-bottom: -10px;
}

.blog .sidebar .tags ul {
  list-style: none;
  padding: 0;
}

.blog .sidebar .tags ul li {
  display: inline-block;
}

.blog .sidebar .tags ul a {
  color: #515151;
  font-size: 14px;
  padding: 6px 14px;
  margin: 0 6px 8px 0;
  border: 1px solid #dddddd;
  display: inline-block;
  transition: 0.3s;
  border-radius: 4px;
}

.blog .sidebar .tags ul a:hover {
  color: #fff;
  border: 1px solid #1bbd36;
  background: #1bbd36;
}

.blog .sidebar .tags ul a span {
  padding-left: 5px;
  color: #aaaaaa;
  font-size: 14px;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  color: #fff;
  font-size: 14px;
  background-color: #1e1d1d;
}

#footer .footer-top {
  padding: 60px 0 30px 0;
  color: white;
  background: #282828;
}

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

#footer .footer-top .footer-contact h3 {
  font-size: 31px;
  margin: -10px 0 4px 0;
  padding: 2px 0 2px 0;
  line-height: 1.1;
  font-weight: 600;
  letter-spacing: 1px;
  color: white;
  text-transform: uppercase;
}
img.footer-logo {
    max-width: 100px;
    margin-bottom: 10px;
}
#footer .footer-top .footer-contact p {
  font-size: 14px;
  line-height: 26px;
  margin-bottom: 0;
  font-family: "Lato", sans-serif;
  /* color: #b39863; */
  color: #FFF;
}
#footer .footer-top .footer-contact p a {
    color: #fff;
}
#footer .footer-top h3 {
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  position: relative;
  padding-bottom: 12px;
}

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

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

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #74432b;
  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: #b39863; */
  color: #FFF;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  text-decoration: none;
  color: #74432b;
}

#footer .footer-newsletter {
  font-size: 15px;
  color: #b39863;
}

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

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

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

#footer .footer-newsletter form input[type="submit"] {
  position: absolute;
  top: 0;
  right: -4px;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: #74432b;
  color: #fff;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#footer .footer-newsletter form input[type="submit"]:hover {
  background: #D35C14
}

#footer .credits {
  padding-top: 5px;
  font-size: 13px;
  color: #fff;
}

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

#footer .social-links a:hover {
  background: #74432b;
  color: #fff;
  text-decoration: none;
}

/* 
 
Custom Styles Start

*/

.mont-philo-section {
  text-align: center;
}

.portfolio-details-container {
  padding: 6em;
}

.mont-philo-main-div {
  background-color: #EEE5E9;
  padding-bottom: 20px;
  padding-bottom: 30px;
  padding-right: 15px;
}

#mont-philo-heading {
  margin-top: 100px;
  margin-bottom: -30px;
  padding-top: 30px;
  padding-bottom: 30px;
  text-align: center;
  font-family: "Lato", sans-serif;
  background-color: #3C362A;
  color: #EEE5E9;

}

#mont-philo-row-1 {
  margin-top: 120px;
  padding-left: 50px;
  padding-right: 50px;
}

#mont-philo-img-heading {
  font-size: 13px;
}

#mont-philo-subheading {
  font-size: 16px;
  padding-left: 15vw;
  padding-right: 15vw;
}

#mont-philo-content-column {
  margin-top: -10px;
  margin-left: 10vw;
  background-color: #3C362A;
  border-radius: 20px;
  padding: 20px;
  -webkit-box-shadow: 4px 6px 5px 0px rgba(0,0,0,0.75);
  -moz-box-shadow: 4px 6px 5px 0px rgba(0,0,0,0.75);
  box-shadow: 4px 6px 5px 0px rgba(0,0,0,0.75);
}

#mont-philo-img {
  border-radius: 10px;
}

.mont-philo-content-text {
  color: #EEE5E9;
}

#image-container {
  padding-top: 20px;
  border-radius: 20px;
}

#mont-philo-content-heading {
  text-align: center;
  font-family: "Lato", sans-serif;
  padding-top: 10px;
  color: #74432b;
}

.mont-philo-footer {
  margin-top: 30px;
}

#learn-env-row-1 {
  margin-top: 60px;
}

#carousel-container {
  margin-left: 17vw;
  margin-right: 17vw;
}

#carousel-actual {
  border-radius: 20px;
}

.learn-env-container {
  background-color: #EEE5E9;
  padding-right: 16px;
  margin-bottom: 35px;
}

#learn-env-content-div {
  margin-top: 30px;
  padding-bottom: 20px;
  margin-bottom: -40px;
}

#learn-env-check {
  color: #D35C14;
}

#learn-env-quote {
  color: #3C362A;
}

.lunch-container {
  padding-bottom: 30px;
  margin-bottom: -30px;
  padding-right: 15px;
}

#menu-row {
  margin-top: 40px;
  text-align: left;
}

#lunch-menu-main-heading {
  margin-top: 30px;
}

#lunch-rows {
  padding-left: 30px
}

#download-row {
  margin-bottom: 20px;
}

@media only screen and (min-width: 100px) and (max-width: 768px) {
  #sides-menu-img {
    margin-top: 20px;
  }
}

#cater-link {
  text-decoration: none;
}

#pdf {
  height: 100px;
  width: 100px;
}

#menu-download-button {
  margin-top: 40px;
  color: #74432b;
  background-color: #3C362A;
  width: 150px;
  height: 40px;
  border-radius: 10px;
}

#toddler-row {
  padding-left: 70px;
  padding-right: 70px;
  margin-top: 30px;
}

#testimonials-row {
  margin-top: 60px;
  padding-left: 20px;
  padding-right: 20px;
}

.testimonial-name {
  font-weight: bold;
}

#staff-container {
  margin-bottom: -50px;
}


#toddler-image-row {
  margin-top: 60px;
  text-align: center;
}

.toddler-image {
  text-align: center;
}

.footer-links-specific {
  margin-left: 4px;
}

#enrichment-row {
  margin-top: 140px;
  text-align: center;
}

#enrichment-additional-info {
  background-color: #3C362A;
  padding: 30px;
  color: #E4D4C4;
  border-radius: 10px;
  -webkit-box-shadow: 4px 6px 5px 0px rgba(0,0,0,0.75);
  -moz-box-shadow: 4px 6px 5px 0px rgba(0,0,0,0.75);
  box-shadow: 4px 6px 5px 0px rgba(0,0,0,0.75);
}



#cubes-icon {
  color: #74432b;
}

#cubes-icon:hover {
  color: white;
}

#people-icon {
  color: #D35C14;
}

#people-icon:hover {
  color: white;
}

#messages-icon {
  color: #6a3c24;
}

#messages-icon:hover {
  color: white;
}

#contact-row {
  margin-top: 50px;
  text-align: center;
}

#contact-address {
  margin-top: 45px;
}

#contact-address-column {
  text-align: center;
}

#contact-map {
  text-align: center;
  margin-top: 20px;
}

.learn-button-1 {
  margin-top: 20px;
  border-radius: 10px;
  height: 50px;
  width: 140px;
  color: white;
  background-color: #bbbbbb;
  opacity: 0.6;
  transition: 0.6s;
  border: none;
}

.learn-button-1:hover {
  opacity: 1;
  background: #74432b;
}

.learn-button-2 {
  margin-top: 20px;
  border-radius: 10px;
  height: 50px;
  width: 140px;
  color: white;
  background-color: #bbbbbb;
  opacity: 0.6;
  transition: 0.6s;
  border: none;
}

.learn-button-2:hover {
  opacity: 1;
  background: #74432b;
}

.learn-button-3 {
  margin-top: 20px;
  border-radius: 10px;
  height: 50px;
  width: 140px;
  color: white;
  background-color: #bbbbbb;
  opacity: 0.6;
  transition: 0.6s;
  border: none;
}

.learn-button-3:hover {
  opacity: 1;
  background: #74432b;
}

.expand-headings {
  color: #4d4643;
}

.info-request {
  text-align: center;
}

#calendar-heading {
  margin-top: 130px;
}

#calendar-row {
  margin-top: 50px;
  padding-left: 40px;
  padding-right: 20px;
  margin-bottom: 30px;
}

.calendar {
  margin-top: 10px;
  padding: 10px;
  border-radius: 10px;
}

#calendar-button {
  margin-bottom: 50px;
}

#cal-button-actual {
  width: 200px;
}

#footer-top {
  background-color: #3C362A;
}

 #sample-div {
  margin-top: 130px;
  margin-bottom: 40px;
}

#sample-text-col {
  padding-right: 40px;
}

#squares-and-links {
  padding-right: 25px;
}

#sample-centered-text {
  text-align: center;
}  

 #grey-box-2 {
  height: 80px;

  background: grey;
  margin-top: 30px;
}

#grey-box-3 {
  height: 40px;

  background: grey;
  margin-top: 20px;
} 

.main-div-sample {
  padding-left: 50px;
  padding-right: 30px;
}

#sample-heading {
  margin-bottom: -7px;
}
ul.list-style {
  padding-left: 14px;
  list-style: outside;
}

ul.list-style li {
  margin-bottom: 16px;
}
a.bill-pay {
  display: inline-block;
  background: #74432b;
  padding: 12px 32px;
  color: #fff;
  font-size: 18px;
  border-radius: 4px;
  font-weight: 600;
  border: 1px solid #74432b;
  transition: 0.5s;
  margin-top: 8px;
  margin-bottom: 24px;
}

a.bill-pay:hover {
  background: transparent;
  color: #74432b;
}
.second-heading {
    padding-bottom: 36px;
    font-size: 27px;
    color: #74432b;
    font-style: italic;
    text-transform: none;
}
h2.second-heading.service-area-heading {
    font-size: 24px;
}
.second-heading:after {
    display: none !important;
}
.second-heading br {
    display: none;
}
.section-title.homepage h1 {
    margin-bottom: 0px;
    padding-bottom: 14px;
}
.section-title.homepage {
  padding-bottom: 4px;
}
p.first-p {
  margin-top: -7px;
}
p.map-view a img {
  max-width: 16px;
  width: 100%;
}

p.map-view a {
  color: #fff;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: 0.5s;
}

p.map-view {
  margin-top: 6px;
}

p.map-view a:hover {
  opacity: 0.8;
  color: #74432b;
}
.top-doctors img {
  width: 100%;
  border-radius: 8px;
}
img.metro-logo {
    max-width: 160px;
}
.metro-logo-wrap {
    text-align: center;
}
.metro-logo-wrap p {
    margin: 0;
    text-align: center;
    font-size: 9px;
    color: #fff;
    word-spacing: 0px;
    letter-spacing: 5px;
    margin-bottom: 6px;
}
.top-doctors img:first-child {
}

.top-doctors {
  display: flex;
  align-items: center;
  justify-content: end;
}
img.topdoctors-2023 {
    margin-right: 20px;
    max-width: 150px;
}
@media  (min-width: 992px) and (max-width: 1100px) {
  .top-doctors img {
    width: 100%;
    max-width: 158px;
}
img.topdoctors-2023 {
  margin-right: 10px;
  max-width: 140px;
}
}
@media only screen and (min-width: 200px) and (max-width: 450px) {
  .main-div-sample {
    padding-left: 15px;
    padding-right: 15px;
  }
} 

.google-review img {
  width: 100%;
  max-width: 80px;
}

.google-review a {
  
  color: orange;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  width: 100%;
  align-items: center;
}
.copyright strong span {
    font-family: 'Alice';
}
.service-areas h2 {
  text-align: center;
  padding-bottom: 4px;
}
.service-areas p {
    text-align: center;
    max-width: 714px;
    margin: 0 auto;
    margin-bottom: 32px;
}
.service-areas ul {
  display: inline-grid;
  grid-template-columns: repeat(3,auto);
  gap: 5px 40px;
  padding: 0;
  margin: 0;
}

.service-areas {
  display: flex;
  justify-content: center;
}
.service-areas ul li a {
  position: relative;
}
.service-areas ul li span {
  position: relative;
  font-weight: 600;
  color: #74432b;
}
.service-areas ul li a:after,.service-areas ul li span:after {
  position: absolute;
  left: -12px;
  top: 9px;
  content: "";
  width: 6px;
  height: 6px;
  background: #4d4643;
  border-radius: 50%;
}
.service-areas p a {
    font-size: 100%;
    color: #4d4643;
    font-weight: normal;
}

.service-areas p a:hover {
    color: #74432b;
}
.logos-wrap ul {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin: 0;
}

.logos-wrap ul li img {
    max-height: 54px;
}

.page-breadcrumb ul {display: flex;padding: 0px;ne;gap: 16px;margin: 0;}
.page-breadcrumb ul li a { font-size: 14px; color: rgb(161, 161, 161); }
.page-breadcrumb ul li { position: relative; font-size: 14px; font-weight: 600; color: rgb(161, 161, 161); text-transform: uppercase; }
.page-breadcrumb ul li::after { content: ""; width: 13px; height: 1.5px; background: rgb(161, 161, 161); position: absolute; rotate: -74deg; bottom: 9px; right: -14px; }
.page-breadcrumb {border: 1px solid rgb(238, 238, 238);border-radius: 3px;margin-bottom: 14px;padding: 4px 8px;}
.page-breadcrumb ul li:last-child::after { display: none; }
.page-breadcrumb ul li a:hover { color: #74432b; }
.left-image {
    float: left;
    width: 300px;
    margin-right: 16px;
    margin-top: 8px;
    margin-bottom: 8px;
}

.left-image img {
    width: 100%;
}
main#main {
  margin-top: 126px;
}
.service-page h2 {
  font-size: 20px;
  line-height: 1.3;
  font-weight: 600;
  text-transform: capitalize;
  padding-bottom: 0px;
  padding-top: 10px;
}
ul.service-areas-in-service-page li span {
    display: block;
}

ul.service-areas-in-service-page {
    width: 100%;
    padding-left: 18px;
    padding-bottom: 20px;
}

ul.service-areas-in-service-page li {
    line-height: 1.25;
    margin-bottom: 4px;
}

ul.service-list {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    padding: 0;
    margin: 0;
    padding-left: 18px;
    list-style: disc;
    gap: 4px 18px;
    padding-bottom: 12px;
}

ul.service-list li {
    color: #4d4643;
}
ul.list-style-dot {
  list-style: disc;
  padding-left: 18px;
}

ul.list-style-dot li {
  margin-bottom: 4px;
  color: #4d4643;
}
div#form h3 {
    font-size: 21px;
}
.service-card {
  display: flex;
  align-items: center;
  margin-bottom: 24px;
  border: 1px solid #eee;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}
.service-info a {
    display: inline-block;
    font-size: 15px;
    border-radius: 4px;
    margin-top: 2px;
}
.service-info h3 {
  font-size: 18px;
  font-weight: 600;
  text-transform: capitalize;
  margin-bottom: 6px;
}

.service-info p {
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 5px;
  font-size: 15px;
}

.service-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  display: block;
  max-width: 200px;
}

.service-info {
  width: 100%;
  padding: 4px 16px 4px 16px;
}
div#form h3 {
  margin-left: 10px;
}
@media (max-width:767px) {
  .service-areas ul {
    grid-template-columns: repeat(1,auto);
    text-align: center;
}
.logos-wrap ul {
  flex-direction: column;
  gap: 32px 0px;
}

.logos-wrap ul li img {
  max-width: 150px;
  max-height: 74px !important;
}
h1 {
  text-align: center;
  font-size: 24px;
}

.left-image {
  float: none;
  text-align: center;
  margin: 18px auto;
  width: auto;
}

.left-image img {
  max-width: 300px;
}

div#form {
  padding-top: 24px;
  padding-bottom:32px;
}
.page-breadcrumb {
  display: none;
}
iframe.responsive-video {
  height: 250px;
}
ul.service-list {
 
  grid-template-columns: repeat(2,1fr);
 
  gap: 4px 14px;
 
}
ul.service-areas-in-service-page li span {
  display: inline;
}
.service-page h2 {
  font-size: 18px;
  padding-top: 16px;
}
  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
}
  p.first-p {
    margin-top: 0px;
}
.top-doctors {
  text-align: center;
  flex-direction: column;
  padding-top: 8px;
  margin-left: 0;
}
  img.topdoctors-2023 {
    margin: 0;
    margin-bottom: 24px;
}
.contact-page-map iframe {
  width: 100%;
}
p.map-view a {
  justify-content: center;
}
  .pbsm-0{
    padding-bottom:0px !important;
  }
  #footer .footer-top .footer-contact {
    margin-bottom: 30px;
    text-align: center;
}
#footer .footer-top .footer-links {
  text-align: center;
}
#footer .footer-top .footer-links ul li {
 
  justify-content: center;
}
.col-lg-4.col-md-6.footer-newsletter iframe {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  display: block;
}
img.contact-img.w-100.my-4.mt-3.mt-md-0 {
  padding-bottom: 16px;
}
}
/*BUILD DAMN YOU!*/
.text-green {
  color: #74432b;
}


                   
.review-header h3 {
  font-size: 18px;
  line-height: 1.2;
  text-transform: capitalize;
  font-weight: 600;
  margin-bottom: 0;
}

.review-header p {
  font-size: 15px;
  margin-bottom: 0px;
  margin-top: 5px
}

.review-header {
  width: 20%
}

.rating-box i {
  color: rgb(251, 188, 4);
  font-size: 16px;
}

.review-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-shadow: 0 3px 6px rgba(0,0,0,.2);
  box-shadow: 0 3px 6px rgba(0,0,0,.2);
  padding: 25px 20px;
  border-radius: 5px;
  margin-top: 25px
}

.review-des {
  width: 80%
}
.review-des p {
    margin: 0;
    color: rgb(85, 85, 85);
}
  p.hidetext {
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 10px !important;
}

.review-des.active p {
  -webkit-line-clamp: unset!important;
  line-clamp: unset!important;
  -webkit-box-orient: unset!important;
  display: block!important;
  margin-bottom: 8px!important;
  overflow: visible!important;
  text-overflow: unset!important
}

button.readmore {
  background: 0 0!important;
  color: #74432b;
  font-size: 15px;
  text-transform: capitalize;
  padding: 0!important;
  display: none;
  border-width: 0;
  font-weight: 600
}

button.readmore.d-block {
  margin-top: 0;
  display: block;
  outline: none !important;
}
ul.citypage-services {
  list-style: disc;
  padding-left: 18px;
  display: inline-grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 54px;
}
ul.services-links {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  list-style: disc;
  padding-left: 18px;
  gap: 4px;
}
.citypage h2 {
  text-transform: capitalize;
  font-size: 25px;
  padding-top: 20px;
}
@media (min-width:992px) and  (max-width:1199px) {
  .nav-menu > ul > li {
    padding: 10px 0 10px 12px;
}
li.request-btn a {
  padding: 5px 20px;
}
}

@media (max-width: 991px) {
      .review-wrap {
      display: block;
  }
  .review-header {
      width: 100%;
      margin-bottom: 15px;
  }
.review-des {
  width: 100%;
}
}

        
.new-gallery {
  display: grid;
  grid-template-columns: auto auto auto auto auto;
  gap: 8px
}

.new-gallery a img {
  max-width: 228px;
  width: 100%;
  border-radius: 3px;
  -webkit-transition: .5s;
  -o-transition: .5s;
  transition: .5s
}
li.request-btn a {
    background: #74432b;
    color: #fff;
    padding: 8px 24px;
    border-radius: 24px;
    transition: 0.5s;
    border: 2px solid #74432b;
}

li.request-btn a:hover {
    background: transparent;
    color: #74432b;
}
.google-review.big-review {
  padding-top: 24px;
  text-align: center;
}

.google-review.big-review a {
  font-size: 24px;
}

.google-review.big-review a img {
  max-width: 100px;
}

.google-review.big-review a:hover {
  opacity: 0.8;
}
img.certainteed-logo {
  max-height: 28px !important;
}
img.malarkey-logo {
  max-height: 40px !important;
}
.logos-wrap.logos-first-row img {
    max-height: 48px;
}
img.ib-logo {
    max-height: 55px !important;
}
img.iko-logo {
  max-height: 40px !important;
}
.request-page-form {
    max-width: 650px;
    margin: 0 auto;
    padding-bottom: 32px;
}
div#form {
    padding-bottom: 30px;
}
span.footer-address {
    line-height: 1.25;
    display: block;
    margin-bottom: 5px;
}
.footer-lic span{
     line-height: 1.25;
     display: block;
     margin-bottom: 0px;
}
.stack-banner img {
    width: 100%;
}

.stack-banner .mobile-view {
    display: none;
}
.footer-info-uls {
    display: flex;
    gap: 32px;
}
.footer-information-wrap {
    margin-left: -40px;
}
p.footer-lic {
    margin-top: 5px;
}
.service-areas.service-areas-page ul {
    width: 100%;
}
#footer .footer-top .footer-contact p a:hover {
    color: #74432b;
}
@media (max-width: 767px) {
  .footer-info-uls {
    display: flex;
    gap: 12px;
    flex-direction: column;
    margin-bottom: 24px;
}
  .stack-banner img {
    display: none;
}
.stack-banner .mobile-view {
    display: block;
}
  .google-review.big-review a {
    font-size: 20px;
}
.google-review.big-review a img {
  max-width: 90px;
}
  ul.citypage-services {
    grid-template-columns: 1fr;
}
ul.services-links {
  grid-template-columns: 1fr 1fr;
}

ul.services-links a {
  font-size: 14px;
}

.citypage h2 {
  font-size: 22px;
}
  .new-gallery {
      grid-template-columns: repeat(3, 1fr);
  }
.new-gallery a img {
  max-width: 100%;
}
.service-card img {
  max-width: 150px;
}
li.request-btn a {
  display: inline-block;
  margin-left: 18px;
  padding: 4px 20px;
  margin-top: 10px;
}
ul.service-areas-in-service-page li br {
  display: none;
}
.second-heading br {
    display: block;
}
.section-title.homepage h1 {
    font-size: 26px;
}
.second-heading {
    font-size: 24px;
}
  h2.second-heading.service-area-heading {
    font-size: 20px;
}
#header .logo img {
    max-height: 64px;
}
}


@media (max-width:450px) {
  .service-card {
    flex-direction: column;
    max-width: 450px;
    margin: 0 auto;
    margin-bottom: 24px;
}

.service-card img {
    max-width: 100%;
    height: 200px;
}

.service-info {
    padding: 24px 16px;
}
.service-info h3 {
  font-size: 22px;
}
}

@media (min-width:452px) and (max-width:991px) {
  .slider-content h2 {
    color: #fff;
    margin-top: 12px;
    font-size: 26px;
}
.slider-content img {
    max-width: 160px;
}
.slider-content p {
    font-size: 14px;
}
}