.header {
  position: absolute;
  width: 100%;
  z-index: 6;
}
.header .menu {
  display: none;
  text-align: center;
}
.header .menu .menu-icon {
  position: relative;
  width: 100%;
  height: 50px;
  cursor: pointer;
}
.header .menu .menu-icon .menu-icon__cheeckbox {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  cursor: pointer;
  z-index: 2;
  -webkit-touch-callout: none;
  position: absolute;
  opacity: 0;
}
.header .menu .menu-icon div {
  margin: auto;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  width: 22px;
  height: 12px;
}
.header .menu .menu-icon span {
  position: absolute;
  display: block;
  width: 150%;
  height: 2px;
  background-color: #fff;
  border-radius: 1px;
  transition: all 0.2s cubic-bezier(0.1, 0.82, 0.76, 0.965);
}
.header .menu .menu-icon span:first-of-type {
  top: 0;
}
.header .menu .menu-icon span:last-of-type {
  bottom: 0;
}
.header .menu .menu-icon.active span:first-of-type,
.header .menu .menu-icon .menu-icon__cheeckbox:checked + div span:first-of-type {
  transform: rotate(45deg);
  top: 5px;
}
.header .menu .menu-icon.active span:last-of-type,
.header .menu .menu-icon .menu-icon__cheeckbox:checked + div span:last-of-type {
  transform: rotate(-45deg);
  bottom: 5px;
}
.header .menu .menu-icon.active:hover span:first-of-type, .header .menu .menu-icon.active:hover span:last-of-type, .header .menu .menu-icon:hover .menu-icon__cheeckbox:checked + div span:first-of-type, .header .menu .menu-icon:hover .menu-icon__cheeckbox:checked + div span:last-of-type {
  width: 22px;
}
@media (min-width: 1024px) {
  .header .menu .menu-icon:hover span:first-of-type {
    width: 26px;
  }
  .header .menu .menu-icon:hover span:last-of-type {
    width: 12px;
  }
}
.header .header-logo {
  position: relative;
  padding: 10px 0;
}
.header .header-logo img {
  height: 65px;
  filter: brightness(0) invert(1);
}
.header .nav-section {
  display: flex;
  justify-content: flex-end;
  width: 100%;
}
.header .nav-section .nav-mobile-logo {
  display: none;
}
.header .nav-section .nav-link {
  align-self: flex-end;
  padding: 15px 20px;
}
.header .nav-section .nav-link a {
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  font-family: headingMediumFont;
  letter-spacing: 2.5px;
}
.header.colored {
  position: fixed;
  top: -100px;
  background-color: #fff;
  width: 100%;
}
.header.colored.sticky {
  top: 0;
  width: 100%;
  transition: all 0.25s ease-in-out;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
  z-index: 999;
}
.header.colored .header-logo img {
  height: 60px;
  filter: none;
}
.header.colored .nav-link a {
  color: #348049;
}
.header.transparent-header {
  position: absolute;
  z-index: 9;
  min-height: 75px;
  padding: 20px 4%;
  width: 100%;
}

@media only screen and (max-width: 900px) {
  .header .nav-section .nav-link {
    align-self: flex-end;
    padding: 15px 10px;
  }
  .header .nav-section .nav-link a {
    font-size: 16px;
  }
}
@media only screen and (max-width: 700px) {
  .header .menu {
    display: block;
    position: absolute;
    top: 15px;
    left: auto;
    right: 5px;
    z-index: 5;
    width: 75px;
  }
  .header .nav-section {
    display: block;
    width: 225px;
    background-color: #fff;
    height: 100vh;
    position: fixed;
    top: 0%;
    left: 0%;
    transform: translate(-100%, 0%);
    transition: all ease-in-out 0.45s;
    padding-top: 25px;
    z-index: 2;
    padding-left: 10px;
  }
  .header .nav-section .nav-mobile-logo {
    display: block;
    margin-bottom: 25px;
    padding-left: 25px;
  }
  .header .nav-section .nav-mobile-logo img {
    height: 55px;
  }
  .header .nav-section .nav-link {
    padding-top: 0;
  }
  .header .nav-section .nav-link a {
    color: #000;
  }
  .header .nav-section.translate-css {
    transform: translate(0%, 0%);
    transition: all ease-in-out 0.45s;
  }
  .header .header-logo img {
    height: 55px;
  }
  .header.colored .menu .menu-icon span {
    background-color: #000;
  }
}
@font-face {
  font-family: headingBoldFont;
  src: url("../fonts/fonts/ClashDisplay-Bold.woff");
  src: url("../fonts/fonts/ClashDisplay-Bold.woff2");
}
@font-face {
  font-family: headingLightFont;
  src: url("../fonts/fonts/ClashDisplay-Light.woff");
  src: url("../fonts/fonts/ClashDisplay-Light.woff2");
}
@font-face {
  font-family: headingMediumFont;
  src: url("../fonts/fonts/ClashDisplay-Medium.woff");
  src: url("../fonts/fonts/ClashDisplay-Medium.woff2");
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
}

