@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');

* {
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

:root {
  --clr-primary: #0C7047;
  --clr-primary-hover: #05613b;
  --clr-dark: #111;
  --clr-white: #fff;
  --clr-lightGray: #F7F7F7;
  --clr-light-primary: #E6F0EC;
}

body {
  overflow-x: hidden;
  font-size: 14px;
  line-height: 1.5;
  color: var(--clr-dark);
}

a {
  transition: 0.3s ease-in-out;
  text-decoration: none;
  color: var(--clr-primary);
}

a:hover {
  text-decoration: none;
  color: var(--clr-primary-hover);
}

ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

img {
  max-width: 100%;
}

/* Button */

.ThemeBtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 500;
  padding: 10px 20px;
  -webkit-appearance: none;
  appearance: none;
  background-color: var(--clr-primary);
  color: #fff;
  border: none;
  cursor: pointer;
  position: relative;
  transition: transform ease-in 0.1s, box-shadow ease-in 0.25s;
  min-width: fit-content;
}

.ThemeBtn:hover{
  color: #fff;
}


.ThemeBtn:focus {
  outline: 0;
}
.ThemeBtn:before, .ThemeBtn:after {
  position: absolute;
  content: "";
  display: block;
  width: 140%;
  height: 100%;
  left: -20%;
  z-index: -1000;
  transition: all ease-in-out 0.5s;
  background-repeat: no-repeat;
}
.ThemeBtn:before {
  display: none;
  top: -75%;
  background-image: radial-gradient(circle, #0c7047 20%, transparent 20%), radial-gradient(circle, transparent 20%, #0c7047 20%, transparent 30%), radial-gradient(circle, #0c7047 20%, transparent 20%), radial-gradient(circle, #0c7047 20%, transparent 20%), radial-gradient(circle, transparent 10%, #0c7047 15%, transparent 20%), radial-gradient(circle, #0c7047 20%, transparent 20%), radial-gradient(circle, #0c7047 20%, transparent 20%), radial-gradient(circle, #0c7047 20%, transparent 20%), radial-gradient(circle, #0c7047 20%, transparent 20%);
  background-size: 10% 10%, 20% 20%, 15% 15%, 20% 20%, 18% 18%, 10% 10%, 15% 15%, 10% 10%, 18% 18%;
}
.ThemeBtn:after {
  display: none;
  bottom: -75%;
  background-image: radial-gradient(circle, #0c7047 20%, transparent 20%), radial-gradient(circle, #0c7047 20%, transparent 20%), radial-gradient(circle, transparent 10%, #0c7047 15%, transparent 20%), radial-gradient(circle, #0c7047 20%, transparent 20%), radial-gradient(circle, #0c7047 20%, transparent 20%), radial-gradient(circle, #0c7047 20%, transparent 20%), radial-gradient(circle, #0c7047 20%, transparent 20%);
  background-size: 15% 15%, 20% 20%, 18% 18%, 20% 20%, 15% 15%, 10% 10%, 20% 20%;
}
.ThemeBtn:active {
  transform: scale(0.9);
  background-color: var(--clr-primary);
}
.ThemeBtn.animate:before {
  display: block;
  animation: topBubbles ease-in-out 0.75s forwards;
}
.ThemeBtn.animate:after {
  display: block;
  animation: bottomBubbles ease-in-out 0.75s forwards;
}

@keyframes topBubbles {
  0% {
    background-position: 5% 90%, 10% 90%, 10% 90%, 15% 90%, 25% 90%, 25% 90%, 40% 90%, 55% 90%, 70% 90%;
  }
  50% {
    background-position: 0% 80%, 0% 20%, 10% 40%, 20% 0%, 30% 30%, 22% 50%, 50% 50%, 65% 20%, 90% 30%;
  }
  100% {
    background-position: 0% 70%, 0% 10%, 10% 30%, 20% -10%, 30% 20%, 22% 40%, 50% 40%, 65% 10%, 90% 20%;
    background-size: 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%;
  }
}
@keyframes bottomBubbles {
  0% {
    background-position: 10% -10%, 30% 10%, 55% -10%, 70% -10%, 85% -10%, 70% -10%, 70% 0%;
  }
  50% {
    background-position: 0% 80%, 20% 80%, 45% 60%, 60% 100%, 75% 70%, 95% 60%, 105% 0%;
  }
  100% {
    background-position: 0% 90%, 20% 90%, 45% 70%, 60% 110%, 75% 80%, 95% 70%, 110% 10%;
    background-size: 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%;
  }
}

/* Button end */

/* header */

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  will-change: transform;
  transition: transform 0.5s cubic-bezier(0.694, 0.048, 0.335, 1), background 0.3s;
  transform: translateY(0);
}

.hide-nav {
  transform: translateY(-120%) !important;
  -webkit-transform: translateY(-120%) !important;
}

.header-nav {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 30px;
}

header .navbar {
  padding: 20px 0;
  transition: all 0.3s ease-in-out;
}

.navbar-nav {
  gap: 40px;
}

.navbar-brand {
  padding: 0;
}

.navbar-brand img {
  width: 110px;
  transition: all 0.3s ease-in-out;
}

.navigation-container {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 40px;
}

.navbar-nav .nav-link {
  padding: 5px 0 !important;
  font-size: 14px;
  font-weight: 500;
  color: var(--clr-white);
  position: relative;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link:hover {
  color: var(--clr-primary);
}

.contact-links-nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

.sticky-header {
  background: var(--clr-white);
  box-shadow: 0 0 10px rgb(0 0 0 / 30%);
}

.sticky-header .navbar {
  padding: 10px 0;
}

.sticky-header .navbar-brand img {
  width: 90px;
}

.sticky-header .navbar-nav .nav-link {
  color: var(--clr-dark);
}

.sticky-header .navbar-nav .nav-link:hover {
  color: var(--clr-primary-hover);
}

/* header end */

main {
  overflow: hidden;
}


/* scroll top */

#scrollTotop {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  bottom: 25px;
  right: -50px;
  cursor: pointer;
  width: 40px;
  height: 40px;
  border-radius: 100%;
  background: var(--clr-green);
  z-index: 99;
  box-shadow: 0 3px 10px rgb(0 0 0 / 15%);
  transition: all 0.3s ease-in-out;
  border: 0;
  outline: none;
}

#scrollTotop.showscroll {
  right: 25px;
}

.ScrollArrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.ScrollArrow i {
  font-size: 20px;
  color: var(--clr-white);
}

/* scroll top */

.form-control {
  min-height: 44px;
  border-radius: 0;
  background: #E6F0EC;
  font-size: 14px;
  transition: all 0.3s ease-in-out;
}

.form-control:focus {
  box-shadow: none;
  border-color: var(--clr-primary);
}

.custom-space {
  padding: 80px 0;
}

/* Section Title  */

.SecHead {
  margin: 0 0 50px;
}

.SecHead-Title {
  position: relative;
}

.TitleDivider {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: -20px;
  top: -20px;
}

.TitleDivider:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border: 10px solid;
  border-image-slice: 1;
  border-width: 2px;
  border-image-source: linear-gradient(90deg, rgba(12, 112, 71, 0.20) 0%, rgba(12, 112, 71, 0.00) 100%);
  top: 10px;
}

.SecHead-Title h2 {
  color: var(--clr-primary);
  text-shadow: 0px 4px 10px rgba(0, 0, 0, 0.10);
  font-size: 40px;
  font-weight: 300;
  line-height: normal;
  text-transform: uppercase;
  margin: 0 0 15px;
}

.SecHead-Title h2 b {
  color: var(--clr-dark);
  font-weight: bold;
}

.SecHead h4 {
  font-size: 24px;
  margin: 0 0 15px;
}


/* Section Title end */


/* Footer-Css */

footer {
  background-color: #111;
  color: #fff;
  padding-top: 50px;
}

.about-footer {
  display: flex;
  flex-direction: column;
  gap: 15px;
}


.about-footer p {
  margin: 0px;
}


.footer-info {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer-info p {
  margin: 0;
}

.footer-info h5 {
  margin: 0px;
  font-size: 16px;
  font-weight: 400;
  text-transform: uppercase;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-nav li a {
  color: #fff;
  font-size: 13px;
}

.copyright p {
  margin: 0px;
}

.copyright {
  padding: 20px 0;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.20);
}

.instagram {
  padding: 5px 10px 15px;
}

.instagram a:before {
  content: "";
  width: 40px;
  height: 40px;
  position: absolute;
  background: #0c7047;
  z-index: -1;
  left: -5px;
  top: -9px;
  border-radius: 100%;
}

.instagram a {
  position: relative;
  z-index: 1;
}

.instagram img {
  filter: drop-shadow(2px 4px 6px black);
}



/* verify-input-css */

.verify-inputbox {
  position: relative;
  overflow: hidden;
}

.verify-inputbox button {
  position: absolute;
  top: 0;
  right: 0;
  padding: 11px 20px;
}


.WelcomeModal {
  background: rgba(17, 17, 17, 0.6);
}