@import url('https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');
:root {
  --ajr_primary-color: #000000;
  --ajr_secondary-color: #15364c; 
  --ajr_heading-font: "Outfit", sans-serif;
  --ajr_body-font: "Rubik", sans-serif;
  --blue: #15364c;
  --light-green: #86c241;
  --green: #669740;
  --purple: #553578;
  --grey: #f7f7f7;
  --black: #000;
  --white: #fff;
}
html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  overflow-x: hidden; }

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  outline: none;
  -moz-osx-font-smoothing: grayscale;
  /* Firefox */
  -webkit-font-smoothing: antialiased;
  /* WebKit  */ 
}
body {
  color: var(--black);
  font-weight: 400;
  font-style: normal;
  font-size: 18px; 
  font-family: var(--ajr_body-font);
  line-height: 1.6;
  margin: 0 auto; 
  position: relative;
}
h1, .h1 {
  font-size: 42px;
  line-height: 1.2; }

h2, .h2 {
  font-size: 36px; }

h3, .h3 {
  font-size: 28px; }

h4, .h4 {
  font-size: 24px; }

h5, .h5 {
  font-size: 22px; }

h6, .h6 {
  font-size: 18px; }

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  color: var(--black);
  clear: both;
  font-family: var(--ajr_heading-font);
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 5px;  
}

p {
  color: var(--black);
  margin-bottom: 0.3em;
}
.black-bg {
  background-color: var(--black);
}
.grey-bg {
  background-color: var(--grey);
}
.text-black {
  color: var(--black);
}
.text-white {
  color: var(--white);
}
.ajr-btn {  
  padding: 12px 24px;
  border: 1px solid var(--green);
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  transition: all 0.4s ease-in-out;
  color: var(--white);
  position: relative;
  border-radius: 5px;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-radius: 15px;
}
.ajr-btn:hover {
  border: 1px solid var(--green);
  text-decoration: none;
}
.ajr-btn:before {
  content: "";
  position: absolute;
  width: 100px;
  height: 100%;
  background-image: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 30%,
    rgba(255, 255, 255, 0.8),
    rgba(255, 255, 255, 0) 70%
  );
  top: 0;
  left: -100px;
  opacity: 0.3;
}
.ajr-btn:focus:before,
.ajr-btn:hover:before,
.ajr-btn.active:before {
  -webkit-animation: shine 1.5s ease-out;
  animation: shine 1.5s ease-out;
}

@-webkit-keyframes shine {
    0% {
        left: -100px
    }

    60% {
        left: 100%
    }

    to {
        left: 100%
    }
}

@keyframes shine {
    0% {
        left: -100px
    }

    60% {
        left: 100%
    }

    to {
        left: 100%
    }
}

.btn--primary {
  z-index: 1;
  color: var(--white);
  background-color: var(--green);
}
.btn--secondary {
  z-index: 1;
  color: var(--white);
  background-color: var(--blue);
  border-color: var(--blue);
}
.btn--primary:hover {
  color: var(--white);
  background-color: var(--blue);
  border-color: var(--blue); 
}
.btn--secondary:hover { 
  color: #fff;
  background-color: var(--green);
  border-color: var(--green); 
}
.btn--white {
  z-index: 1;
  color: var(--black);
  border: 1px solid var(--white);
}
.btn--white:hover {
  border: 1px solid var(--green);
  color: var(--white);
  background-color: var(--green);
}
.pad-tb {
  padding: 50px 0;
}
.section-title {
  margin-bottom: 1rem;
}
.section-title.text-center {
  margin-bottom: 15px; 
  position: relative;
}
.section-title.text-left {
  margin-bottom: 15px;
  position: relative;
}
.section-title.text-left h2, .section-title.text-center h2 {
  padding-bottom: 15px;
  color: var(--black);
  position: relative;
}
.section-title.text-left h2:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 65px;
  height: 4px;
  background: var(--green);
}
.section-title.text-center h2:after {
  content: "";
  position: relative;
  margin: 15px auto 0;
  bottom: 0;
  width: 65px;
  height: 4px;
  background: var(--green);    
  display: block;
}
.top_bar {
  background: var(--green); 
  padding: 3px 0; 
  overflow: hidden;
}
.top_bar ul.contact_info {
  margin-bottom: 0;
  list-style: none;
  float: right;
  position: relative;
  color: var(--white);
  z-index: 999;
  margin-left: 0;
  padding-inline-start: 0; 
  margin-right: 0px; 
}
.top_bar ul.contact_info > li {
  margin-left: 15px;
  float: left;    
  line-height: 1.4;
}
.top_bar ul.contact_info > li a {
  color: var(--white); 
  font-size: 17px;
  position: relative;
  padding-right: 15px;
}
.top_bar ul.contact_info > li a:after {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  border-right: 1px solid #eee;
  width: 100%;
  height: 100%;
  margin-left: 15px;
}
.top_bar ul.contact_info > li:last-child a:after {
  display: none;
}
.top_bar ul.contact_info > li a i {
  margin-right: 8px;
}
.top_bar ul.contact_info > li a:hover, .top_bar a:hover {
  text-decoration: none;
}
.top_bar ul.contact_info > li:last-child a {
  padding-right: 0px;
}