#landing {
  height: 100vh;
  width: 100%;
  position: relative;
  overflow: hidden;
}
#landing::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #348049;
  opacity: 0.4;
  z-index: 4;
}
#landing .landing-bg-image {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  animation: move 120s ease infinite;
  /* Add infinite to loop. */
  -ms-animation: move 120s ease infinite;
  -webkit-animation: move 120s ease infinite;
  -moz-animation: move 120s ease infinite;
}
@keyframes move {
  0% {
    transform-origin: bottom left;
    transform: scale(1);
    -ms-transform: scale(1);
    /* IE 9 */
    -webkit-transform: scale(1);
    /* Safari and Chrome */
    -o-transform: scale(1);
    /* Opera */
    -moz-transform: scale(1);
    /* Firefox */
  }
  50% {
    transform: scale(1.2);
    -ms-transform: scale(1.2);
    /* IE 9 */
    -webkit-transform: scale(1.2);
    /* Safari and Chrome */
    -o-transform: scale(1.2);
    /* Opera */
    -moz-transform: scale(1.2);
    /* Firefox */
  }
  100% {
    transform-origin: bottom left;
    transform: scale(1);
    -ms-transform: scale(1);
    /* IE 9 */
    -webkit-transform: scale(1);
    /* Safari and Chrome */
    -o-transform: scale(1);
    /* Opera */
    -moz-transform: scale(1);
    /* Firefox */
  }
}
#landing .landing-content {
  position: relative;
  z-index: 5;
  height: 100%;
  display: flex;
  align-items: center;
  padding-bottom: 0px;
}
#landing .landing-content .landing-title {
  font-size: 5rem;
  color: #fff;
  font-family: headingMediumFont;
  font-weight: 600;
  width: 400px;
  position: relative;
  overflow: hidden;
}
#landing .landing-content .landing-title::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  margin-bottom: 15px;
  transform: translateX(-180%);
  transition: all ease-in-out 2.75s;
}
#landing .landing-content .landing-title.background::after {
  transform: translateX(0%);
  transition: all ease-in-out 2.75s;
}
#landing .landing-content .landing-title.effect::after {
  transform: translateX(180%);
  transition: all ease-in-out 2.75s;
}
#landing .landing-content .landing-title .landing-1 {
  display: block;
  letter-spacing: 4px;
  transform: translateX(-180%);
  transition: all ease-in-out 1.55s;
}
#landing .landing-content .landing-title .landing-1.transition {
  transform: translateX(0%);
}
#landing .landing-content .landing-title .landing-2 {
  display: block;
}
#landing .landing-content .landing-desc {
  width: 55%;
  font-size: 16px;
  color: #fff;
  line-height: 1.8;
  letter-spacing: 0.5px;
  transform: translateY(50px);
  opacity: 0;
  visibility: hidden;
  transition-delay: 1.25s;
  transition: all ease-in-out 1.25s;
}
#landing .landing-content .landing-desc.transition-desc {
  transform: translateY(0px);
  opacity: 1;
  visibility: visible;
  transition-delay: 1.25s;
  transition: all ease-in-out 1.25s;
}
#landing .rounded-logo {
  width: 11.5rem;
  height: 11.5rem;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
#landing .rounded-logo svg {
  transform: rotate(175deg);
  text-transform: uppercase;
  letter-spacing: 2.65px;
  word-spacing: 4px;
  font-weight: bold;
  fill: #999999;
}
#landing .rounded-logo-scroll {
  left: 30%;
  transform: translateX(-50%);
  width: 8rem;
  height: 8rem;
  position: relative;
  margin-top: -22px;
}
#landing .rounded-logo-scroll svg {
  letter-spacing: 9px;
  word-spacing: 0;
  fill: #fff;
  animation: rotation 10s infinite linear;
}
#landing .scroll-icon {
  display: inline-block;
  vertical-align: middle;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 38px;
  border: #ffffff 2px solid;
  border-radius: 10px;
  padding-top: 18px;
  transform: translate(-50%, -50%);
}
#landing .scroll-icon i {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1px;
  background: #ffffff;
  border-radius: 10px;
}
#landing .scroll-icon i:nth-child(1) {
  width: 2px;
  height: 2px;
}
#landing .scroll-icon i:nth-child(2) {
  width: 4px;
  height: 4px;
}
#landing .scroll-icon i:nth-child(3) {
  width: 6px;
  height: 6px;
}
@keyframes rotation {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(359deg);
  }
}
#landing .scroll-down {
  position: absolute;
  right: 0;
  bottom: 25px;
  z-index: 5;
}
#landing .scroll-down .small-width {
  width: 20%;
}

