@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
/* @font-face {
  font-family: 'veneer';
  src: url('/frontend/newlanding/font/veneer-clean.ttf');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
} */

html{
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}
*{
    margin: 0;
    padding: 0;
    text-decoration: none;
    list-style: none;
    box-sizing: border-box;
    font-family: "Barlow", serif;
  }
  body {
    
    overflow-x: hidden;
    font-family: "Barlow", serif;
    
  }
  
  a{
    text-decoration: none;
    font-size: 16px;
  }
  a:hover{
    color: none;
    text-decoration: none;
  }


  
  ul{
    list-style: none;
    margin: 0;
    padding: 0;
  }
  img {
    width: 100%;
    max-width: 100%;
  }
  
  
  h1, h2, h3, h4, h5, h6 {
      color: #000000;
      font-family: "Barlow", serif;
      text-transform: uppercase;
      font-weight: 700;
  }
  a, a:hover, a:focus, a:active {
      text-decoration: none;
      outline: none;
  }
  ul {
      margin: 0;
      padding: 0;
      list-style: none;
  }
  
      .bg-black{
      background-color: black;
      }
  
      .m-15{
        margin: 15px 0px;
      }
      .m-60{
        margin: 60px 0px;
      }
      .mt {
          margin-top: 30px;
      }
      
      .mb {
          margin-bottom: 30px;
      }
      .margin-main {
          margin: 80px 0;
      }
      .padding-main {
          padding: 80px 0;
      }
      
      h4 {
          font-size: 20px;
      }
      h5 {
          font-size: 19px;
      }
      li {
          font-size: 17px;
          font-weight: 400;
      }
      p {
          font-size: 16px;
          font-weight: 400;
          line-height: 25px;
          color: #111111;
          letter-spacing: .5px;
          font-family: var(--font-poppins);
      }
      .d-flex {
          display: flex;
          align-items: center;
          gap: 10px;
      }
      .align-center{
          align-items: center;
      }
      .justify-center{
        justify-content: center;
      }
      .justify-end{
        justify-content: end;
      }
      .gap {
          gap: 15px;
      }
      .h-100{
        height: 100%;
      }
      .h-400{
        height: 400px;
      }
      .w-auto{
        width: auto;
      }
      .w-100{
        width: 100%;
      }
      .text-right{
        text-align: right;
      }
  
      .space-between {
          justify-content: space-between;
      }
      h2 {
          font-size: 40px;
          letter-spacing: 0.5px;
      }
      h3 {
          font-size: 30px;
      }
      h1 {
          font-size: 42px;
      }
  
  
  @media (min-width: 768px){
      .col-md-3 {
          flex: 0 0 25%;
          max-width: 25%;
      }
      .col-md-4 {
          flex: 0 0 33.33333%;
          max-width: 33.33333%;
      }
      .col-md-8 {
          flex: 0 0 66.66666%;
          max-width: 66.66666%;
      }
      .col-md-9{
        flex: 0 0 75%;
        max-width: 75%;
      }
      .col-md-12 {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
      .col-md-6 {
          flex: 0 0 50%;
          max-width: 50%;
      }
      .col-md-2 {
          flex: 0 0 16.666%;
          max-width: 16.666%;
      }
      .col-md-7 {
          flex: 0 0 58.333333%;
          max-width: 58.333333%;
      }
      .col-md-5 {
          flex: 0 0 41.666667%;
          max-width: 41.666667%;
      } 
  }
  
  
.container {
    max-width: 1500px;
    margin: auto;
}
@media (min-width: 1700px) {
  .container {
    max-width: 1600px !important;
  }
}
@media (min-width: 1350px) and (max-width: 1500px) {
  .container {
    max-width: 1300px !important;
  }
}

@media (min-width: 1001px) and (max-width: 1250px) {
  .container {
    max-width: 980px !important;
  }
}
@media (min-width: 769px) and (max-width: 1000px) {
  .container {
    margin: 0px 20px;
  }
}
@media (max-width:768px) {
  .container {
    padding-left: 10px;
    padding-right: 10px;
  }
}
  
  .col-md-12, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11{
      width: 100%;
      min-height: 1px;
      padding-right: 15px;
      padding-left: 15px;
  }
  
 
    .row {
      display: flex;
      flex-flow: row wrap;
    }
    .btn {
      touch-action: manipulation; /* Prevents double-tap to zoom */
    }
  
    .p-10{
      padding: 10px 0px;
    }
    .p-20{
      padding: 20px 0px;
    }
    .p-30{
      padding: 30px 0px;
    }
    .p-40{
      padding: 40px 0px;
    }
    .p-50{
      padding: 50px 0px;
    }
  
    .mb-10{
      margin-bottom: 10px;
    }
    .mb-20{
      margin-bottom: 20px;
    }
    .mb-30{
      margin-bottom: 30px;
    }
    .mb-40{
      margin-bottom: 40px;
    }
    .mb-50{
      margin-bottom: 50px;
    }
  
    .mt-10{
      margin-top: 10px;
    }
    .mt-20{
      margin-top: 20px;
    }
    .mt-30{
      margin-top: 30px;
    }
    .mt-40{
      margin-top: 40px;
    }
    .mt-50{
      margin-top: 50px;
    }
  
   


    /* ADD ON */


    .cursor {
      display: block;
      width: 20px;
      height: 20px;
      position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%);
      border-radius: 50%;
      background: transparent;
      pointer-events: none;
      z-index: 111;
      border: 1px solid #ffffff;
      transition: all 0.2s ease-out;
      animation: moveCursor1 .5s infinite alternate;
  }
  
  .expand {
      background: transparent;
      animation: moveCursor2 .5s forwards;
      border: 1px solid #000;
  }
  
  @keyframes moveCursor1 {
      from {
          transform: scale(1);
      }
  
      to {
          transform: scale(.8);
      }
  }
  
  @keyframes moveCursor2 {
      0% {
          transform: scale(1);
      }
  
      50% {
          transform: scale(2);
      }
  
      100% {
          transform: scale(1);
          opacity: 0;
      }
  }
  

    /* BUTTON */

