* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #a6c83d;
  --white: #ffffff;
  --black: #000000;
  --textgray: #6f6f6f;
  --headingcolor: #3352a1;
  --red:#ff0000;
}

@font-face {
  font-family: EnergyRegular;
  src: url(../font/energy/Energy-Regular.otf);
}

@font-face {
  font-family: EnergyLight;
  src: url(../font/energy/Energy-Light.otf);
}

@font-face {
  font-family: HaasGrotDispThin35;
  src: url(../font/haas-neue-grotesk/neuehaasgrotdisp-35thin-trial.otf);
}
@font-face {
  font-family: HaasGrotDispThin;
  src: url(../font/haas-neue-grotesk/neuehaasgrotdisp-25xthin-trial.otf);
}
@font-face {
  font-family: HaasGrotDispLight;
  src: url(../font/haas-neue-grotesk/neuehaasgrotdisp-45light-trial.otf);
}
@font-face {
  font-family: HaasGrotDispRoman;
  src: url(../font/haas-neue-grotesk/neuehaasgrotdisp-55roman-trial.otf);
}
@font-face {
  font-family: HaasGrotDispMedium;
  src: url(../font/haas-neue-grotesk/neuehaasgrotdisp-65medium-trial.otf);
}
@font-face {
  font-family: HaasGrotDispBold;
  src: url(../font/haas-neue-grotesk/neuehaasgrotdisp-75bold-trial.otf);
}
@font-face {
  font-family: HaasGrotDispBlack;
  src: url(../font/haas-neue-grotesk/neuehaasgrotdisp-95black-trial.otf);
}

body {
  font-family: EnergyRegular;
  font-size: 16px;
  color: #6F6F6F;
  background-color: #FDFFF8;
}

.bg--new{
  background-color: #FDFFF8;
}

.bg--white{
  background-color: var(--white);
}

.bg--annouce{
  background-color: #D8E6A9;
}

.container-fluid {
  padding-right: 30px;
  padding-left: 30px;
}

.explore-btn {
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  width: fit-content;
}

.explore-btn .text {
  color: white;
  font-size: 14px;
  font-weight: 500;
  border-radius: 8px;
  background: #a6c83d;
  width: 100%;
  flex: 1;
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px 15px;
  z-index: 1;
}

.explore-btn .icon {
  color: white;
  font-size: 20px;
  transition: all 0.3s ease;
  border-radius: 8px;
  background: #a6c83d;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.explore-btn:hover {
  text-decoration: none;
}

.explore-btn:hover > :nth-child(3) {
  transform: scale3d(0.5, 0.5, 1);
  margin-inline-start: -52px;
  opacity: 0;
}
.explore-btn > :nth-child(1) {
  transform: scale3d(0.5, 0.5, 1);
  /* margin-inline-end: -52px; */
  opacity: 0;
  width: 0;
}
.explore-btn:hover > :nth-child(1) {
  transform: scaleZ(1);
  margin-inline-end: 0;
  opacity: 1;
  width: 46px;
}


.btn--transparent .explore-btn:hover .text {
    border-right: 1px solid var(--black);
    border-left: 0px !important;
}

.btn--transparent .explore-btn .icon {
    background: transparent;
    border: 1px solid var(--black);
    border-left: 0;
}

.btn--transparent .explore-btn .text {
    background: transparent;
    border: 1px solid var(--black);
    border-right: 0;
    color: var(--black);
}

.btn--transparent .explore-btn .icon > img {
    filter: brightness(0) invert(0);
}

.btn--transparent .explore-btn .icon:nth-child(1) {
    border-left: 1px solid var(--black);
    border-right: 0px !important;
}

.heading-font-500 {
  font-family: HaasGrotDispRoman;
}
.heading-font-700 {
  font-family: HaasGrotDispBold;
}
.heading-font-900 {
  font-family: HaasGrotDispBlack;
}
.special--head{
    font-family: EnergyRegular !important;
    font-weight: 800;
}

.pb-50 {
  padding-bottom: 50px;
}
.pt-50 {
  padding-top: 50px;
}
.pt-100 {
  padding-top: 100px;
}
.pb-100{
  padding-bottom: 100px;
}
.pb-80{
  padding-bottom: 80px;
}
.py-50 {
  padding-top: 50px;
  padding-bottom: 50px;
}
.py-80 {
  padding-top: 80px;
  padding-bottom: 80px;
}
.py-100 {
  padding-top: 100px;
  padding-bottom: 100px;
}

