/*==========================================================================
1.0 DEFAUL SETTING
========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Mali:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;1,200;1,300;1,400;1,500;1,600;1,700&display=swap');

@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');


html {
  scroll-behavior: smooth;
}

li::marker {
  color: transparent;
}

body {
  max-width: 100%;
  overflow-x: hidden;
  font-family: "Roboto", sans-serif;
}

img {
  max-width: 100%;
  height: auto;
}

ul,
ol {
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #000000;
  font-weight: 600;
    font-family: "Roboto", sans-serif;
}

h1 {
  font-size: 45px;
}

h2 {
  font-size: 40px;
}

h3 {
  font-size: 32px;
}

h4 {
  font-size: 27px;
}

h5 {
  font-size: 22px;
}

h6 {
  font-size: 18px;
}

p {
  font-size: 16px;
  font-weight: 400;
  color: #475569;
  line-height: 25px;
  font-family: "Inter", sans-serif;
}

figure {
  margin: 0;
}

input:focus {
  outline: 0;
  border: 0;
}

a {
  text-decoration: none;
}

.container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
  max-width: 1270px;
  width: 100%;
}

.gapping {
  margin-top: 70px;
  overflow: hidden;
}

header {
  position: absolute;
  top: 20px;
  width: 100%;
  left: 0;
  z-index: 9;
}

header .container {
  position: relative;
  padding: 0 12px;
  max-width: 1360px;
  width: 100%;
}


header .container::before {
  display: block;
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: inherit;
  /* background: radial-gradient(#fdfdfd00 30%, #ffffff36); */
  background-color: #fff;
  /* backdrop-filter: blur(8px); */
  z-index: -1;
  border-radius:7px;
  border: 1px solid #ffffff3d;
}

.navbar-brand img {
  max-width: 400px;
}


.navbar-toggler {
  padding: .25rem .45rem;
  background-color: #88c661;
  color: #fff;
}


.nav-link {
  display: block;
  padding: .5rem 1rem;
  color: #113105;
  text-decoration: none;
  transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out;
  font-size: 16px;
  letter-spacing: 0;
  font-weight: 500;

}

li.nav-item {
  margin-left: 20px;
  line-height: 1;
}

li.nav-item .button {
  display: inline-block;
  padding: 11px 35px;
  border-radius: 22px;
  font-size: 15px;
  /* background-color: #1f6306; */
     background-image: linear-gradient(to right, #1f6306, #058405);
  color: #fff;
}

li.nav-item .button:after {
  background-color:#181146 ;
  border: 0;
}
li.nav-item .button:before {
  background-color: #44a05b;
}

.navbar-expand-lg .navbar-nav {
  align-items: center;
}

.navbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding-top: .5rem;
  padding-bottom: .5rem;
  z-index: 99;
  width: 100%;
  border-radius: 58px;
  padding: 10px 0px;
}

.dropdown-item {
  padding: .65rem 1rem;
  font-size: 16px;
}

.navbar-nav .dropdown-menu {
  position: static;
  padding: 0;
}

.dropdown-item:focus, .dropdown-item:hover {
  color: #fff;
  background-color: #88c661;
}

.nav-link:focus, .nav-link:hover {
  color:#1f6306;
  font-weight: 500;
}


/* Hero Banner CSS */

.hero-slider {
  width: 100%;
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  z-index: 0;
}

.hero-slider .swiper-slide {
  overflow: hidden;
  color: #fff;
}

.hero-slider .swiper-container {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

.hero-slider .slide-inner {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: left;
}

.hero-slider .swiper-button-prev,
.hero-slider .swiper-button-next {
  background: transparent;
  width: 55px;
  height: 55px;
  line-height: 53px;
  margin-top: -30px;
  text-align: center;
  border: 2px solid #d4d3d3;
  border-radius: 55px;
  opacity:0;
  visibility:hidden;
  transition:all .2s ease;
}
.hero-slider:hover .swiper-button-prev,
.hero-slider:hover .swiper-button-next {
  transform:translateX(0);
  opacity:1;
  visibility:visible;
}

@media (max-width: 767px) {
  .hero-slider .swiper-button-prev,
  .hero-slider .swiper-button-next {
    display: none;
  }
}

.hero-slider .swiper-button-prev {
  left: 25px;
  transform:translateX(50px);
}

.hero-slider .swiper-button-prev:before {
  font-family: "Font Awesome 5 Free";
  content: "\f060";
  font-size: 15px;
  color: #d4d3d3;
  font-style: normal;
  display: inline-block;
  vertical-align: middle;
  font-weight: 900;
}

.hero-slider .swiper-button-next {
  right: 25px;
  transform:translateX(-50px);
}

.hero-slider .swiper-button-next:before {
  font-family: "Font Awesome 5 Free";
  content: "\f061";
  font-size: 15px;
  color: #d4d3d3;
  font-style: normal;
  display: inline-block;
  vertical-align: middle;
  font-weight: 900;
}

.hero-slider .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  text-align: left;
  line-height: 12px;
  font-size: 12px;
  color: #000;
  opacity: 0.3;
  background:#fff;
  transition:all .2s ease;
}