#about {
  padding: 85px 0;
  padding-top: 125px;
  overflow: hidden;
}
#about .small-content {
  position: relative;
  z-index: 2;
}
#about .about-content {
  padding-right: 35px;
}
#about .about-content .about-small-title {
  font-size: 20px;
  font-family: headingMediumFont;
  color: #b4955f;
}
#about .about-content .about-title {
  font-size: 3.2rem;
  line-height: 1.2;
  font-family: headingMediumFont;
  margin-bottom: 35px;
  color: #348049;
}
#about .about-desc .desc-regular {
  font-size: 20px;
  font-weight: 400;
}
#about .about-image {
  margin-top: -60px;
}
#about .about-main-content {
  padding: 55px 45px;
  position: relative;
  z-index: 2;
  font-size: 16px;
  text-align: center;
  padding-bottom: 20px;
  background-color: #fff;
  margin-top: -65px;
}
#about .about-main-content .desc {
  margin-bottom: 20px;
}

.golden {
  color: #b4955f;
}

#why-us {
  padding: 65px 0;
  overflow: hidden;
}
#why-us .why-heading {
  position: relative;
  padding-left: 100px;
  padding-top: 55px;
  width: 83%;
  margin-left: auto;
  margin-top: -95px;
  background-color: #fff;
  margin-bottom: 65px;
}
#why-us .why-heading .why-small-title {
  font-size: 20px;
  font-family: headingMediumFont;
  color: #b4955f;
}
#why-us .why-heading .why-big-title {
  font-size: 2.6rem;
  line-height: 1.1;
  font-family: headingMediumFont;
  margin-bottom: 15px;
  position: relative;
  z-index: 2;
}
#why-us .why-heading .why-desc {
  font-size: 18px;
  width: 90%;
}
#why-us .why-choose-content {
  margin-top: 55px;
}
#why-us .why-choose-content .choose-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 20px 15px;
  margin-bottom: 40px;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px;
  border-left: 3px solid #b4955f;
  min-height: 175px;
}
#why-us .why-choose-content .choose-wrapper .choose-icon img {
  width: 85px;
}
#why-us .why-choose-content .choose-wrapper .choose-tag {
  font-size: 20px;
  font-family: headingMediumFont;
  color: #348049;
  line-height: 1.2;
  margin-bottom: 7px;
}

#services {
  padding: 85px 0;
  padding-bottom: 45px;
  background-color: #fafafa;
  overflow: hidden;
}
#services .service-heading {
  text-align: center;
  width: 70%;
  margin: 0 auto;
  margin-bottom: 65px;
}
#services .service-heading .service-small-heading {
  font-size: 20px;
  font-weight: 500;
  font-family: headingMediumFont;
  color: #b4955f;
}
#services .service-heading .service-big-heading {
  font-size: 2.4rem;
  font-family: headingMediumFont;
  margin-bottom: 18px;
}
#services .service-heading .small-desc {
  font-size: 18px;
}
#services .service-wrapper {
  padding: 0 35px;
  margin-bottom: 55px;
  transition: transform 0.75s cubic-bezier(0.72, 0.01, 0.28, 0.98);
}
#services .service-wrapper .service-image {
  width: 100%;
  height: 100%;
  transition: transform 0.75s cubic-bezier(0.72, 0.01, 0.28, 0.98);
  overflow: hidden;
}
#services .service-wrapper .service-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  transition: transform 0.75s cubic-bezier(0.72, 0.01, 0.28, 0.98);
}
#services .service-wrapper .service-content {
  background-color: #fafafa;
  padding: 25px 15px;
  width: 90%;
  margin-left: auto;
  margin-top: -45px;
  position: relative;
  z-index: 2;
  padding-left: 30px;
  transition: transform 0.75s cubic-bezier(0.72, 0.01, 0.28, 0.98);
}
#services .service-wrapper .service-content.whole {
  position: absolute;
  top: 35px;
  width: 100%;
  height: 100%;
  left: 0;
  padding: 15px 45px;
  text-align: justify;
  transition: all ease-in-out 0.45s;
}
#services .service-wrapper .service-content .service-title {
  font-size: 24px;
  line-height: 1.2;
  margin-bottom: 10px;
  font-weight: 500;
  font-family: headingMediumFont;
}
#services .service-wrapper .service-content .service-desc {
  font-size: 14px;
}
#services .service-wrapper .service-content .service-desc .moreless {
  color: #b4955f;
  font-weight: 700;
  cursor: pointer;
}
#services .service-wrapper .service-content .service-desc .more-content {
  display: none;
}
#services .service-wrapper:hover .service-image {
  transform: scale(0.9);
  transition: transform 0.75s cubic-bezier(0.72, 0.01, 0.28, 0.98);
}
#services .service-wrapper:hover .service-image img {
  transform: scale(1.1);
  transition: transform 0.75s cubic-bezier(0.72, 0.01, 0.28, 0.98);
}
#services .service-wrapper:hover .service-content {
  transform: scale(0.9);
  transition: transform 0.75s cubic-bezier(0.72, 0.01, 0.28, 0.98);
}

