/* GLOBAL STYLES
-------------------------------------------------- */
*, ::after, ::before {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  outline: transparent;
}

body {
  font-family: 'Rubik', sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: #333333;
}

h1, h2, h3, h4, h5, h6, p, ul, hr {
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
}

h1 {
  font-size: 55px;
  line-height: 63px;
}

h2 {
  font-size: 32px;
  line-height: 40px;
  margin-bottom: 30px;
}

h3 {
  font-size: 20px;
  line-height: 28px;
  margin-bottom: 20px;
}

p {
  font-size: 16px;
  line-height: 28px;
}

a {
  transition: all .5s ease;
}

a:focus,
a:hover {
  text-decoration: none;
  transition: all .5s ease;
}

img {
  width: 100%;
}

i {
  font-weight: normal;
}

button:focus {
  outline: transparent;
}

section {
  padding: 180px 0;
}

textarea {
  resize: none;
}

option:disabled {
  background-color: #ddd;
  font-size: 12px;
  text-transform: uppercase;
}

.f14 {
  font-size: 14px;
  line-height: 22px;
}

.f16 {
  font-size: 16px;
  line-height: 24px;
}

.f18 {
  font-size: 18px;
  line-height: 26px;
}

/* Background colors */
.blue {
  background-color: #324082;
}

.blue60 {
  background-color: rgb(50 64 130 / 60%);
}

.blue30 {
  background-color: rgb(50 64 130 / 30%);
}

.grey {
  background-color: #f4f7f9;
}

.green {
  background-color: #57b682;
}

/* Text colors */
.text-white {
  color: #fff;
}

.text-grey {
  color: #657078;
}

.text-light-grey {
  color: #d9d9d9;
}



/* Button colors */
.btn-wrapper {
  -webkit-transition: background .3s,border .3s,border-radius .3s,-webkit-box-shadow .3s;
  transition: background .3s,border .3s,border-radius .3s,-webkit-box-shadow .3s;
  -o-transition: background .3s,border .3s,border-radius .3s,box-shadow .3s;
  transition: background .3s,border .3s,border-radius .3s,box-shadow .3s;
  transition: background .3s,border .3s,border-radius .3s,box-shadow .3s,-webkit-box-shadow .3s;
  margin-top: 30px;
}

.btn-wrapper a {
  box-shadow: none;
  text-decoration: none;
}

.btn-wrapper .btn {
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .22px;
  fill: #657078;
  color: #657078;
  background-color: #02010100;
  border-style: solid;
  border-width: 3px;
  border-color: #e1e4e6;
  border-radius: 0;
  padding: 16px 32px;
  width: auto;
  display: inline-block;
  line-height: 1;
  text-align: center;
  -webkit-transition: all .3s cubic-bezier(.785,.135,.15,.86);
  -ms-transition: all .3s cubic-bezier(.785,.135,.15,.86);
  transition: all .3s cubic-bezier(.785,.135,.15,.86);
}

.btn-wrapper .btn span {
  text-decoration: inherit;
}

.btn-wrapper .btn:hover,
.btn-wrapper .btn:focus {
  background-color: #324082;
  border-color: #324082;
  color: #ffffff;
}

.btn-wrapper .btn.btn-white {
  fill: #ffffff;
  color: #ffffff;
}

.btn-wrapper .btn.btn-white:hover,
.btn-wrapper .btn.btn-white:focus {
  background-color: #ffffff;
  border-color: #ffffff;
  color: #657078;
}

/* Image overlay */
.overlay {
  position: relative;
}

.overlay::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  background: rgba(0,0,0,.42);
}

.overlay div {
  position: relative;
  z-index: 5;
}

/* HEADER
-------------------------------------------------- */
.navbar {
  background-color: #fff;
  border-bottom: 1px solid #ddd;
  padding: 0 50px;
  transition: all .5s ease;
}

.navbar-brand {
  width: 148px;
  transition: all .5s ease;
  padding: 0;
}

.nav-link {
  color: #333;
  padding: 0;
  margin-left: 40px;
  line-height: inherit;
  padding: 38px 0;
  transition: all .5s ease;
}

