@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");
* {
  font-family: "Poppins", sans-serif;
}

body {
  overflow-x: hidden;
  min-height: 100vh;
  position: relative;
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: #1ca500;
  border: 2px solid #f1f1f1;
  border-radius: 10px;
}

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

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

.fw-600 {
  font-weight: 600;
}

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

.fw-800 {
  font-weight: 800;
}

.txt-orange {
  color: #1ca500;
}

.outline-none {
  outline: none;
}

.theme-btn {
  text-decoration: none;
  display: inline-block;
  vertical-align: middle;
  border: none;
  outline: none !important;
  background: #1ca500;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  padding: 18px 30px;
  transition: all 0.4s ease-in-out;
  letter-spacing: 0;
  border-radius: 14px;
  position: relative;
  overflow: hidden;
  text-align: center;
  line-height: 1;
  z-index: 9;
  width: -moz-fit-content;
  width: fit-content;
}
.theme-btn::before {
  position: absolute;
  top: 50%;
  content: "";
  width: 20px;
  height: 20px;
  background-color: #000;
  border-radius: 50%;
  z-index: -1;
  left: -20px;
  transform: translate(-50%, -50%);
}
.theme-btn::after {
  position: absolute;
  top: 50%;
  content: "";
  width: 20px;
  height: 20px;
  background-color: #000;
  border-radius: 50%;
  z-index: -1;
  right: -20px;
  transform: translate(50%, -50%);
}
.theme-btn:hover {
  color: #fff;
}
.theme-btn:hover::before {
  animation: criss-cross-left 0.8s both;
  animation-direction: alternate;
}
.theme-btn:hover::after {
  animation: criss-cross-right 0.8s both;
  animation-direction: alternate;
}
@keyframes criss-cross-left {
  0% {
    left: -20px;
  }
  50% {
    left: 50%;
    width: 20px;
    height: 20px;
  }
  100% {
    left: 50%;
    width: 375px;
    height: 375px;
  }
}
@keyframes criss-cross-right {
  0% {
    right: -20px;
  }
  50% {
    right: 50%;
    width: 20px;
    height: 20px;
  }
  100% {
    right: 50%;
    width: 375px;
    height: 375px;
  }
}
.theme-btn.bg-2 {
  background: #1ca500;
}
.theme-btn.bg-trans {
  background: transparent;
  border: 2px solid #1ca500;
  color: #1ca500;
}
.theme-btn.bg-trans svg path {
  stroke: #1ca500;
}
.theme-btn.bg-trans:hover {
  color: #fff;
  border-color: #000;
}
.theme-btn.bg-trans:hover svg path {
  stroke: #fff;
}
.theme-btn.bg-kala {
  background: #000;
}
.theme-btn.bg-kala:hover::after {
  background-color: #1ca500;
  width: 500;
}
.theme-btn.bg-kala:hover::before {
  background-color: #1ca500;
  width: 500 !important;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
}
nav .logo img {
  width: 250px;
}
@media only screen and (max-width: 576px) {
  nav {
    padding: 20px;
  }
  nav .logo img {
    width: 200px;
  }
  nav .action .theme-btn {
    padding: 10px 20px;
  }
}

header h5 {
  background: #f1f1f1;
  padding: 6px 15px;
  border-radius: 8px;
  color: #023b74;
  font-weight: 400;
}
header h5 span {
  color: #eb5301;
  font-weight: 600;
}

.why-us .container .row .image img {
  width: 100%;
}
@media only screen and (max-width: 768px) {
  .why-us .container .row .image {
    text-align: center;
    padding: 10px 0;
  }
  .why-us .container .row .image img {
    width: 50%;
  }
}
@media only screen and (max-width: 400px) {
  .why-us .container .row .image img {
    width: 100%;
  }
}
.why-us .container .row .content .crd {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 20px;
}
.why-us .container .row .content .crd .icon {
  width: 80px;
  height: 80px;
  min-width: 80px;
  min-height: 80%;
  background: #2d9d16;
  padding: 10px;
  border-radius: 20px;
}
.why-us .container .row .content .crd .icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  filter: invert(1);
}
.why-us .container .row .content .crd h5 {
  margin-bottom: 0;
  color: #000;
  font-weight: 600;
}
.why-us .container .row .content .crd p {
  margin-bottom: 0;
}
@media only screen and (max-width: 400px) {
  .why-us .container .row .content .crd {
    flex-direction: column;
    align-items: start;
    gap: 10px;
    padding: 8px;
    border-radius: 10px;
    transition: 0.3s;
    box-shadow: 0 0 20px 0 rgba(235, 83, 1, 0.2156862745);
  }
  .why-us .container .row .content .crd:hover {
    box-shadow: 0 0 20px 0 rgba(235, 83, 1, 0.4745098039);
  }
}