.hero-slider .swiper-pagination-bullet-active {
  opacity:1;
}

.hero-slider .swiper-container-horizontal > .swiper-pagination-bullets,
.hero-slider .swiper-pagination-custom,
.hero-slider .swiper-pagination-fraction {
  bottom: 30px;
}

.swiper-pagination {
  text-align:left;
}

.hero-slider .swiper-container-horizontal > .swiper-pagination-bullets{
  bottom:50px;
    max-width: 1200px;
    padding: 0 15px;
    margin: 0 auto;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
}

.hero-slider h1 {
    color: #fff;
    font-size: 51px;
    font-family: "Edu NSW ACT Cursive", cursive;
    font-weight: 800;
    line-height: 67px;
    margin-bottom: 25px;
}

.hero-slider p {
    color: #fff;
    font-size: 18px;
    /* margin: 20px 0 30px 0; */
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    max-width: 600px;
    width: 100%;
    margin: 0 auto;
}

.main_btn a {
  display: inline-block;
  padding: 11px 35px;
  border-radius: 22px;
  font-size: 15px;
  font-weight: 500;
  /* background-color: #1f6306; */
    background-image: linear-gradient(to right, #1f6306, #058405);
  color: #fff;
}

.main_btn .white_btn{
  background-color: #fff;
  background-image: none;
  color: #1f6306;
}

.slide-btns {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 40px!important;
}

.slide-bg-image {
  position: relative;
}

.slide-bg-image:after {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #0000008a;
  z-index: -1;
}


/*--------------------------------------------------------------
	#hero-style
--------------------------------------------------------------*/

.hero-style .slide-title,
.hero-style .slide-text,
.hero-style .slide-btns {
  max-width: 820px;
  margin: 0 auto;
  width: 100%;
  text-align: center;
}











.main_title {
  margin-bottom: 40px;
}

.main_title h3 {
    font-size: 14px;
    background: #f0f0f0;
    padding: 5px 20px;
    max-width: fit-content;
    border-radius: 7px;
    color: #2c421d;
    font-family: "Mali", cursive;
    text-transform: uppercase;
    font-weight: 600;
}

.main_title.text-center h3 {
    margin: 0 auto;
}

.main_title h5 {
 line-height: 47px;
    margin-bottom: 27px;
    margin-top: 17px;
    font-weight: 500;
    color: #000000f5;
    font-size: 35px;
}

.main_title.text-white h3 {
    background: #fff;
}

.main_title.text-white h5 {
    color: #fff;
}


.category-one .main_btn {
  margin-top: 40px;
}

.mv_box {
    padding: 40px 30px 20px 30px;
    box-shadow: 0 3px 6px rgb(5 37 94 / 20%), 0 3px 6px rgb(9 57 140 / 46%);
    border-radius: 10px;
    position: relative;
    width: 100%;
    margin-bottom: 20px;
}

.mv_box p {
    margin: 0 0 10px;
    font-size: 18px;
    line-height: 25px;
    font-weight: 600;
}

.mv_box:after {
   content: '';
    position: absolute;
    top: 15px;
    left: 18px;
    border-width: 2px;
    border-style: solid;
    border-image: linear-gradient(to right, #1f6306, #058405) 1;
    width: 94%;
    height: 80%;
    z-index: -1;
}




.why-choose-one__bg {
    background-color: #fff;
    border-radius: 8px;
    margin-bottom: 30px;
    padding: 37px 33px 54px 33px;
    position: relative;
    border-top: 5px solid #3b6625;
}

.why-choose-one__bg-inner {
    position: relative;
    overflow: hidden;
    padding-bottom: 5px;
}
.why-choose-one__top {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    padding-bottom: 30px;
}

.why-choose-one__icon-bx {
    width: 85px;
    height: 85px;
    min-width: 85px;
    min-height: 85px;
    border-radius: 10px;
    /* background-color: #181146; */
    border: 1px solid #0000005c;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    margin-right: 25px;
    padding: 10px;
}

img.why-choose-one__icon {
    padding: 10px;
        background-image: linear-gradient(to right, #1f6306, #058405);
    border-radius: 10px;
}

.why-choose-one__name {
    font-size: 24px;
    line-height: 34px;
    font-weight: 600;
    margin-bottom: 0;
}

.why-choose-one__content {
    position: relative;
    z-index: 2;
    padding-left: 7px;
}

.why-choose-one__descript {
    font-size: 16px;
    line-height: 27px;
    font-weight: 400;
}

.why-choose-one__content a {
    font-weight: 500;
    color: #1f6306;
    border-bottom: 1px solid;
}

.why-choose-one__content a i {
    font-size: 13px;
}



.count_wrapper {
    margin-bottom: 80px;
    padding-bottom: 70px;
    border-bottom: 1px solid #c2bfbf;
}

.count_box {
  display: flex;
  gap: 20px;
  margin-top: 10px;
  justify-content: center;
}

.count_img img {
  max-width: 60px;
  width: 100%;
  opacity:1;
}

.count_content h3 {
  font-size: 40px;
  font-family: "Inter", sans-serif;
  font-weight: 900;
  margin-bottom: 2px;
  color: #1f6306;
}

.count_content span {
    color: #000;
    line-height: 22px;
    display: block;
        font-weight: 400;
    font-size: 14px;
}



.product_wrapper {
    position: relative;
    padding: 60px 0;
}

.product_wrapper {
  position: relative;
  background-image: url(../images/demo01-slide-02.jpg);
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  padding: 60px 0;
      z-index: 0;
}

.product_wrapper:before {
  background-color: #00000092;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  content:'';
      z-index: -1;
}

.item {
  position: relative;
  z-index: 2;
  display: block;
  overflow: hidden;
  background-color: #fff;
  border-radius: 10px;
  text-align: center;
  padding: 45px 20px 42px;
  transition: all 500ms ease;
  box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
  margin: 10px 0;
      height: stretch;
}

.category-one__item__icon {
  width: 110px;
  height: 110px;
  background-color: #e1eff0;
  position: relative;
  z-index: 2;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  transition: all 500ms ease;
}

 .owl-item img {
  display: block;
  width: 100%;
}
.category-one__item__icon img {
  max-width: 60px;
  transition: all 300ms linear;
}

.category-one__item__text {
  margin: 26px 0 0;
  font-size: 18px;
  line-height: 1.1;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95% / 0px 1px no-repeat;
  transition: all 400ms ease;
  font-weight: 500;
  text-transform: capitalize;
  color: #122f2a;
  display: inline-block;
}

.item:hover .category-one__item__text {
  color: #fff;
}

.item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100%;
 background-image: linear-gradient(to right, #1f6306, #058405);
  z-index: -1;
  transform: scale(1, 0);
  perspective: 400px;
  visibility: hidden;
  transition: transform 400ms ease-in-out, visibility 400ms ease-in-out;
  transform-origin: bottom center;
}

.item:hover .category-one__item__icon {
  background-color: #fff;
}

.item:hover .category-one__item__icon img {
  transform: rotateY(180deg);
}

.item:hover::after {
  transform: scale(1, 1);
  visibility: visible;
  transform-origin: top center;
}


/* .item.active .category-one__item__icon img {
  transform: rotateY(180deg);
}

.item.active .category-one__item__text {
  color: #fff;
}
.item.active .category-one__item__icon {
  background-color: #fff;
}

.item.active::after {
  transform: scale(1, 1);
  visibility: visible;
  transform-origin: top center;
} */



/* .process_wrapper {
  background-color: #2c421d;
  padding: 60px 0;
  position: relative;
} */

.process_wrapper {
  position: relative;
  background-image: url(../images/bg-2.jpg);
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  padding: 60px 0;
  z-index: 0;
}

.process_wrapper:before {
  /* background-color: #00000092; */
   background-image: linear-gradient(to right, #00000000, #1d4b0d, #133008);   
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  content:'';
      z-index: -1;
}

.process_detail {
  max-width: 620px;
  width: 100%;
  margin-left: auto;
}

.process_grid {
          display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
}

.process_flex {
    color: #fff;
    padding: 17px;
    max-width: 580px;
    width: 100%;
    display: flex;
    border: 1px solid #ffffff8a;
    border-radius: 7px;
    align-items: self-start;
    font-size: 18px;
    line-height: 27px;
    min-height: 90px;
    background: #374c2970;
}

.process_flex span {
    max-width: 24px;
    height: 24px;
    width: 100%;
    position: relative;
    margin-right: 9px;
        color: #ffb40a;
    font-size: 18px;
}

.process_flex h4 {
    font-size: 18px;
    line-height: 25px;
    color: #fff;
    margin-bottom: 4px;
}

.process_flex p {
    margin: 0;
    font-size: 14px;
    line-height: 18px;
    color: #e1dfdf;
}


.wy_detail {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px 30px;
}

.wy_detail p {
    position: relative;
    z-index: 2;
    background-color: #fff;
    border-radius: 10px;
    padding: 24px 24px;
    transition: all 500ms ease;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgb(213 233 205);
    margin: 0;
    font-size: 16px;
    font-weight: 400;
    line-height: 23px;
    display: flex;
    align-items: center;
    gap: 28px;
    margin-bottom: 8px;
}

.main_title.mx-width {
    max-width: 790px;
    width: 100%;
    margin: 0px auto;
    margin-bottom: 40px;
}

.wy_detail p img {
    max-width: 60px;
    display: block;
    /* margin-bottom: 20px; */
    padding: 12px;
    background-image: linear-gradient(to right, #1f6306, #058405);
    border-radius: 10px;
}

.cta_wrapper .main_title h5 {
    margin-bottom: 12px;
    margin-top:0px;
}

.cta_wrapper .main_title p{
    color: #fff;
}

.cta_wrapper .cta_box {
        background: #152a0c;
    padding: 40px 50px 4px 60px;
    border-radius: 30px;
    max-width: 1125px;
    width: 100%;
    margin: 0 auto;
}

.cta_wrapper img {
    max-width: 420px;
    width: 100%;
    margin: 0 auto;
}

.wy_wrapper {
    background: #f8f6f1;
    padding: 50px 0;
}
.cl_logo_flex img {
  max-width: 100px;
  width: 100%;
  border-radius: 10px;
}

/* .cl_logo_flex {
    display: flex;
    justify-content: space-around;
} */

/* About page CSS */

/* about page......................................................... */
.innner_banner_wrapper {
  position: relative;
  background-image: url(../images/inner-banner-image.jpg);
     background-repeat: no-repeat;
    background-position: top;
    background-size: cover;
    padding-top: 40px;
    z-index: 0;
    height: 70vh;
    width: 100%;
    display: flex;
    align-items: center;
}

.innner_banner_wrapper::before {
  /* background-image: linear-gradient(to left, #1d4b0dbf, #1d4b0dbf, #133008bd); */
  background: #000000b0;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  content: '';
  z-index: -1;
}


.innner_banner_content h1 {
    color: #fff;
    font-size: 37px;
    font-family: "Edu NSW ACT Cursive", cursive;
    font-weight: 800;
    line-height: 50px;
    margin-top: 20px!important;
}


.innner_banner_content.mx h1 {
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
}

.innner_banner_content p {
    font-size: 17px;
    color: #fff;
    max-width: 630px;
    margin: 0 auto;
    margin-top: 20px;
}

.innner_banner_content span {
    font-size: 14px;
    padding: 5px 20px;
    max-width: fit-content;
    border-radius: 7px;
    color: #fff;
    font-family: "Mali", cursive;
    text-transform: uppercase;
    font-weight: 600;
    background: #2c421d;
}


/* mission........................................................ */

.mission_main {
    background: #f8f6f1;
    padding: 50px 0;
}

.mission_wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
}

.mission_box {
  padding: 40px 30px;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  /* border: 1px solid #dadada; */
  /* border-left: 15px solid #2c421d; */
}


.mission_main .row {
  margin-top: 40px;
  align-items: center;
}

.mission_main .mission_img {
    text-align: center;
}

.mission_main img {
    border-radius: 20px;
    max-width: 500px;
    margin: 0 auto;
    width: 100%;
}

.mission_main .main_title h5 {
    line-height: 40px;
    font-size: 32px;
}

.mission_main .main_title {
    margin-bottom: 0;
}

.mission_main .main_title h3 {
    background: #2c421d;
    color: #fff;
}


.about_count .count_wrapper {
    margin-bottom: 0;
    padding-bottom: 0;
    border-top: 1px solid #c2bfbf;
    border-bottom: 0;
    margin-top: 30px;
    padding-top: 30px;
}

.cr_value.process_wrapper:before {
       background-color: #000000d6;
    background-image: none;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: absolute;
    content: '';
    z-index: -1;
}

.cr_value .process_flex span {
   display: none;
}

.cr_value .process_detail {
    max-width: 100%;
    width: 100%;
    margin-left: auto;
}

.cr_value .process_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

.cr_value .process_flex {
    padding: 30px 25px;
    max-width: 330px;
    width: 100%;
    display: flex;
    border: 1px solid #ffffff21;
    border-radius: 7px;
    align-items: self-start;
    font-size: 18px;
    line-height: 27px;
    /* min-height: 90px; */
    background: transparent;
    margin-bottom: 30px;
    position: relative;
}

.cr_value .process_flex:after {
    content: '';
    width: 100%;
    height: 100%;
    background: #f8f9fa2e;
    position: absolute;
    left: 0px;
    top: 0px;
    box-shadow: inset 0 0 0 200px rgba(255, 255, 255, 0.05);
    filter: blur(7px);
    z-index: -1;
}

.cr_value .process_flex h4 {
    font-size: 22px;
    line-height: 25px;
    color: #fff;
    margin-bottom: 10px;
}
.cr_value .process_flex p {
    margin: 0;
    font-size: 14px;
    line-height: 23px;
    color: #fff;
}

.why-choose-one__bg.box_shadow {
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgb(213 233 205);
}


/* Service Page */

.serivce_box {
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgb(213 233 205);
    border-radius: 20px;
    margin-bottom: 30px;
}

.serivce_box_content {
    padding:20px 24px;
}

.serivce_box img {
    border-radius: 20px 20px 0 0;
}

.serivce_box_content h4 {
    font-size: 24px;
    margin-bottom: 30px;
    position:relative;
}

.serivce_box_content h4:after {
    content: '';
    width: 65px;
    height: 2px;
    position: absolute;
    left: 0px;
    bottom: -10px;
    background-image: linear-gradient(to right, #1f6306, #058405);
}


.certificate_box {
  background: #fff;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgb(213 233 205);
  border-radius: 20px;
    padding: 30px;
    margin-bottom: 25px;
    height: stretch;
}

.certificate_wrapper img {
  max-width:100px;
  width: 100%;
  margin-bottom: 30px;
}

.certificate_box .certificate_content h5 {
  font-size: 24px;
  font-weight: 700;
}



.certificate_wrapper {
  margin: 70px 0;
}



footer {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  position: relative;
  background-attachment: fixed;
  z-index: 0;
  padding: 70px 0 0px 0;
  margin-top: 80px;
  overflow: hidden;
}

footer:before {
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  top:0;
  left: 0;
  background-color: #102607; 
   /* background-image: linear-gradient(90deg, #049e9e 15%, #ad5578 110%);  */
  opacity: 0.98;
  z-index: -1;
}


.footer-section {
  background: #151414;
  position: relative;
}
.footer-cta {
  border-bottom: 1px solid #5a555569;
}
.single-cta i {
  color: #102607;
    font-size: 22px;
    float: left;
    margin-top: 0;
    background: #fff;
    padding: 10px;
    border-radius: 50%;
    max-width: 50px;
    width: 100%;
    text-align: center;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.cta-text {
  padding-left: 25px;
  display: inline-block;
}
.cta-text h4 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #fff;
}
.cta-text span {

  font-size: 15px;
}

.cta-text span a {
  color: #ffffffcc;
  font-size: 15px;
}

.cta-text span a:hover {
  font-size: 15px;
}

.footer-content {
  position: relative;
  z-index: 2;
}
.footer-pattern img {
  position: absolute;
  top: 0;
  left: 0;
  height: 330px;
  background-size: cover;
  background-position: 100% 100%;
}
.footer-logo {
  margin-bottom: 30px;
}
.footer-logo img {
  max-width: 460px;
  width: 100%;
}
.footer-text p {
  margin-bottom: 14px;
  line-height: 28px;
  color: #ffffffcc;
      font-size: 14px;
    max-width: 420px;
    width: 100%;
}
.footer-social-icon span {
  display: block;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
}
.footer-social-icon a {
  color: #fff;
  font-size: 16px;
  margin-right: 15px;
}
.footer-social-icon i {
  height: 40px;
  width: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;

}
.linkdin-bg {
  background: #0A66C2;
}
.twitter-bg {
  background: #55acee;
}

.insta-bg {
  background: radial-gradient(circle farthest-corner at 35% 90%, #fec564, transparent 50%), radial-gradient(circle farthest-corner at 0 140%, #fec564, transparent 50%), radial-gradient(ellipse farthest-corner at 0 -25%, #5258cf, transparent 50%), radial-gradient(ellipse farthest-corner at 20% -50%, #5258cf, transparent 50%), radial-gradient(ellipse farthest-corner at 100% 0, #893dc2, transparent 50%), radial-gradient(ellipse farthest-corner at 60% -20%, #893dc2, transparent 50%), radial-gradient(ellipse farthest-corner at 100% 100%, #d9317a, transparent), linear-gradient(#6559ca, #bc318f 30%, #e33f5f 50%, #f77638 70%, #fec66d 100%);
}

.mail {
  background: #d04534;
}
.footer-widget-heading h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 40px;
  position: relative;
  color: #fff;
}
.footer-widget-heading h3::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -15px;
  height: 2px;
  width: 50px;
  background: #fff;
}
.footer-widget ul li {
  display: inline-block;
  float: left;
  width: 50%;
  margin-bottom: 12px;
}
.footer-widget ul li a:hover {
  color: #fff;
}
.footer-widget ul li a {
  color: #ffffffcc;
  text-transform: capitalize;
}

.footer-widget ul li a:hover {
  color: #fff;
}

.copyright-area {
  background: #1c3a0f;
  padding: 10px 0;
}
.copyright-text p {
  margin: 0;
  font-size: 14px;
  color: #fff;
}
.copyright-text p a {
  color: #44a05b;
  letter-spacing: 2px;
  font-weight: 600;
  /* background-image: linear-gradient(90deg, #049e9e 15%, #ad5578 110%); */
  background-clip: text;
  /* text-transform: uppercase; */
  /* -webkit-background-clip: text; */
  /* -webkit-text-fill-color: transparent; */
  /* font-family: 'Poppins', sans-serif; */
  margin-left: 4px;
}


.contact_wrapper {
    background: #f8f6f1;
    padding: 60px 0;
}

.contact_box {
    /* box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgb(213 233 205); */
    padding: 24px 20px;
    /* background: #fff; */
    border-radius: 0;
    display: flex;
    gap: 20px;
    margin-bottom: 0px;
    border-bottom: 1px solid #bab9b9a3;
}

.contact_box:last-child {
    border-bottom:0;
}

.contact_box h4 {
    margin-bottom: 7px;
    font-size: 20px;
    margin-top: 0px;
}

.contact_box p {
    margin-bottom: 0px;
}

.contact_box p a {
    font-size: 16px;
    font-weight: 400;
    color: #475569;
    line-height: 25px;
    font-family: "Inter", sans-serif;
}

.contact_box i {
    /* background-image: linear-gradient(to right, #1f6306, #058405); */
    border-radius: 7px;
    background: #f2eee6;
    color: #1f6306;
    font-size: 21px;
    max-width: 50px;
    height: 50px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact_form {
  padding: 20px;
}

.contact_form input {
    position: relative;
    display: block;
    background: #fff;
    border-radius: 5px;
    border: 1px solid #eeeeee;
    width: 100%;
    height: 55px;
    font-size: 16px;
    padding-left: 19px;
    padding-right: 15px;
    transition: all 500ms ease;
    margin-bottom: 25px;
}

.contact_box_wrapper {
  border-radius: 20px;
  background-color: #fff;
  padding:20px;
}

.contact_form textarea {
    position: relative;
    display: block;
    background: #fff;
    border-radius: 5px;
    border: 1px solid #eeeeee;
    width: 100%;
    font-size: 16px;
    padding:15px;
    transition: all 500ms ease;
    margin-bottom: 25px;
}

.contact_form  button.submit_button {
    display: inline-block;
    padding: 11px 35px;
    border-radius: 22px;
    font-size: 15px;
    font-weight: 500;
    /* background-color: #1f6306; */
    background-image: linear-gradient(to right, #1f6306, #058405);
    color: #fff;
    border: 0;
    max-width: 230px;
    width: 100%;
}

.cta_wrapper .main_btn {
    display: flex;
    gap: 12px;
}