/* =====BUTTON-1 */
.btn-1{
  background-color: var(--primary-color);
  color: #ffffff;
  padding: 15px 35px;
  font-size: 12px;
  letter-spacing: 1px;
  border-radius: 30px;
  border: none;
}
.btn-1 span{
  font-weight: 600;
}
.btn-1:hover{
  background-color: var(--secondary-color);
}
.btn-2{
  color: var(--primary-color);
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 10px 30px;
  border: solid 2px var(--primary-color);
  border-radius: 40px;
  align-items: center;
  background-color: white;
  width: max-content;
}
.btn-2 span{
  font-weight: 600;
  font-size: 18px;
}
.btn-2 i{
  background-color: var(--primary-color);
  padding: 3px;
  color: white;
  border-radius: 10px;
  width: 32px;
  text-align: center;
}
:root{
  --primary-color:#37aa49;;
  --secondary-color:#fbc310;
  --font-poppins: "Poppins", sans-serif;
  --font-Jakarta:   "Barlow", serif;
}

a {
  text-decoration: none;
}
a,
a:active,
a:focus {
    color: #333;
    text-decoration: none;
    transition-timing-function: ease-in-out;
    -ms-transition-timing-function: ease-in-out;
    -moz-transition-timing-function: ease-in-out;
    -webkit-transition-timing-function: ease-in-out;
    -o-transition-timing-function: ease-in-out;
    transition-duration: .2s;
    -ms-transition-duration: .2s;
    -moz-transition-duration: .2s;
    -webkit-transition-duration: .2s;
    -o-transition-duration: .2s;
}
.padding-main{
  padding: 60px 0px;
}
@media (max-width:768px) {
  .padding-main{
    padding: 20px 0px;
  }
}

.label-name{
  display: flex;
  align-items: center;
  gap: 15px;
  color: var(--primary-color);
  font-size: 20px;
}
 .label-name img{
  width: 30px;
  height: 30px;
}


/* SCROLL ANIMATION */


.scroll-animation {
  opacity: 0;
  transition: opacity 0.7s ease-out, transform 0.9s ease-out;
}

/* Fade-in from left */
.fade-in-left {
  transform: translateX(-70px);
}

.fade-in-left.visible {
  transform: translateX(0);
  opacity: 1;
}

/* Fade-in from right */
.fade-in-right {
  transform: translateX(70px);
}

.fade-in-right.visible {
  transform: translateX(0);
  opacity: 1;
}

/* Fade-in from bottom */
.fade-in-bottom {
  transform: translateY(70px);
}

.fade-in-bottom.visible {
  transform: translateY(0);
  opacity: 1;
}

/* Fade-in from top */
.fade-in-top {
  transform: translateY(-70px);
}

.fade-in-top.visible {
  transform: translateY(0);
  opacity: 1;
}