.top_bar ul.social-links {
  padding-right: 0px;
  float: right;    
  padding-left: 30px;
}
.top_bar ul.social-links > li {
  margin-right: 15px;
}
.top_bar ul.social-links > li:last-child {
  margin-right: 0;
}
.top_bar ul.social-links > li a {
  width: auto;
  height: auto;
  line-height: initial;
  background: transparent;
  color: var(--white);
  display: inline-block;
  font-size: 17px;
  border-radius: 0;
  border: none;
}
header .header-logo {
  transition: 0.4s;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -ms-transition: 0.4s;
  -o-transition: 0.4s;
}
header {
  z-index: 99999;
  padding: 8px 0;/*5px 0 0*/
  position: absolute;/*relative*/
  -webkit-transition: all 0.1s ease;
  -moz-transition: all 0.1s ease;
  -ms-transition: all 0.1s ease;
  -o-transition: all 0.1s ease;
  transition: all 0.1s ease;
  width: 100%;
}
.header-home header {
  position: relative;
  padding: 3px 0;
}
header.header-appear, .header-home header.header-appear {
  background: #fff;
  -webkit-box-shadow: 3px 2px 5px 0px rgba(83, 83, 83, 0.4);
  box-shadow: 3px 2px 5px 0px rgba(83, 83, 83, 0.4); 
  padding: 2px 0;
  position: fixed;
  -webkit-animation-name: animationFade;
  -o-animation-name: animationFade;
  animation-name: animationFade;
  -webkit-animation-duration: 1s;
  -o-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  -o-animation-fill-mode: both;
  animation-fill-mode: both;
  top: 0;
  width: 100%;
}