/* typograpic */

.dual--heading{
  font-family: HaasGrotDispBold;
}

.dual--heading > span{
  font-family: HaasGrotDispRoman;
  color: var(--black);
}

.underline--heading {
    position: relative;
    width: fit-content;
    margin: 0 auto;
    margin-bottom: 35px;
}

.underline--heading:after {
    content: '';
    background: var(--primary);
    height: 2px;
    width: 100%;
    display: block;
}

.heading--h2{
  font-size: clamp(30px,4vw,64px);
  color: var(--primary);
}

.heading--h2new{
  font-size: clamp(24px,3vw,48px);
  color: var(--primary);
}

.heading--h3{
  font-size: clamp(24px,3vw,36px);
  color: var(--headingcolor);
  font-family: HaasGrotDispMedium;
}

.roman--h3{
  font-size: clamp(24px,3vw,36px);
}

.heading--h2.dark--heading {
    color: var(--white);
}

.heading--h2.dark--heading span {
    color: var(--primary);
    font-family: HaasGrotDispBold;
}

.check--list{
  list-style: none;
  position: relative;
}
.check--list li{
  background-image: url("../img/check-icon.svg");
  background-repeat: no-repeat;
  background-position: left center;
  padding-left: 24px;
  background-size: 15px;
}

.text--black{
  color: var(--black);
}
.text--primary{
  color: var(--primary);
}
.text--white{
  color: var(--white);
}
.strong--color strong{
  color: var(--headingcolor);
}
.text-uppercase {
    text-transform: uppercase !important;
}

.max-w-400 {
    max-width: 400px;
    width: 100%;
}
.max-w-900 {
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
}

/* Inner */
.inner--page--info {
    padding-top: 200px !important;
}
.inner--page--info .container {
    max-width: 1220px;
}
.transparent--page--head {
    position: relative;
    min-height: 500px;
    padding-top: 235px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-bottom: 0px !important;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.transparent--page--head:before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: rgb(0 0 0 / 50%);
}
.page--breadcrumbs {
    color: var(--primary);
}

.page--breadcrumbs span {
    color: #6F6F6F;
}
.transparent--page--head .page--breadcrumbs, .transparent--page--head .page--breadcrumbs span {
    color: var(--white);
}
/* Inner end */

.hero-image {
   animation: imageEffect 15s infinite ease-in-out;
}

@keyframes imageEffect {
  0% {
    transform: translate(0, 0) scale(0.8) rotate(0deg);
  }

  25% {
    transform: translate(50px, -20px) scale(1) rotate(-45deg);
  }

  50% {
    transform: translate(100px, 30px) scale(0.9) rotate(-15deg);
  }

  75% {
    transform: translate(50px, 80px) scale(0.8) rotate(-5deg);
  }

  100% {
    transform: translate(0, 0) scale(0.8) rotate(0deg);
  }
}

@media (max-width: 1024px) {
  .container-fluid {
    padding-right: 15px;
    padding-left: 15px;
  }
  .pt-50{
    padding-top: 20px;
  }
  .pb-50{
    padding-bottom: 20px;
  }
  .pt-100{
    padding-top: 50px;
  }
  .pb-100{
    padding-bottom: 50px;
  }
  .pb-80{
    padding-bottom: 40px;
  }
  .py-100{
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .py-80{
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .py-50{
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .explore-btn .text {
    font-size: 12px;
    padding: 5px 10px;
    min-height: 35px;
  }

  .explore-btn:hover > :nth-child(1){
    width: 35px;
    height: 35px;
  }

  .explore-btn > :nth-child(3) {
      width: 35px;
      height: 35px;
  }

  .explore-btn:hover > :nth-child(3){
    width: 0;
  }

  .explore-btn .icon > img {
    width: 11px;
  }
  .inner--page--info {
      padding-top: 150px !important;
  }
  .transparent--page--head{
      min-height: auto;
  }
}

@media(max-width:991px){
  .pt-small-0{
    padding-top: 0;
  }
  .page--breadcrumbs {
      font-size: 13px;
  }
  .inner--page--info {
      padding-top: 100px !important;
  }
}