@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
*,
*:before,
*:after {
  box-sizing: border-box;
}

html,
body,
div,
span,
object,
iframe,
figure,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
code,
em,
img,
small,
strike,
strong,
sub,
sup,
tt,
b,
u,
i,
ol,
ul,
li,
fieldset,
form,
label,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
main,
canvas,
embed,
footer,
header,
nav,
section,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: none;
     -moz-text-size-adjust: none;
          text-size-adjust: none;
  text-decoration: none;
  line-height: 1.4;
  list-style: none;
}

a,
button,
input {
  transition: 0.5s ease-out;
}

footer,
header,
nav,
section,
main {
  display: block;
}

body {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
}

ol,
ul {
  list-style: none;
}

p {
  margin-bottom: 1.2rem;
  font-size: 1rem;
  letter-spacing: 1px;
  font-weight: 400;
  line-height: 1.6;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

input {
  border-radius: 0;
}

h1 {
  font-size: 1.5rem;
  font-weight: 600;
}
@media (min-width: 576px) {
  h1 {
    font-size: 2.125rem;
  }
}
@media (min-width: 1240px) {
  h1 {
    font-size: 3.125rem;
  }
}

h2 {
  font-size: 1.5rem;
  font-weight: 600;
}
@media (min-width: 576px) {
  h2 {
    font-size: 2.125rem;
  }
}
@media (min-width: 1240px) {
  h2 {
    font-size: 3.125rem;
  }
}

h3 {
  font-size: 1.25rem;
  font-weight: 600;
}
@media (min-width: 576px) {
  h3 {
    font-size: 1.45rem;
  }
}
@media (min-width: 1240px) {
  h3 {
    font-size: 1.875rem;
  }
}

h4 {
  font-size: 1rem;
  font-weight: 600;
}
@media (min-width: 576px) {
  h4 {
    font-size: 1.125rem;
  }
}
@media (min-width: 1240px) {
  h4 {
    font-size: 1.6 rem;
  }
}

h5 {
  font-size: 1.25rem;
  font-weight: 500;
  font-style: normal;
}

h6 {
  font-size: 0.75rem;
  font-weight: 600;
  color: #58B33E;
}

.mb1 {
  margin-bottom: 1rem;
}

.scrollToTop {
  position: fixed;
  bottom: 3rem;
  height: 3rem;
  width: 3rem;
  line-height: 3rem;
  background-color: #58B33E;
  z-index: 1;
  text-align: center;
  cursor: pointer;
  color: #fff;
  border-radius: 5rem;
  right: 2rem;
}
.scrollToTop:hover {
  background-color: #000;
}

.ease,
a {
  transition: all 1s ease;
}

.img-full {
  width: 100%;
}

.center {
  text-align: center;
}

.border-radius {
  border-radius: 1rem;
  overflow: hidden;
}

.row {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: 1fr auto;
  gap: 2rem;
  align-items: center;
}
.row .grid {
  display: grid;
  justify-items: start;
  height: 100%;
  align-items: center;
  grid-column: auto/span 12;
}
@media (min-width: 992px) {
  .row .grid-3 {
    grid-column: auto/span 3;
  }
}
@media (min-width: 992px) {
  .row .grid-2 {
    grid-column: auto/span 2;
  }
}
@media (min-width: 992px) {
  .row .grid-4 {
    grid-column: auto/span 4;
  }
}
@media (min-width: 992px) {
  .row .grid-6 {
    grid-column: auto/span 6;
  }
}
@media (min-width: 992px) {
  .row .grid-5 {
    grid-column: auto/span 5;
  }
}
@media (min-width: 992px) {
  .row .grid-7 {
    grid-column: auto/span 7;
  }
}
@media (min-width: 992px) {
  .row .grid-8 {
    grid-column: auto/span 8;
  }
}
@media (min-width: 992px) {
  .row .grid-9 {
    grid-column: auto/span 9;
  }
}
@media (min-width: 992px) {
  .row .grid-10 {
    grid-column: auto/span 10;
  }
}
@media (min-width: 992px) {
  .row .grid-12 {
    grid-column: auto/span 12;
  }
}

.container {
  margin: 0 auto;
  padding-right: 0.7rem;
  padding-left: 0.7rem;
  width: 100%;
}
@media (min-width: 576px) {
  .container {
    max-width: 546px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 738px;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 972px;
  }
}
@media (min-width: 1240px) {
  .container {
    max-width: 1240px;
  }
}
@media (min-width: 576px) {
  .container.min {
    max-width: 546px;
  }
}
@media (min-width: 768px) {
  .container.min {
    max-width: 738px;
  }
}
@media (min-width: 992px) {
  .container.min {
    max-width: 972px;
  }
}
@media (min-width: 1240px) {
  .container.min {
    max-width: 1040px;
  }
}

.img {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.img-out {
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.img-out img {
  width: 100%;
}

section {
  padding: 4rem 0;
}
section .text_center {
  text-align: center;
}

.center {
  text-align: center;
}

header {
  position: fixed;
  margin: auto;
  width: 100%;
  z-index: 9999;
  top: 0rem;
}
header.small {
  background-color: rgba(1, 15, 28, 0.9);
  top: -1.9rem;
}

.brand_name a {
  opacity: 1;
}
.brand_name a:hover {
  opacity: 0.6;
}

.nav_top {
  padding: 0.2rem 0;
  display: flex;
  justify-content: space-between;
  position: relative;
}
.nav_top ul {
  display: flex;
  gap: 0.75rem;
}
.nav_top ul li {
  font-size: 0.85rem;
  color: #fff;
  display: flex;
  align-items: center;
  cursor: pointer;
}
.nav_top ul li svg {
  margin-right: 0.4rem;
  width: 1rem;
  height: 1rem;
}
.nav_top ul li svg path {
  fill: #fff;
}
.nav_top ul li:hover {
  color: #58B33E;
}
.nav_top ul li:hover svg path {
  fill: #58B33E;
}
.nav_top ul + ul li {
  padding: 0.25rem;
}
.nav_top ul + ul li a {
  color: #fff;
  font-size: 1rem;
}
.nav_top ul + ul li:hover a {
  color: #58B33E;
}

.my_Nav .nav_cont {
  background-color: rgba(1, 15, 28, 0.2);
  border-radius: 5rem;
  padding: 0.45rem 0.55rem 0.45rem 1rem;
  display: grid;
  grid-template-columns: 131px auto auto;
  align-items: center;
  justify-content: space-between;
}
.my_Nav .nav_cont nav.nav_mine {
  display: flex;
}
.my_Nav .nav_cont nav.nav_mine ul {
  display: flex;
}
.my_Nav .nav_cont nav.nav_mine ul li a {
  color: #fff;
  padding: 0.75rem;
}
.my_Nav .nav_cont nav.nav_mine ul li a:hover {
  color: #58B33E;
}

.inner_header header {
  background-color: #010f1c;
}
.inner_header header .small {
  position: fixed;
}

.info_page {
  padding-top: 10rem;
  background-position: center;
}
.info_page h1 {
  color: #fff;
  text-shadow: 1px 1px 2px black;
}

.button_grp {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}
.button_grp.f-center {
  justify-content: center;
}

.button {
  display: inline-flex;
  gap: 0.35rem;
  align-items: center;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}
.button.rd {
  padding: 1rem;
}
.button.lg {
  padding: 1rem 2rem;
}
.button.sm {
  padding: 0.65rem 1rem;
  font-size: 1rem;
}
.button.xs {
  padding: 0.45rem 1rem;
  font-size: 0.85rem;
  gap: 0;
}
.button i {
  width: 1.2rem;
  height: 1.2rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.button.yellow {
  background-color: #F7C501;
  color: #010F1C;
}
.button.yellow:hover {
  background-color: rgba(247, 197, 1, 0.6);
}
.button.green {
  background-color: #58B33E;
  color: #fff;
}
.button.green:hover {
  background-color: rgba(247, 197, 1, 0.8);
  color: #000;
}
.button.black {
  background-color: #000;
  color: #fff;
}
.button.black:hover {
  background-color: rgba(247, 197, 1, 0.8);
  color: #000;
}
.button.radius_f {
  border-radius: 2rem;
}
.button.radius_h {
  border-radius: 0.75rem;
}

.heading {
  display: grid;
  gap: 0.35rem;
}

.hero {
  padding: 11.5rem 0rem 7.5rem 0;
  position: relative;
}
.hero .text_cont {
  max-width: 35rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  color: #fff;
  position: relative;
}
.hero::before {
  position: absolute;
  content: "";
  background-color: rgba(1, 15, 28, 0.6);
  width: 100%;
  top: 0;
  bottom: 0;
}
.hero .hero_img {
  text-align: right;
  position: relative;
}

.my_product {
  padding: 2rem 0;
}
.my_product .itme {
  background-color: #fff;
  margin: 0.65rem;
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
  border-radius: 1rem;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 5px 0px, rgba(0, 0, 0, 0.1) 0px 0px 1px 0px;
}
.my_product .itme span,
.my_product .itme p,
.my_product .itme a,
.my_product .itme h4 {
  position: relative;
  z-index: 1;
}
.my_product .itme .image {
  position: absolute;
  width: 8rem;
  height: 8rem;
  background-size: cover;
  border-radius: 2rem;
  transform: rotate(23deg);
  right: -3rem;
  top: -2rem;
}
.my_product .itme:hover .image {
  width: 100%;
  height: 100%;
  transform: rotate(0deg);
  right: 0rem;
  top: 0rem;
  border-radius: 0rem;
  opacity: 0.1;
}
.my_product .itme span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  background-color: rgba(247, 197, 1, 0.8);
  border-radius: 50%;
  font-size: 1.5rem;
  color: #010F1C;
}

.two_box {
  background-color: #58B33E;
}
.two_box .row {
  gap: 0;
}
.two_box .row .grid {
  display: flex;
  text-align: center;
  flex-direction: column;
  align-items: center;
}
.two_box .row .grid:nth-child(odd) {
  background-color: #4e5766;
}
.two_box .row .grid:nth-child(even) {
  background-color: rgba(1, 15, 28, 0.9);
}
.two_box .row .grid .cont {
  max-width: 350px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: 2rem 0;
}
.two_box h3 {
  color: #58B33E;
}
.two_box p {
  color: #fff;
}

.project_section .row:nth-child(even) .grid:nth-child(odd) {
  order: 1;
}
.project_section .cont {
  padding: 2rem 0;
  color: #fff;
}
.project_section .cont h3 {
  padding-bottom: 1rem;
}

.project_listing {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: 1fr auto;
  gap: 0.75em;
}
.project_listing h4 {
  color: #58B33E;
}

.project_heading {
  border-bottom: 0.1rem solid #58B33E;
  margin-bottom: 4rem;
  color: #fff;
}
.project_heading .link {
  justify-items: end;
}

.image_box {
  border-radius: 100% 100% 0% 0/130% 130% 0% 0;
  height: 12rem;
  background-size: cover;
  width: 100%;
}

.our_process {
  counter-reset: section;
}
.our_process .hading {
  padding-bottom: 3rem;
}
.our_process .itme {
  position: relative;
  counter-increment: leaderboard;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  cursor: pointer;
}
.our_process .itme .cont {
  margin-bottom: 2rem;
  margin-top: 0;
}
.our_process .itme .image {
  margin-bottom: 2rem;
}
.our_process .itme:nth-child(even) {
  align-items: center;
  flex-direction: column-reverse;
}
.our_process .itme:nth-child(even) .image {
  margin-bottom: 0;
  margin-top: 2rem;
}
.our_process .itme:nth-child(even) .image_box {
  border-radius: 0% 0% 100% 100%/0% 0% 130% 130%;
}
.our_process .itme:nth-child(even)::before {
  top: auto;
  bottom: 11rem;
}
.our_process .itme:nth-child(even) .cont {
  margin-bottom: 0;
  margin-top: 2rem;
}
.our_process .itme::before {
  content: counter(leaderboard);
  text-align: center;
  background-color: #58B33E;
  width: 2rem;
  height: 2rem;
  display: flex;
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  color: #fff;
  position: absolute;
  top: 11rem;
  border: 0.2rem solid #fff;
}
.our_process .itme .cont {
  text-align: center;
  padding: 0 1rem;
}
.our_process .itme .cont h4 {
  padding-bottom: 0.4rem;
}
.our_process .itme .cont p {
  color: rgba(78, 87, 102, 0.8);
}
.our_process .itme:hover {
  background-color: rgba(78, 87, 102, 0.1);
}
.our_process .itme:hover .image_box {
  border-radius: 0% 0% 0% 0%/0% 0% 0% 0%;
}

.testimonials-section {
  background-color: rgba(88, 179, 62, 0.1);
}
.testimonials-section .hading {
  padding-bottom: 2rem;
  border-bottom: 0.1rem solid #58B33E;
  margin-bottom: 3rem;
}
.testimonials-section .avatar {
  display: flex;
  gap: 1rem;
}
.testimonials-section .avatar .image {
  width: 3rem;
  height: 3rem;
  background-size: cover;
  border-radius: 50%;
}
.testimonials-section .product-3 {
  margin: 0 -1rem;
}
.testimonials-section .itme {
  padding: 2rem;
  background-color: #fff;
  border-radius: 1rem;
  margin: 0 1rem;
}
.testimonials-section .itme p {
  color: rgba(0, 0, 0, 0.8);
}
.testimonials-section .itme h4 {
  color: #58b33e;
}

.checked {
  color: orange;
}

.btn-wrap {
  display: flex;
  justify-content: center;
  gap: 1rem;
}
.btn-wrap .slider-dots {
  position: relative;
  display: flex;
}
.btn-wrap .slider-dots .slick-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  bottom: -2rem;
  position: relative;
  bottom: auto;
  top: auto;
}
.btn-wrap .slider-dots .slick-dots li {
  width: auto;
  height: auto;
  margin: 0 0.2rem;
}
.btn-wrap .slider-dots .slick-dots li button {
  width: 1rem;
  height: 1rem;
  background-color: green;
  opacity: 0.2;
  border-radius: 50%;
  border: 0.1rem solid #fff;
}
.btn-wrap .slider-dots .slick-dots li button::before {
  display: none;
}
.btn-wrap .slider-dots .slick-dots li.slick-active button {
  opacity: 1;
  width: 1.2rem;
  height: 1.2rem;
}
.btn-wrap .slick-arrow {
  width: 1.5rem;
  height: 1.5rem;
  background-color: transparent;
  border: 0.15rem solid #58B33E;
  font-size: 1rem;
  color: #58B33E;
  border-radius: 50%;
  cursor: pointer;
  opacity: 0.5;
}
.btn-wrap .slick-arrow:hover {
  opacity: 1;
}

.home-contact .container {
  background-color: #010F1C;
  color: #fff;
  padding: 3rem;
  border-radius: 2rem;
  position: relative;
}
.home-contact .wpcf7 {
  width: 100%;
}
.home-contact .form-home {
  background-color: #C5D9CD;
  border-radius: 2rem;
  padding: 3rem;
}
.home-contact .form-home .form_input {
  width: 100%;
}
.home-contact .form-home .form_input p {
  display: flex;
  width: 100%;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 0;
  position: relative;
}
.home-contact .form-home .form_input p .wpcf7-spinner {
  position: absolute;
  left: 0;
  bottom: 13px;
  margin-left: 1rem;
}
.home-contact .form-home .form_input p .wpcf7-form-control-wrap {
  position: relative;
}
.home-contact .form-home .form_input p .wpcf7-form-control-wrap .wpcf7-not-valid-tip {
  position: absolute;
  top: 11px;
  right: 11px;
  font-size: 0.85rem;
}
.home-contact .form-home .input {
  border: none;
  padding: 0.75rem;
  width: 100%;
  font-size: 1rem;
  border-radius: 1rem;
}
.home-contact .form-home .message {
  height: 7rem;
}
.home-contact .form-home .button {
  font-size: 1.2rem;
}

.get_post {
  background-color: rgba(88, 179, 62, 0.05);
  padding: 1rem;
  border-radius: 1rem;
}
.get_post .post_image {
  height: 14rem;
  border-radius: 1rem;
  margin-bottom: 2rem;
}
.get_post a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 0.75rem;
  color: rgba(0, 0, 0, 0.8);
}
.get_post a:hover {
  color: #58b33e;
}
.get_post p {
  font-size: 0.95rem;
  color: rgba(0, 0, 0, 0.8);
}

.avtar-user {
  display: grid;
  grid-template-columns: 2rem auto;
  gap: 0.75rem;
  align-content: center;
  align-items: center;
}
.avtar-user .image img {
  width: 2rem;
  height: 2rem;
}
.avtar-user .cont h5 {
  font-size: 0.85rem;
}
.avtar-user .cont span {
  font-size: 0.75rem;
  font-weight: normal;
  color: rgba(0, 0, 0, 0.6);
}
.avtar-user .cont span i {
  color: rgba(88, 179, 62, 0.8);
  margin-right: 0.2rem;
}

.marquee {
  background-color: rgba(0, 0, 0, 0.03);
  padding: 1rem;
}
.marquee .inner {
  padding: 0 0.5rem;
}

.icon_text_cont {
  width: 100%;
  background-color: rgba(0, 0, 0, 0.03);
  margin: 1rem 0;
  display: flex;
  gap: 1rem;
  flex-direction: column;
  padding: 1.5rem;
  border-radius: 1rem;
}
.icon_text_cont .icon {
  font-size: 3rem;
  color: #58B33E;
}
.icon_text_cont .cont p {
  font-size: 0.85rem;
  color: rgba(0, 0, 0, 0.7);
  margin-bottom: 0;
}
.icon_text_cont .cont h5 {
  padding-bottom: 1rem;
  color: rgba(0, 0, 0, 0.8);
}

.why_choose_us {
  background-color: rgba(88, 179, 62, 0.01);
  border-bottom: 0.1rem solid #58B33E;
}

footer {
  background-color: #010F1C;
  border-top: 0.65rem solid #58B33E;
  padding: 2rem 0;
  color: #fff;
}
footer .row .grid {
  align-items: start;
}
footer h4 {
  color: #58B33E;
  margin-bottom: 0.65rem;
}
footer ul li a {
  color: #fff;
  padding: 0.2rem 0;
  display: block;
}
footer ul li a:hover {
  color: #4E5766;
}
footer .footer_widget_nav_menu {
  width: 100%;
}
footer .footer_widget_nav_menu ul {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: 1fr auto;
  justify-content: space-between;
}
footer .footer_widget_nav_menu ul li {
  grid-column: auto/span 3;
}
.copyright {
  font-size: 0.85rem;
}
.copyright a {
  display: inline-block;
  color: #fff;
}
.copyright a.cte {
  color: #58B33E;
}
.copyright a.cte:hover {
  color: #4E5766;
}
.copyright a:hover {
  color: #58B33E;
}/*# sourceMappingURL=Style.css.map */