.fade-text {
  display: inline-block;
  position: absolute;
  font-family: HelveticaNeue, helvetica, arial;
  font-size: 60px;
  opacity: .2;
  -webkit-transition: all .5s ease-out;
  -moz-transition: all .5s ease-out;
  -o-transition: all .5s ease-out;
  transition: all .5s ease-out
}


@media (max-width:768px) {
  .fade-in-left,
  .fade-in-right,
  .fade-in-top {
    transform: translateY(60px); /* Same as fade-in-bottom */
  }

  .fade-in-left.visible,
  .fade-in-right.visible,
  .fade-in-top.visible {
    transform: translateY(0);
    opacity: 1;
  }

}


/* HEADING */

.heading{
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}
.heading h2{
  text-align: center;
  font-weight: 200;
  color: var(--text-color);
  letter-spacing: 1px;
}
.heading p{
  font-size: 16px;
  color: var(--text-color);
  max-width: 960px;
  text-align: center;
  line-height: 30px;
}
 .heading span{
  font-weight: 700;
}
.underline{
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px 0px;
}
.underline .line-1{
  width: 100px;
  background-color: white;
  height: 1px;
}
.underline .line-2{
  width: 100px;
  background-color: white;
  height: 1px;
}
.underline i{
  padding: 0px 15px ;
  font-size: 22px;
}


#scrollToTopBtn {
  background-color: transparent;
  color: var(--text-color);
  cursor: pointer;
  font-size: 18px;
  line-height: 48px;
  width: 60px;
  height: 60px;
  position: fixed;
  bottom: 20px;
  right: 20px;
  border-radius: 50%;
  text-align: center;
  z-index: 999;
  border: solid 1px var(--text-color);
}




.phone-call{
    position: relative;
    z-index: 999;
}

  .btn-whatsapp-pulse {
      background: green;
      color: white;
      position: fixed;
      bottom: 20px;
      right: 20px;
      font-size: 40px;
      display: flex;
      justify-content: center;
      align-items: center;
      width: 0;
      height: 0;
      padding: 30px;
      text-decoration: none;
      border-radius: 50%;
      animation-name: pulse;
      animation-duration: 1.5s;
      animation-timing-function: ease-out;
      animation-iteration-count: infinite;
  }
  
  @keyframes pulse {
      0% {
          box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
      }
      80% {
          box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
      }
  }
  
  .btn-whatsapp-pulse-border {
      bottom: 100px;
      right: 20px;
      animation-play-state: paused;
  }
  
  .btn-whatsapp-pulse-border::before {
      content: "";
      position: absolute;
      border-radius: 50%;
      padding: 25px;
      border: 5px solid #25d366;
      opacity: 0.75;
      animation-name: pulse-border;
      animation-duration: 1.5s;
      animation-timing-function: ease-out;
      animation-iteration-count: infinite;
  }
  
  @keyframes pulse-border {
      0% {
          padding: 25px;
          opacity: 0.75;
      }
      75% {
          padding: 50px;
          opacity: 0;
      }
      100% {
          opacity: 0;
      }
  }
  





  /* SLICK CSS */

  /* Slider */
.slick-slider
{
    position: relative;

    display: block;
    box-sizing: border-box;

    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;

    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
        touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list
{
    position: relative;

    display: block;
    overflow: hidden;

    margin: 0;
    padding: 0;
}
.slick-list:focus
{
    outline: none;
}
.slick-list.dragging
{
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list
{
    -webkit-transform: translate3d(0, 0, 0);
       -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
         -o-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
}

.slick-track
{
    position: relative;
    top: 0;
    left: 0;

    display: block;
    margin-left: auto;
    margin-right: auto;
}
.slick-track:before,
.slick-track:after
{
    display: table;

    content: '';
}
.slick-track:after
{
    clear: both;
}
.slick-loading .slick-track
{
    visibility: hidden;
}

.slick-slide
{
    display: none;
    float: left;

    height: 100%;
    min-height: 1px;
}
[dir='rtl'] .slick-slide
{
    float: right;
}
.slick-slide img
{
    display: block;
}
.slick-slide.slick-loading img
{
    display: none;
}
.slick-slide.dragging img
{
    pointer-events: none;
}
.slick-initialized .slick-slide
{
    display: block;
}
.slick-loading .slick-slide
{
    visibility: hidden;
}
.slick-vertical .slick-slide
{
    display: block;

    height: auto;

    border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
    display: none;
}
