/* 
    Created on : 12-feb-2025, 18.39.07
    Author     : rossi
*/
@import url('../fonts/opensans/stylesheet.css');

:root {
    /*--h1-font: "Default";
    --h1-size: 6rem;
    --h1-weight: 900;
    
    --h2-font: 'Poppins', sans-serif;
    --h2-size: 3rem;
    --h2-weight: 600;
    
    --p-font: 'Poppins', sans-serif;
    --p-size: 1rem;
    --p-weight: 400;
    */

    --header-bg-color: #ffffff;
    --nav-brand-height: 35px;
    --nav-item-color: #f5f5f5;
    --top-nav-item-color: #f5f5f5;
    --hero-bg-color: #28293E;
    --footer-brand-height: 80px;
    
    --bg-color: #ffffff;
    --bg-grey-light: #f9f9f9;
    --bg-green-light: #ecf7f2;
    --black-color: #111111;
    --green-color: #00A651;
    --green-color2: #69a742;
    --grey-black: #58585A;
    --grey: #9C9C9C;
    --green-light: #6bffb5;
    --Border-2: rgba(27, 30, 35, 0.1);
    
    --white: #ffffff;
}

*, *::after, *::before {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html, body {
  height: 100%;
}

body {
  line-height: 1.74;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  visibility: visible;
  font-family: 'Open Sans', sans-serif;
  color: var(--grey-black);
  position: relative;
  background-color: #ffffff;
}
body.no-overflow {
  overflow: hidden;
}

.site-wrapper-reveal {
  background: #ffffff;
}

h1, h3, h4, h5, h6 {
  color: var(--grey-black);
  margin-top: 0;
  margin-bottom: 0;
  line-height: 1.41;
}
h2 {
  color: var(--green-color);
  margin-top: 0;
  margin-bottom: 0;
  line-height: 1.41;
}

h1 {
  font-size: 60px;
  line-height: 1.1;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  h1 {
    font-size: 46px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  h1 {
    font-size: 40px;
  }
}
@media only screen and (max-width: 767px) {
  h1 {
    font-size: 34px;
  }
}

h2 {
  font-size: 36px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  h2 {
    font-size: 32px;
  }
}
@media only screen and (max-width: 767px) {
  h2 {
    font-size: 30px;
  }
}

h3 {
  font-size: 30px;
  
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  h3 {
    font-size: 28px;
  }
}
@media only screen and (max-width: 767px) {
  h3 {
    font-size: 25px;
  }
}

h4 {
  font-size: 26px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  h4 {
    font-size: 24px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  h4 {
    font-size: 22px;
  }
}
@media only screen and (max-width: 767px) {
  h4 {
    font-size: 22px;
  }
}

h5 {
  font-size: 24px;
}
@media only screen and (max-width: 767px) {
  h5 {
    font-size: 20px;
  }
}

h6 {
  font-size: 18px;
}
.sub-title {
    font-family: 'Open Sans', sans-serif;
    font-size: 26px;
    font-weight: 600;
    line-height: 40px;
    letter-spacing: -0.02em;
    color: var(--black);
    margin-bottom: 20px;
}
p:last-child {
  margin-bottom: 0;
}

a, button {
  color: inherit;
  display: inline-block;
  line-height: inherit;
  text-decoration: none;
  cursor: pointer;
}

a, button, img, input, span {
  -webkit-transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
  -o-transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
}

*:focus {
  outline: none !important;
}

a:focus {
  color: inherit;
  outline: none;
  text-decoration: none;
}
svg {width: 100%;}

.btn.focus, .btn:focus {
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

a:hover {
  text-decoration: none;
  color: green;
}

button, input[type=submit] {
  cursor: pointer;
}

ul {
  list-style: outside none none;
  margin: 0;
  padding: 0;
}

.h-lg {
  font-size: 48px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .h-lg {
    font-size: 40px;
  }
}
@media only screen and (max-width: 767px) {
  .h-lg {
    font-size: 34px;
  }
}

label {
  margin-bottom: 5px;
}

.font-lg-p {
  font-size: 18px;
}

.mark, mark {
  padding: 0 0;
  background-color: transparent;
}

.font-weight--bold {
  font-weight: 700;
}

.font-weight--reguler {
  font-weight: 500;
}

.font-weight--normal {
  font-weight: 400;
}

.font-weight--light {
  font-weight: 300;
}

.site-wrapper-reveal {
  position: relative;
  z-index: 2;
  background: #ffffff;
}

/*--
    Default Class
*/
.z-index-1 {
  z-index: 1;
}

.text-color-primary {
  color: #dcb14a;
}
.green{
    color:var(--green-color);
}
.text-color-secondary {
  color: #d2a98e;
}
.text-color-green {
    color: var(--green-color);
}
.text-black {
  color: #111 !important;
}
.text-white {
  color: var(--bg-color);
}
.bg-white {
  background: #ffffff;
}

.bg-green-light {
  background: var(--bg-green-light);
}

.bg-gray {
  background: #E2E2E2;
}

.bg-gray-2 {
  background: #58585a;
}

.bg-theme-default {
  background: #dcb14a;
}

.theme-bg-secondary {
  background: #d2a98e;
}

.black-bg {
  background: #000000;
}

.border-radus-5 {
  border-radius: 5px;
}

.sub-heading {
  color: #999;
}

.text-red {
  color: red;
}

.text-green {
  color: #d2a98e;
}

.bg-gradient {
  background: -webkit-linear-gradient(top, #FFF 0, #F5F5F5 100%);
}
.spacing-1 {
  padding-top: 80px;
  padding-bottom: 120px;
}
.spacing-2 {
  padding-top: 120px;
  padding-bottom: 0px;
}

.spacing-3 {
  padding-top: 0px;
  padding-bottom: 120px;
}
@media (max-width: 991px) {
   .spacing-1 {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .spacing-2 {
    padding-top: 60px;
    padding-bottom: 0px;
  }

  .spacing-3 {
    padding-top: 0px;
    padding-bottom: 60px;
  }
}
/*-- Tab Content & Pane Fix --*/
select {
  padding: 3px 20px;
  height: 56px;
  max-width: 100%;
  width: 100%;
  outline: none;
  border: 1px solid #f8f8f8;
  border-radius: 5px;
  background: #f8f8f8 url("../images/icons/selector-icon.webp") no-repeat center right 20px;
  background-color: #f8f8f8;
  -moz-appearance: none;
  -webkit-appearance: none;
}
select:focus {
  background: #f8f8f8 url("../images/icons/selector-icon.webp") no-repeat center right 20px !important;
}

.fixed-bg {
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

/*------- Defauld Class --------*/
.text-black {
  color: #333;
}

.box-shadow-top {
  -webkit-box-shadow: 0 10px 15px rgba(0, 0, 0, 0.05);
          box-shadow: 0 10px 15px rgba(0, 0, 0, 0.05);
}

.border {
  border: 1px solid #ededed !important;
}

.border-top {
  border-top: 1px solid #ededed !important;
}

.border-right {
  border-right: 1px solid #ededed !important;
}

.border-bottom {
  border-bottom: 1px solid #ededed !important;
}

.border-left {
  border-left: 1px solid #ededed !important;
}

.border-top-dash {
  border-top: 1px dashed #ddd !important;
}

.border-bottom-dash {
  border-bottom: 1px dashed #ddd !important;
}

.border-top-thick {
  border-top: 2px solid #ededed !important;
}

.border-bottom-thick {
  border-bottom: 2px solid #ededed !important;
}

.border-top-drak {
  border-top: 1px solid rgba(255, 255, 255, 0.2) !important;
}

.border-bottom-drak {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2) !important;
}

.border-top-black {
  border-top: 1px solid #333;
}

.border-bottom-black {
  border-bottom: 1px solid #333;
}

.bg-img {
  background: #888;
}

.sub-heading {
  font-size: 14px;
}

.section-title {
  position: relative;
  padding-bottom: 10px;
  margin-right: 30px;
}

.section-title h1 {
  font-size: 50px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  line-height: 1.43;
}
.section-title h1 span {
  font-size: 40px;
  letter-spacing: 1.5px;
  text-transform: none;
  display: block;
  position: relative;
  padding-top: 20px;
  max-width: 80%;
}
.section-title h1 span:before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  background: var(--grey-black);
  height: 1px;
  width: 100%;
}
@media only screen and (max-width: 1200px) {
    .section-title h1 span {    
    max-width: 100%;
  }
}

.section-title--one {
  position: relative;
  padding-bottom: 10px;
}
.section-title--one::after {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  background: #88df52;
  height: 4px;
  width: 100px;
}
.section-title--center::after {
  position: absolute;
  content: "";
  left: 50%;
  bottom: 0;
  background: #dcb14a;
  height: 4px;
  width: 70px;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}

.section-sub-title {
  font-size: 14px;
  letter-spacing: 3px;
  text-transform: uppercase;
  line-height: 1.43;
  margin-top: -5px;
}

.section-under-heading {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.4;
  color: #111;
}
.section-under-heading a {
  color: #dcb14a;
  border-bottom: 1px solid #ccc;
  position: relative;
}
.section-under-heading a::before {
  content: "";
  width: 0;
  height: 1px;
  bottom: -1px;
  position: absolute;
  left: auto;
  right: 0;
  z-index: 1;
  -webkit-transition: width 0.6s cubic-bezier(0.25, 0.8, 0.25, 1) 0s;
  -o-transition: width 0.6s cubic-bezier(0.25, 0.8, 0.25, 1) 0s;
  transition: width 0.6s cubic-bezier(0.25, 0.8, 0.25, 1) 0s;
  background: currentColor;
}
.section-under-heading a:hover::before {
  width: 100%;
  left: 0;
  right: auto;
}

.img-width {
  width: 100%;
}

.title-dec-text {
  text-align: center;
  max-width: 760px;
  margin: auto;
}

::-moz-selection {
  color: #ffffff;
  background-color: #dcb14a;
}

::selection {
  color: #ffffff;
  background-color: #dcb14a;
}

form {
  /* FF 4-18 */
  /* FF 19+ */
  /* IE 10+ */
}
form .form-contact.style-3  input:focus::-webkit-input-placeholder {
  color: transparent;
}
form .form-contact.style-3  input:focus::-moz-placeholder {
  color: transparent;
}
form .form-contact.style-3  input:focus:-ms-input-placeholder {
  color: transparent;
}
form .form-contact.style-3  input::-webkit-input-placeholder, form .form-contact.style-3  textarea::-webkit-input-placeholder {
  -webkit-transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
}
form .form-contact.style-3  input::-moz-placeholder, form .form-contact.style-3  textarea::-moz-placeholder {
  -moz-transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
}
form .form-contact.style-3  input:-ms-input-placeholder, form .form-contact.style-3 textarea:-ms-input-placeholder {
  -ms-transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
}
form .form-contact.style-3  input::-ms-input-placeholder, form .form-contact.style-3  textarea::-ms-input-placeholder {
  -ms-transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
}
form .form-contact.style-3  input::placeholder, form .form-contact.style-3  textarea::placeholder {
  -webkit-transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
  -o-transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
}

 .form-contact.style-3  input[type=text]:focus,  .form-contact.style-3  input[type=email]:focus,  .form-contact.style-3  input[type=url]:focus,  .form-contact.style-3  input[type=password]:focus,  .form-contact.style-3  input[type=search]:focus,  .form-contact.style-3  input[type=number]:focus,  .form-contact.style-3  input[type=tel]:focus,  .form-contact.style-3  input[type=range]:focus,  .form-contact.style-3  input[type=date]:focus,  .form-contact.style-3  input[type=month]:focus,  .form-contact.style-3  input[type=week]:focus,  .form-contact.style-3  input[type=time]:focus,  .form-contact.style-3  input[type=datetime]:focus,  .form-contact.style-3  input[type=datetime-local]:focus,  .form-contact.style-3  input[type=color]:focus, textarea:focus, select:focus, select:focus, textarea:focus {
  color: var(--green-color2);
  border-color: var(--green-color2);
}

 .form-contact.style-3  input[type=checkbox] {
  position: relative;
  background: 0 0;
  border-width: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  margin: 0 10px 0 3px;
  cursor: pointer;
}

/*=============================================
   - Scroll top         
=============================================*/
.scroll-top {
  position: fixed;
  right: 30px;
  bottom: -60px;
  z-index: 999;
  -webkit-box-shadow: 0 30px 50px rgba(0, 0, 0, 0.03);
          box-shadow: 0 30px 50px rgba(0, 0, 0, 0.03);
  display: block;
  padding: 0;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  text-align: center;
  font-size: 25px;
  line-height: 60px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  background-color: var(--green-color2);
  background-size: 200% auto;
  background-position: left center;
  color: #ffffff;
  -webkit-transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
  -o-transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
  overflow: hidden;
}
@media only screen and (max-width: 479px) {
  .scroll-top {
    width: 50px;
    height: 50px;
    line-height: 50px;
    font-size: 20px;
  }
}
.scroll-top.show {
  visibility: visible;
  opacity: 1;
  bottom: 60px;
}
.scroll-top i {
  position: absolute;
  top: 50%;
  left: 50%;
  color: #ffffff;
  -webkit-transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
  -o-transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.scroll-top .arrow-top {
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.scroll-top .arrow-bottom {
  -webkit-transform: translate(-50%, 80px);
      -ms-transform: translate(-50%, 80px);
          transform: translate(-50%, 80px);
}
.scroll-top:hover {
  background-position: right center;
}
.scroll-top:hover .arrow-top {
  -webkit-transform: translate(-50%, -80px);
      -ms-transform: translate(-50%, -80px);
          transform: translate(-50%, -80px);
}
.scroll-top:hover .arrow-bottom {
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

/*============================================
=           02. Section Spacing Css          =
=============================================*/
.section-space {
  /* Section Padding Css */
  /* Section Margin Css */
}
.section-space--ptb_50 {
  padding-top: 50px;
  padding-bottom: 50px;
}
.section-space--ptb_120 {
  padding-top: 120px;
  padding-bottom: 120px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .section-space--ptb_120 {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
@media only screen and (max-width: 767px) {
  .section-space--ptb_120 {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
.section-space--pt_120 {
  padding-top: 120px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .section-space--pt_120 {
    padding-top: 80px;
  }
}
@media only screen and (max-width: 767px) {
  .section-space--pt_120 {
    padding-top: 60px;
  }
}
.section-space--pb_120 {
  padding-bottom: 120px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .section-space--pb_120 {
    padding-bottom: 80px;
  }
}
@media only screen and (max-width: 767px) {
  .section-space--pb_120 {
    padding-bottom: 60px;
  }
}
.section-space--ptb_100 {
  padding-top: 100px;
  padding-bottom: 100px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .section-space--ptb_100 {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
@media only screen and (max-width: 767px) {
  .section-space--ptb_100 {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
.section-space--pt_100 {
  padding-top: 100px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .section-space--pt_100 {
    padding-top: 80px;
  }
}
@media only screen and (max-width: 767px) {
  .section-space--pt_100 {
    padding-top: 60px;
  }
}
.section-space--pb_100 {
  padding-bottom: 100px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .section-space--pb_100 {
    padding-bottom: 80px;
  }
}
@media only screen and (max-width: 767px) {
  .section-space--pb_100 {
    padding-bottom: 60px;
  }
}
.section-space--ptb_90 {
  padding-top: 90px;
  padding-bottom: 90px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .section-space--ptb_90 {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
@media only screen and (max-width: 767px) {
  .section-space--ptb_90 {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
.section-space--pt_90 {
  padding-top: 90px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .section-space--pt_90 {
    padding-top: 60px;
  }
}
@media only screen and (max-width: 767px) {
  .section-space--pt_90 {
    padding-top: 40px;
  }
}
.section-space--pb_90 {
  padding-bottom: 90px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .section-space--pb_90 {
    padding-bottom: 60px;
  }
}
@media only screen and (max-width: 767px) {
  .section-space--pb_90 {
    padding-bottom: 40px;
  }
}
.section-space--ptb_80 {
  padding-top: 80px;
  padding-bottom: 80px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .section-space--ptb_80 {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
@media only screen and (max-width: 767px) {
  .section-space--ptb_80 {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
.section-space--pt_80 {
  padding-top: 80px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .section-space--pt_80 {
    padding-top: 60px;
  }
}
@media only screen and (max-width: 767px) {
  .section-space--pt_80 {
    padding-top: 40px;
  }
}
.section-space--pb_80 {
  padding-bottom: 90px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .section-space--pb_80 {
    padding-bottom: 60px;
  }
}
@media only screen and (max-width: 767px) {
  .section-space--pb_80 {
    padding-bottom: 40px;
  }
}
.section-space--ptb_70 {
  padding-top: 70px;
  padding-bottom: 70px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .section-space--ptb_70 {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
@media only screen and (max-width: 767px) {
  .section-space--ptb_70 {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
.section-space--pt_70 {
  padding-top: 70px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .section-space--pt_70 {
    padding-top: 40px;
  }
}
@media only screen and (max-width: 767px) {
  .section-space--pt_70 {
    padding-top: 30px;
  }
}
.section-space--pb_70 {
  padding-bottom: 70px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .section-space--pb_70 {
    padding-bottom: 40px;
  }
}
@media only screen and (max-width: 767px) {
  .section-space--pb_70 {
    padding-bottom: 30px;
  }
}
.section-space--ptb_60 {
  padding-top: 60px;
  padding-bottom: 60px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .section-space--ptb_60 {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
@media only screen and (max-width: 767px) {
  .section-space--ptb_60 {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
.section-space--pt_60 {
  padding-top: 60px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .section-space--pt_60 {
    padding-top: 60px;
  }
}
@media only screen and (max-width: 767px) {
  .section-space--pt_60 {
    padding-top: 60px;
  }
}
.section-space--pb_60 {
  padding-bottom: 60px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .section-space--pb_60 {
    padding-bottom: 60px;
  }
}
@media only screen and (max-width: 767px) {
  .section-space--pb_60 {
    padding-bottom: 60px;
  }
}
.section-space--pt_40 {
  padding-top: 40px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .section-space--pt_40 {
    padding-top: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .section-space--pt_40 {
    padding-top: 30px;
  }
}
.section-space--pb_40 {
  padding-bottom: 40px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .section-space--pb_40 {
    padding-bottom: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .section-space--pb_40 {
    padding-bottom: 30px;
  }
}
.section-space--ptb_30 {
  padding-top: 30px;
  padding-bottom: 30px;
}
.section-space--pt_30 {
  padding-top: 30px;
}
.section-space--pb_30 {
  padding-bottom: 30px;
}
.section-space--mt_15 {
  margin-top: 15px;
}
.section-space--mt_20 {
  margin-top: 20px;
}
.section-space--mt_30 {
  margin-top: 30px;
}
.section-space--mt_40 {
  margin-top: 40px;
}
.section-space--mt_50 {
  margin-top: 50px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .section-space--mt_50 {
    margin-top: 40px;
  }
}
@media only screen and (max-width: 767px) {
  .section-space--mt_50 {
    margin-top: 30px;
  }
}
.section-space--mt_60 {
  margin-top: 60px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .section-space--mt_60 {
    margin-top: 50px;
  }
}
@media only screen and (max-width: 767px) {
  .section-space--mt_60 {
    margin-top: 30px;
  }
}
.section-space--mt_70 {
  margin-top: 70px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .section-space--mt_70 {
    margin-top: 50px;
  }
}
@media only screen and (max-width: 767px) {
  .section-space--mt_70 {
    margin-top: 30px;
  }
}
.section-space--mt_80 {
  margin-top: 80px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .section-space--mt_80 {
    margin-top: 50px;
  }
}
@media only screen and (max-width: 767px) {
  .section-space--mt_80 {
    margin-top: 30px;
  }
}
.section-space--mt_100 {
  margin-top: 100px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .section-space--mt_100 {
    margin-top: 80px;
  }
}
@media only screen and (max-width: 767px) {
  .section-space--mt_100 {
    margin-top: 60px;
  }
}
.section-space--mt_120 {
  margin-top: 120px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .section-space--mt_120 {
    margin-top: 80px;
  }
}
@media only screen and (max-width: 767px) {
  .section-space--mt_120 {
    margin-top: 60px;
  }
}
.section-space--mb_15 {
  margin-bottom: 15px;
}
.section-space--mb_20 {
  margin-bottom: 20px;
}
.section-space--mb_30 {
  margin-bottom: 30px;
}
.section-space--mb_40 {
  margin-bottom: 40px;
}
@media only screen and (max-width: 767px) {
  .section-space--mb_40 {
    margin-bottom: 30px;
  }
}
.section-space--mb_50 {
  margin-bottom: 50px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .section-space--mb_50 {
    margin-bottom: 40px;
  }
}
@media only screen and (max-width: 767px) {
  .section-space--mb_50 {
    margin-bottom: 30px;
  }
}
.section-space--mb_60 {
  margin-bottom: 60px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .section-space--mb_60 {
    margin-bottom: 50px;
  }
}
@media only screen and (max-width: 767px) {
  .section-space--mb_60 {
    margin-bottom: 30px;
  }
}
.section-space--mb_100 {
  margin-bottom: 100px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .section-space--mb_100 {
    margin-bottom: 80px;
  }
}
@media only screen and (max-width: 767px) {
  .section-space--mb_100 {
    margin-bottom: 60px;
  }
}
.section-space--mb_120 {
  margin-bottom: 120px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .section-space--mb_120 {
    margin-bottom: 80px;
  }
}
@media only screen and (max-width: 767px) {
  .section-space--mb_120 {
    margin-bottom: 60px;
  }
}

.mb-10 {
  margin-bottom: 10px;
}

.mb-15 {
  margin-bottom: 15px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-25 {
  margin-bottom: 25px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-40 {
  margin-bottom: 40px;
}
.mb-50 {
  margin-bottom: 50px;
}

.mb-60 {
  margin-bottom: 60px;
}

.mt-10 {
  margin-top: 10px;
}

.mt-15 {
  margin-top: 15px;
}

.mt-20 {
  margin-top: 20px;
}

.mt-25 {
  margin-top: 25px;
}

.mt-30 {
  margin-top: 30px;
}

.mt-40 {
  margin-top: 40px;
}
.mt-50 {
  margin-top: 50px;
}

.mt-60 {
  margin-top: 60px;
}

@media only screen and (max-width: 767px) {
  .small-mt__0 {
    margin-top: 0px;
  }

  .small-mt__10 {
    margin-top: 10px;
  }

  .small-mt__20 {
    margin-top: 20px;
  }

  .small-mt__30 {
    margin-top: 30px;
  }

  .small-mt__40 {
    margin-top: 40px;
  }

  .small-mt__50 {
    margin-top: 50px;
  }

  .small-mt__60 {
    margin-top: 60px;
  }

  .small-mb__30 {
    margin-bottom: 30px;
  }

  .small-mb__40 {
    margin-bottom: 40px;
  }

  .small-mb__50 {
    margin-bottom: 50px;
  }

  .small-mb__60 {
    margin-bottom: 60px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tablet-mt__0 {
    margin-top: 0px;
  }

  .tablet-mt__30 {
    margin-top: 30px;
  }

  .tablet-mt__40 {
    margin-top: 40px;
  }

  .tablet-mt__50 {
    margin-top: 50px;
  }

  .tablet-mt__60 {
    margin-top: 60px;
  }

  .tablet-mb__30 {
    margin-bottom: 30px;
  }

  .tablet-mb__40 {
    margin-bottom: 40px;
  }

  .tablet-mb__50 {
    margin-bottom: 50px;
  }

  .tablet-mb__60 {
    margin-bottom: 60px;
  }
}

/*=============================================
=            04. container Css            =
=============================================*/
.max-300{
    max-width: 300px;
}
.container-fluid--cp-150 {
  padding: 0 150px;
}
@media only screen and (min-width: 1500px) and (max-width: 1699px) {
  .container-fluid--cp-150 {
    padding: 0 50px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1499px) {
  .container-fluid--cp-150 {
    padding: 0 50px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1199px) {
  .container-fluid--cp-150 {
    padding: 0 30px;
  }
}
@media only screen and (max-width: 767px) {
  .container-fluid--cp-150 {
    padding: 0 20px;
  }
}
.container-fluid--cp-120 {
  padding: 0 120px;
}
@media only screen and (min-width: 1281px) and (max-width: 1699px) {
  .container-fluid--cp-120 {
    padding: 0 50px;
  } 
}
@media only screen and (max-width: 1280px) {
  .container-fluid--cp-120 {
    padding: 0 20px;
  }
}

@media (min-width: 1700px) {
  .container-fluid--cp-140 {
    padding: 0 140px !important;
  }
}
@media (min-width: 1700px) and (max-width: 1663px) {
  .container-fluid--cp-140 {
    padding: 0 100px !important;
  }
}
@media (min-width: 1600px) and (max-width: 1664px) {
  .container-fluid--cp-140 {
    padding: 0 30px !important;
  }
}
@media (min-width: 1200px) {
  .container-fluid--cp-140 {
    padding: 0 30px;
  }
}
@media (min-width: 1600px) {
  .container-fluid--cp-120 {
    padding: 0 120px !important;
  }
}
@media (min-width: 1600px) and (max-width: 1664px) {
  .container-fluid--cp-120 {
    padding: 0 110px !important;
  }
}
@media (min-width: 1200px) {
  .container-fluid--cp-120 {
    padding: 0 50px;
  }
}
.container-fluid--cp-100 {
  padding: 0 100px;
}
@media only screen and (min-width: 1200px) and (max-width: 1499px) {
  .container-fluid--cp-100 {
    padding: 0 50px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .container-fluid--cp-100 {
    padding: 0 30px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .container-fluid--cp-100 {
    padding: 0 30px;
  }
}
@media only screen and (max-width: 767px) {
  .container-fluid--cp-100 {
    padding: 0 15px;
  }
}
@media (min-width: 1600px) {
  .container-fluid--cp-80 {
    padding: 0 80px !important;
  }
}
@media (min-width: 1600px) and (max-width: 1664px) {
  .container-fluid--cp-80 {
    padding: 0 30px !important;
  }
}
@media (min-width: 1200px) {
  .container-fluid--cp-80 {
    padding: 0 30px;
  }
}
.container-fluid--cp-60 {
  padding: 0 60px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .container-fluid--cp-60 {
    padding: 0 15px;
  }
}
@media only screen and (max-width: 767px) {
  .container-fluid--cp-60 {
    padding: 0 15px;
  }
}
.container-fluid--cp-30 {
  padding: 0 30px;
}
@media only screen and (max-width: 767px) {
  .container-fluid--cp-30 {
    padding: 0 15px;
  }
}

@media (min-width: 1200px) {
  .page-content-double-sidebar .container {
    max-width: 1600px;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1170px;
  }
}
.container {
  max-width: 1170px;
}

.container_fl {
  padding-left: 15px;
  padding-right: 15px;
}

.col-06__left {
  width: 600px;
  max-width: 100%;
  float: right;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (max-width: 767px) {
  .col-06__left {
    float: none;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 40px;
  }
}

.col-06__right {
  width: 600px;
  max-width: 100%;
  float: left;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (max-width: 767px) {
  .col-06__right {
    float: none;
    margin-left: auto;
    margin-right: auto;
  }
}

.banner-image__content {
  width: 570px;
  max-width: 100%;
}

.row--35 {
  margin-left: -35px !important;
  margin-right: -35px !important;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .row--35 {
    margin-left: -15px;
    margin-right: -15px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .row--35 {
    margin-left: -15px;
    margin-right: -15px;
  }
}
@media only screen and (max-width: 767px) {
  .row--35 {
    margin-left: -15px !important;
    margin-right: -15px !important;
  }
}
.row--35 > [class*=col], .row--35 > [class*=col-] {
  padding-left: 35px !important;
  padding-right: 35px !important;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .row--35 > [class*=col], .row--35 > [class*=col-] {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .row--35 > [class*=col], .row--35 > [class*=col-] {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
}
@media only screen and (max-width: 767px) {
  .row--35 > [class*=col], .row--35 > [class*=col-] {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
}

.row--30 {
  margin-left: -30px;
  margin-right: -30px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .row--30 {
    margin-left: -15px;
    margin-right: -15px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .row--30 {
    margin-left: -15px;
    margin-right: -15px;
  }
}
@media only screen and (max-width: 767px) {
  .row--30 {
    margin-left: -15px !important;
    margin-right: -15px !important;
  }
}
.row--30 > [class*=col], .row--30 > [class*=col-] {
  padding-left: 30px;
  padding-right: 30px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .row--30 > [class*=col], .row--30 > [class*=col-] {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .row--30 > [class*=col], .row--30 > [class*=col-] {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
}
@media only screen and (max-width: 767px) {
  .row--30 > [class*=col], .row--30 > [class*=col-] {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
}

.row--25 {
  margin-left: -25px;
  margin-right: -24px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .row--25 {
    margin-left: -15px;
    margin-right: -15px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .row--25 {
    margin-left: -15px;
    margin-right: -15px;
  }
}
@media only screen and (max-width: 767px) {
  .row--25 {
    margin-left: -15px !important;
    margin-right: -15px !important;
  }
}
.row--25 > [class*=col], .row--25 > [class*=col-] {
  padding-left: 25px;
  padding-right: 25px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .row--25 > [class*=col], .row--25 > [class*=col-] {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .row--25 > [class*=col], .row--25 > [class*=col-] {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
}
@media only screen and (max-width: 767px) {
  .row--25 > [class*=col], .row--25 > [class*=col-] {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
}

.row--6 {
  margin-left: -6px;
  margin-right: -6px;
}
.row--6 > [class*=col], .row--6 > [class*=col-] {
  padding-left: 6px;
  padding-right: 6px;
}

.row--5 {
  margin-left: -5px;
  margin-right: -5px;
}
.row--5 > [class*=col], .row--5 > [class*=col-] {
  padding-left: 5px;
  padding-right: 5px;
}

/*=============================================
=                05. Header Css               =
=============================================*/
.header-sticky.is-sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  -webkit-animation: 0.95s ease-in-out 0s normal none 1 running fadeInDown;
          animation: 0.95s ease-in-out 0s normal none 1 running fadeInDown;
  z-index: 999;
  -webkit-transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
  -o-transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
  -webkit-box-shadow: 0 1px 1px 0 #f0f0f0;
          box-shadow: 0 1px 1px 0 #f0f0f0;
  background-color: var(--header-bg-color);
}
.header-sticky.is-sticky.header_height-110 {
  height: 90px;
}
.header-area--default{
    position: absolute;
    width: 100%;
    z-index: 1001;
}
.header_height-90 {
  height: 90px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}

.header_height-110 {
  height: 110px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}


.header {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  /* logo */
}

.header-left-search {
  width: 100%;
  max-width: 275px;
}
.header-left-search .header-search-box {
  position: relative;
}
.header-left-search .search-field {
  width: 100%;
  padding: 10px 35px 10px 0;
  border-width: 0 0 1px;
  border-color: rgba(0, 0, 0, 0.25);
  background-color: transparent;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}
.header-left-search .search-icon {
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 9;
  font-size: 22px;
  color: #000;
  line-height: 1;
  cursor: pointer;
  z-index: 1;
  border: none;
  background: transparent;
}

.header-right-side {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.header-right-side .header-right-items {
  margin-left: 40px;
}
.header-right-side .header-right-items a {
  font-size: 24px;
}
.header-right-side .header-right-items a.mobile-navigation-icon {
  font-size: 30px;
}
.header-right-side .header-right-items a.mobile-navigation-icon i {
  margin-bottom: 5px;
}
@media only screen and (max-width: 1024px) {
    .header-right-side.justify-content-center{
        justify-content: end!important;
    }
}
@media only screen and (max-width: 575px) {
  .header-right-side .header-right-items {
    margin-left: 30px;
  }
}

/*===============================
    - Mega Menu
===============================*/
#mega-menu-wrap-menu-1 #mega-menu-menu-1 > li.mega-menu-item > a.mega-menu-link,
#mega-menu-wrap-menu-1 #mega-menu-menu-1 > li.mega-menu-item.mega-current-menu-item > a.mega-menu-link, #mega-menu-wrap-menu-1 #mega-menu-menu-1 > li.mega-menu-item.mega-current-menu-ancestor > a.mega-menu-link, #mega-menu-wrap-menu-1 #mega-menu-menu-1 > li.mega-menu-item.mega-current-page-ancestor > a.mega-menu-link{  
    background: var(--header-bg-color);
    color: var(--black-color);
    font-weight: normal;
    text-decoration: none;
    border-color: var(--header-bg-color);
    font-family: 'Open Sans';
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
}

#mega-menu-wrap-menu-1 #mega-menu-menu-1 > li.mega-menu-item.mega-toggle-on > a.mega-menu-link{
    font-weight: 700;
}



#mega-menu-wrap-menu-1 #mega-menu-menu-1 > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link, #mega-menu-wrap-menu-1 #mega-menu-menu-1 > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link:hover, #mega-menu-wrap-menu-1 #mega-menu-menu-1 > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link:focus, #mega-menu-wrap-menu-1 #mega-menu-menu-1 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link:hover, #mega-menu-wrap-menu-1 #mega-menu-menu-1 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link:focus{
border-bottom: 1px solid var(--black-color);
padding-bottom: 5px;
    margin-bottom: 15px;
}

#mega-menu-wrap-menu-1 .mega-menu-toggle .mega-toggle-block-0 .mega-toggle-animated-inner, #mega-menu-wrap-menu-1 .mega-menu-toggle .mega-toggle-block-0 .mega-toggle-animated-inner::before, #mega-menu-wrap-menu-1 .mega-menu-toggle .mega-toggle-block-0 .mega-toggle-animated-inner::after{
    height: 2px;
}

#mega-menu-wrap-menu-1 #mega-menu-menu-1 li.mega-menu-item-has-children > a.mega-menu-link > span.mega-indicator:after{
    font-size: 20px;
    color:var(--green-color);
}
.container-mega-menu {
   
}
@media only screen and (max-width: 1280px) {
   
}

@media only screen and (min-width: 1025px) and (max-width: 1440px) {
    
    #mega-menu-wrap-menu-1 #mega-menu-menu-1 > li.mega-menu-item > a.mega-menu-link,
    #mega-menu-wrap-menu-1 #mega-menu-menu-1 > li.mega-menu-item > a.mega-menu-link, #mega-menu-wrap-menu-1 #mega-menu-menu-1 > li.mega-menu-item.mega-current-menu-item > a.mega-menu-link,
    #mega-menu-wrap-menu-1 #mega-menu-menu-1 > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link{
        font-size: 0.8rem;
        padding: 0 5px 0 5px;
    }
}
@media only screen and (max-width: 1280px) {
    #mega-menu-wrap-menu-1 #mega-menu-menu-1 > li.mega-menu-item-66,
    #mega-menu-wrap-menu-1 #mega-menu-menu-1 > li.mega-menu-item-970 {
        padding: 20px 0;
    }
     #mega-menu-wrap-menu-1 .mega-menu-toggle .mega-toggle-blocks-right .mega-toggle-block:only-child {
        margin-left: 0;
    }
    #mega-menu-wrap-menu-1 .mega-menu-toggle .mega-toggle-blocks-right .mega-toggle-block {
        margin-right: 0;
    }
}
@media only screen and (min-width: 992px) and (max-width: 1280px) {
    #mega-menu-wrap-menu-1 .mega-menu-toggle + #mega-menu-menu-1 {
        
        width: 700px;
    }
        #mega-menu-wrap-menu-1 .mega-menu-toggle + #mega-menu-menu-1 {
        left: -700px;
    }
    #mega-menu-wrap-menu-1 .mega-menu-toggle.mega-menu-open ~ button.mega-close {
        
        left: calc(min(100vw - 40px, 700px));
        
    }
}
@media only screen and (min-width: 992px) and (max-width: 1024px) {
    .container-mega-menu.order-lg-2 {
        order: 3 !important;
    }
    .container-mega-menu.col-lg-8 {
        flex: 0 0 auto;
        width: 8.33333333%;
    }
    .container-search.order-lg-3{
         order: 2 !important;        
    }
    .container-search.col-lg-1 {
        flex: 0 0 auto;
        width: 66.66666667%;
    }
}

@media only screen and (max-width: 1360px) {
    #mega-menu-wrap-menu-1 #mega-menu-menu-1 > li.mega-menu-item > a.mega-menu-link,
    #mega-menu-wrap-menu-1 #mega-menu-menu-1 > li.mega-menu-item.mega-current-menu-item > a.mega-menu-link{
        padding: 0 5px 0 5px;
        font-size: 0.8rem;
    }
}
@media only screen and (max-width: 1199px) {
    #mega-menu-wrap-menu-1 #mega-menu-menu-1 > li.mega-menu-item > a.mega-menu-link,
    #mega-menu-wrap-menu-1 #mega-menu-menu-1 > li.mega-menu-item.mega-current-menu-item > a.mega-menu-link{
        padding: 0 10px 0 10px;
        font-size: 0.8rem;
    }
    #mega-menu-wrap-menu-1 #mega-menu-menu-1 > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item, #mega-menu-wrap-menu-1 #mega-menu-menu-1 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item {
     padding: 15px 10px 15px 10px;   
    }
     #mega-menu-wrap-menu-1 #mega-menu-menu-1 > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link, #mega-menu-wrap-menu-1 #mega-menu-menu-1 > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link:hover, #mega-menu-wrap-menu-1 #mega-menu-menu-1 > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link:focus, #mega-menu-wrap-menu-1 #mega-menu-menu-1 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link:hover, #mega-menu-wrap-menu-1 #mega-menu-menu-1 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link:focus{
border-bottom: 1px solid var(--black-color);
padding-bottom: 5px;
    margin-bottom: 15px;
    margin-left: 5px;
    margin-right: 5px;
}
    
}
@media only screen and (min-width: 769px) {
    #mega-menu-wrap-menu-1 {
            background: var(--header-bg-color);
        }
   
}

/*===============================
    - Sezione video: inizialmente fissa, blocca lo scroll della pagina
===============================*/

    .video-section.fixed {
      position: relative;
      top: 0;
      left: 0;
      width: 100%;
      height: 100vh;
      overflow: hidden;
     
    }
    /* Quando l'effetto è completo, la sezione diventa statica e la pagina può scrollare */
    .video-section.static {
      position: static;
      height: 100vh;
      overflow: hidden;
    }

    /* Contenitore del video con clip-path iniziale */
    .video-container {
      width: 100%;
      height: 100%;
      clip-path: polygon(30% 30%, 70% 30%, 70% 70%, 30% 70%);
      transition: clip-path 0.1s ease-out;
    }
    video {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    /* Contenuto successivo per vedere lo scroll dopo l'effetto */
    .presentation-wrap {
      position: relative;
      padding-top: 110px;
      padding-left: 20px;
      padding-right: 20px;
      padding-bottom: 60px;
      background: var(--bg-color);
    }

/*===============================
    - search overlay
===============================*/
.search-overlay {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #111;
  -webkit-transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
  -o-transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
  z-index: 9999;
  visibility: hidden;
  opacity: 0;
  overflow: hidden;
  -webkit-transform: translateY(100%);
      -ms-transform: translateY(100%);
          transform: translateY(100%);
  transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.search-overlay__inner {
  width: 100%;
  height: 100%;
  cursor: default;
  background: #f4f5f7;
  -webkit-transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
  -o-transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
  overflow-y: hidden;
}
.search-overlay.active {
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
  visibility: visible;
  opacity: 1;
}
.search-overlay__header {
  background-color: #f4f5f7;
  padding: 50px 0;
}
.search-overlay__header .mobile-navigation-close-icon {
  font-size: 20px;
  cursor: pointer;
}
.search-overlay__body {
  width: 100%;
  margin: 0 auto;
  margin-bottom: 75px;
}
.search-overlay__form {
  position: relative;
  max-width: 1200px;
  padding: 0 15px;
  width: 100%;
  margin: auto;
}
.search-overlay__form input {
  background-color: transparent;
  border: 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.25);
  border-radius: 0;
  padding: 15px 50px 15px 0;
  width: 100%;
  color: #ffffff;
  font-size: 16px;
  height: 40px;
}
@media only screen and (max-width: 767px) {
  .search-overlay__form input {
    font-size: 30px;
    height: 60px;
  }
}
.search-overlay__form input::-webkit-input-placeholder {
  color: #000000;
  -webkit-transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.search-overlay__form input::-moz-placeholder {
  color: #000000;
  -moz-transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.search-overlay__form input:-ms-input-placeholder {
  color: #000000;
  -ms-transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.search-overlay__form input::-ms-input-placeholder {
  color: #000000;
  -ms-transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.search-overlay__form input::placeholder {
  color: #000000;
  -webkit-transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
  -o-transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.search-overlay__form input[type=text]:focus {
  color: #000000;
  border-color: #000000;
}
.search-overlay__form .submit-button {
  position: absolute;
  right: 15px;
  border: none;
  font-size: 20px;
  background: transparent;
  cursor: pointer;
}
.search-overlay__form .submit-button :hover {
  color: #dcb14a;
}

.about-us-content-4 {
  height: 100%;
  padding: 70px;
}
@media only screen and (max-width: 768px) {
  .about-us-content-4 { 
    padding: 20px;
  }
}
.about-us-content-4 h2{
    color:var(--green-color);
    text-transform: uppercase;
    font-weight: 600;
}

.content-page-content-4 {
  height: 100%;
  padding: 70px;
  position: relative;
  text-align: justify;
}
.content-page-content-4:after {
  position: absolute;
  content: "";
  left: 70px;
  bottom: 0;
  background: var(--black-color);
  height: 1px;
  width: 100px;
}
@media only screen and (max-width: 768px) {
  .content-page-content-4 { 
    padding: 20px;
  }
}
.content-page-content-4 h2{
    color:var(--green-color);
    text-transform: uppercase;
    font-weight: 600;
}

.category-section {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: var(--bg-grey-light);
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .category-section {
    padding-top: 40px;
  }
}
@media only screen and (max-width: 767px) {
  .category-section {
    padding-top: 20px;
  }
}

.single-category-item {
  text-align: center;
  margin-top: 40px;
}
.single-category-item .content {
  margin-top: 25px;
  margin-left: 25px;
  margin-right: 25px;
}
.single-category-item .content .title {
  font-weight: 600;
  line-height: 1.125;
  margin: 0 0 10px;
}
.single-category-item .content .number {
  font-size: 16px;
  font-weight: 400;
  display: block;
  -webkit-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
  color: #999;
}
.single-category-item:hover .category-item-thum img {
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1);
}

.category-item-thum {
    height: 240px;
    width: 240px;
    display: flex;
    justify-content: center;
    align-content: center;
    flex-wrap: wrap;
    margin-left: auto;
    margin-right: auto;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid #707070;
}
.category-item-thum img {
  
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}

.bg-img {
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
}

/*= Button Css =*/

.btn {
  border-radius: 0;
  font-size: 15px;
  font-weight: 500;
  height: 50px;
  line-height: 38px;
  -webkit-transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
  -o-transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
  border: transparent;
}
.btn--sm {
  line-height: 38px;
  padding: 0 22px;
  height: 40px;
}
.btn--md {
  line-height: 38px;
  padding: 0 32px;
  height: 40px;
}
.btn--lg {
  line-height: 54px;
  padding: 0 50px 0 30px;
  height: 56px;
}
.btn--black {
  background: #000000;
  color: #ffffff;
}
.btn--black:hover, .btn--black:focus, .btn--black:visited {
  background: #222;
  color: #ffffff;
}
.btn--green {
  background: #289448;
  color: #ffffff;
  
}
.btn--green:hover, .btn--green:focus, .btn--green:focus-visible, .btn--green:active, .btn--green:visited, .btn--green:first-child:active{
  background: #7dd149;
  color: #ffffff;
}
.btn--border_1 {
  border: 1px solid #222;
}
.btn--border_1:hover {
  border: 1px solid #222;
  background: #222;
  color: #ffffff;
}
.btn--full {
  width: 100%;
}
.btn--icon {
  border: 1px solid #222;
  text-align: center;
  height: 46px;
  line-height: 44px;
  padding: 0 22px;
}
.btn--icon:hover {
  border: 1px solid #222;
  background: #222;
  color: #ffffff;
}
.btn--text-icon {
  font-size: 18px;
  font-weight: 500;
}
.btn--text-icon i {
  margin-right: 10px;
}
.btn--border-bottom {
  font-size: 18px;
  text-decoration: underline;
  font-weight: 500;
  line-height: 1;
}
.btn--border-bottom:hover {
  text-decoration: underline;
}
.btn [class*="icon-"] {
    position: absolute;
    top: 20px;
    margin-left:10px;
    -webkit-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}
.btn:hover [class*="icon-"] {
    margin-left:20px;
    -webkit-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}

.sm-btn {
  font-size: 18px;
  display: inline-block;
  height: 50px;
  line-height: 50px;
  padding: 0 28px;
  font-weight: 700 !important;
  text-align: center;
  background-color: #7baa0b;
  color: #fff;
}
.sm-btn:hover, .sm-btn:focus {
  color: #ffffff;
}
@media only screen and (max-width: 1024px) {
  
  .category-item-thum {
    height: 160px;
    width: 160px;
    
}
.category-item-thum img {
    max-width: 90px;
  
}
.single-category-item h6{
    font-size: 14px;
}
}
@media only screen and (max-width: 575px) {
  .sm-btn {
    padding: 0 10px;
    font-size: 12px;
  }
  .category-item-thum {
    height: 110px;
    width: 110px;
    
}
.category-item-thum img {
    max-width: 70px;
  
}
}

.offer-colection-area{
  position:relative;
}

.offer-colection-area::after {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.3);
  height: 100%;
  width: 100%;
  z-index: 0;
}
.offer-colection-area .vh80{
    height: 80vh;
    display: flex;
    align-content: start;
    flex-wrap: wrap;
    justify-content: center;
}
.offer-colection-area .section-title--one {
    color:var(--bg-color);
    text-transform: uppercase;
    z-index: 1;
}


.brand-slider-active .slick-arrow {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  left: -10px;
  z-index: 3;
  font-size: 24px;
  cursor: pointer;
  color: #666;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  
}
.brand-slider-active .slick-track{
    display: flex;
  align-items: center;
}
.brand-slider-active .slick-arrow.arrow-next {
  right: -10px;
  left: auto;
}
.brand-slider-active .single-brand-item{
    padding:0 25px;
}
.brand-slider-active .single-brand-item img{
 filter: grayscale(100%);
 opacity: 0.7;
}
.brand-slider-active .single-brand-item:hover img{
 filter: grayscale(0);
     opacity: 1;
}

@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (max-width: 767px) {
  .brand-slider-active .slick-arrow {
    left: 0;
  }
  .brand-slider-active .slick-arrow.arrow-next {
    right: 0px;
    left: auto;
  }
}

.reveal-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    border-top: 1px solid #707070;
}
@media only screen and (min-width: 768px) and (max-width: 1024px), only screen and (max-width: 767px) {
    .reveal-footer {
        position: static;
    }
}
.footer-widget-wrapper {
    margin-bottom: -35px;
}
.footer-widget__logo .logo-footer{
    max-width: 220px;
    width: 100%;
}
.footer-social-networks .item {
    display: inline-block;
    margin-right: 20px;
}

.footer-social-networks .item a,
.footer-social-networks .item a:visited {
    color: #8d8d8d;
    font-size: 22px;
   
}
.footer-social-networks .item a:hover {
    color: var(--green-color);
}

.footer-widget-wrapper .orari-box{
    margin-top:10px;
    padding: 10px;
    border-radius: 10px;
    border: 1px solid #8d8d8d;
}

.single-hero-slider-10 {
    height: 900px;
    background: #f1f1f1;
    display: -webkit-box !important;
    display: -webkit-flex !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    background-size: cover;
}
.single-hero-slider-10 h2,
.single-hero-slider-10 .text{
    color: var(--white);
}
.hero-slider-10 .slick-dots {
    position: absolute;
    right: 100px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}
.hero-slider-10 .slick-dots li.slick-active {
    color: #000000;
}
.hero-slider-10 .slick-dots li {
    margin: 10px 0;
    font-size: 18px;
    color: #666;
}
.hero-slider-10 .slick-dots li .pager__item {
    background: transparent;
    border: none;
    position: relative;
}

.hero-slider-10 .slick-dots li.slick-active .pager__item::after {
    width: 60px;
    background: #000000;
}
.hero-slider-10 .slick-dots li .pager__item::after {
    right: 0;
    bottom: 0;
    content: "";
    height: 2px;
    width: 40px;
    background: #666;
    position: absolute;
    -webkit-transition: all 0.3sease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3sease-in-out;
}

.hero-slider-two .slick-arrow {
  position: absolute;
  top: 50%;
  left: 15px;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 3;
  cursor: pointer;
    font-size: 20px;
    width: 45px;
    height: 45px;
    text-align: center;
    
    border-radius: 50%;
    line-height: 45px;
    color: var(--white);
    border: 1px solid var(--white);
}
.hero-slider-two .slick-arrow.arrow-next {
  right: 15px;
  left: auto;
}
.hero-slider-two .slick-arrow:hover {
  color: #000000;
  background-color: var(--header-bg-color);
    opacity: 0.5;
}

.hero-slider-two .slick-arrow.arrow-next {
    right: 15px;
    left: auto;
}

.single-hero-slider-one {
  height: 700px;
  display: -webkit-box !important;
  display: -webkit-flex !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  background-size: cover;
}
.single-hero-slider-one.bg-color {
    height: 300px;
    background-color: #888;
}
.single-hero-slider-one:before {
    content:'';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    background: rgba(27, 30, 35, 0.07) ;
}
.single-hero-slider-one .container{
    z-index: 1;
}
.single-hero-slider-one .hero-title--two{
   color:var(--white);
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .single-hero-slider-one {
    height: 500px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .single-hero-slider-one {
    height: 500px;
  }
}
@media only screen and (max-width: 767px) {
  .single-hero-slider-one {
    height: 440px;
  }
}
.sm-page-title {
  position: relative;
  z-index: 1;
  padding-top: 60px;
}
.sm-page-title.pg-contact .sm-overlay {
  background: linear-gradient(180deg, rgba(0, 176, 181, 0.7) 40%, #1b1e23 120%);
}
.sm-page-title .content-wrap {
  border-radius: 15px;
  min-height: 970px;
  background-size: cover;
  background-repeat: no-repeat;
  max-width: 100%;
  width: 100%;
  margin: 0px auto;
  position: relative;
  height: 100%;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-bottom: 87px;
  z-index: 2;
  overflow: hidden;
}
.sm-page-title.pg-contact .content-wrap{
    min-height: 200px;
    padding-top: 130px;
    padding-bottom: 50px;
}
.sm-page-title .content {
    position: relative;
    z-index: 3;
}
.sm-page-title .content h1.title {
    font-family: 'Open Sans', sans-serif;
    font-size: 46px;
    font-weight: 600;
    line-height: 62px;
    letter-spacing: -0.02em;
    color: var(--white);
    margin-bottom: 20px;
}
.tf-page-title .content .title span {
   font-weight: 500;
}

.sm-page-title .rellax {
  width: 100%;
  min-height: 0;
  transition: unset;
  border-radius: 15px;
  overflow: hidden;
}
.sm-page-title .rellax img {
  min-height: 400px;
}

.rellax {
  min-height: 1000px;
  transition: all 1s ease;
}
.rellax img {
  min-height: 1000px;
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.rellax.default {
  min-height: unset;
}
.rellax.default img {
  min-height: unset;
  height: unset;
  width: unset;
  object-fit: cover;
}
.rellax.type-2 {
  transition: unset;
  transition: all 0.1s ease;
}
.rellax.type-2 img {
  margin-top: -600px;
}
.bg-image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bg-image .rellax {
  height: 100%;
}
.sm-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
   
}
.sm-page-title .sm-overlay {
  z-index: 2;
  background: rgba(27, 30, 35, 0.3) ;
}
.sm-page-title .breadcrums {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 18px;
}
.sm-page-title .breadcrums a {
  color: var(--white);
  font-size: 20px;
  font-weight: 400;
  line-height: 33px;
}
.sm-page-title .breadcrums a:hover {
  color: var(--green-color);
}
.sm-page-title .breadcrums a.current {
  color: var(--green-light);
  cursor: default;
}
.sm-page-title .breadcrums .icon i {
  font-size: 20px;
  color: var(--white);
}
@media (max-width: 1600px) {
    .sm-page-title .content-wrap {
        min-height: 600px;
    }
}

@media (max-width: 767px) {
  .rellax.type-2 img {
    max-height: 700px;
    min-height: unset;
  }
}

.box-content-cat {
  padding: 60px;
  background-color: var(--green-color);
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .box-content-cat {
    padding: 40px;
  }
}
@media only screen and (max-width: 767px) {
  .box-content-cat {
    padding: 20px;
  }
}

.box-page-cat .list-cat {
    display: grid;
    grid-template-columns: 50% 50%; 
    grid-template-rows: auto auto; 
    gap: 0 5%; 
    width: 95%;
}
.box-page-cat .list-cat li{
    overflow: hidden;
   
}
.box-page-cat .list-cat li a{
       position: relative;
    color: var(--white);
    line-height: 30px;
    font-size: 18px;
    font-weight: 500;
    padding: 20px 5px;
    height: 90px;
    width: 100%;
    align-items: center;
    display: flex;
    z-index: 0;
}
.box-page-cat .list-cat li a:before{
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 90px;
    padding: 5px 14px;
    overflow: hidden;
    border: none;
    background-color: var(--green-color2);
    display: block;
    -webkit-transform: translatey(100%);
    -ms-transform: translatey(100%);
    transform: translatey(100%);
    opacity: 0;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    z-index: -1
}
.box-page-cat .list-cat li:hover a:before{
    -webkit-transform: translatey(0);
    -ms-transform: translatey(0);
    transform: translatey(0);
    opacity: 1;
}
.box-page-cat .list-cat li a:after{
    position: absolute;
    content: "";
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background-color: var(--white);
    
}
.box-page-cat .list-cat li a span{
    width: 30px;
    height: 30px;
    padding: 5px;
    border-radius: 50%;
    border: 2px solid var(--white);
    margin-right: 15px;
    display: inline-block;
    text-align: center;
    line-height: 16px;
    vertical-align: middle;
    font-size: 16px;
}

@media only screen and (max-width: 991px) {
    .box-page-cat .list-cat {
    grid-template-columns: 100%; 
}
}


.tab-featured .s-title {
  margin-bottom: 31px;
}
.tab-featured .heading {
  margin-bottom: 49px;
}
.tab-featured .menu-tab {
  margin-bottom: 50px;
}
.wg-tabs{ 
    background-color: var(--bg-grey-light);
    padding: 30px 0;
}
.wg-tabs .menu-tab {
    justify-content: space-between !important;
  }
  
  .menu-tab {
  display: -webkit-box;
  display: -moz-box; 
  display: flex;
  gap: 50px;
  white-space: nowrap;
 
  padding: 0px 33px;
}
.menu-tab .item {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  width: 100%;
}

.menu-tab .item.active span::after {
  visibility: visible;
  opacity: 1;
}
.menu-tab a {
  position: relative;
  display: block;
  padding: 20px 33px 15px 10px;
  font-size: 18px;
  font-weight: 400;
  line-height: 22px;
  color: var(--grey);
  text-transform: uppercase;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.menu-tab a::before {
  content: "\e936";
  position: absolute; 
  left: auto;
  right: 10px;
  vertical-align: middle;
  font-size: 16px;
  font-weight: 700;
  color: var(--black-color);
  font-family: 'Linearicons';
}
.menu-tab a::after {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 0;
  right: 10px; 
  background-color: var(--grey);
  height: 1px;
  width: 100%
}
.menu-tab a:hover,
.menu-tab a:hover::before {
  color: var(--green-color);
}
.menu-tab a:hover::after{
    background-color: var(--green-color);
}
.menu-tab .item.active a,
.menu-tab .item.active a::before{
  color: var(--green-color);
}
.menu-tab .item.active a::before{
    color: var(--green-color);
    content: "\e937";
}
.menu-tab .item.active a::after {
  width: 100%;
  background-color: var(--green-color);
}


.widget-content-tab .widget-content-inner {
  visibility: hidden;
  opacity: 0;
  transform: translateY(100px);
}
.widget-content-tab .widget-content-inner.active {
  visibility: visible;
  opacity: 1;
  transform: translateY(0px);
}

.card-project {
  position: relative;
  overflow: hidden;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.card-project .image-wrap {
  padding-bottom: 86px;
}
.card-project .image {
  border-radius: 10px;
  overflow: hidden;
}
.card-project .content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-direction: column;
  background-color: var(--white);
  border-radius: 15px;
  padding: 30px 55px 40px;
  transform: translateY(180px);
  border: 1px solid var(--white);
  pointer-events: none;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.card-project .text {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  visibility: hidden;
  opacity: 0;
  transform: translateY(30px);
}
.card-project .title {
  position: relative;
}
.card-project .btn-view {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  visibility: hidden;
  opacity: 0;
  position: relative;
  border: 1px solid var(--grey);
  transform: translateY(30px);
}
.card-project .btn-view span {
  font-size: 22px;
  font-weight: 900;
  line-height: 22px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: relative;
  z-index: 3;
}
.card-project .btn-view:hover {
  background-color: var(--grey);
}
.card-project .btn-view:hover span {
  transform: rotate(90deg);
  color: var(--white);
}
.card-project:hover {
  overflow: visible;
}
.card-project:hover .content {
  padding: 35px 55px 40px;
  transform: translateY(0px);
  box-shadow: 10px 4px 60px 0px rgba(182, 182, 182, 0.2509803922);
  border: 1px solid var(--grey);
  pointer-events: all;
}
.card-project:hover .text {
  visibility: visible;
  opacity: 1;
  transform: translateY(0px);
  transition-delay: 0.1s;
}
.card-project:hover .btn-view {
  visibility: visible;
  opacity: 1;
  transform: translateY(0px);
  transition-delay: 0.2s;
}

@media only screen and (max-width: 991px) {
.tab-featured .menu-tab {
    margin-bottom: 50px;
  }
}
.calltoaction-4{ 
    position: relative;
    overflow: hidden;
    width: 100%;
    margin: 0px auto;
    overflow: hidden;
}
.calltoaction-4 .sm-overlay { 
   
  background: rgba(27, 30, 35, 0.2) ;
}
.calltoaction-4 .image-left {
  max-width: 100%;
  min-height: 600px;
  width: 100%;
  margin-right: auto;
  overflow: hidden;
}
.calltoaction-4 .content-left {
  max-width: 630px;
  width: 100%;
  margin-left: auto;
}
.calltoaction-4 .content-left .text {
  margin-bottom: 24px;
}
.calltoaction-4 .content-left .benefit-list {
  margin-bottom: 43px;
}
.calltoaction-4 .content-left .benefit-list li {
  gap: 12px;
}
.calltoaction-4 .content-left .benefit-list i {
  font-size: 18px;
}
.calltoaction-4 .content-right {
  margin-top: 100px;
  width: 100%;
  min-height: 500px;
  padding: 60px;
  background-color:  var(--bg-green-light);
}
.calltoaction-4 .content-right .s-title {
  margin-bottom: 33px;
}
.calltoaction-4 .image {
  overflow: hidden;
}
.calltoaction-4 .image img {
  object-fit: cover;
}
.calltoaction-4 .content-wrap {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  
}
.calltoaction-4 .content-wrap > * {
  width: 50%;
}
.calltoaction-4 .content-wrap.wrap-2 {

}
.calltoaction-4 .s-title {
 color:#248540;
 font-weight: 700;
}
.calltoaction-4 .brand-slider-active{
    margin-top: 120px;
}

@media (min-width: 1920px) {
  .calltoaction-4 .image-right {
    max-width: unset;
    margin-left: unset;
  }
  .calltoaction-4 .image img {
    width: 100%;
    max-height: 800px;
  }
  .calltoaction-4 .image-left { 
    min-height: 800px;

  }
  .calltoaction-4 .content-right {
    margin-top: 100px;
    min-height: 700px;
    padding: 100px;
  }
    
}
@media (min-width: 992px) and (max-width: 1919px) {
  .calltoaction-4 .image-left {
    padding-right: 30px;
  }
}
@media (max-width: 1439px) {
    .calltoaction-4 .content-left {
    padding-left: 15px;
  }
  .calltoaction-4 .content-wrap {
    height: auto;
    align-items: unset;
  }
  .calltoaction-4 .content-right {
    padding: 50px 20px;
  }
  .calltoaction-4 .image-right .image,
  .calltoaction-4 .image-left .image {
    height: 100%;
  }
  .calltoaction-4 .image-right .image img,
  .calltoaction-4 .image-left .image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
  }
    
}
@media (max-width: 991px) {
    .calltoaction-4 .content-wrap {
    flex-wrap: wrap-reverse;
  }
  .calltoaction-4 .content-wrap.wrap-2 {
    flex-wrap: wrap;
   
  }
  .calltoaction-4 .content-wrap > * {
    width: 100%;
    max-width: unset;
  }
  .calltoaction-4 .image img {
    width: 100%;
    min-height: 550px;
    max-height: 550px;
  }
  .calltoaction-4 .image-left { 
    min-height: 500px;

  }
  .calltoaction-4 .content-right {
    margin-top: 0px;
    padding: 50px 20px;
    min-height: 500px;
  }
}

.page-area-top .container{
    position: relative;
}
.page-area-top .page-desc.underline:after {
    position: absolute;
    content: "";
    left: 15px;
    bottom: 0;
    background: var(--black-color);
    height: 1px;
    width: 100px;
}

.product-features { 
    background-color: var(--bg-grey-light);
    margin-bottom: 120px;
    padding-top: 60px;
    padding-bottom: 60px;
}


.product-features .list-features {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  width: 100%;
}

.product-features  .list-features li {
  display: flex;
  flex-direction: column;
  flex: 50%;
  max-width: 50%;
  padding-top:25px;
  padding-bottom: 25px;
   
}
  

.product-features  .list-features li:nth-child(even){ 
     padding-left:50px;
    padding-right: 0px;
}
.product-features  .list-features li:nth-child(odd){ 
   padding-left:0;
    padding-right: 50px;
   
}
.product-features .list-features li{
    overflow: hidden;
   
}
.product-features .list-features li h3{
   font-size: 22px;
   font-weight: 600;
   margin-bottom: 20px;
   
}

@media (min-width: 1600px) {
    .product-features  .list-features li:nth-child(even){ 
        padding-left:100px;
        padding-right: 0px;
    }
    .product-features  .list-features li:nth-child(odd){
        padding-left:0;
        padding-right: 100px;

    }
}
@media (max-width: 991px) {
    .product-features  .list-features li {
        display: flex;
        flex-direction: column;
        flex: 100%;
        max-width: 100%;
      }
      .product-features  .list-features li:nth-child(even), 
      .product-features  .list-features li:nth-child(odd){ 
        padding-left:0;
         padding-right: 0;

     }
    
}

.sm-tag-page .container-fluid{
    padding-left: 60px;
    padding-right: 60px;
}

.sm-tag-page .sub-title{
    padding-bottom: 20px;
    position: relative;
}
.sm-tag-page .sub-title:after{
    position: absolute;
    content: "";
    left: 0;
    bottom: 0;
    background: var(--black-color);
    height: 2px;
    width: 100px;
}

.box-icon.style-2 {
    margin: 40px;
  }
  .box-icon.style-2 {
     background-color: var(--bg-grey-light);
    border-radius: 10px;
    
}
 .box-icon.style-2 a{
    padding: 39px 52px 32px 49px;
 }
.box-icon.style-2 .icon { 
  width: 70px;
  height: 70px;
  margin: 0 auto 30px auto;
}

.box-icon.style-2 .title {
  font-size: 20px;
  margin-bottom: 8px;
  line-height: 1.4;
}
.box-icon.style-2 a, .box-icon.style-2 a:visited{
    color: var(--black-color);
}
.box-icon.style-2:hover .title {
    color: var(--green-color);
} 

.tf-hover-icon .hover-icon  {
  transform: rotateY(0);
  -khtml-transition: all 0.4s cubic-bezier(0.4, 0.5, 0.6, 0.7);
  -moz-transition: all 0.4s cubic-bezier(0.4, 0.5, 0.6, 0.7);
  -ms-transition: all 0.4s cubic-bezier(0.4, 0.5, 0.6, 0.7);
  -o-transition: all 0.4s cubic-bezier(0.4, 0.5, 0.6, 0.7);
  transition: all 0.4s cubic-bezier(0.4, 0.5, 0.6, 0.7);
}
.tf-hover-icon .hover-icon-2 {
  transform: rotateY(0);
  display: flex;
  width: max-content;
  -khtml-transition: all 0.4s cubic-bezier(0.4, 0.5, 0.6, 0.7);
  -moz-transition: all 0.4s cubic-bezier(0.4, 0.5, 0.6, 0.7);
  -ms-transition: all 0.4s cubic-bezier(0.4, 0.5, 0.6, 0.7);
  -o-transition: all 0.4s cubic-bezier(0.4, 0.5, 0.6, 0.7);
  transition: all 0.4s cubic-bezier(0.4, 0.5, 0.6, 0.7);
}
.tf-hover-icon:hover .hover-icon  {
  transform: rotateY(180deg);
}
.tf-hover-icon:hover .hover-icon-2 {
  transform: rotateY(180deg);
  -khtml-transition: all 0.4s cubic-bezier(0.4, 0.5, 0.6, 0.7);
  -moz-transition: all 0.4s cubic-bezier(0.4, 0.5, 0.6, 0.7);
  -ms-transition: all 0.4s cubic-bezier(0.4, 0.5, 0.6, 0.7);
  -o-transition: all 0.4s cubic-bezier(0.4, 0.5, 0.6, 0.7);
  transition: all 0.4s cubic-bezier(0.4, 0.5, 0.6, 0.7);
}

.sm-tagpage-title .content-wrap {
    background-color: var(--bg-grey-light);
    border-radius: 15px;
    margin: 0 auto;
    padding: 200px 0 100px 0;
    max-width: 100%;
    width: 100%;    
    position: relative;
    height: 100%;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-bottom: 87px;   
    overflow: hidden;
}
.sm-tagpage-title .content-wrap h1.title {
    font-family: 'Open Sans', sans-serif;
    font-size: 46px;
    font-weight: 600;
    line-height: 62px;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
}
.sm-grid-item .wg-tabs {
 
   background-color: var(--white); 
}
.sm-grid-item .card-project .title {
    min-height: 60px;
}
.sm-grid-item .card-project .content .text {
    min-height: 110px;
}

.wg-tabs.style-2 .menu-tab {
  margin-bottom: 50px;
  justify-content: center;
  align-items: center;
  padding: 0px;
  border: unset;
  box-shadow: unset;
  gap: 19px;
}
.wg-tabs.style-2 .menu-tab a {
  padding: 4px 12px 3px 14px;
  border-radius: 5px;
  border: 1px solid var(--white);
  font-weight: 600;
  font-size: 18px;
}
.wg-tabs.style-2 .menu-tab a::after {
  content: none;
}
.wg-tabs.style-2 .menu-tab a:hover {
  color: var(--green);
  box-shadow: 10px 4px 30px 0px rgba(178, 178, 178, 0.2);
  border-color: var(--grey);
}
.wg-tabs.style-2 .menu-tab .item.active a {
  color: var(--green);
  box-shadow: 10px 4px 30px 0px rgba(178, 178, 178, 0.2);
  border-color: var(--grey);
}

.grid-layout-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 50px 30px;
}
.tf-hover .hover-1 {
  overflow: hidden;
}
.tf-hover .hover-1 img {
  width: 100%;
  height: 100%;
  transform: scale(1.01);
  -webkit-transition: all 1s cubic-bezier(0.24, 0.74, 0.58, 1);
  -khtml-transition: all 1s cubic-bezier(0.24, 0.74, 0.58, 1);
  -moz-transition: all 1s cubic-bezier(0.24, 0.74, 0.58, 1);
  -ms-transition: all 1s cubic-bezier(0.24, 0.74, 0.58, 1);
  -o-transition: all 1s cubic-bezier(0.24, 0.74, 0.58, 1);
  transition: all 1s cubic-bezier(0.24, 0.74, 0.58, 1);
}

.tf-hover:hover .hover-1 img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
.tf-hover .hover-14 {
  position: relative;
}
.tf-hover .hover-14::before {
  position: absolute;
  top: 0;
  left: -75%;
  z-index: 2;
  display: block;
  content: "";
  width: 50%;
  height: 100%;
  background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
  -webkit-transform: skewX(-25deg);
  transform: skewX(-25deg);
}
.tf-hover:hover .hover-14::before {
  -webkit-animation: shine 0.75s;
  animation: shine 0.75s;
}

@keyframes shine {
  100% {
    left: 125%;
  }
}

@media (max-width: 1439px) {
    .grid-layout-4 {
        grid-template-columns: repeat(3, 1fr);
    }
    .grid-layout-4 .card-project .content {
        padding: 30px;
    }
}

@media (max-width: 1024px) {
  .grid-layout-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .menu-tab {
    display: block;
   
  }
}
@media (max-width: 767px) {
.grid-layout-4 {
    grid-template-columns: repeat(1, 1fr);
  }
  .grid-layout-4 .card-project .image img {
    min-height: 450px;
    max-height: 450px;
    object-fit: cover;
  }
  .card-project {
    border: 1px solid var(--grey);
    border-radius: 10px;
  }
}

.page-template-template-chisiamo .page-desc  .wp-block-image img {
    box-sizing: border-box;
    height: auto;
    max-width: 100%;
    width: 100%;
    vertical-align: bottom;
}

.banner-video-box {
  position: relative;
  overflow: hidden;
 
}
.banner-video-box img {
 height: 100%;
  max-height: 600px;
  width: 100%;
  object-fit: cover;
}
.banner-video-box::after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  content: "";
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.banner-video-box .video-icon a {
  z-index: 3;
  display: block;
  position: absolute;
  left: 50%;
  top: 40%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.banner-video-box .video-icon a i {
  font-size: 82px;
  line-height: 80px;
}
.banner-video-box:hover img {
  -webkit-transform: scale(1.02);
      -ms-transform: scale(1.02);
          transform: scale(1.02);
}
.banner-video-box:hover::after {
  opacity: 1;
}
.banner-video-box .icon-play-circle {
  font-style: normal;
}
.banner-video-box .icon-play-circle::before {
  content: "I";
  font-family: "ElegantIcons";
  position: absolute;
  top: 0;
  left: 0;
  color: #fff;
}

@media (max-width: 1280px) {
    .banner-video-box img {
        height: 100%;
        max-height: 400px;
     }
}

.single-contact-info-item {
  margin-top: 30px;
}
.single-contact-info-item .icon {
  float: left;
  margin-right: 16px;
}
.single-contact-info-item .icon i {
  line-height: 1;
  font-size: 26px;
  color: #000;
}
.single-contact-info-item .iconbox-desc {
  display: inline-block;
}

.contact-input {
  margin: 0 -10px;
}

.contact-input .contact-inner {
  float: left;
  margin: 0 0 20px;
  padding: 0 10px;
  width: 50%;
}

@media only screen and (max-width: 575px) {
  .contact-input .contact-inner {
    width: 100%;
  }
}
.contact-inner {
  margin: 0 0 20px;
}

.contact-inner {
  margin: 0 0 20px;
}
.contact-inner input, .contact-inner textarea {
  border: 1px solid #e8e8e8;
  height: 50px;
  background-color: transparent;
  padding: 2px 20px;
  color: #777;
  width: 100%;
}
.contact-inner input:focus, .contact-inner textarea:focus {
  border: 1px solid #262626;
}
.contact-inner textarea {
  height: 150px;
  padding: 15px;
}
.contact-inner select {
  color: #777;
}


.sm-service .image-right {
  max-width: 835px;
  width: 100%;
  margin-left: auto;
}
.sm-service .content-left {
  max-width: 630px;
  width: 100%;
  margin-left: auto;
}
.sm-service .text {
  margin-bottom: 24px;
}

.sm-service .content-right {
  max-width: 660px;
  width: 100%;
  margin-right: auto;
}
.sm-service  .s-title {
  margin-bottom: 33px;
  font-size: 42px;
  font-weight: 600;
  line-height: 42px;
  letter-spacing: 0.02em;
  color: var(--green-color);
}
.sm-service  .s-title span {
  font-weight: 300;
}
.sm-service .image {
  overflow: hidden;
}
.sm-service .image img {
  object-fit: cover;
  width: 100%;
}
.sm-service .content-wrap {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}
.sm-service .content-wrap > * {
  width: 50%;
}
.sm-service .content-wrap.wrap-2 {
  gap: 0px;
}

@media (min-width: 1920px) {
 
  .sm-service .image-right {
    max-width: unset;
    margin-left: unset;
  }
  .sm-service .image img {
    width: 100%;
    max-height: 600px;
  }
  .sm-service .content-wrap.wrap-2 {
    gap: 30px;
  }
}

@media (min-width: 992px) and (max-width: 1800px) {
  .sm-service .image-left {
    padding-right: 30px;
  }
}

@media (max-width: 1439px) {
  .sm-service .content-left {
    padding-left: 15px;
    padding-right: 15px;
  }
  .sm-service .content-wrap {
    height: auto;
    align-items: unset;
  }
  .sm-service .content-right {
    padding-left: 15px;
  }
  .sm-service .image-right .image,
  .sm-service .image-left .image {
    height: 100%;
  }
  .sm-service .image-right .image img,
  .sm-service .image-left .image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
  }
}

@media (max-width: 991px) {
    .sm-service .content-wrap {
    flex-wrap: wrap-reverse;
  }
  .sm-service .content-wrap.wrap-2 {
    flex-wrap: wrap;
    gap: 30px;
  }
  .sm-service .content-wrap > * {
    width: 100%;
    max-width: unset;
  }
  .sm-service .image img {
    width: 100%;
    min-height: 550px;
    max-height: 550px;
  }
}

@media (max-width: 767px) {
    .sm-service  .s-title {
        font-size: 34px;
        line-height: 42px;
    }
}


.footer-top {
    background-color: var(--green-color2);
  position: relative;
  padding-bottom: 100px;
   padding-top: 100px;
}
.footer-top .content {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}
.footer-top .title {
  font-size: 52px;
  font-weight: 700;
  line-height: 62px;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 25px;
}
.footer-top .title span {
  font-weight: 300;
}
.footer-top .text {
  margin-bottom: 30px;
  color: var(--white);
}
.footer-top .f-item {
  position: absolute;
  right: 164px;
  top: 74px;
  pointer-events: none;
}
.footer-top .f-item i {
  font-size: 307px;
  color: var(--white);
  opacity: 0.2;
}

.main-content {
  padding: 130px 0px;
}
.main-content.paddingtop-0 {
  padding-top: 0px;
  
}
.pagination-section {
    margin-bottom: 50px;
    flex-wrap: wrap;
  
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
    justify-content: center;
  gap: 21px;
}
.pagination-section a {
  color: var(--Text);
  font-weight: 600;
}
.pagination-section ul {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 10px;
}
.pagination-section ul a {
  width: 50px;
  height: 50px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--grey-black);
 
  font-size: 18px;
  font-weight: 600;
  line-height: 21px;
}
.pagination-section ul li:first-child a,
.pagination-section ul li:last-child a {
    border:none; 
}
.pagination-section ul li.active  {
    width: 50px;
  height: 50px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  
 
  font-size: 18px;
  font-weight: 600;
  line-height: 21px;
  color: var(--white);
  background-color: var(--grey-black);
}
.pagination-section ul a:hover {
  color: var(--white);
  background-color: var(--grey-black);
}
.pagination-section .btn-next-pagination {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 600;
  line-height: 25px;
}
.pagination-section .btn-next-pagination i {
  color: var(--grey-black);
  position: relative;
  bottom: -1px;
  transform: translateX(0);
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.pagination-section .btn-next-pagination:hover i {
  transform: translateX(-5px);
}

  .s-blog-standard .content-section {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
}
  .article-blog-item .meta-list {
    gap: 15px;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  
.article-blog-item .entry-image {
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 30px;
  position: relative;
}
.article-blog-item .entry-meta {
  padding-bottom: 20px;
  margin-bottom: 25px;
  border-bottom: 1px solid var(--Border-2);
}
.article-blog-item .entry-title {
  margin-bottom: 20px;
}
.article-blog-item .entry-title p {
  font-size: 35px;
  font-weight: 700;
  line-height: 48px;
  letter-spacing: -0.02em;
  color: var(--Black);
}
.article-blog-item .entry-text {
  margin-bottom: 25px;
}

@media (max-width: 767px) {
    .article-blog-item .entry-image img {
        min-height: 400px;
        object-fit: cover;
      }
}
@media (max-width: 991px) {
.main-content {
    padding: 80px 0px;
  }
  .main-content.padding-0 {
    padding: 0px;
  }
}

.sm-sidebar .sb-item {
  padding: 15px;
  border-radius: 10px;
  background-color: var(--bg-green-light);
}
.sm-sidebar .sb-title {
  background-color: var(--white);
  border-radius: 10px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 20px 25px;
  margin-bottom: 20px;
  font-weight: 600;
}
.sm-sidebar .sb-content {
  padding: 0px 25px;
}
.sm-sidebar .sb-content.sb-category {
  padding-bottom: 26px;
}
.sm-sidebar .sb-content.sb-tag {
  padding: 0px 24px;
}
.sm-sidebar .category-list li a {
  padding-bottom: 19px;
  border-bottom: 1px solid var(--grey);
}
.sm-sidebar .category-list li a:hover {
  border-color: var(--green-color);
}
.sm-sidebar .category-list li:not(:first-child) a {
  padding-top: 20px;
}
.sm-sidebar .category-list a {
  color: var(--Text);
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: space-between;
  line-height: 22px;
  font-weight: 600;
}
.sm-sidebar .category-list a i {
  color: var(--grey-black);
}
.sm-sidebar .category-list a:hover {
  color: var(--green-color);
}
.sm-sidebar .category-list a:hover i {
  color: var(--green-color2);
}
.sm-sidebar .news-list {
  padding-bottom: 23px;
}
.sm-sidebar .news-list li {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 30px;
}
.sm-sidebar .news-list li:not(:last-child) {
  margin-bottom: 20px;
}
.sm-sidebar .news-list img {
  max-width: 80px;
  border-radius: 10px;
  overflow: hidden;
}

.sm-sidebar .sb-service {
  padding: 0px;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}
.sm-sidebar .sb-service .tf-overlay {
  background: linear-gradient(180deg, rgba(27, 30, 35, 0) 0%, #1b1e23 100%);
}
.sm-sidebar .sb-service .content {
  position: absolute;
  bottom: 50px;
  left: 50px;
  z-index: 2;
}
.sm-sidebar .sb-service p {
  color: var(--white);
  font-size: 30px;
  font-weight: 700;
  line-height: 40px;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.sm-sidebar .sb-service p span {
  font-weight: 300;
}
.sm-sidebar .sb-contact .sb-content {
  padding: 20px 25px 25px 25px;
}

.search-overlay.active  :where(.wp-block-search__button-inside .wp-block-search__inside-wrapper){
    border: none;
}
.search-overlay.active  button{
     border: none;
     background: transparent;
}
.search-overlay.active .wp-block-search__button svg {
    height: 2.06em;
    min-height: 33px;
    min-width: 33px;
    width: 2.06em;
}

.form-contact.style-3 input {
  border: 1px solid var(--grey);
  padding: 13px 19px 10px;
  color: var(--grey);
  -webkit-transition: all 300ms cubic-bezier(0.4, 0, 1, 1);
  -khtml-transition: all 300ms cubic-bezier(0.4, 0, 1, 1);
  -moz-transition: all 300ms cubic-bezier(0.4, 0, 1, 1);
  -ms-transition: all 300ms cubic-bezier(0.4, 0, 1, 1);
  -o-transition: all 300ms cubic-bezier(0.4, 0, 1, 1);
  transition: all 300ms cubic-bezier(0.4, 0, 1, 1);
}
.form-contact.style-3 input:focus {
  border-color: var(--grey);
}
.form-contact.style-3 input:hover {
  border-color: var(--grey);
}
.form-contact.style-3 input:valid {
  background-color: var(--white);
  border-color: var(--grey);
}
.form-contact.style-3 textarea{
    max-height: 200px;
}
.form-contact.style-3 textarea:valid {
  background: var(--white);
  border-color: var(--grey);
}
.form-contact.style-3 input[type=submit] {
  background: #289448;
  color: #ffffff;
  padding: 0 50px 0 30px;
  height: 56px;
  text-transform: uppercase;
}
.form-contact.style-3 input[type=submit]:hover, .form-contact.style-3 input[type=submit]:focus, .form-contact.style-3 input[type=submit]:focus-visible, .form-contact.style-3 input[type=submit]:active, .form-contact.style-3 input[type=submit]:visited, .form-contact.style-3 input[type=submit]:first-child:active{
  background: #7dd149;
  color: #ffffff;
}

.form-contact input {
  padding: 11px 19px 7px 21px !important;
  width: 100%
}
.form-contact input::placeholder {
  font-size: 16px;
  font-weight: 500;
  line-height: 22px;
}
.form-contact input[type=checkbox] {
    width: auto;
}
.form-contact .legal {
    font-size:14px;
    line-height: 1.4em;
}
form .cols {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  width: 100%;
}
form .cols.cols-two > * {
  width: 50%;
}

fieldset {
  margin-bottom: 0px;
  width: 100%;
}




.blog-card {
  position: relative;
  background-color: #fff;
}

.blog-card__image {
  position: relative;
  overflow: hidden;
}

.blog-card__image > img {
  width: 100%;
  transform: scale(1);
  transition: transform 500ms ease;
}

.blog-card__image > a {
  display: flex;
  width: 100%;
  height: 100%;
  background-color: rgba(var(--thm-black-rgb), 0.4);
  position: absolute;
  top: 0;
  left: 0;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transform: translateY(-20%);
  transition: opacity 500ms ease, transform 500ms ease;
}

.blog-card__image > a::before, .blog-card__image > a::after {
  content: "";
  width: 32px;
  height: 2px;
  background-color: #fff;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.blog-card__image > a::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.blog-card:hover .blog-card__image > a {
  opacity: 1;
  transform: translateY(0);
}

.blog-card:hover .blog-card__image > img {
  transform: scale(1.05);
}

.blog-card__content {
  background-color: #fff;
  position: relative;
  padding-top: 30px;
  padding-left: 40px;
  padding-right: 40px;
  padding-bottom: 40px;
  border: 1px solid var(--thm-gray);
  border-top: 0;
  transition: all 500ms ease-out;
}

.blog-card:hover .blog-card__content {
  box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.07);
}

.blog-card__title {
  margin: 0;
  color: var(--thm-black);
  font-size: 24px;
  line-height: 1.5em;
  font-weight: 700;
  margin-top: 4px;
  margin-bottom: 11px;
}

.blog-card__title a {
  color: inherit;
  transition: all 500ms ease;
}

.blog-card__title a:hover {
  color: var(--thm-base);
}

.blog-card__text {
  margin: 0;
  margin-bottom: 25px;
}

.blog-card__date {
  width: 70px;
  height: 70px;
  background-color: var(--thm-base);
  font-size: 12px;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-weight: bold;
  line-height: 1;
  text-align: center;
  justify-content: center;
  align-items: center;
  display: flex;
  flex-direction: column;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 10;
  color: #fff;
}

.blog-card__date span {
  display: block;
  letter-spacing: 0;
  font-size: 20px;
  margin-bottom: 1px;
}

.blog-card__meta {
  display: flex;
  justify-content: start;
  align-items: center;
}

.blog-card__meta a {
  display: flex;
  align-items: center;
  color: var(--thm-color);
  font-size: 14px;
  transition: all 500ms ease;
  font-weight: 400;
}

.blog-card__meta a:not(:last-child)::after {
  content: '/';
  margin-left: 9px;
  margin-right: 9px;
}

.blog-card__meta a i {
  color: var(--thm-base);
  margin-right: 4px;
}

.blog-card__meta a:hover {
  color: var(--thm-base);
}

.blog-card__meta a:hover i {
  color: var(--thm-black);
}

.blog-card__link {
  display: flex;
  width: 100%;
  color: var(--thm-black);
  background-color: var(--thm-gray);
  text-transform: uppercase;
  justify-content: center;
  align-items: center;
  font-size: 12px;
  font-weight: bold;
  transition: all 0.5s ease;
  padding: 13.75px 0;
  letter-spacing: .2em;
}

.blog-card__link:hover {
  background-color: var(--thm-black);
  color: #fff;
}

.blog-card:hover .blog-card__link {
  background-color: var(--thm-black);
  color: #fff;
}

.blog-card-two {
  position: relative;
  background-color: var(--thm-black);
  min-height: 405px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 40px;
}

.blog-card-two__image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
}

.blog-card-two__image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: linear-gradient(0deg, var(--thm-black) 0%, rgba(var(--thm-black-rgb), 0) 100%);
}

.blog-card-two__content {
  position: relative;
  z-index: 10;
}

.blog-card-two__title {
  margin: 0;
  font-size: 26px;
  font-weight: bold;
  line-height: 1.38462em;
  color: #fff;
  margin-bottom: -3px;
  margin-top: 17px;
}

.blog-card-two__title a {
  color: inherit;
  transition: all 0.5s ease;
}

.blog-card-two__title a:hover {
  color: var(--thm-base);
}

.blog-card-two .blog-card__meta {
  justify-content: flex-start;
}

.blog-card-two .blog-card__meta a {
  color: #fff;
}

.blog-card-two .blog-card__meta a i {
  color: var(--thm-base);
}

.page-header-blog {
  background-color: #888;
  position: relative;

}


.page-header-blog .container {
  position: relative;
  z-index: 10;
  padding-top: 200px;
  padding-bottom: 100px;
}

@media (max-width: 480px) {
  .page-header-blog  .container {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}

.page-header-blog  .container h1 {
  margin: 0;
  line-height: 1;
  color: #fff;
  font-size: 45px;
  font-weight: 800;
  margin-top: 22px;
}

.page-top-blog {
     padding-top: 30px;
    padding-bottom: 30px;
  }
@media (max-width: 480px) {
  .page-header-blog  .container h1 {
    font-size: 26px;
  }
}

.gallery-zoom .mixitUp-container {margin: 0 -8px;}
.gallery-zoom .mix {
    padding: 8px;
    width: 33.333%;
    float: left;
}
.gallery-zoom .mix .img-holder .img-hover i {
    display: block;
    width: 60px;
    height: 60px;
    line-height: 60px;
    font-size: 30px;
    background: var(--green-color);
    color: #fff;
    text-align: center;
    border-radius: 50%;
    transition: all 0.3s ease-in-out;
}
.gallery-zoom .mix .img-holder .img-hover {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.5);   
    opacity: 0;
}
.gallery-zoom .mix:hover .img-holder .img-hover {
    opacity: 1;
}
.tran3s {transition: all 0.3s ease-in-out;}
@media only screen and (max-width: 1400px) {
    .box-icon.style-2 {
        margin: 10px;
    }
    .box-icon.style-2 .title {
    font-size: 18px;
    }
}

@media only screen and (max-width: 1024px) {
    .section-title h1 {
    font-size: 40px;
    }
    .section-title h1 span{
    font-size: 32px;
    }
  .gallery-zoom .mix {
       width: 50%;
  }
  
}
@media only screen and (max-width: 768px) {
    .menu-tab a {
        font-size: 16px;
    }
}
@media (max-width: 480px) {
  .gallery-zoom .mix {
       width: 100%;
  }
}

/* hero reveal */