.who-benefit .container .row .content {
  height: 100%;
  padding: 20px;
  border: 2px solid #1ca500;
  border-radius: 30px;
  transition: 0.3s;
}
.who-benefit .container .row .content .icon {
  width: 80px;
  height: 80px;
  display: grid;
  place-content: center;
  border-radius: 50px;
  box-shadow: 0 0 20px 0 rgba(235, 83, 1, 0.2156862745);
  padding: 15px;
  background: #fff;
}
.who-benefit .container .row .content .icon img {
  width: 100%;
}
.who-benefit .container .row .content .text {
  margin-top: 20px;
}
.who-benefit .container .row .content:hover {
  background: #1ca500;
}
.who-benefit .container .row .content:hover .text {
  color: #fff;
}
.who-benefit .container .row .content.active {
  background: #1ca500;
}
.who-benefit .container .row .content.active .text {
  color: #fff;
}

.login .container .login-box .row form .row .input {
  position: relative;
}
.login .container .login-box .row form .row .input label {
  position: absolute;
  left: 0;
  transform: translate(13.5px, 13.5px);
  transition: 0.3s;
  border-radius: 5px;
  width: 90%;
  background: #fff;
}
.login .container .login-box .row form .row .input input, .login .container .login-box .row form .row .input textarea {
  width: 100%;
  padding: 12px;
  border: 2px solid #1ca500;
  border-radius: 12px;
  outline: none;
  resize: none;
}
.login .container .login-box .row form .row .input input:focus ~ label, .login .container .login-box .row form .row .input textarea:focus ~ label {
  background: #fff;
  padding: 0 5px;
  width: -moz-fit-content;
  width: fit-content;
  transform: translate(8px, -12px);
}
.login .container .login-box .row form .row .input input:valid ~ label, .login .container .login-box .row form .row .input textarea:valid ~ label {
  width: -moz-fit-content;
  width: fit-content;
  background: #fff;
  padding: 0 5px;
  transform: translate(8px, -12px);
}
.login .container .login-box .row form .row .remember .form-check .form-check-input {
  cursor: pointer;
  scale: 1.2;
}
.login .container .login-box .row form .row .remember .form-check .form-check-input:checked {
  background-color: #1ca500;
  border-color: #d03900;
}
.login .container .login-box .row form .row .remember .form-check .form-check-input:focus {
  box-shadow: 0 0 0 0.25rem rgba(235, 84, 1, 0.25);
}
.login .container .login-box .row form .row .remember .form-check .form-check-label {
  cursor: pointer;
}
.login .container .login-box .row.top-contact .content a {
  display: flex;
  border: 2px solid #1ca500;
  align-items: center;
  text-decoration: none;
  padding: 20px;
  gap: 14px;
  border-radius: 20px;
  position: relative;
  transition: 0.3s;
  overflow: hidden;
}
.login .container .login-box .row.top-contact .content a .icon {
  width: 50px;
  min-width: 50px;
  height: 50px;
  background: #fff;
  box-shadow: 0 0 20px 0 rgba(235, 83, 1, 0.2156862745);
  display: grid;
  place-content: center;
  border-radius: 50px;
  transition: inherit;
}
.login .container .login-box .row.top-contact .content a .icon svg {
  width: 100%;
}
.login .container .login-box .row.top-contact .content a .text {
  color: #1ca500;
  transition: inherit;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.login .container .login-box .row.top-contact .content a::after {
  content: "";
  width: 0%;
  height: 100%;
  background: #eb5301;
  position: absolute;
  left: 50%;
  z-index: -1;
  border-radius: 20px;
  transition: inherit;
  transform: skew(-45deg);
}
.login .container .login-box .row.top-contact .content a:hover::after {
  width: 100%;
  left: 0;
  transform: skew(-45deg) scale(1.2);
  border-radius: 0;
}
.login .container .login-box .row.top-contact .content a:hover .text {
  color: #fff;
}
.login .container .login-box .row.top-contact .content a.active {
  background: #eb5301;
}
.login .container .login-box .row.top-contact .content a.active .text {
  color: #fff;
}

footer {
  background-image: url(../images/cta-shape.png);
  background-color: #1ca500;
  margin-top: 50px;
  position: absolute;
  bottom: 0;
  width: 100%;
  left: 0;
}
@media only screen and (max-width: 768px) {
  footer {
    margin-top: 20px;
  }
}

.pb-5em {
  padding-bottom: 5em;
}/*# sourceMappingURL=style.css.map */