header .main-menu > li {
  position: relative;
}
header .main-menu > li > a {
  color: var(--black);
  padding: 8px 1.5vw;
  display: block;
  transition: 0.4s;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -ms-transition: 0.4s;
  -o-transition: 0.4s;
}
header .main-menu > li.active > a {
  color: var(--green);
}
header .main-menu > li:hover > a {
  color: var(--green);
  text-decoration: none;
}
header .main-menu > li > a > i {
  color: var(--green);
}
header .main-menu > li > a:hover > i {
  color: #fff;
}
header .main-menu > li:hover > a i {
  color: #fff;
}
header .main-menu > li:last-child > a { 
  background: var(--blue);
  color: #fff;
  border-radius: 15px;
}
header .main-menu .sub-menu {
  display: none;
  position: absolute;
  left: 50%;
  top: 100%;
  width: 285px;
  overflow: hidden;
  border-top: 2px solid var(--dark-orange);
  background: #fff;
  -webkit-box-shadow: 0 1px 5px 0 rgba(83, 83, 83, 0.2);
  box-shadow: 0 1px 5px 0 rgba(83, 83, 83, 0.2);
  z-index: 5;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
}
header .main-menu .sub-menu a {
  padding: 8px 10px;
  display: block;
  color: var(--black);
  transition: 0.4s;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -ms-transition: 0.4s;
  -o-transition: 0.4s;
}
header .main-menu .sub-menu a i {
  color: var(--black);
}
header .main-menu .sub-menu a:hover {
  background: var(--green);
  color: #fff;
  text-decoration: none;
}
header .main-menu > li:hover .sub-menu {
  display: block;
}
header .header-logo figure img {
  max-width: 200px;
}
header .demo-link {
  margin-left: 1vw;
}
header .side-menu-close {
  background: transparent;
}
header .side-menu-close span {
  background: var(--black);
  width: 28px;
}
/* side menu */
.side-menu-wrap {
  width: 300px;
  position: fixed;
  right: -100%;
  top: 0;
  background: #fff;
  height: 100%;
  -webkit-box-shadow: 0 1px 5px 0 rgba(83, 83, 83, 0.2);
  box-shadow: 0 1px 5px 0 rgba(83, 83, 83, 0.2);
  overflow-y: auto;
  z-index: 999999;/*15000*/
  transition: 0.4s;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -ms-transition: 0.4s;
  -o-transition: 0.4s;
}
.side-menu-wrap.opened {
  right: 0;
  transition: 0.8s;
  -webkit-transition: 0.8s;
  -moz-transition: 0.8s;
  -ms-transition: 0.8s;
  -o-transition: 0.8s;
}
.side-menu-logo {
  border-bottom: 2px solid var(--grey-bg);
  padding-left: 0.5rem;
  display: none!important;
}
.side-menu-nav .main-menu > li {
  position: relative;
  border-bottom: 1px solid #ccc;
}
.side-menu-nav .main-menu > li > a > i {
  color: var(--black);
}
.side-menu-nav .main-menu .sub-menu {
  border-top: 1px solid var(--green);
  background: #fff;
  display: none;
}
.side-menu-nav .main-menu .sub-menu li {
  border-bottom: 1px solid #ccc;
}
.side-menu-nav .main-menu .sub-menu a {
  padding: 10px 22px;
  display: block;
  color: var(--black);
  transition: 0.4s;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -ms-transition: 0.4s;
  -o-transition: 0.4s;    
  font-size: 15px;
  text-transform: uppercase;
}
.side-menu-nav .main-menu .sub-menu a i {
  color: var(--black);
}
.side-menu-nav .main-menu .sub-menu ~ i {
  font-size: 0.8em;
  position: absolute;
  padding: 21px 11px;
  right: 0;
  top: 0;
  border-left: 1px solid #ccc;
}
.side-menu-nav .main-menu .sub-menu a:hover {
  background: #f5f5f5;
}
.side-menu-nav .main-menu > li > a {
  color: #000000;
  font-size: 15px;
  text-transform: uppercase;
  padding: 15px 20px 15px 20px;
  display: block;
  transition: 0.4s;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -ms-transition: 0.4s;
  -o-transition: 0.4s;
}
.side-menu-nav .main-menu > li > a:hover {
  text-decoration: none;
}
.side-menu-wrap .side-menu-close {
  position: absolute;
  right: 0;
  top: 0;
  height: 30px;
  width: 30px;
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
}
.side-menu-close {
  height: 40px;
  width: 40px;
  background: var(--green); 
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}
.side-menu-close span {
  height: 2px;
  width: 20px;
  background: var(--white);
  position: relative;
  opacity: 1;
  transition: 0.4s;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -ms-transition: 0.4s;
  -o-transition: 0.4s;
}
.side-menu-close span:nth-child(1) {
  top: -5px;
}
.side-menu-close span:nth-child(3) {
  bottom: -5px;
}
.side-menu-close.closed span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
  -webkit-transform: translateY(7px) rotate(45deg);
  -moz-transform: translateY(7px) rotate(45deg);
  -ms-transform: translateY(7px) rotate(45deg);
  -o-transform: translateY(7px) rotate(45deg);
}
.side-menu-close.closed span:nth-child(2) {
  opacity: 0;
}
.side-menu-close.closed span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
  -webkit-transform: translateY(-7px) rotate(-45deg);
  -moz-transform: translateY(-7px) rotate(-45deg);
  -ms-transform: translateY(-7px) rotate(-45deg);
  -o-transform: translateY(-7px) rotate(-45deg);
}
/*  custom overlay */
.custom-overlay {
  position: fixed;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 12500;
  visibility: hidden;
  opacity: 0;
  transition: 0.4s;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -ms-transition: 0.4s;
  -o-transition: 0.4s;
}
.custom-overlay.show {
  visibility: visible;
  opacity: 1;
  transition: 0.4s;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -ms-transition: 0.4s;
  -o-transition: 0.4s;
}
/**/
.breadcrumb_wrap {
  padding: 170px 0 70px;
  background-color: var(--green);
  background-image: url(../images/banner-bg.jpg);
  background-size: cover!important;
  background-position: center center!important;
  position: relative;
}
.breadcrumb_title h1 {
  text-transform: none;
  font-size: 40px;
  color: var(--black);
  position: relative;    
  margin-bottom: 10px;
}
.breadcrumb_wrap ul {
  margin-bottom: 0;
  padding-inline-start: 0;
  list-style: none;
}
.breadcrumb_wrap ul > li {
  display: inline-block;
  position: relative;
  margin: 0 30px 0 0;
}
.breadcrumb_wrap ul > li:last-child {
  margin: 0;
}
.breadcrumb_wrap ul > li a {
  color: #000;
}
.breadcrumb_wrap ul > li a:hover {
  color: var(--green);
}
.breadcrumb_wrap ul > li:first-child:before {
  font-family: "Font Awesome 6 Free";
  content: "\f101";/*f101 f105 f054*/
  position: absolute;
  right: -25px;
  font-weight: 600;
  color: var(--green);
  font-size: 16px;
  top: 2px;
}
label {
  display: block;
}
.form-control {
  border: 1px solid #bbb;   
  padding: 0.5rem 0.75rem;
  color: var(--black);    
  height: 52px;
}
.form-control:focus {
  box-shadow: none;
  border: 1px solid var(--green);
}
textarea.form-control {
  height: 170px;
}
.img-wrap {
  border-radius: 10px;
  position: relative;
  overflow: hidden;
}
.img-wrap img {
  transition: 0.2s linear;
}
.img-wrap:hover img {
  transform: scale(1.08);
}
ul.ajr-list {
  list-style: none;
  padding: 0;
  margin-bottom: 0;
}
ul.ajr-list > li {
  margin-bottom: 5px;  
  position: relative;
  padding-left: 20px;
}
ul.ajr-list > li:before {
  font-family: "Font Awesome 6 Free";
  content: "\f0da";/*f560 f14a f058 f105 f054*/
  position: absolute;
  left: 0;
  font-weight: 600;
  color: var(--green);
}
.call_toaction {
  display: none;
}
/*banner*/
.ul-banner {
  position: relative;
  /* background-color: #ebffdb; */
  padding: clamp(130px, 4.83vw, 168px) 0 clamp(52px, 4.83vw, 92px);/*clamp(120px, 10.4vw, 198px) 0 clamp(52px, 4.83vw, 92px)  clamp(70px, 4.83vw, 168px) 0 clamp(52px, 4.83vw, 92px)*/
  overflow: hidden;
  background:url(../images/banner-bg.jpg);
  background-position: center;
  background-size: cover;
}
.ul-banner-txt {
  padding-left: clamp(15px, 7.88vw, 150px);
}
@media screen and (max-width: 767px) {
  .ul-banner-txt {
    padding: 0 15px;
  }
}
.ul-banner-sub-title {
  font-family: "Vibes", system-ui;
  font-size: clamp(20px, 2.1vw, 40px);
  font-weight: 400;
  line-height: 100%;
  color: var(--purple);
  display: inline-block;
  margin-bottom: clamp(10px, 0.84vw, 16px);
}
.ul-banner-title {
  font-size: 48px;
  font-weight: 700;/*900*/
  margin-bottom: 25px;
}
.ul-banner-title.ul-banner-title1 {
  font-size: 45px;
}
.ul-banner-title img {
  border-radius: 999px;
  margin-bottom: clamp(0px, 0.53vw, 10px);
  max-width: clamp(110px, 12.87vw, 245px);
  aspect-ratio: 242/68;
  object-fit: cover;
  border-radius: 999px;
}
.ul-banner-descr {
  font-size: clamp(13px, 0.84vw, 16px);
  color: #010F1C;
  margin-bottom: clamp(20px, 2.1vw, 40px);
}
.ul-banner-img {
  background-color: var(--blue);/*#EB0029*/
  border-radius: 999px 0 0 999px;
  padding: clamp(15px, 1.58vw, 30px);
  position: relative;
}
@media screen and (max-width: 767px) {
  .ul-banner-img {
    margin-left: 15px;
  }
}
.ul-banner-img img {
  width: clamp(240px, 35.68vw, 641px);
  aspect-ratio: 660/609;
  padding-left: 70px;
}
.ul-banner-img-slider-dots.swiper-pagination-bullets.swiper-pagination-horizontal {
  position: absolute;
  bottom: auto;
  left: auto;
  right: clamp(15px, 1.58vw, 30px);
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column-reverse;
  gap: clamp(7px, 0.53vw, 10px);
  width: auto;
}
.ul-banner-img-slider-dots.swiper-pagination-bullets.swiper-pagination-horizontal .swiper-pagination-bullet {
  background-color: transparent;
  width: auto;
  height: auto;
  margin: 0;
  color: #999;/*010F1C*/
  font-size: clamp(13px, 0.84vw, 16px);
  font-weight: 600;
  writing-mode: vertical-lr;
  transform: scale(-1);
  opacity: 1;
}
.ul-banner-img-slider-dots.swiper-pagination-bullets.swiper-pagination-horizontal .swiper-pagination-bullet-active {
  color: var(--white);
  font-size: clamp(18px, 1.26vw, 24px);
}
.ul-banner-vectors > * {
  position: absolute;
}
.ul-banner-vectors .vector-1 {
  top: clamp(50px, 3.42vw, 65px);
  left: 0;
  max-width: clamp(72px, 5.83vw, 111px);
}
.ul-banner-vectors .vector-2 {
  left: 0;
  bottom: clamp(5px, 1.47vw, 28px);
  max-width: clamp(80px, 8.2vw, 156px);
}
@media screen and (max-width: 767px) {
  .ul-banner-vectors .vector-2 {
    left: auto;
    right: 0;
    transform: scale(-1);
    opacity: 0;
  }
}
.ul-banner-vectors .vector-3 {
  right: 0;
  top: clamp(16px, 1vw, 19px);
  max-width: clamp(106px, 9.93vw, 189px);
}
.ul-banner .bottom {
  position: absolute;
  z-index: 1;
  bottom: clamp(20px, 2.1vw, 40px);
  left: 0;
  width: 100%;
  max-width: 1920px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(15px, 7.88vw, 150px);
  gap: clamp(10px, 1.05vw, 20px);
}
.ul-banner-txt-slider-pagination.swiper-pagination-progressbar {
  position: relative;
  background-color: rgba(235, 0, 41, 0.1019607843);
  height: 1px;
}
.ul-banner-txt-slider-pagination.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background-color: var(--blue);/*#EB0029*/
}
.ul-banner-txt-slider-nav {
  flex-shrink: 0;
  display: flex;
  font-size: clamp(17px, 1.05vw, 20px);
  gap: clamp(10px, 0.79vw, 15px);
}
.ul-banner-txt-slider-nav button {
  height: auto;
  padding: 0;
  display: inline-flex;
  color: #010F1C;
  outline: 0;
  border: none;
  background: none;
  box-shadow: none;
}
.ul-banner-txt-slider-nav button:hover {
  color: #EB0029;
}
/**/
.intro-img {
  position: relative;
  bottom: -10px;
}
.intro-section-wrap .col-lg-push-6 {
  left: 50%;
}
.intro-section-wrap .col-lg-pull-6 {
  right: 50%;
}
.intro-section-wrap .intro-content {
  padding-left: 20px;
}
.intro-section-wrap .intro-content h3 {
  margin-bottom: 15px;
}
.intro-section-wrap .intro-content p {
  margin-bottom: 10px;
  text-align: justify;
}
.introshape {
  width: 500px;
  height: 500px;
  border-radius: 50% 0px 50% 50%;
  padding: 20px;
  background: rgb(102 151 64 / 55%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.introshape:after, .introshape:before {
  content: "";
  width: 500px;
  height: 500px;
  border-radius: 50% 0px 50% 50%;
  position: absolute;
  top: 0;
  left: 0;
}
.introshape:before {
  background: rgb(102 151 64 / 50%);
  transform: rotate(15deg);
}
.introshape img {
  border-radius: 50%;
  position: relative;
  z-index: 2;
}
.introshape:after {
  background: #669740;
  transform: rotate(30deg);
}
/**/
.ul-testimonial {
  position: relative;
  z-index: 1;    
  margin-top: 100px;
}
@media screen and (max-width: 767px) {
  .ul-testimonial .ul-section-heading {
    text-align: left;
  }
}
.ul-testimonial-img {
  position: relative;
  z-index: 1;
  width: auto; /*max-content*/
  max-width: 100%;
  padding: 0px 50px;
}
@media screen and (max-width: 767px) {
  .ul-testimonial-img {
    margin: auto;
  }
}
.ul-testimonial-img .main-img {
  max-width: 100%; 
  clip-path: polygon(94.357% 37.189%, 94.357% 37.189%, 94.184% 38.409%, 94.105% 39.632%, 94.116% 40.856%, 94.213% 42.076%, 94.394% 43.291%, 94.653% 44.496%, 94.989% 45.69%, 95.398% 46.868%, 95.875% 48.028%, 96.417% 49.167%, 96.417% 49.167%, 99.012% 56.259%, 99.767% 63.412%, 98.832% 70.435%, 96.358% 77.139%, 92.495% 83.332%, 87.393% 88.826%, 81.203% 93.43%, 74.075% 96.953%, 66.16% 99.207%, 57.609% 100%, 57.609% 100%, 48.264% 99.346%, 39.4% 97.451%, 31.134% 94.419%, 23.586% 90.353%, 16.873% 85.355%, 11.115% 79.529%, 6.43% 72.978%, 2.937% 65.804%, 0.754% 58.11%, 0% 50%, 0% 50%, 0.754% 41.89%, 2.937% 34.196%, 6.43% 27.022%, 11.115% 20.471%, 16.873% 14.645%, 23.586% 9.647%, 31.134% 5.581%, 39.4% 2.549%, 48.264% 0.654%, 57.609% 0%, 57.609% 0%, 65.787% 0.469%, 72.934% 1.833%, 79.059% 4.026%, 84.176% 6.985%, 88.297% 10.645%, 91.432% 14.941%, 93.593% 19.807%, 94.793% 25.181%, 95.044% 30.997%, 94.357% 37.189%);
}
.ul-testimonial-slider {
  border-top: 1px solid rgba(255, 255, 255, 0.4);
  padding-top: clamp(15px, 1.58vw, 30px);
}
.ul-testimonial-slider-nav {
  display: flex;
}
.ul-testimonial-slider-nav button {
  font-size: clamp(15px, 0.95vw, 18px);
  color: var(--blue); 
  display: flex;    
  background: none;
  border: none;
}
.ul-testimonial-slider-nav button:hover {
  color: var(--green);
}
.ul-testimonial-slider-nav button:focus {
  background: none;
  border: none;
  outline: none;
}
.ul-testimonial .bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: clamp(5px, 0.42vw, 8px);
  margin-top: clamp(17px, 1.05vw, 20px);
}
@media screen and (max-width: 479px) {
  .ul-testimonial .bottom {
    flex-direction: column;
    gap: 10px;
  }
}
.ul-testimonial .bottom > * {
  flex-shrink: 0;
}
.ul-testimonial .stroke {
  border-top: 1px solid rgba(0, 0, 0, 0.2);
  width: 100%;
  flex-shrink: 1;
}
@media screen and (max-width: 479px) {
  .ul-testimonial .stroke {
    display: none;
  }
}
.ul-testimonial-reviewer-slider {
  max-width: 42.1%;
}
@media screen and (max-width: 479px) {
  .ul-testimonial-reviewer-slider {
    max-width: 70%;
  }
}
.ul-testimonial-reviewer-slider img {
  width: 100%;
  aspect-ratio: 81/89;
  object-fit: cover;
}
.ul-testimonial-reviewer-slider .swiper-slide {
  background: url(../images/testimonial-reviewer-img-bg1.png) no-repeat center center;
  background-size: contain;
  position: relative;
  z-index: 1;
}
.ul-testimonial-reviewer-slider .swiper-slide-thumb-active {
  padding: 5px;
}
.ul-testimonial-txt {
  padding-right: 50px;
  padding-left: 50px;
} 
.ul-testimony {
  /* color: var(--white); */
}
.ul-testimony strong {
  /* color: var(--white); */
}
.ul-testimony .icon {
  color: var(--green);
}
.ul-testimony-reviewer-img {
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}
.ul-testimony-reviewer-img img {
  object-fit: cover;
  width: clamp(60px, 5.25vw, 100px);
  aspect-ratio: 1/1;
}
.ul-testimony .icon {
  font-size: clamp(27px, 1.68vw, 32px);
  display: block;
  margin-bottom: clamp(3px, 0.42vw, 8px);
}
.ul-testimony-txt {
  font-size: clamp(16px, 1.05vw, 20px);
  font-weight: 400; 
  font-style: italic;
  margin-bottom: 10px;
}
.ul-section-spacing {
  padding-top: clamp(60px, 6.31vw, 120px);
  padding-bottom: clamp(60px, 6.31vw, 120px);
}
/**/
.whyus-area {
  z-index: 1;    
  position: relative; 
  background: #f3f3f3;    
  padding-bottom: 0;
}
.whyus-area:before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-color: #f3f3f3;
  top: 99.9%;
  height: clamp(100px, 5.4vw, 155px);
  clip-path: polygon(2.733% 0%, 99.071% 0%, 99.071% 0%, 99.222% 0.14%, 99.364% 0.545%, 99.498% 1.193%, 99.62% 2.062%, 99.728% 3.129%, 99.821% 4.374%, 99.896% 5.774%, 99.953% 7.307%, 99.988% 8.951%, 100% 10.684%, 100% 39.035%, 100% 39.035%, 99.99% 42.001%, 99.961% 44.932%, 99.913% 47.818%, 99.846% 50.646%, 99.762% 53.406%, 99.659% 56.084%, 99.539% 58.67%, 99.402% 61.152%, 99.249% 63.519%, 99.08% 65.757%, 97.701% 82.635%, 97.701% 82.635%, 97.303% 86.752%, 96.864% 89.954%, 96.394% 92.242%, 95.903% 93.614%, 95.402% 94.072%, 94.901% 93.614%, 94.411% 92.242%, 93.94% 89.954%, 93.501% 86.752%, 93.104% 82.635%, 93.104% 82.635%, 92.706% 78.517%, 92.267% 75.315%, 91.797% 73.028%, 91.306% 71.655%, 90.805% 71.198%, 90.304% 71.655%, 89.813% 73.028%, 89.343% 75.315%, 88.904% 78.517%, 88.506% 82.635%, 88.506% 82.635%, 88.108% 86.752%, 87.669% 89.954%, 87.199% 92.242%, 86.708% 93.614%, 86.207% 94.072%, 85.706% 93.614%, 85.215% 92.242%, 84.745% 89.954%, 84.306% 86.752%, 83.908% 82.635%, 83.908% 82.635%, 83.51% 78.517%, 83.071% 75.315%, 82.601% 73.028%, 82.11% 71.655%, 81.609% 71.198%, 81.108% 71.655%, 80.617% 73.028%, 80.147% 75.315%, 79.708% 78.517%, 79.31% 82.635%, 79.31% 82.635%, 78.913% 86.752%, 78.473% 89.954%, 78.003% 92.242%, 77.513% 93.614%, 77.011% 94.072%, 76.51% 93.614%, 76.02% 92.242%, 75.549% 89.954%, 75.11% 86.752%, 74.713% 82.635%, 74.713% 82.635%, 74.315% 78.517%, 73.876% 75.315%, 73.406% 73.028%, 72.915% 71.655%, 72.414% 71.198%, 71.913% 71.655%, 71.422% 73.028%, 70.952% 75.315%, 70.513% 78.517%, 70.115% 82.635%, 70.115% 82.635%, 69.717% 86.752%, 69.278% 89.954%, 68.808% 92.242%, 68.317% 93.614%, 67.816% 94.072%, 67.315% 93.614%, 66.824% 92.242%, 66.354% 89.954%, 65.915% 86.752%, 65.517% 82.635%, 65.517% 82.635%, 65.119% 78.517%, 64.68% 75.315%, 64.21% 73.028%, 63.72% 71.655%, 63.218% 71.198%, 62.717% 71.655%, 62.227% 73.028%, 61.757% 75.315%, 61.318% 78.517%, 60.92% 82.635%, 60.92% 82.635%, 60.522% 86.752%, 60.083% 89.954%, 59.613% 92.242%, 59.122% 93.614%, 58.621% 94.072%, 58.12% 93.614%, 57.629% 92.242%, 57.159% 89.954%, 56.72% 86.752%, 56.322% 82.635%, 56.322% 82.635%, 55.924% 78.517%, 55.485% 75.315%, 55.015% 73.028%, 54.524% 71.655%, 54.023% 71.198%, 53.522% 71.655%, 53.031% 73.028%, 52.561% 75.315%, 52.122% 78.517%, 51.724% 82.635%, 51.724% 82.635%, 51.326% 86.752%, 50.887% 89.954%, 50.417% 92.242%, 49.926% 93.614%, 49.425% 94.072%, 48.924% 93.614%, 48.433% 92.242%, 47.963% 89.954%, 47.524% 86.752%, 47.126% 82.635%, 47.126% 82.635%, 46.729% 78.517%, 46.29% 75.315%, 45.819% 73.028%, 45.329% 71.655%, 44.828% 71.198%, 44.326% 71.655%, 43.836% 73.028%, 43.366% 75.315%, 42.927% 78.517%, 42.529% 82.635%, 42.529% 82.635%, 42.131% 86.752%, 41.692% 89.954%, 41.222% 92.242%, 40.731% 93.614%, 40.23% 94.072%, 39.729% 93.614%, 39.238% 92.242%, 38.768% 89.954%, 38.329% 86.752%, 37.931% 82.635%, 37.931% 82.635%, 37.533% 78.517%, 37.094% 75.315%, 36.624% 73.028%, 36.133% 71.655%, 35.632% 71.198%, 35.131% 71.655%, 34.64% 73.028%, 34.17% 75.315%, 33.731% 78.517%, 33.333% 82.635%, 33.333% 82.635%, 32.936% 86.752%, 32.496% 89.954%, 32.026% 92.242%, 31.536% 93.614%, 31.034% 94.072%, 30.533% 93.614%, 30.043% 92.242%, 29.573% 89.954%, 29.133% 86.752%, 28.736% 82.635%, 28.736% 82.635%, 28.338% 78.517%, 27.899% 75.315%, 27.429% 73.028%, 26.938% 71.655%, 26.437% 71.198%, 25.936% 71.655%, 25.445% 73.028%, 24.975% 75.315%, 24.536% 78.517%, 24.138% 82.635%, 24.138% 82.635%, 23.74% 86.752%, 23.301% 89.954%, 22.831% 92.242%, 22.34% 93.614%, 21.839% 94.072%, 21.338% 93.614%, 20.847% 92.242%, 20.377% 89.954%, 19.938% 86.752%, 19.54% 82.635%, 19.54% 82.635%, 19.142% 78.517%, 18.703% 75.315%, 18.233% 73.028%, 17.742% 71.655%, 17.241% 71.198%, 16.74% 71.655%, 16.25% 73.028%, 15.779% 75.315%, 15.34% 78.517%, 14.943% 82.635%, 14.632% 86.435%, 14.632% 86.435%, 14.264% 90.351%, 13.861% 93.58%, 13.429% 96.112%, 12.975% 97.936%, 12.505% 99.041%, 12.027% 99.417%, 11.546% 99.053%, 11.071% 97.94%, 10.608% 96.065%, 10.162% 93.419%, 5.993% 64.251%, 5.993% 64.251%, 5.743% 62.764%, 5.482% 61.71%, 5.215% 61.084%, 4.945% 60.879%, 4.676% 61.091%, 4.412% 61.712%, 4.156% 62.737%, 3.913% 64.161%, 3.686% 65.977%, 3.48% 68.178%, 3.48% 68.178%, 3.079% 72.015%, 2.638% 74.413%, 2.178% 75.46%, 1.716% 75.244%, 1.272% 73.852%, 0.865% 71.373%, 0.516% 67.895%, 0.242% 63.504%, 0.064% 58.29%, 0% 52.339%, 0% 31.421%, 0% 31.421%, 0.036% 26.324%, 0.139% 21.489%, 0.305% 16.981%, 0.527% 12.864%, 0.8% 9.203%, 1.119% 6.062%, 1.477% 3.507%, 1.869% 1.602%, 2.29% 0.411%, 2.733% 0%);
}
.whyus-shape {
  border: 10px solid var(--green);
  background: var(--green);
  text-align: left;
  display: flex;
  align-content: center;
  align-items: center;
  justify-content: center;
  width: 150px;
  height: 150px;
  position: relative;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  animation: one-animated 10s infinite;
  /* margin: 0 auto; */
  margin-bottom: 20px;
}
@keyframes one-animated {
	0% {
		border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%
		box-shadow:15px 15px 50px rgba(0, 0, 0, 0.2);
	}
	25% {
		border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%;
	}
	50% {
		border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%
		box-shadow:-10px -5px 50px rgba(0, 0, 0, 0.2);
	}
	75% {
		border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%;
	}
}
.whyus-wrapper {
  padding-top: 80px;
  max-width: 1070px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
.whyus-wrapper:before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  width: 1px;
  height: 100%;
  background: #ddd; 
}
@media only screen and (max-device-width: 767px) {
  .whyus-wrapper:before {
    left: 0; 
  } 
}
.whyus-wrapper:after {
  color: white;
  position: absolute;
  left: 50%;
  bottom: 0;
  content: '\f107';
  font-weight: 600;
  -webkit-transform: translate(-50%);
  -ms-transform: translate(-50%);
  transform: translate(-50%);
  width: 20px;
  height: 20px;
  background: var(--light-green); 
  line-height: 24px; 
  border-radius: 50%;
  text-align: center;
  font-family: "Font Awesome 6 Free"; 
  font-size: 14px;
}
@media only screen and (max-device-width: 767px) {
  .whyus-wrapper:after {
    left: 0; 
  } 
}
.whyus-wrapper > .row:before {
  content: '';
  width: 15px;
  height: 15px;
  position: absolute;
  left: 50%;
  top: 0;
  border-radius: 50%;
  -webkit-transform: translate(-50%);
  -ms-transform: translate(-50%);
  transform: translate(-50%);
  background: var(--light-green);/*#EC3D08*/ 
}
@media only screen and (max-device-width: 767px) {
  .whyus-wrapper > .row:before {
    left: 0; 
  } 
}
.whyus-item-wrap {
  position: relative;
  margin-bottom: 80px; 
}
.whyus-item p {
  margin-bottom: 0;
}
@media only screen and (max-device-width: 767px) {
  .whyus-item-wrap {
    padding-left: 50px; 
  } 
}
@media only screen and (max-device-width: 575px) {
  .whyus-item-wrap {
    padding-left: 30px; 
  } 
}
.whyus-item-wrap:before {
  position: absolute;
  right: 0;
  top: 0;
  content: '';
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  border-right: 20px solid #ddd; 
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent; 
}
  @media only screen and (max-device-width: 767px) {
    .whyus-item-wrap:before {
      left: 0;
      border-right-color: transparent;
      border-left: 20px solid #ddd; 
    } 
  }