#contact {
  background-color: #fafafa;
  overflow: hidden;
}
#contact .map {
  height: 100%;
}
#contact iframe {
  padding-right: 50px;
}
#contact .contact-form {
  padding: 45px 0;
}
#contact .contact-form .contact-heading {
  margin-bottom: 25px;
}
#contact .contact-form .contact-heading .contact-title {
  font-size: 36px;
  font-weight: 700;
  font-family: headingMediumFont;
  color: #348049;
}
#contact .contact-form .contact-heading .contact-desc {
  font-size: 16px;
}
#contact .contact-form .form-group {
  margin-bottom: 25px;
}
#contact .contact-form label {
  font-family: headingMediumFont;
}
#contact .contact-form .input {
  min-height: 45px;
  border: 1px solid #3f3f3f;
  outline: none;
  border-bottom: 2px solid #3f3f3f;
  caret-color: #3f3f3f;
  padding: 5px;
  transition: 0.5s linear;
  letter-spacing: 1px;
  border-radius: 0;
}
#contact .contact-form .input:focus {
  border: 1px solid #b4955f;
  border-bottom: 2px solid #b4955f;
  caret-color: #b4955f;
  color: #b4955f;
  box-shadow: none;
}
#contact .contact-form .input:focus::-moz-placeholder {
  color: #b4955f;
}
#contact .contact-form .input:focus::placeholder {
  color: #b4955f;
}
#contact .contact-form textarea {
  height: 125px;
}
#contact button {
  padding: 17px 40px;
  border-radius: 50px;
  border: 0;
  background-color: #348049;
  box-shadow: rgba(0, 0, 0, 0.05) 0 0 8px;
  color: hsl(0deg, 0%, 100%);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-size: 15px;
  transition: all 0.5s ease;
}
#contact button:hover {
  letter-spacing: 3px;
  background-color: #348049;
  color: hsl(0deg, 0%, 100%);
}
#contact button:active {
  letter-spacing: 3px;
  background-color: #348049;
  color: hsl(0deg, 0%, 100%);
  transform: translateY(10px);
  transition: 100ms;
}

.pad-0 {
  padding: 0 !important;
}

.mar-0 {
  margin: 0 !important;
}

.pr-0 {
  padding-right: 0 !important;
}

#info {
  padding: 45px 0;
  padding-bottom: 35px;
  border-bottom: 2px solid #b4955f;
  background-color: #fafafa;
}
#info .info-wrapper .info-title {
  font-size: 20px;
  font-family: headingMediumFont;
  color: #b4955f;
  margin-bottom: 7px;
}
#info .info-wrapper .info-link a {
  color: #000;
  text-decoration: none;
  font-size: 32px;
}
#info .info-wrapper .info-link .social-link {
  list-style-type: none;
}
#info .info-wrapper .info-link .social-link li {
  display: inline-block;
}
#info .info-wrapper .info-link .social-link li i {
  font-size: 20px;
  padding-left: 15px;
  opacity: 0.75;
}

.copyright-section {
  padding: 15px 0;
  font-size: 14px;
}
.copyright-section a {
  text-decoration: none;
  color: #000;
}