.nav-link:hover {
  color: #57b682;
}

.navbar-expand-xl .navbar-nav .nav-link {
  margin: 0;
  padding: 0 20px;
  font-size: 14px;
  line-height: 95px;
  color: #333333;
  text-transform: uppercase;
  position: relative;
  border-bottom: 4px solid transparent;
  background-color: #ffffff;
}

.navbar .navbar-nav .nav-link.current, .navbar .navbar-nav .nav-link:hover {
  color: #57b682;
  border-bottom: 4px solid #57b682;
}

.dropdown-item {
  padding: 10px 15px;
}

.dropdown-item:focus, .dropdown-item:hover {
  color: #57b682;
  background-color: #f8f9fa;
}

/* Fixed Navigation */
.fixed-top.navbar {
  transition: all .5s ease;
}

.fixed-top .navbar-brand {
  width: 135px;
  transition: all .5s ease;
}

.fixed-top.navbar-expand-xl .navbar-nav .nav-link {
  line-height: 75px;
  transition: all .5s ease;
}

.navbar-toggler {
  padding: 0;
  margin-right: 20px;
  font-size: 30px;
  margin-top: 10px;
}

@media (max-width: 1199.98px) {
  .navbar, .fixed-top.navbar {
    padding: 0;
    height: 80px;
  }

  .navbar-brand, .fixed-top .navbar-brand {
    width: 120px;
    margin-left: 20px;
    padding: 24px 0;
  }

  .nav-link, .fixed-top .nav-link {
    margin-left: 0;
    padding: 10px 0;
  }

  .navbar-expand-xl .navbar-nav {
    background-color: #ffffff;
  }

  .navbar-expand-xl .navbar-nav .nav-link {
    border-bottom: 0;
    line-height: 50px;
  }

  .navbar .navbar-nav .nav-link.current,
  .navbar .navbar-nav .nav-link:hover {
    border-bottom: 0;
  }

  .navbar-collapse {
    z-index: 1;
  }

  .navbar-collapse li {
    border-bottom: 1px solid #ddd;
    transition-property: opacity, filter;
    transition-duration: 0.15s;
    transition-timing-function: linear;
  }

  .navbar-collapse li:last-child {
    background-color: #f18e19;
    border-bottom: none;
  }

  .navbar-collapse li .btn-orange-bg:hover {
    color: #fff !important;
  }

  .fixed-top .dropdown-menu,
  .navbar-nav .dropdown-menu {
    border: none;
    margin: 0;
    padding: 0 0 10px 0;
    transition-property: opacity, filter;
    transition-duration: 0.15s;
    transition-timing-function: linear;
  }

  .dropdown-item {
    padding: 5px 35px;
    color: #a7a7a7;
  }

  .hamburger {
    padding: 0;
    display: inline-block;
    cursor: pointer;
    transition-property: opacity, filter;
    transition-duration: 0.15s;
    transition-timing-function: linear;
    font: inherit;
    color: inherit;
    text-transform: none;
    background-color: transparent;
    border: 0;
    margin: 0 20px 0 0;
    overflow: visible;
  }

  .hamburger.is-active .hamburger-inner,
  .hamburger.is-active .hamburger-inner::before,
  .hamburger.is-active .hamburger-inner::after {
    background-color: #324082;
  }

  .hamburger-box {
    width: 26px;
    height: 18px;
    display: inline-block;
    position: relative;
  }

  .hamburger-inner {
    display: block;
    top: 50%;
    margin-top: -2px;
  }

  .hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
    width: 26px;
    height: 2px;
    background-color: #324082;
    border-radius: 0;
    position: absolute;
    transition-property: transform;
    transition-duration: 0.15s;
    transition-timing-function: ease;
  }

  .hamburger-inner::before, .hamburger-inner::after {
    content: "";
    display: block;
  }

  .hamburger-inner::before {
    top: -10px;
  }

  .hamburger-inner::after {
    bottom: -10px;
  }

  .hamburger--spring .hamburger-inner {
    top: 5px;
    transition: background-color 0s 0.13s linear;
  }

  .hamburger--spring .hamburger-inner::before {
    top: 8px;
    transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  .hamburger--spring .hamburger-inner::after {
    top: 16px;
    transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  .hamburger--spring.is-active .hamburger-inner {
    transition-delay: 0.22s;
    background-color: transparent !important;
  }

  .hamburger--spring.is-active .hamburger-inner::before {
    top: 0;
    transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translate3d(0, 10px, 0) rotate(45deg);
  }

  .hamburger--spring.is-active .hamburger-inner::after {
    top: 0;
    transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translate3d(0, 10px, 0) rotate(-45deg);
  }

  .hamburger--spring-r .hamburger-inner {
    top: auto;
    bottom: 0;
    transition-duration: 0.13s;
    transition-delay: 0s;
    transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  .hamburger--spring-r .hamburger-inner::after {
    top: -20px;
    transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0s linear;
  }

  .hamburger--spring-r .hamburger-inner::before {
    transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  .hamburger--spring-r.is-active .hamburger-inner {
    transform: translate3d(0, -10px, 0) rotate(-45deg);
    transition-delay: 0.22s;
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  .hamburger--spring-r.is-active .hamburger-inner::after {
    top: 0;
    opacity: 0;
    transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0s 0.22s linear;
  }

  .hamburger--spring-r.is-active .hamburger-inner::before {
    top: 0;
    transform: rotate(90deg);
    transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
  }
}

/* HOMEPAGE
-------------------------------------------------- */
/* Banner Section */
.homepage .section-banner {
  background: url(../images/banner.jpg) right center; no-repeat;
  background-size: cover;
  padding: 13% 0;
  position: relative;
/*  background-color: #f2f2f2;*/
}

/* Text Card */
.card-wrapper {
  margin-bottom: 30px;
}

.card-wrapper .card-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 30px 20px;
  z-index: 99;
  position: relative;
  text-align: center;
  background-color: #ffffff;
}

.card-wrapper .card-content img {
  margin-bottom: 20px;
  width: 60px;
  height: 60px;
}

.card-wrapper .card-content h4 {
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 28px;
}

.card-wrapper .card-content p {
  margin-bottom: 0;
  font-size: 14px;
  line-height: 22px;
  color: #657078;
}

.card-wrapper .card-content a {
  z-index: 999;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border: 3px solid transparent;
}

.card-wrapper .card-content a:hover {
  border: 3px solid #e1e4e6;
}

/* Image Card */
.img-card-wrapper {
  position: relative;
  margin-bottom: 30px;
}

.img-card-wrapper .img-card-overlay {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  padding: 30px;
  opacity: 0;
  display: flex;
  align-items: flex-end;
  text-align: left!important;
  -webkit-transition: opacity .3s cubic-bezier(.785,.135,.15,.86);
  -ms-transition: opacity .3s cubic-bezier(.785,.135,.15,.86);
  transition: opacity .3s cubic-bezier(.785,.135,.15,.86);
}

.img-card-wrapper:hover .img-card-overlay {
  opacity: 1;
  background: rgba(0,0,0,.2);

}

.img-card-wrapper .img-card-overlay .img-card-overlay-inner {
  opacity: 0;
  transform: translateY(10px);
  -webkit-transition: all .3s cubic-bezier(.785,.135,.15,.86);
  -ms-transition: all .3s cubic-bezier(.785,.135,.15,.86);
  transition: all .3s cubic-bezier(.785,.135,.15,.86);
}

.img-card-wrapper:hover .img-card-overlay .img-card-overlay-inner {
  opacity: 1;
  transform: translateY(0);
}


/* WA Chat
-------------------------------------------------- */
.wa-chat {
  position: fixed;
  bottom: 14px;
  top: auto;
  right: 12px;
  background-color: #fefefe;
  border-radius: 6px;
  box-shadow: rgb(0 0 0 / 15%) 0px 4px 12px 0px;
  color: #25D366;
  display: block;
  margin: 0;
  padding: 0;
  width: 52px;
  height: 52px;
  z-index: 1080;
}

.wa-chat i {
  font-size: 60px;
  line-height: 60px;
  margin-top: -3px;
}

.wa-chat:hover, a.wa-chat:hover {
  background-color: #fefefe;
  color: #25D366;
}



/*Projects*/

/* PRODUCT PAGE 
---------------------------------------------------*/

 section.section-projects {
        padding: 80px 0 30px;
      }

      .section-projects .card {
        border: 1px solid rgba(0,0,0,.125);
        border-radius: 0;
        margin-bottom: 50px;
      }

      .section-projects .card-body {
        padding: 15px;
      }

      .section-projects .card .card-img {
        border-radius: 0;
        border-bottom: 1px solid rgba(0,0,0,.125);
        overflow: hidden;
        margin: 0 auto;
      }

      .section-projects .card .card-img picture {
        aspect-ratio: 1 / 1;
      }

      .section-projects .card .card-img img {
        display: block;
        aspect-ratio: 1 / 1;
      }

      .section-projects .card-title {
        margin-bottom: 15px;
        font-size: 14px;
        line-height: 22px;
      }

      .section-projects .card-text {
        color: #a19e9e;
      }

      .section-projects .card-text p {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        /*margin-bottom: 15px;*/
      }

      .section-projects .card-labels {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-align: center;
        align-items: center;
        -ms-flex-pack: justify;
        justify-content: space-between;
        color: #a19e9e;
        font-size: 12px;
        line-height: 22px;
        font-weight: 300;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
      }

      .section-projects .card-labels div {
        border: 1px solid transparent;
        border-radius: 3px;
        font-weight: 400;
        font-size: 10px;
        line-height: 14px;
        text-transform: uppercase;
        padding: 3px 6px;
      }

      .section-projects .card-labels .label-veg {
        border-color: #25D366;
        color: #25D366;
      }

      .section-projects .card-labels .label-wgt {
        border-color: #ffa500;
        color: #ffa500;
      }

      .section-projects .card-labels .label-set {
        border-color: #c19d56;
        color: #c19d56;
      }

      .page-products .section-projects .card-labels .label-set {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
      }

      .section-projects .card-action {
        margin-top: 15px;
        border-top: 1px solid rgba(0,0,0,.125);
        padding-top: 15px;
      }

      .section-projects .card-price {
        line-height: 34px;
      }

      .section-projects .card .btn {
        font-size: 12px;
        line-height: 14px;
        padding: 8px 10px;
      }

      @media only screen and (min-width: 1200px) {
        .section-projects .card:hover {
          border-color: #681f3d;
          box-shadow: 0 4px 7px 0 rgb(218 220 230 / 60%);
          cursor: pointer;
          transition: 0.5s all ease-in-out;
        }

        /*.section-projects .card:hover .card-text {
          display: block;
        }*/

        .section-projects .card:hover .card-title,
        .section-projects .card:hover .card-text,
        .section-projects .card:hover .card-price {
          color: #681f3d;
        }

        .section-projects .card:hover .card-labels .label-veg,
        .section-projects .card:hover .card-labels .label-wgt,
        .section-projects .card:hover .card-labels .label-set {
          border-color: #681f3d;
          color: #681f3d;
        }

        .section-projects .card .card-img img {
          width: 100%;
          transition: 0.5s all ease-in-out;
        }

        .section-projects .card:hover img {
          transform: scale(1.1);
        }

        .section-projects .card:hover .card-text {
          border-color: #681f3d;
        }

        .section-projects .card:hover .btn {
          background-color: #681f3d;
          color: #ffffff;
        }
      }

      @media (max-width: 1199.98px) {
        .section-projects .card-labels .label-set {
          white-space: nowrap;
          overflow: hidden;
          text-overflow: ellipsis;
        }
      }

      @media (max-width: 767.98px) {
        section.section-projects {
          padding: 45px 5px 15px;
        }

        .section-projects .heading {
          margin-bottom: 45px;
        }

        .section-projects .card,
        .section-projects .card .card-img {
          border: 0;
        }

        .section-projects .card-body {
          padding: 0 0 0 15px
        }

        .section-projects .item .card-body {
          padding: 0 0 0 15px;
        }

        .section-projects .card .card-img picture {
          border-radius: 10px;
        }

        .section-projects .card .card-img img {
          border: 0.8px solid rgba(0,0,0,.125);
          border-radius: 10px;
        }

        .section-projects .card-title {
          margin-bottom: 5px;
        }

        .section-projects .card-text p {
          margin-bottom: 0;
        }

        .section-projects .card-labels {
          justify-content:  inherit;
        }

        .section-projects .card-labels div {
          padding: 0;
          margin-right: 2px;
        }

        .section-projects .card-labels .label-veg,
        .section-projects .card-labels .label-wgt,
        .section-projects .card-labels .label-set {
          background-color: transparent;
          border-color: transparent;
          color: #a19e9e;
        }

        .section-projects .card-action {
          margin-top: 10px;
          padding-top: 10px;
        }

        .section-projects .card-price {
          line-height: inherit;
        }

        .section-projects .card .btn {
          background-color: #681f3d;
          color: #ffffff;
          font-size: 10px;
          line-height: 12px;
          padding: 6px 12px;
        }
      }

      .project-slider.owl-carousel .owl-nav button.owl-next,
      .project-slider.owl-carousel .owl-nav button.owl-prev {
        /*color: rgba(0,0,0,.125);
        width: 50%;
        transition: all .2s ease-in;*/

        text-align: center;
        font-size: 30px;
        border-radius: 5px;
        box-shadow: 0 0 0 1px rgb(0 0 0 / 25%);
        display: block;
        height: 30px;
        width: 30px;
        position: absolute;
        top: -50px;
        right: 0;
        transition: all .2s ease-in;
      }

      .project-slider.owl-carousel .owl-nav button.owl-prev {
        right: 45px;
      }

      .project-slider.owl-carousel .owl-nav button i {
        font-size: 14px;
        line-height: 30px;
        display: block;
        margin: 0 auto;
        color: rgb(0 0 0 / 25%);
      }

      .project-slider.owl-carousel .owl-nav button.owl-next:hover,
      .project-slider.owl-carousel .owl-nav button.owl-prev:hover {
        background-color: rgb(193 157 86 / 5%);
        box-shadow: 0 0 0 1px #57b682;
      }

      .project-slider.owl-carousel .owl-nav button.owl-next:hover i,
      .project-slider.owl-carousel .owl-nav button.owl-prev:hover i {
        color: #57b682;
      }







/* Clients Section */
.section-clientele .box {
  background-color: #fff;
  border: 1px solid #efefef;
  border-radius: 0;
  margin-bottom: 30px;
  padding: 0;
  position: relative;
  z-index: 1;
}

/* Ask CTA */
.ask-cta {
  background: url('../images/bg-cta.jpg') center center no-repeat;
  background-size: cover;
  padding: 120px 0;
}

@media (min-width: 1200px) {
  .homepage .section-banner {
    height: calc(100vh - 100px);
  }
}

@media (max-width: 1198.98px) {
  .homepage .section-banner {
    height: auto;
    padding: 100px 0;
  }

  .ask-cta h2 {
    margin-bottom: 20px;
  }
}

@media (max-width: 767.98px) {
  .homepage .ask-cta {
    padding: 80px 0;
  }
}

/* FOOTER
-------------------------------------------------- */
.footer {
  background-color: #f3f3f3;
}

.footer a {
  color: #666666;
}

.footer a:hover {
  color: #333333;
}

.footer .footer-content {
  padding: 100px 0 90px;
}

.footer .footer-content p,
.footer .footer-content a {
  font-size: 14px;
  line-height: 16px;
}

.footer .footer-content a {
  border-bottom: 1px solid transparent;
}

.footer .footer-content a:hover {
  border-bottom: 1px solid #333333;
}

.footer .footer-brand {
  display: block;
  width: 198px;
}

.footer .footer-menu {
  padding-bottom: 30px;
}

.footer .footer-menu .footer-menu-title {
  font-size: 16px;
  line-height: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.footer .footer-menu .footer-menu-list li {
  margin-bottom: 10px;
}

.footer .brand-line {
  height: 5px;
}

.footer .footer-address {
  padding-top: 30px;
}

.footer .footer-address p {
  margin-bottom: 10px;
  line-height: 22px;
}

.footer .footer-address a {
  color: #333;
  border-bottom: 1px solid transparent;
}

.footer .footer-address a:hover {
  border-bottom: 1px solid #333;
}

.footer .footer-address .fa-social a {
  font-size: 18px;
  line-height: 20px;
}

.footer .footer-address .fa-social a:hover {
  border-bottom-color: transparent;
}

.footer .footer-address span {
  position: relative;
  display: inline-block;
  margin-left: 10px;
  padding-left: 10px;
}

.footer .footer-address span::before {
  content: "|";
  position: absolute;
  left: -5px;
  top: 0;
}

.footer .footer-social li {
  float: left;
}

.footer .footer-social a {
  border-radius: 50%;
  color: #fff;
  display: block;
  width: 35px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  margin-right: 10px;
}

.footer .footer-social i {
  font-size: 22px;
  margin-left: 2px;
}

.footer .copyright-content {
  background-color: #e5e5e5;
  padding: 18px 0 8px;
}

.footer .copyright-content p {
  margin-bottom: 10px;
  font-size: 12px;
  line-height: 14px;
}

/* SNIPPETS
-------------------------------------------------- */
.heading .heading-label {
  color: #657078;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2.3px;
  margin-bottom: 10px;
}

.heading .heading-text {
  font-size: 46px;
  line-height: 60px;
  text-transform: none;
  margin-bottom: 20px;
}

@media (max-width: 767.98px) {
  .heading .heading-label {
    margin-bottom: 5px;
  }

  .heading .heading-text {
    font-size: 38px;
    line-height: 48px;
  }
}

/* PAGE INNER
-------------------------------------------------- */
.page-inner .section-banner {
  background: url('../images/banner-inner.jpg') center center no-repeat;
  background-size: cover;
}

.page-inner .breadcrumb {
  float: right;
  margin-bottom: 0;
  padding: 0;
  background: transparent;
}

.page-inner .breadcrumb li {
  line-height: 64px;
}

.page-inner .breadcrumb a {
  color: #fff;
}

.breadcrumb-item.active,
.breadcrumb-item+.breadcrumb-item::before {
  color: #ddd;
}

@media (max-width: 767.98px) {
  .page-inner .section-banner {
    padding: 96px 0;
  }
}

/* PAGE ABOUT
-------------------------------------------------- */
.page-about .content-image {
  padding-top: 5px;
}

/* ABOUT PAGE
-------------------------------------------------- */
.products-page .section-intro,
.products-page .production-steps section {
  padding: 95px 0 0;
}

.products-page section.last-section {
  padding: 95px 0 100px;
}

.products-page .anchor {
  padding-top: 100px;
}

/* PAGE SERVICES
-------------------------------------------------- */
.section-content.odd .heading,
.section-content.odd .list-check {
  padding-right: 80px;
}

.section-content.even .heading,
.section-content.even .list-check {
  padding-left: 80px;
}

.section-content .heading h2 {
  margin-bottom: 20px;
}

.section-content .heading p {
  margin-bottom: 40px;
}

@media (max-width: 991.98px) {
  .section-content.odd .heading,
  .section-content.odd .list-check {
    padding-right: 0;
  }

  .section-content.even .heading,
  .section-content.even .list-check {
    padding-left: 0;
  }

  .section-content .heading {
    margin-bottom: 50px;
  }
}

@media (max-width: 767.98px) {
  .section-content .heading {
    margin: 50px 0 30px;
  }

  .section-content .heading p {
    margin-bottom: 0;
  }
}

/* CONSULTATION PAGE
-------------------------------------------------- */

.consultation-page .production-steps-content .content-text p {
  margin-bottom: 30px;
}

.consultation-page .production-steps-content .content-text .btn-green-bg {
  margin-right: 20px;
}


/* GALLERY PAGE
-------------------------------------------------- */

.gallery-page .production-steps-content .content-image {
  padding-bottom: 30px;
}



/* PAGE CONTACT
-------------------------------------------------- */
.page-contact .section-content .heading h3 {
  margin-bottom: 10px;
}

/* RESPONSIVE CSS
-------------------------------------------------- */

/* Large devices (desktops, 992px and up) */
@media (min-width: 1200px) {
  .dropdown .dropdown-menu {
    position: absolute;
    top: 99px;
    left: 0;
    padding: 0;
    margin: 0;
    border: 1px solid transparent;
    border-radius: 0;

    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;

    max-height: 0;
    display: block;
    overflow: hidden;
    opacity: 0;
  }

  .dropdown:hover .dropdown-menu {
    max-height: 200px;
    opacity: 1;
  }

  .fixed-top .dropdown-menu {
    top: 79px;
  }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
  .btn-desktop {
    display: inline-block;
  }

  .btn-mobile {
    display: none;
  }
}



/*Medium devices (tablets, less than 992px)*/
@media (max-width: 991.98px) {
  section {
    padding: 70px 0;
  }

  .products-page .section-intro,
  .products-page .production-steps section {
    padding: 70px 0 0;
  }

  .products-page section.last-section {
    padding: 70px 0;
  }

  .products-page .anchor {
    padding-top: 70px;
  }

  .footer .footer-brand {
    margin-bottom: 50px;
  }

  .footer .footer-address span {
    display: block;
    margin-left: 0;
    padding-left: 0;
  }

  .footer .footer-address span::before {
    display: none;
  }

  .homepage .product-section .last-content-box,
  .page-contact .product-section .last-content-box {
    margin-bottom: 0;
  }

  .production-page .production-steps-content .content-image {
    width: 440px;
    margin: 0 auto;
  }

  .page-inner .breadcrumb {
    float: none;
  }

  .page-contact .address-content {
    display: none;
  }
}

/*Small devices (landscape phones, less than 768px)*/
@media (max-width: 767.98px) {
  h1 {
    font-size: 36px;
    line-height: 44px;
    font-weight: 700;
  }

  h2 {
    font-size: 26px;
    line-height: 34px;
    margin-bottom: 20px;
  }

  section {
    padding: 45px 5px 50px;
  }

  .btn-desktop {
    display: none;
  }

  .btn-mobile {
    display: inline-block;
  }

  .products-page .section-intro,
  .products-page .production-steps section {
    padding: 50px 0 0;
  }

  .products-page section.last-section {
    padding: 50px 0;
  }

  .products-page .anchor {
    padding-top: 50px;
  }

  .footer .footer-content {
    padding: 50px 0 40px;
  }

  .footer .footer-social i {
    margin-left: 0;
  }

  .homepage .product-section .last-content-box,
  .page-contact .product-section .last-content-box {
    margin-bottom: 0;
  }

  .gallery-page .production-steps-content .content-image {
    padding-bottom: 20px;
  }

  .page-inner .breadcrumb li {
    line-height: 44px;
  }

  .page-about .content-image {
    width: 290px;
    margin-bottom: 30px;
  }

 
}

/*Extra small devices (portrait phones, less than 576px)*/
@media (max-width: 575.98px) {
  .footer .footer-content {
    padding: 30px 0;
  }

  .footer .footer-menu .footer-menu-title {
    margin-bottom: 10px;
  }

  .footer .footer-menu {
    padding-bottom: 20px;
  }

  .products-page .section-intro,
  .products-page .production-steps section {
    padding: 30px 0 0;
  }

  .products-page section.last-section {
    padding: 30px 0;
  }

  .products-page .anchor {
    padding-top: 30px;
  }

  .production-page .production-steps-content .content-image {
    width: 290px;
  }

  .consultation-page .production-steps-content .content-text .btn {
    margin-bottom: 20px;
  }

  .consultation-page .production-steps-content .content-text .btn-green-bg {
    margin-right: 10px;
  }
}

@media (max-width: 320px) {
  .production-page .production-steps-content .content-image {
    width: auto;
  }
}