.whyus-item-wrap:hover:before {
  border-right-color: var(--light-green);
}
@media only screen and (max-device-width: 767px) {
  .whyus-item-wrap:hover:before {
    border-left-color: var(--light-green);
    border-right-color: transparent; 
  } 
}
@media only screen and (min-width: 768px) { /*992px*/
  .whyus-item-wrap.whyus-right {
    margin-top: 130px; 
  } 
}
.whyus-item-wrap.whyus-right:before {
  left: 0;
  border-right-color: transparent;
  border-left: 20px solid #ddd; 
}
.whyus-item-wrap.whyus-right .whyus-item {
  margin-left: auto; 
}
.whyus-item-wrap.whyus-right:hover:before {
  border-left-color: var(--light-green);
}
.whyus-item-wrap:hover .whyus-shape {
  border: 10px solid var(--blue);
  background: var(--blue);
}
.whyus-item {
  max-width: 410px; 
}
.whyus-item .image {
  margin-bottom: 35px; 
}
.whyus-item .content .year {
  line-height: 1;
  font-size: 48px;
  display: block;
  margin-bottom: 10px;
  color: #EC3D08;
}
.bg-white {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  background: #fff;
}
label {
  margin-bottom: .2rem;
}   
.thanks-sec {
  text-align: center;
  border-top: 1px solid #e1e1e1;
  padding: 55px 0;
}
.thanks-sec h2 {
  margin-top: 20px;
  margin-bottom: 15px;
  color: #211d21;
  font-size: 48px;
}
.thanks-sec h3 {
  font-size: 28px;
  line-height: 36px;
  margin-bottom: 20px;
  color: #000;
  font-weight: 500;
}
/**/
.footer {
  background-color: var(--blue);
  padding: 40px 0;
  position: relative;
}
.footer-top {
  text-align: center;
}
.footer_logo {
  padding: 10px 0 20px;
}
.footer_menu {
  padding: 20px 0 40px;
  border-bottom: 1px solid #294e68;
}
.footer_menu ul {
  display: flex;
  flex-wrap: wrap;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;    
  justify-content: center;
}
.footer_menu ul li a {
  color: #ffffff;
  padding: 0.5rem 1rem;
}
.footer_menu ul li a:hover {
  text-decoration: none;
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
}
ul.social-links {    
  margin-bottom: 0;
  padding-inline-start: 0;
}
ul.social-links > li {
  display: inline-block;
  margin-right: 5px;
}
ul.social-links > li a {
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  background: transparent;
  color: var(--white);
  display: inline-block;
  font-size: 18px;
  border-radius: 50%;
  border: 1px solid var(--white);
}
ul.social-links > li a:hover {
  background: var(--green); 
}
.footer:before {
  position: absolute;
  content: "";
  background-image: url(../images/footer-shape1.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 85px;
  height: 125px;
  right: 0;
  bottom: 0;    
  opacity: 0.3;
}
.footer:after {
  position: absolute;
  content: "";
  background-image: url(../images/footer-shape2.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 85px;
  height: 125px;
  top: 0;
  left: 0;
  opacity: 0.3;
}
/**/
.faq-section-wrap .card {
  margin-bottom: 15px;
}
.collapsible-link {
  width: 100%;
  position: relative;
  text-align: left;
  font-weight: 600;
  font-size: 17px;
}
.collapsible-link:hover, .collapsible-link:focus {
  text-decoration: none;
}
.collapsible-link::before {
  content: "\f107";
  position: absolute;
  top: 50%;
  right: 0.8rem;
  transform: translateY(-50%);
  display: block;
  font-family: "FontAwesome";
  font-size: 1.1rem;
}
.collapsible-link[aria-expanded="true"]::before {
  content: "\f106";
}
.card-body.p-5 {
  padding: 2rem !important;
}
.accordion>.card:not(:last-of-type) {
  border-bottom: 1px solid rgba(0, 0, 0, .125);
  border-bottom-right-radius: .25rem;
  border-bottom-left-radius: .25rem;
}
/**/
.products-section-wrap p {
  text-align: justify;
}
/**/
.about-section-wrap {
  overflow: hidden;
}
.about-content {
  padding-bottom: 30px;
}
.about-section-wrap p{
  text-align: justify;
}    
/**/
.founder-section-wrap.pad-tb {
  background: #f3f3f3;
  padding: 50px 0 0;
  overflow: hidden;
}
.founderinner {
  position: relative;
}
.founderinner img {
  width: 100%;
}
.founderinner img.founderimage {
  position: absolute;
  bottom: 0px; 
  left: 0; 
}
.founder-content {
  padding-left: 130px;
}
/**/
.vmc-icon-box {
  display: flex;
  margin: 0px 0px 30px 0px;
  padding: 0px 0px 30px 0px;
  border-style: solid;
  border-width: 0px 0px 1px 0px;
  border-color: rgb(0 0 0 / 12%);
  border-radius: 0px 0px 0px 0px;
  gap: 25px;
}
.vmc-icon-box .vmc-icon-box-icon {
  margin-right: 0;
  flex: 0 0 130px;
}
.vmc-icon-box-icon.whyus-shape {
  margin-bottom: 0;
  width: 130px;
  height: 130px;
}   
.vmc-icon-box .vmc-icon-box-icon img {
  width: 90px;
}
.vmc-icon-box h3 {
  margin-bottom: 8px;
}
.vmc-icon-box.vmc-icon-box-last {
  border-width: 0px 0px 0px 0px;
  padding: 0px 0px 0px 0px;
  margin: 0px 0px 0px 0px;
}
/**/
.contact-section-wrap h2 {
  margin-bottom: 1.5rem;
}
.contact-section-wrap h3 {
  margin-bottom: 80px;
}
.contact-section-wrap a:hover {
  text-decoration: none;
}
.getInTouchInfoItem {
  width: 350px;
  height: 350px;
  position: relative;
  transition: all 0.8s ease;
}
.getInTouchInfoItem:before, .getInTouchInfoItem:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 300px 0px 300px 300px;
  border: 1px solid var(--green);
  background-color: #ffffff;
  width: 100%;
  height: 100%;
  transition: all 0.8s ease;
}
.getInTouchInfoOuter {
  width: 350px;
  height: 350px;
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all 0.8s ease;
}
.getInTouchInfoOuter:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 300px 0px 300px 300px;
  border: 1px solid var(--green);
  background-color: #ffffff;
  width: 100%;
  height: 100%;
  transition: all 0.8s ease;
}
.getInTouchInfoItemInner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  position: relative;
  z-index: 2;
}
.getInTouchInfoIcon span {
  width: 80px;
  height: 80px;
  display: flex;
  background-color: var(--blue);
  align-items: center;
  justify-content: center;
  transition: all 0.8s ease;
  border-radius: 50px;
  position: relative;
}
.getInTouchInfoIcon span:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 50px;
  border: 1px solid var(--blue);
  background-color: var(--blue);
  width: 100%;
  height: 100%;
  transition: all 0.8s ease;
}
.getInTouchInfoIcon span img {
  position: relative;
  z-index: 1;
}
.getInTouchInfoContent {
text-align: center;
}
.getInTouchInfoItem:hover .getInTouchInfoIcon span:before {
  border-radius: 300px 0px 300px 300px;
  transform: rotate(-45deg);
}
.getInTouchInfoItem:hover:before {
  transform: rotate(-25deg);
}
.getInTouchInfoItem:hover .getInTouchInfoOuter:before {
  transform: rotate(-65deg);
}
.getInTouchInfoItem:hover:after {
  transform: rotate(-45deg);
}
.contact-section-wrap label {
  text-align: left;
}
/**/
.hero-video {
  height: 100vh; /*auto*/
  position: relative;
  overflow: hidden;
}
.hero-video video {
  position: absolute;/*relative*/
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}