@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Parkinsans:wght@300..800&display=swap');
:root {
  --gs_primary-color: #000000;
  --gs_secondary-color: #15364c; 
  --gs_heading-font: "Outfit", sans-serif;
  --gs_body-font: "Parkinsans", sans-serif;
  --blue: #0d1a6a;
  --lightblue: #162479;
  --lightgreen: #a5cb46;
  --green: #7c9d2a;
  --dark-grey: #343537;
  --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(--gs_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(--gs_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);
}
.gs-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 0 15px 0;
}
.gs-btn:hover {
  border: 1px solid var(--green);
  text-decoration: none;
}
.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);
}
.btn--whatsapp {
  z-index: 1;
  color: var(--white);
  background-color: #1dbc59;
  border-color: #1dbc59; 
  gap: 8px;
}
.btn--whatsapp:hover {
  color: var(--white);
  background-color: var(--blue);
  border-color: var(--blue); 
}
.btn--whatsapp i {
  font-size: 20px;
}
.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 {
  color: var(--black);
  position: relative;
}
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;
  position: relative;
  padding: 3px 0;
  /* padding: 8px 0;
  position: absolute; */
  -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 0 15px 0;
}
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-wrap {
  width: 300px;
  position: fixed;
  right: -100%;
  top: 0;
  background: var(--blue); /*#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 #07125b;/*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: #fff;/*000000*/
  font-size: 16px; /*15px*/
  text-transform: none;/*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: 70px 0 70px;
  position: relative;
  background: url(../images/breadcrumb_bg.jpg);
  background-position: center center;
  background-size: cover;
}
section.breadcrumb_wrap:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: linear-gradient(45deg, rgb(15 15 15 / 70%) 40%, rgb(26 26 26 / 80%) 100%);
}
.breadcrumb_title h1 {
  text-transform: none;
  font-size: 40px;
  color: var(--white);
  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;
  color: #fff;
}
.breadcrumb_wrap ul > li:last-child {
  margin: 0;
}
.breadcrumb_wrap ul > li a {
  color: #fff;
}
.breadcrumb_wrap ul > li a:hover {
  color: var(--green);
}
.breadcrumb_wrap ul > li:first-child:before {
  font-family: "Font Awesome 6 Free";
  content: "\f105";/*f101 f105 f054*/
  position: absolute;
  right: -25px;
  font-weight: 600;
  color: var(--white);
  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.gs-list {
  list-style: none;
  padding: 0;
  margin-bottom: 0;
}
ul.gs-list > li {
  margin-bottom: 5px;  
  position: relative;
  padding-left: 25px;
}
ul.gs-list > li:before {
  font-family: "Font Awesome 6 Free";
  content: "\f058";/*f560 f14a f058 f105 f054 f0da*/
  position: absolute;
  left: 0;
  font-weight: 400;
  color: var(--green);
}
.call_toaction {
  display: none;
}
.intro-section-wrap .col-lg-push-6 {
  left: 50%;
}
.intro-section-wrap .col-lg-pull-6 {
  right: 50%;
}
.intro-section-wrap .intro-content {
  padding-right: 20px; /*left*/
}
.intro-section-wrap .intro-content h3, .abt-short-wrap h3 {
  margin-bottom: 15px;
  background: linear-gradient(to right, #81a820 30%, var(--lightblue) 60%, var(--blue) 85%);
  background-size: auto auto;
  background-clip: border-box;
  background-size: 200% auto;
  color: #000;
  background-clip: text;
  text-fill-color: transparent;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: textclip 4s linear infinite;
  display: inline-block;
  padding-bottom: 0;
}
.intro-section-wrap .intro-content p {
  margin-bottom: 10px;
  text-align: justify;
}
.intro-image-wrap img {
  border-radius: 30px 0 30px 0;
}
@keyframes textclip{to{background-position:200% center}}
label {
  margin-bottom: .2rem;
} 
.footer {
  position: relative;   
  z-index: 2;
  background-color: var(--blue);
  background-image: url(../images/bubbles/footer-bg.png);
  background-size: cover;
  background-position: center center;
}
.footer-top {
  padding-top: 70px;
  padding-bottom: 50px;
}
.footer-top .col-off-40 {
  margin-left: -40px;
  margin-right: 40px;
}
.footer-top .col-lft-40 {
  padding-left: 40px;
}
.footer-widget {
  margin-bottom: 15px;
}
.footer-bottom {
  padding: 20px 0;
  background-size: 100% auto;
  background-color: #192a8d;
}
.footer-widget h3 {
  color: var(--white);
  margin-bottom: 20px;
  position: relative;
  font-weight: 500;
}
.footer-widget ul {
  list-style: none;
  padding: 0;
}
.footer-widget ul.widget-links > li {
  margin-bottom: 10px;
}
.footer-widget ul.widget-links > li a {
  color: var(--white);
  position: relative;
  padding-left: 20px;
  display: block;
}
.footer-widget ul.widget-links > li a:before {
  /* font-family: "Font Awesome 6 Free"; */
  content: "-";/*\f105*/
  position: absolute;
  left: 0;
  font-weight: 600;
}
.footer-widget ul.widget-links > li a:hover {
  margin-left: 10px;
  text-decoration: none;
}
.icn_txt {
  position: relative;
  display: block;
  margin-bottom: 6px;
}
.icn {
  position: absolute;
  left: 0;
  color: #fff;
}
.txt {
  padding-left: 30px;
  color: #fff;
}
.txt a {
  text-decoration: none;
}
ul.social-links {    
  margin-bottom: 0;
  padding-inline-start: 0;
}
ul.social-links > li {
  display: inline-block;
  margin-right: 10px;
}
ul.social-links > li a {
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  background: transparent;
  color: var(--white);
  display: inline-block;
  font-size: 18px;
  border-radius: 15px 0 15px 0;
  border: 1px solid var(--white);
}
ul.social-links > li a:hover {
  background: var(--green); 
}
ul.terms_policy {
  margin-bottom: 0;
  padding-inline-start: 0;
  list-style: none;
  float: right;
}
ul.terms_policy > li {
  display: inline-block;
  margin-right: 20px;
}
ul.terms_policy > li a {
  color: #fff;
  position: relative;
}
ul.terms_policy > li a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 90%;
  border-right: 1px solid #fff;
  right: -15px;
  top: 5%;
}
ul.terms_policy > li:last-child a:before {
  display: none;
}
ul.terms_policy > li:last-child {
  margin-right: 0;
}
ul.terms_policy > li a:hover {
  text-decoration: none;
}
.faq-section-wrap .card {
  margin-bottom: 0;/*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: "\2b";/*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: "\f068";/*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;
}
.faq-section-wrap .accordion>.card>.card-header .btn {
  color: var(--blue)!important;
  padding: 0;
}
.faq_card_wrapper {
  max-width: 100%; /*570px*/
  width: 100%;
  height: 1050px; /*741px*/
  background: #edefff;/*#ecf2fe*/
  padding: 50px 0; /*50px*/
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
}
.faq_card_wrapper h2 {
  font-size: 60px;
  /* line-height: 53%;
  letter-spacing: -0.02em; */
  color: var(--blue);
  line-height: 70PX;
}
.faq_card_wrapper .faq_btn_area h4 {
  font-weight: 600;
  font-size: 30px;
  letter-spacing: 0;/*-0.02em*/
  /* color: #142137; */
}
.faq_card_wrapper .faq_btn_area .faq_btn {
  padding-top: 25px;
  width: 100%;
}
.faq-section-wrap .section-title {
  display: none;
}
.faq-section-wrap .card-header {
  box-shadow: none !important;
  padding: 0;
}
.faq-section-wrap .card {
  border: none;
  padding: 30px 10px;
}
.faq-section-wrap .card-body.p-5 {
  padding: 30px 0 0rem !important;
}
.faq_btn_area, .faq_card_wrapper h2 {
  padding: 0 35px;
}
.about-section-wrap {
  overflow: hidden;
}
.about-content {
  padding-bottom: 30px;
}
.about-section-wrap p{
  text-align: justify;
} 
.hero-video {
  height: 100vh; /*auto*/
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
/*ec*/
.hero-video:before {
  /* position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: linear-gradient(45deg, rgb(15 15 15 / 70%) 40%, rgb(26 26 26 / 80%) 100%); */
  /*linear-gradient(45deg, rgb(4 92 167 / 70%) 40%, rgb(6 167 144 / 80%) 100%)*/
  /*linear-gradient(45deg, rgb(15 15 15 / 70%) 40%, rgb(26 26 26 / 80%) 100%);*/
}
.hero-video video {
  position: absolute;/*relative*/
  width: 100%;
  height: 100%;
  object-fit: unset;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}
.animation-bubble {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  overflow: hidden;
  z-index: 1;
  pointer-events: none;
}
.animation-bubble div[class^=bubble-] {
  height: 1px;
  width: 1px;
  position: absolute;
  background: url(../images/bubbles/bubble-1.png) no-repeat center center;
  background-size: cover;
  border-radius: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  pointer-events: none;
}
.bubble-1 {
  bottom: -5px;
  left: 68%;
  -webkit-animation: bubble-animation 4.5s infinite ease-in -6.57s;
  animation: bubble-animation 4.5s infinite ease-in -6.57s;
}
.bubble-2 {
  bottom: -71px;
  left: 97%;
  -webkit-animation: bubble-animation 4.5s infinite ease-in -5.07s;
  animation: bubble-animation 4.5s infinite ease-in -5.07s;
}
.bubble-3 {
  bottom: -71px;
  left: 43%;
  -webkit-animation: bubble-animation 4.5s infinite ease-in -6.73s;
  animation: bubble-animation 4.5s infinite ease-in -6.73s;
}
.bubble-4 {
  bottom: -3.8px;
  left: 82%;
  -webkit-animation: bubble-animation 4.5s infinite ease-in -4.04s;
  animation: bubble-animation 4.5s infinite ease-in -4.04s;
}
.bubble-5 {
  bottom: -73.4px;
  left: 29%;
  -webkit-animation: bubble-animation 4.5s infinite ease-in -3.11s;
  animation: bubble-animation 4.5s infinite ease-in -3.11s;
}
.bubble-6 {
  bottom: -71px;
  left: 41%;
  -webkit-animation: bubble-animation 4.5s infinite ease-in -5.95s;
  animation: bubble-animation 4.5s infinite ease-in -5.95s;
}
.bubble-7 {
  bottom: -79.4px;
  left: 14%;
  -webkit-animation: bubble-animation 4.5s infinite ease-in -3.68s;
  animation: bubble-animation 4.5s infinite ease-in -3.68s;
}
.bubble-8 {
  bottom: -115.4px;
  left: 90%;
  -webkit-animation: bubble-animation 4.5s infinite ease-in -3.89s;
  animation: bubble-animation 4.5s infinite ease-in -3.89s;
}
.bubble-9 {
  bottom: -44.6px;
  left: 33%;
  -webkit-animation: bubble-animation 4.5s infinite ease-in -1.09s;
  animation: bubble-animation 4.5s infinite ease-in -1.09s;
}
.bubble-10 {
  bottom: -6.2px;
  left: 59%;
  -webkit-animation: bubble-animation 4.5s infinite ease-in -.96s;
  animation: bubble-animation 4.5s infinite ease-in -.96s;
}
@-webkit-keyframes bubble-animation {
  0% {
    -webkit-transform: translate3d(-50%, 0, 0);
    transform: translate3d(-50%, 0, 0);
    height: 1px;
    width: 1px
}
100% {
    -webkit-transform: translate3d(-50%, -280px, 0);
    transform: translate3d(-50%, -280px, 0);
    height: 75px;
    width: 75px
  }
}
@keyframes bubble-animation {
  0% {
    -webkit-transform: translate3d(-50%, 0, 0);
    transform: translate3d(-50%, 0, 0);
    height: 1px;
    width: 1px
  }
  100% {
    -webkit-transform: translate3d(-50%, -280px, 0);
    transform: translate3d(-50%, -280px, 0);
    height: 75px;
    width: 75px
  }
}
.services-wrap {
  background: linear-gradient(45deg, rgb(4 92 167 / 100%) 40%, rgb(6 167 144 / 100%) 70%);/*#f5f5f5*/
  position: relative;
}
.services-wrap .section-title p {
  margin: 0 auto 0.3em;
  max-width: 1200px;
  color: #fff;
}
.services-wrap .section-title.text-center h2 {
  margin-bottom: 15px;
  color: #fff;
}
.services_single {
  position: relative;
  display: block;
  margin-bottom: 20px;    
  margin-top: 20px;
  background: #fff;
  padding: 5px;
  z-index: 1;    
  border-radius: 15px 0 15px 0;
}
.services_img {
  position: relative;
  display: block;
  overflow: hidden;
}
.services_img:before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  background-color:rgb(13 26 106 / 30%);
  opacity: 1;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  -webkit-transform: perspective(400px) rotateX(-90deg) scale(0.2);
  -ms-transform: perspective(400px) rotateX(-90deg) scale(0.2);
  transform: perspective(400px) rotateX(-90deg) scale(0.2);
  -webkit-transform-origin: top;
  -ms-transform-origin: top;
  transform-origin: top;
  z-index: 1;
  border-radius: 15px 0 15px 0;
}
.services_img img {
  width: 100%;
  border-radius: var(--qondri-bdr-radius);
  transition-delay: 0.1s;
  transition-timing-function: ease-in-out;
  transition-duration: 0.7s;
  transition-property: all;    
  border-radius: 15px 0 15px 0;
}
.services_icon {
  height: 70px;
  width: 70px;
  background-color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 3;
}
.services_icon span {
  font-size: 40px;
  color: #ffffff;
  position: relative;
  display: inline-block;
  transition: all 500ms linear;
  transition-delay: 0.1s;
}
.services_img .services_icon img {
  width: 60px;
  position: relative;
  display: inline-block;
  transition: all 500ms linear;
  transition-delay: 0.1s;
}
.services_single:hover .services_img .services_icon img {
  transform: rotateY(360deg);
}
.services_content {
  position: relative;
  display: block;
  text-align: center;
  padding: 25px 25px 25px;
  background-color: rgb(255, 255, 255);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  min-height: 290px;/*250px*/
}
.services_content h3 {
  font-size: 24px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}
.services_content p  {
  /* font-size: 16px;
  line-height: 30px; */
  margin: 0;
  padding-top: 5px;/*12px*/
  padding-bottom: 0;/*50px*/
}
.services_single:hover h3 {
  color: var(--blue);
}
.services_single:hover .services_img:before {
  opacity: 1;
  -webkit-transform: perspective(400px) rotateX(0deg) scale(1);
  -ms-transform: perspective(400px) rotateX(0deg) scale(1);
  transform: perspective(400px) rotateX(0deg) scale(1);
}
.services_single:hover .services_icon span {
  transform: rotateY(360deg);
}
.services_btn {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  z-index: 1;
  color: #fff;
  background-color: var(--blue);
  padding: 8px 15px;
  transition: 0.3s linear;
  overflow: hidden;
  outline: none !important;
  width: 100%;
  font-size: 16px;
}
.services_btn i {
  font-size: 16px;
  position: relative;
  top: 1px;
  padding-left: 7px;
  color: #fff;
}
.services_btn::before {
  position: absolute;
  content: "";
  background-color: var(--green);
  width: 100%;
  height: 0%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  z-index: -1;
  transition: 500ms;
}
.services_single:hover .services_btn::before {
    height: 580%;
}
.services_single:hover .services_btn:hover, .services_btn:hover {
  text-decoration: none;
  color: #fff;
}
.services_btn_Wrap {
  margin-top: 15px;
  position: absolute;
  left: 25px;
  right: 25px;
  bottom: 25px;
}
.counter-animation .animate-ball {
    position: absolute;
}
.scale {
  animation-duration: 2s;
  -webkit-animation: scale 2s alternate infinite;
}
.counter-animation .animate-ball img {
  max-width: 55px;
}
.counter-animation .animate-ball.one {
  left: 18%;
  top: 4%;/*13%*/
}
.counter-animation .animate-ball.two {
  left: 2%;
  bottom: 42%;
}
.counter-animation .animate-ball.three {
  left:4%;/* 8%*/
  top: 20%;
}
.counter-animation .animate-ball.four {
  /* left: 17%;
  bottom: 13%; */
  right: 3%;
  bottom: 45%;
}
.counter-animation .animate-ball.five {
  /* left: 5%;
  top: 44%; */
  left: 2%;
  bottom: 5%;
}
.counter-animation .animate-ball.six {
  right: 11%;
  top: 5%;/*16%*/
}
.counter-animation .animate-ball.seven {
  right: 2%;
  bottom: 8%;
}
.counter-animation .animate-ball.eight {
  right: 50%;
  bottom: 45%;
}
.rotated-style {
    animation: rotated-style 5s linear infinite;
}
@-webkit-keyframes scale {
  0% {
    transform: scale(0.9);
    -webkit-transform: scale(0.9);
  }
  100% {
    transform: scale(1.08);
    -webkit-transform: scale(1.08);
  }
}
@keyframes scale {
  0% {
    transform: scale(0.9);
    -webkit-transform: scale(0.9);
  }
  100% {
    transform: scale(1.08);
    -webkit-transform: scale(1.08);
  }
}
@keyframes rotated-style {
  0% {
    -webkit-transform: translate(0) rotate(0deg);
    transform: translate(0) rotate(0deg);
  }
  25% {
    -webkit-transform: translate(-10px, 10px) rotate(10deg);
    transform: translate(-10px, 10px) rotate(10deg);
  }
  50% {
    -webkit-transform: translate(5px, -5px) rotate(25deg);
    transform: translate(5px, -5px) rotate(25deg);
  }
  75% {
    -webkit-transform: translate(15px, -5px) rotate(15deg);
    transform: translate(15px, -5px) rotate(15deg);
  }
  100% {
    -webkit-transform: translate(0) rotate(0deg);
    transform: translate(0) rotate(0deg);
  }
}
.whatsapp-float {
  position: fixed;
  transform: translate(108px, 0px);
  top: 50%;
  right: 0;
  width: 150px;
  overflow: hidden;
  background-color: #1dbc59;/*#25d366*/
  color: #fff;
  border-radius: 10px 0 0 10px;
  z-index: 10;
  transition: all 0.5s ease-in-out;
  vertical-align: middle;
}
.whatsapp-float a span {
  color: white;
  font-size: 15px;
  padding-top: 8px;
  padding-bottom: 10px;
  position: absolute;
  line-height: 16px;
  font-weight: bolder;
}
.whatsapp-float i {
  font-size: 30px;
  color: white;
  line-height: 30px;
  padding: 10px;
  transform: rotate(0deg);
  transition: all 0.5s ease-in-out;
  text-align: center;
}
.whatsapp-float:hover {
  color: #ffffff;
  transform: translate(0px, 0px);
}
.whatsapp-float:hover i {
  transform: rotate(360deg);
}
.reveal {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: flex;/*inline-flex*/
  visibility: hidden;
  overflow: hidden;
}
.reveal img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transform-origin: left;
  transform-origin: left;
}
.intro-section-wrap {
  position: relative;
  display: block;
  background: #fff;
  /* padding: 120px 0 120px;
  background-color: var(--qondri-white); */
  z-index: 1;
}
.intro-shape {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 781px;
  width: 862px;
  background-repeat: no-repeat;
  background-position: top right;
  mix-blend-mode: luminosity;
  opacity: 0.1; /*0.08*/
  z-index: -1;
}
.testimonials-wrap h3 {
  text-transform: uppercase;
  color: var(--green);
}
.testimonials-wrap .section-title {
  margin-bottom: 2.2rem;
}
.testimonials-image img {
  border-radius: 30px 0 30px 0;
}
.testimonial-item {
  position: relative;
  margin: 5px; /*0 -15px 0 0*/
  background-color: #012C08;
  padding: 40px;
  background-color: var(--white-color);
  box-shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.1);
  border-radius: 30px 0 30px 0;
}
.testimonial-item .testimonial-item-content span img {
  width: 48px;
  top: 0; /*38px*/
  position: relative; 
  left: 0; 
}
.testimonial-item .testimonial-item-content p {
  padding: 25px 0px 10px 0px;
}
.testimonial-item .testimonial-content .rating {
  padding-bottom: 10px;
}
.testimonial-item .testimonial-content .testimonial-name {
  font-size: 18px;
  font-weight: 600;
  /* color: #ffffff; */
}
.rating i {
  color: #94ba34;
  font-size: 16px;
  margin-right: 1px;
}
.testimonial-carousel .owl-dots {
  right: -30px;
  position: absolute;
  bottom: 39%;
}
.testimonial-carousel .owl-dots {
  text-align: center;
  margin-top: 50px;
}
.testimonial-carousel .owl-dots .owl-dot{
  padding: 3px 0;
  width: 6px;
  height: 6px;
  border-radius: 2px !important;
  margin: 6px 0;
  border-radius: 50px;
  border: none;
  transition: all 0.3s ease;
  background: var(--blue);    
  display: flex;
}
.testimonial-carousel .owl-dots .owl-dot:hover, .testimonial-carousel .owl-dots .owl-dot.active {
  height: 15px;
  background: var(--green); /*#ffffff*/
}
.founder_story_wrap {
  background: #f5f5f5;
}
.founder-card {
  text-align: center;
}
.founder-card img {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  padding: 5px;
  background: linear-gradient(45deg, rgb(4 92 167 / 100%) 40%, rgb(6 167 144 / 100%) 70%);
  object-fit: cover;
  transition: transform 0.3s ease;
}
.founder-card img:hover {
  transform: rotate(3deg) scale(1.05);
}
.founder-content {
  padding-left: 15px;
}
.founder-content h3 {
  color: var(--blue);
}
.contact_info_wrap .hr-1 {
  background: #111111;    
  height: 1px;    
  opacity:0.15;     
  margin-top: 15px;   
  margin-bottom: 15px;
}
.contact_title h2, .contact_title h3 {
  color: var(--blue);
  font-size: 26px;
}
.contact_title h3 {
  color: var(--black);
}
.contact_info_wrap h4 {
  color: var(--blue);
  margin-bottom: 8px;
}
ul.contact_info {
  margin: 0px;
  padding: 0px;
  list-style: none;
}
.contact_info li {
  position: relative;
  padding-left: 60px;
}
.contact_info li .icon {
  position: absolute;
  left: 0;
  width: 45px;
  height: 45px;
  display: inline-block;
  text-align: center;
  color: #fff;
  line-height: 45px;
  border-radius: 50%;
  top: 3px;
  background-color: var(--green);    
  border: 1px solid var(--green);
}
.contact_info li .title {
  font-size: 16px;
  margin-top: 1px;
  line-height: 1;
  display: inline-block;
  margin-bottom: 0px;
  font-weight: 600;
}
.contact_info li p {
  margin: 0;
}
.mb-15 {
  margin-bottom: 15px;
}
.quick_action_wrap {
  background: #f5f5f5;
  text-align: center;
}
.quick_action {
  display: flex;
  gap: 25px;
  align-items: center;
  justify-content: center;
}
.quick_action_wrap img {
  width: 85px;
  -webkit-animation: mover 0.5s infinite  alternate;
  animation: mover 0.5s infinite  alternate;
}
@-webkit-keyframes mover {
  0% { transform: translateY(0); }
  100% { transform: translateX(12px); }
}
@keyframes mover {
  0% { transform: translateY(0); }
  100% { transform: translateX(12px); }
}
.services_content_wrap p.green_clr {
  color: var(--green);
}
.services_content_wrap p.green_clr span {
  color: var(--blue);
}
.services_content_wrap .section-title h2 {
  color: var(--blue);
}
b, strong {
  font-weight: 600;
}
.services_inner_wrap.bg-clr {
  background: #f5f5f5;
}
.services_inner_wrap .col-lg-push-6 {
  position: relative;
  left: 50%;
}
.services_inner_wrap .col-lg-pull-6 {
  position: relative;
  right: 50%;
} 
.services_image img {
  border-radius: 30px 0 30px 0;
}
.quick_action_wrap.pickup_wrap img {
  width: auto;
  border-radius: 0;
}
.quick_action_wrap.pickup_wrap p {
  text-align: left;
}
.quick_action_wrap.pickup_wrap .quick_action {
  margin: 30px auto;    
  justify-content: left;
}
.bubbleContainer div[class^=bubble-] {
  height: 1px;
  width: 1px;
  position: absolute;
  background: url(../images/bubbles/bubbles-breadcrumb.png) no-repeat center center;
  background-size: cover;
  border-radius: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  pointer-events: none
}
@media (max-width: 1024px) {
  .bubbleContainer>:nth-child(even) {
      display:none
  }
}
.gs_features_section {
  position: relative;
  display: block;
  z-index: 3;
} 
.gs_features_section .container {
  position: relative;
  display: block;
}
.gs_features_inner {
  position: relative;
  display: block;
  /* margin-top: -75px; */
}
.gs_features_img {
  margin-bottom: 10px;
}
.reach_image_logo {
  justify-content: center;
}
.reach_image_logo.reveal img {
  width: auto;
}
.reach_image_wrap img {
  border-radius: 30px 0 30px 0;
}
.shinee {
  position: relative;
  overflow: hidden;
}
.shinee::before {
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
  content: "";
  display: block;
  height: 100%;
  left: -75%;
  position: absolute;
  top: 0;
  transform: skewX(-25deg);
  width: 50%;
  z-index: 2;
}
.shinee:hover::before, .shinee:focus::before {
  -webkit-animation: shinee 0.85s;
          animation: shinee 0.85s;
}
@-webkit-keyframes shinee {
  100% {
    left: 125%;
  }
}
@keyframes shinee {
  100% {
    left: 125%;
  }
}
.commitment_wrap .col-lg-3 {
  -ms-flex: 0 0 28%;
  flex: 0 0 28%;
  max-width: 28%;
} 
.commitment_wrap .col-lg-6 {
  -ms-flex: 0 0 43%;
  flex: 0 0 43%;
  max-width: 43%;
}
.commitment_wrap .commitment-image img {
  width: 100%;
  margin-bottom: 10px;
  transition: 0.2s linear;
}
.commitment_wrap .commitment-image:hover img { 
  transform: scale(1.005);
}
.commitment_wrap .commitment-image.commitment-image1 img {
  width: 350px;
}