@media only screen and (max-width: 1400px) {
  #about .about-content .about-title {
    font-size: 2.8rem;
  }
  #about .about-image {
    margin-top: -45px;
  }
  #info .info-wrapper .info-link a {
    font-size: 26px;
  }
}
@media only screen and (max-width: 1199.99px) {
  #about .about-main-content {
    width: 85%;
    margin-left: auto;
    margin-right: auto;
  }
  #about .about-main-content .desc {
    margin-bottom: 20px;
    text-align: justify;
  }
  #about .about-image {
    margin-top: -35px;
  }
  #info .info-wrapper .info-link a {
    font-size: 26px;
  }
}
@media only screen and (max-width: 992px) {
  #about .about-main-content {
    width: 92%;
    padding: 45px 30px;
  }
  #about .about-content .about-title {
    font-size: 2rem;
  }
  #about .about-image {
    margin-top: -25px;
  }
  #about .about-desc .desc-regular {
    font-size: 18px;
  }
  #landing .landing-content .landing-desc {
    width: 80%;
  }
  #services .service-wrapper .service-content .service-title {
    font-size: 20px;
  }
  #why-us .why-heading {
    padding-left: 60px;
    padding-top: 40px;
  }
  #why-us .why-heading .why-big-title {
    font-size: 2.2rem;
  }
  #contact .contact-form {
    padding-right: 25px;
  }
}
@media only screen and (max-width: 700px) {
  #landing .landing-content .landing-title {
    font-size: 2.4rem;
    width: 250px;
  }
  #landing .landing-content .landing-desc {
    width: 100%;
    font-size: 14px;
    text-align: justify;
  }
  #landing .scroll-down {
    transform: scale(0.75);
    transform-origin: right;
  }
  #about {
    padding-top: 65px;
    padding-bottom: 65px;
  }
  #about .about-content {
    text-align: left;
    padding-right: 0;
  }
  #about .about-content .mobile-none {
    display: none;
  }
  #about .about-content .about-title {
    margin-bottom: 15px;
  }
  #about .about-image {
    margin-top: 0;
  }
  #about .about-main-content {
    width: 92%;
    padding: 45px 0px;
    margin-top: 0;
    text-align: left;
    padding-bottom: 0;
  }
  #services .service-heading {
    width: 100%;
  }
  #services .service-heading .service-big-heading {
    font-size: 1.8rem;
    line-height: 1.2;
  }
  #services .service-heading .small-desc {
    font-size: 16px;
  }
  #services .service-wrapper {
    padding: 0 35px;
    margin-bottom: 55px;
    transition: transform 0.75s cubic-bezier(0.72, 0.01, 0.28, 0.98);
  }
  #services .service-wrapper .service-image {
    width: 100%;
    height: 100%;
    transition: transform 0.75s cubic-bezier(0.72, 0.01, 0.28, 0.98);
    overflow: hidden;
  }
  #services .service-wrapper .service-image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
    transition: transform 0.75s cubic-bezier(0.72, 0.01, 0.28, 0.98);
  }
  #services .service-wrapper:hover .service-image {
    transform: scale(1);
    transition: transform 0.75s cubic-bezier(0.72, 0.01, 0.28, 0.98);
  }
  #services .service-wrapper:hover .service-image img {
    transform: scale(1);
    transition: transform 0.75s cubic-bezier(0.72, 0.01, 0.28, 0.98);
  }
  #services .service-wrapper:hover .service-content {
    transform: scale(1);
    transition: transform 0.75s cubic-bezier(0.72, 0.01, 0.28, 0.98);
  }
  #services .service-wrapper:last-child {
    padding: 0 20px;
  }
  #services .col-md-6:last-of-type .service-wrapper {
    margin-bottom: 0;
  }
  #why-us .why-heading {
    padding-left: 15px;
    margin-top: 25px;
    width: 100%;
  }
  #why-us .why-heading .why-small-title {
    font-size: 18px;
  }
  #why-us .why-heading .why-big-title {
    font-size: 1.5rem;
  }
  #why-us .why-heading .why-desc {
    width: 100%;
  }
  #why-us .why-choose-content .col-md-6:last-of-type .choose-wrapper {
    margin-bottom: 0;
  }
  #why-us .why-choose-content .choose-wrapper {
    flex-direction: column;
    text-align: left;
    align-items: flex-start;
  }
  #why-us .why-choose-content .choose-wrapper .choose-icon img {
    width: 65px;
  }
  #contact .contact-form {
    padding-left: 15px;
    padding-right: 15px;
  }
  #contact .map {
    height: 450px;
  }
  #contact .map iframe {
    padding-right: 0;
  }
  #info {
    padding-top: 30px;
    padding-bottom: 15px;
  }
  #info .info-wrapper {
    margin-bottom: 20px;
    text-align: center !important;
  }
  #info .info-wrapper .info-title {
    margin-bottom: 0;
  }
  #info .info-wrapper .info-link .social-link {
    text-align: center;
    padding-left: 0;
    margin-bottom: 10px;
  }
  #info .info-wrapper .info-link a {
    font-size: 20px;
  }
  .copyright-section {
    text-align: center;
  }
}/*# sourceMappingURL=stylepage.css.map */