@import url('https://fonts.googleapis.com/css2?family=Parkinsans:wght@300..800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Red+Hat+Display:ital,wght@0,300..900;1,300..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Titillium+Web:ital,wght@0,200;0,300;0,400;0,600;0,700;0,900;1,200;1,300;1,400;1,600;1,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');
:root {
  --ga_primary-color: #000000;
  --ga_secondary-color: #163867; 
  --ga_heading-font: "Red Hat Display", sans-serif; /*"Manrope", sans-serif "Titillium Web", sans-serif */
  --ga_body-font: "Parkinsans", sans-serif;
  --blue: #0b2446; 
  --lightblue: #264474;
  --yellow: #ffb703; 
  --dark-grey: #787878;
  --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(--ga_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(--ga_heading-font);
  font-weight: 700; /*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);
}
.ga-btn {  
  padding: 12px 24px;
  border: 1px solid var(--blue);
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  transition: all 0.4s ease-in-out;
  color: var(--white);
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.ga-btn:hover {
  border: 1px solid var(--blue);
  text-decoration: none;
}
.ga-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;
}
.ga-btn:focus:before,
.ga-btn:hover:before,
.ga-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(--blue);
}
.btn--secondary {
  z-index: 1;
  color: var(--white);
  background-color: var(--dark-grey);
  border-color: var(--dark-grey);
}
.btn--primary:hover {
  color: var(--white);
  background-color: var(--dark-grey);
  border-color: var(--dark-grey); 
}
.btn--secondary:hover { 
  color: #fff;
  background-color: var(--blue);
  border-color: var(--blue); 
}
.btn--white {
  z-index: 1;
  color: var(--white);
  border: 1px solid var(--white);
}
.btn--white:hover {
  border: 1px solid var(--blue);
  color: var(--white);
  background-color: var(--blue);
}
.btn--yellow {
  z-index: 1;
  color: var(--blue);
  border: 1px solid var(--yellow);
  background-color: var(--yellow);
}
.btn--yellow:hover {
  border: 1px solid var(--blue);
  color: var(--white);
  background-color: var(--blue);
}
.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: 2px 0;
  -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%;
  background: #fdfdfd;
}
.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: 6px 1.1vw;
  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(--blue);
}
header .main-menu > li:hover > a {
  color: var(--blue);
  text-decoration: none;
}
header .main-menu > li > a > i {
  color: var(--blue);
}
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;
}
header .main-menu .sub-menu {
  display: none;
  position: absolute;
  left: 50%;
  top: 100%;
  width: 285px;
  overflow: hidden;
  border-top: 2px solid var(--blue);
  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(--blue);
  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;
}
.side-menu-nav .main-menu > li > a > i {
  color: var(--black);
}
.side-menu-nav .main-menu .sub-menu {
  border-top: 1px solid var(--blue);
  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;
  font-size: 16px;
  text-transform: none;
  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(--yellow); 
  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(--blue);
  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 {
  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: 80px 0;
  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(--blue);
}
.breadcrumb_wrap ul > li:first-child:before {
  font-family: "Font Awesome 6 Free";
  content: "\f105";/*f101 f105 f054*/
  position: absolute;
  right: -20px;
  font-weight: 600;
  color: var(--white);
  font-size: 16px;
  top: 0px;
}
label {
  display: block;
}
.form-control {
  border: 1px solid #bbb;   
  padding: 0.5rem 0.75rem;
  color: var(--black);    
  height: 55px;
}
.form-control:focus {
  box-shadow: none;
  border: 1px solid var(--blue);
}
textarea.form-control {
  height: 120px;
}
.image-wrap {
  border-radius: 10px;
  position: relative;
  overflow: hidden;
}
.image-wrap img {
  transition: 0.2s linear;
}
.image-wrap:hover img {
  transform: scale(1.08);
}
ul.ga-list {
  list-style: none;
  padding: 0;
  margin-bottom: 0;
}
ul.ga-list > li {
  margin-bottom: 5px;  
  position: relative;
  padding-left: 25px;
}
ul.ga-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(--blue);
}
.call_toaction {
  display: none;
}
.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 {
  position: relative;   
  z-index: 2;
  background-color: var(--blue);
  padding-bottom: 70px;
}
.footer-bg {
  position: absolute;
  bottom: 0;
  right: 0;
  filter: invert(1);
  opacity: 0.2;
  z-index: -1;
}
.footer-top {
  padding-top: 60px;
  padding-bottom: 40px;
}
.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 .container {
  padding: 20px 0;
  border-top: 1px solid rgb(255 255 255 / 15%);
  border-bottom: 1px solid rgb(255 255 255 / 15%);
}
.footer-widget h3 {
  color: var(--white);
  margin-bottom: 20px;
  position: relative;
  font-weight: 500;
  padding-bottom: 18px;
}
.footer-widget h3:before {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 100%;
  content: "";
  background-color: rgba(255, 255, 255, 0.1);
}
.footer-widget h3:after {
  position: absolute;
  left: 0%;
  bottom: 0;
  height: 2px;
  width: 75px;
  background-color: var(--yellow);
  content: "";
}
.footer-widget ul {
  list-style: none;
  padding: 0;
}
.footer-widget ul.widget-links > li {
  margin-bottom: 8px;
}
.footer-widget ul.widget-links > li a {
  color: var(--white);
  position: relative;
  display: inline-nlock;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.footer-widget ul.widget-links > li a:before {
  position:absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background-color: var(--yellow);
  content: "";
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
} 
.footer-widget ul.widget-links > li a:hover:before {
  width: 100%;
}
.footer-widget ul.widget-links > li a:hover {
  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;
  float: right;
}
ul.social-links > li {
  display: inline-block;
  margin-right: 10px;
}
ul.social-links > li a {
  width: 42px;
  height: 42px;
  line-height: 42px;
  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(--yellow); 
  color: var(--blue);
}
.footer-widget.footer-contact ul {
  position: relative;
  display: block;
}
.footer-widget.footer-contact ul li {
  position: relative;
  display: block;
}
.footer-widget.footer-contact ul li p {
  color: var(--white)
}
.footer-widget.footer-contact ul li+li {
  margin-top: 15px;
}
.footer-widget.footer-contact ul li a {
  color: var(--white)
}
.footer-widget.footer-contact ul li a:hover {
  color: var(--yellow)
}
.footer-about p {
  line-height: 1.8;
}
.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;
}

/**/
.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);
}
.services_image_wrap img {
  border: 3px dotted #bbb;
}
b, strong {
  font-weight: 600;
}
.services_inner_wrap.bg-clr {
  background: var(--blue);/*#f5f5f5*/
}
.services_inner_wrap.bg-clr p {
  color: #fff;
}
.services_inner_wrap.bg-clr .services_content_wrap .section-title h2 {
  color: var(--yellow);
}
.services_inner_wrap .col-lg-push-6 {
  position: relative;
  left: 50%;
}
.services_inner_wrap .col-lg-pull-6 {
  position: relative;
  right: 50%;
} 
.services_image_wrap {
  text-align: center;
  justify-content: center;
}
/**/
.banner-section{
  position: relative;
}
.banner-carousel .slide-item {
  position: relative;
  overflow: hidden;
  min-height: 700px;
}
.banner-carousel .slide-item .image-layer {
  position: absolute;
  left: 0px;
  top: 0px;
  right: 0px;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  -webkit-transition: all 6000ms linear;
  -moz-transition: all 6000ms linear;
  -ms-transition: all 6000ms linear;
  -o-transition: all 6000ms linear;
  transition: all 6000ms linear;
}
.slider-content.style-two {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%; 
  z-index: 10;
}
.slider-main-title {
  text-align: center;
  max-width: 1300px;
  margin: 0px auto;
}
.slider-main-title h2, .slider-main-title h1 {
  font-size: 60px;
  color: #FFF;
  font-weight: 700;
  line-height: 70px;
  /* text-transform: uppercase; */
  margin-block-start: 0;
  margin-block-end: 0;    
  margin-bottom: 20px; /*40px*/
  text-shadow: 2px 2px rgba(0, 0, 0, 0.4);/*1px 1px 2px rgba(0, 0, 0, 0.6)*/
}
.banner-section .container {
  max-width: 100%;
  margin: 0;
  padding: 0;
}
.banner-carousel .slide-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4);
  z-index: 1;
} 
.banner-section .owl-carousel .owl-nav button:hover, 
.banner-section .owl-carousel .owl-nav button:focus {
  outline: 0;
}
.banner-section .owl-carousel .owl-nav button.owl-prev {
  left: 50px;
}
.banner-section .owl-carousel .owl-nav button.owl-next {
  left: unset;
  right: 50px;
}
.banner-section .owl-carousel .owl-nav button.owl-prev span, 
.banner-section .owl-carousel .owl-nav button.owl-next span {
  font-size: 45px;
  color: #ccc;
}
.banner-section .owl-carousel .owl-nav button.owl-prev span:hover, 
.banner-section .owl-carousel .owl-nav button.owl-next span:hover {
  color: #fff;
}
.banner-section .owl-carousel .owl-nav button {
  position: absolute;
  top: 48%;
}
.banner-section .ga-btn {
  margin: 10px 5px;
}
/**/
.credibility-strip-section.pad-tb {
  padding: 80px 0 40px;
}
.credibility-block {
  margin-bottom: 20px;
}
.credibility-block.col-lg-3 {
    -ms-flex: 0 0 20%;
  flex: 0 0 20%;
  max-width: 20%;
}
.credibility-block .inner-box {
  position: relative;
  max-width: 250px;
  margin: 0 auto;
  text-align: center;
}
.credibility-block .inner-box .icon-box {
  left: 0;
  margin: 0 auto;
  position: absolute;
  right: 0;
  top: -20px;
  z-index: 3;
}
.credibility-block .inner-box .icon-box:before {
  background-image: url(../images/credibility-border.png);
  content: "";
  height: 120px;
  position: absolute;
  top: -15px;
  right: 45px;
  width: 114px;
}
.credibility-block .inner-box .icon-box i {
  background-color: var(--blue);
  border-radius: 50%;
  color: #fff;
  display: inline-block;
  font-size: 45px;
  height: 95px;
  line-height: 105px;
  position: relative;
  width: 95px;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.credibility-block .inner-box:hover i {
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
  background-color: var(--blue);
  color: #fff;
}
.credibility-block .inner-box .icon-box .img-wrap {
  background-color: var(--blue);
  border-radius: 50%;
  color: #fff;
  display: inline-block;
  height: 95px;
  line-height: 95px;
  position: relative;
  width: 95px;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
 }
.credibility-block .inner-box .icon-box img {
  width: 55px;
}
.credibility-block .inner-box:hover .img-wrap {
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
}
.credibility-block .inner-box .content {
  background-color: #f3f3f3;
  border-radius: 200px;
  padding: 115px 15px 50px;
  overflow: hidden;
  position: relative;
  min-height: 440px;
}
.credibility-block .inner-box .content h4 {
  margin-bottom: 10px;
}
.core-message-section.pad-tb {
  background-image: url(../images/core-message.jpg);
  background-position: center;
  background-size: cover;
  padding: 130px 0
}
.core-message-section .col-lg-6 {
  position: relative;
  left: 50%;
}
.core-message-section ul {
  padding-left: 120px;
}
.core-message-section ul.ga-list > li {
  margin-bottom: 15px;
  padding-left: 40px;
  color: #fff;
  font-size: 30px;
}
.services-section {
  background: var(--blue);
  position: relative;
  z-index: 1;
} 
.services-section .section-title h2 {
  color: #fff;
}
.service-card {
  position: relative;
  border-radius: 0;
  border: 1px solid #dcdcdc;/*d8dde1*/
  background: #172f54;
  padding: 30px;
  text-align: center;
  box-shadow: 0px 6px 40px 0px rgba(0, 0, 0, 0);
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  margin-top: 20px;
  margin-bottom: 20px;
  min-height: 100px;
}
.service-card:before,
.service-card:after {
  content: "";
  width: 80px;
  height: 80px;
  position: absolute;
  border-radius: 0;
  border: 1px solid;
  border-color: var(--yellow);
  top: -1px;
  left: -1px;
  -webkit-transition: height, width, 0.4s ease;
  transition: height, width, 0.4s ease;
}
.service-card:before {
  border-width: 2px 0 0 2px;
}
.service-card:after {
  top: unset;
  left: unset;
  bottom: 0;
  right: 0;
  border-width: 0 2px 2px 0;
  border-radius: 0;
}
@media (max-width: 1299px) {
  .service-card {
    padding: 25px;
  }
}
@media (max-width: 1199px) {
  .service-card {
    padding: 20px 16px;
    display: block;
    text-align: center;
  }
}
.service-card h3 {
  font-size: 18px;
  margin-bottom: 0;
  color: #fff;
}
.service-card:hover {
  background: #082041;
  box-shadow: 0px 6px 40px 0px rgba(0, 0, 0, 0.07);
  border: 1px solid transparent;
  border-radius: 0;
}
.service-card:hover:before,
.service-card:hover:after {
  width: 100%;
  height: 100%;
  opacity: 1;
  visibility: visible;
}
.service-shape {
  position: absolute;
  top: 0;
  left: -30px ;
  width: 605px;
  height: 664px;
  background-image: url(../images/service-shape1.png);    
  z-index: -1;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0.5;
  -webkit-animation: bounce-x 10s infinite linear;
  animation: bounce-x 10s infinite linear;
}
@-webkit-keyframes bounce-x {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  50% {
    -webkit-transform: translateX(30px);
    xtransform: translateX(30px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes bounce-x {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  50% {
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
.why_ga_block {
  margin-bottom: 30px;    
  margin-top: 15px;
}
.why_ga_block .inner-box {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 35px 15px 25px;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background-color: #f5f5f5;
  min-height: 415px;
}
.why_ga_block .inner-box:before {
  content: "";
  position: absolute;
  right: -470px;/*-413px*/
  bottom: 0;
  width: 290px;/*297px   370px*/
  height: 100%;
  background-color: #ececec;
  -webkit-transform: skewX(-49deg);
  transform: skewX(-49deg);
  -webkit-transform-origin: top right;
  transform-origin: top right;
  -webkit-transition: all 400ms ease;
  transition: all 400ms ease;
  z-index: 1;
}
.why_ga_block .inner-box .icon-box {
  position: relative;
  margin-bottom: 20px;
}
.why_ga_block .inner-box h4 {
  position: relative;
  margin-bottom: 8px;
  z-index: 3;
}
.why_ga_block .inner-box p {
  position: relative;
  z-index: 3;
  margin-bottom: 0;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.why_ga_block .inner-box:after {
  content: "";
  position: absolute;
  right: -430px;
  bottom: 0;
  width: 0;
  height: 100%;
  background-color: var(--blue);
  -webkit-transform: skewX(-45deg);
  transform: skewX(-45deg);
  -webkit-transform-origin: top right;
  transform-origin: top right;
  -webkit-transition: all 400ms ease;
  transition: all 400ms ease;
  z-index: 2;
}
.why_ga_block .inner-box .img-wrap {
  position: relative;
  width: 96px;
  height: 96px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 0;
  color: var(--blue);
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  z-index: 1;
}
.why_ga_block .inner-box .img-wrap img {
  width: 55px;
}
.why_ga_block .inner-box:hover img {
  -webkit-transform: rotate(-360deg);
  transform: rotate(-360deg);
}
.why_ga_block .inner-box .img-wrap:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 50%;
  border: 1px dashed var(--blue);
  background-color: #fff;
  z-index: -1;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.why_ga_block .inner-box:hover::before {
  width: 264%;
}
.why_ga_block .inner-box:hover::after {
  width: 100px;
}
.markets_served_section.pad-tb {
  background: #f5f5f5;
  padding: 50px 0 50px;
}
.why-ga-section pad-tb {
  padding: 40px 0 70px;
}
.markets-item {
  position: relative;
  z-index: 2;
  margin-top: 10px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  margin-bottom: 10px;
  border: 1px solid #c4c4c4;
  padding: 20px; /*10px*/
  background: #fff;
}
.markets-item-wrap {
  background: #ffffff;
  padding: 0; /*10px*/
}
.markets-item_img {
  position: relative;
  text-align: center;
  margin-bottom: 0;
  max-height: unset;
  overflow: hidden;
}
.markets-item_img img {
  transition: 0.2s linear;
}
.markets-item:hover .markets-item_img img {
  transform: scale(1.04);
}
.markets-item h3 {
  font-weight: 600;
  font-size: 22px;
  line-height: 30px;
  text-align: center;  
  margin: 0;
  padding: 10px 0px 0;
}
.markets-item h3:hover {
  color: var(--blue);
  text-decoration: none;
}
.markets-item:hover h3 {
  color: var(--blue);
}
.markets-carousel.owl-carousel .owl-nav button.owl-next, 
.markets-carousel.owl-carousel .owl-nav button.owl-prev {
  position: absolute;
  top: -55px;/*45%*/
}
.markets-carousel.owl-carousel .owl-nav button.owl-prev {
  right: 50px;
}
.markets-carousel.owl-carousel .owl-nav button.owl-next {
  right: 0px;
}
.markets-carousel.owl-carousel .owl-nav button.owl-next span, 
.markets-carousel.owl-carousel .owl-nav button.owl-prev span {
  width: 40px;
  height: 40px;
  line-height: 40px;
  border: 1px solid var(--blue);
  color: var(--blue);
}
.markets-carousel.owl-carousel .owl-nav button.owl-next span:hover, 
.markets-carousel.owl-carousel .owl-nav button.owl-prev span:hover {
  background-color: var(--blue);
  color: var(--white);
}
.sustainability-section {
  background-color: var(--blue);
}
.sustainability_img {
  margin-top: -80px;
  position: relative;
  margin-bottom: 35px;
}
.sustainability_content {
  padding-top: 20px;
  padding-bottom: 20px;
  padding-left: 55px;
}
.sustainability-section .section-title.text-left h2 {
  color: #fff
}
.sustainability-section p {
  color: #fff;
  margin-top: 20px;
}
.sustainability-section ul.ga-list > li {
  color: #fff;    
  margin-bottom: 8px;
}
.sustainability-section ul.ga-list > li:before {
  color: var(--yellow);
}
.contact-section .form-control {
  border: 0;
  border-bottom: 2px solid #ddd;   
}
.contact-wrapper{
  width:100%;
  max-width:1100px;
  background:#ffffff;
  border-radius:20px; /*25px*/
  overflow:hidden;
  box-shadow:0 15px 45px rgba(0,0,0,0.15); /*0.08*/
}
.company-header{
  background:linear-gradient(135deg, #0b2446, #054f99, #0099ff);
  /*linear-gradient(135deg,#003366,#0059b3,#0099ff)*/
  color:#fff;
  padding:20px 35px;
  position:relative;
}
.company-header::after{
  content:'';
  position:absolute;
  right:-80px;
  top:-80px;
  width:250px;
  height:250px;
  background:rgba(255,255,255,0.08);
  border-radius:50%;
}
.company-header h2{
  margin-bottom:10px;
  position:relative;
  z-index:1;
  color: #fff;
}
.company-header p{
  letter-spacing:0.5px;
  position:relative;
  z-index:1;
  color: #fff;
}
.location-section{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
  gap:25px;
  padding:25px;
  background:#fff; /*f7fbff*/
}
.location-card{
  background:#fff;
  border-radius:20px;
  padding:25px;
  position:relative;
  overflow:hidden;
  transition:0.35s ease;
  border:1px solid #e4e4e4;/*e8eef7*/
}
.location-card:hover{
  transform:translateY(-8px);
  box-shadow:0 12px 30px rgba(0,0,0,0.08);
}
.location-card::before{
  content:'';
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:6px;
}
.uk-card::before{
  background:linear-gradient(90deg, #264474, #5ba3ea); /*linear-gradient(90deg,#0052cc,#00a2ff)*/
}
.india-card::before{
  background:linear-gradient(90deg, #6b6b6b, #a8a8a8);
}
.location-tag{
  display:inline-block;
  padding:8px 16px;
  border-radius:30px;
  font-size:13px;
  font-weight:600;
  margin-bottom:8px;
  color:#fff;
}
.uk-card .location-tag{
  background:var(--lightblue);
}
.india-card .location-tag{
  background:#6b6b6b;
}
.location-card h2{
  font-size:24px;
  color:#0d1b2a;
  margin-bottom:8px;
}
.location-section .info{
  color:#555;
}
.location-section .info strong{
  color:#111;
}
.contact-info{
  margin-top:15px;
  padding-top:15px;
  border-top:1px dashed #d7e2ef;
}
.contact-info div{
  margin-bottom:5px;
  color:#333;
}
.contact-info span{
  font-weight:600;
  color:#003366;
}
.services-grid {
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
  gap:30px;
}
.service-iner-card {
  position:relative;
  background:rgba(255,255,255,0.05);
  border:1px solid rgba(0,0,0,0.15); /*rgba(255,255,255,0.08)*/
  border-radius:24px;
  padding:35px 30px;
  backdrop-filter:blur(12px);
  transition:0.4s ease;
  overflow:hidden;
}
.service-iner-card::before {
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(135deg,
          rgba(0,210,255,0.15),
          rgba(78,255,193,0.02));
  opacity:0;
  transition:0.4s;
  border: 1px solid;
  border-color: var(--yellow);
  -webkit-transition: height, width, 0.4s ease;
  transition: height, width, 0.4s ease;
}
.service-iner-card:hover {
  transform:translateY(-10px);
  border-color:#00d2ff;
  background: #082041;
}
.service-iner-card:hover::before {
  opacity:1;
}
.service-iner-card .icon-wrap {
  width:72px;
  height:72px;
  border-radius:18px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:linear-gradient(135deg, #11386d, #09619a);/*linear-gradient(135deg,#00d2ff,#4effc1)*/
  margin-bottom:25px;
  position:relative;
  z-index:1;
}
.service-iner-card:hover .icon-wrap {
  background:#fff;
}
.service-iner-card .icon {
  font-size:34px;
}
.service-iner-card h3 {
  font-size:22px;
  margin-bottom:10px;
  position:relative;
  z-index:1;
}
.service-iner-card p {
  position:relative;
  z-index:1;
  margin-bottom: 0;
}
.service-iner-card::after {
  content:"";
  position:absolute;
  width:180px;
  height:180px;
  background:rgba(0,210,255,0.08);
  border-radius:50%;
  top:-80px;
  right:-80px;
  border: 1px solid;
  border-color: var(--yellow);
  -webkit-transition: height, width, 0.4s ease;
  transition: height, width, 0.4s ease;
}
@media(max-width:767px) {
  .service-iner-card{
    padding:30px 25px;
  }
}
.service-iner-card:hover h3, .service-iner-card:hover p { 
  color: #fff;
}
.service-iner-card:hover:before, .service-iner-card:hover:after {
  width: 100%;
  height: 100%;
  opacity: 1;
  visibility: visible;
}
.service-iner-card .icon img {
  width: 50px;
  filter: invert(1);
}
.service-iner-card:hover .icon img {
  filter: invert(0);
}
.projects{
  margin:auto;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(500px,1fr));/*repeat(auto-fit,minmax(300px,1fr))*/
  gap:22px;
  padding-bottom:20px;
}
.projects .card{
  position:relative;
  padding:25px 50px 25px 25px;
  border-radius:25px;
  overflow:hidden;
  background:linear-gradient(160deg,#04142d,#07285a,#0b4ab7);
  box-shadow:0 12px 30px rgba(0,72,255,0.18);
  opacity:0;
  transform:translateY(40px);
  animation:cardAppear .7s forwards;
  transition:0.4s ease;
}
.projects .card:nth-child(2){animation-delay:.1s;}
.projects .card:nth-child(3){animation-delay:.2s;}
.projects .card:nth-child(4){animation-delay:.3s;}
.projects .card:nth-child(5){animation-delay:.4s;}
.projects .card:nth-child(6){animation-delay:.5s;}
@keyframes cardAppear{
  to{
    opacity:1;
    transform:translateY(0);
  }
}
.projects .card::before{
  content:'';
  position:absolute;
  inset:-2px;
  border-radius:28px;
  background:conic-gradient(
      from 0deg,
      #00d9ff,
      transparent,
      #5b8cff,
      transparent,
      #00d9ff
  );
  animation:spin 6s linear infinite;
  z-index:-2;
}
@keyframes spin{
  to{transform:rotate(360deg);}
}
.projects .card::after{
  content:'';
  position:absolute;
  inset:2px;
  border-radius:24px;
  background:linear-gradient(145deg,#04142d,#07285a,#0b4ab7);
  z-index:-1;
}
.projects .card:hover{
  transform:translateY(-8px);
  box-shadow:0 25px 55px rgba(0,140,255,0.25);
}
.projects .number{
  position:absolute;
  top:6px;
  right:8px;
  font-size:3.2rem;
  font-weight:600;
  color:rgba(255,255,255,0.06);
}
.projects .underline{
  width:55px;
  height:3px;
  border-radius:20px;
  margin-bottom:18px;
  background:linear-gradient(90deg,#00e1ff,#5b8cff,#00e1ff);
  background-size:200% auto;
  animation:lineMove 3.5s linear infinite;
}
@keyframes lineMove{
  to{background-position:200% center;}
}
.projects .card h3{
  color:#ffffff;
  font-size:1.2rem;
  margin-bottom:10px;
  font-weight:600;
}
.projects .card p{
  color:#d9e7ff;
  line-height:1.6;
  font-size: 15px;
}
@media(max-width:767px){
    .projects{
      gap:16px;
    }
    .projects .card{
      padding:22px;
    }
    .projects .card h3{
      font-size:1.05rem;
    }
}
.about_wrap .tabs-column { 
  position: relative;
  margin-bottom: 0; 
  padding-left: 0;
}
.about_wrap .tabs-column .inner-column {
  position: relative;
}
.about_wrap .tabs-column .inner-column .image {
  margin-bottom: 0;
}
@media (max-width: 991.98px) {
  .about_wrap .tabs-column .inner-column .image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }
}
.why-us-tabs {
  position: relative;
  counter-reset: count;
}
.why-us-tabs .btn-box {
  position: relative;
  margin-top: -47px;
}
.why-us-tabs .tab-btns {
  position: relative;    
  list-style: none;
  padding: 0px;
  margin: 0px;
}
.why-us-tabs .tab-btns .tab-btn {
  position: relative;
  margin-top: 0;
  padding: 15px 0 15px;/*12px 0 22px*/
  width: 132px;/*169px*/
  height: 47px;
  margin-right: 5px;/*7px*/
  font-size: 14px;/*16px*/
  text-align: center;
  line-height:20px;/* 24px*/
  font-weight: 500;
  display: inline-block;
  cursor: pointer;
  color: #222;
  background-color: #d9ebff;
  letter-spacing: -0.01em;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  z-index: 3;
}
.why-us-tabs .tab-btns .tab-btn:after {
  position: absolute;
  left: 0;
  top: 0;
  width: 0%;
  height: 100%;
  background-color: #144a87;
  content: "";
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  z-index: -1;
}
.why-us-tabs .tab-btns .tab-btn:hover {
  color: var(--blue);
}
.why-us-tabs .tabs-content {
  position: relative;
  padding-top: 40px;
}
.tabs-box .tab {
  display: none;
}
.tabs-box .active-tab {
  display: block;
}
.why-us-tabs .tab-btns .tab-btn.active-btn:after {
  width: 100%;
}
.why-us-tabs .tab-btns .tab-btn.active-btn {
  color: #fff;
}
.integrated_model_section {
  background: var(--blue);
  color: #fff;
}
.integrated_model_section .section-title.text-center h2 {
  color: #fff;
  margin-bottom: 2rem;
}
.integrated_model_section .col-lg-push-6 {
  position: relative;
  left: 50%;
}
.integrated_model_section .col-lg-pull-6 {
  position: relative;
  right: 50%;
}
.integrated_model_section ul.ga-list > li:before {
  color: var(--yellow);
}
.leadership_section {  
  position: relative;
  overflow: hidden;
  padding-bottom: 60px!important;
}
.leadership_section .tag {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 50px;
  background: #dbeafe;
  color: #2563eb;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 15px;
}
.leadership_section .designation {
  font-size: 18px;
  color: #1b4cb9;  /*#2563eb*/
  font-weight: 600;
  margin-bottom: 28px;
}
.leadership_section::before {
  content: '';
  position: absolute;
  right: -120px;
  top: -120px;
  width: 350px;
  height: 350px;
  background: linear-gradient(135deg, #2563eb, #0ea5e9);
  border-radius: 50%;
  opacity: 0.08;
}
.experience-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:22px;
}
.experience-item{
  display:flex;
  align-items:flex-start;
  gap:18px;
  background:var(--lightblue);
  border:1px solid #e5e7eb;
  padding:20px;
  border-radius:18px;
  transition:0.3s ease;
}
.experience-item:hover{
  transform:translateY(-5px);
  background:var(--lightblue);
  box-shadow:0 10px 25px rgba(15,23,42,0.05);
}
.dot{
  width:14px;
  height:14px;
  border-radius:50%;
  background: var(--yellow);
  margin-top:8px;
  flex-shrink:0;
}
.experience-item p{
  color:#fff;
  margin-bottom: 0;
}
@media(max-width:900px){
  .experience-grid{
    grid-template-columns:1fr;
  }
}
@media(max-width:768px){
  .experience-item{
    padding:20px 18px;
  }
}
.core-values{
  padding-bottom: 60px!important;
}
.values-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
  position:relative;
}
.value-card{
  position:relative;
  background:#fff;
  padding:35px 20px;
  border-radius:32px;
  overflow:hidden;
  transition:0.4s ease;
  border:1px solid #e5e7eb;
  box-shadow:0 20px 50px rgba(15,23,42,0.1);
}
.value-card:hover{
  transform:translateY(-10px) scale(1.02);
  box-shadow:0 30px 70px rgba(15,23,42,0.14);
}
.value-card::before{
  content:'';
  position:absolute;
  top:-80px;
  right:-80px;
  width:180px;
  height:180px;
  background:linear-gradient(
    135deg,
    rgba(37,99,235,0.15),
    rgba(14,165,233,0.05)
  );
  border-radius:50%;
}
.value-card .icon-wrap{
  width:72px;
  height:72px;
  border-radius:18px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:linear-gradient(135deg, #11386d, #09619a);/*linear-gradient(135deg,#0b1f3a,#2563eb)*/
  color:#fff;
  font-size:38px;
  margin-bottom:30px;
  position:relative;
  z-index:2;
  box-shadow:0 15px 30px rgba(37,99,235,0.25);
}
.value-card .icon-wrap img{
  width: 55px;
}
.value-card h3{
  font-size:24px;
  color:var(--blue);
  margin-bottom:10PX;
  font-weight:600;
  position:relative;
  z-index:2;
}
.value-card p{
  position:relative;
  z-index:2;
}
@media(max-width:991px){
  .values-grid{
    grid-template-columns:repeat(2,1fr);
  }
  .value-card:nth-child(2),
  .value-card:nth-child(5){
    transform:none;
  }
}
@media(max-width:768px){
  .values-grid {
    grid-template-columns:1fr;
    gap:25px;
  }
  .value-card {
    padding:35px 28px;
  }
  .value-card h3 {
    font-size:26px;
  }
  .value-card .icon-wrap {
    width:78px;
    height:78px;
    font-size:32px;
  }
}

.team_section {
  position: relative;
  overflow: hidden;
}
.team_section .section-title h2 {
  color: var(--blue);
}
.team-wrapper {
  position: relative;
  margin-bottom: 0;
  z-index: 2;
}
.team-ring {
  padding: 8px;
  background: linear-gradient(145deg, #0f4c81, #69c3ff);
  border-radius: 30px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(15, 76, 129, 0.18);
  transition: 0.4s ease;
  /*animation: floatingCard 5s ease-in-out infinite; */
}
.team-ring:hover {
  transform: translateY(-6px);
  /*transform: translateY(-8px) scale(1.02); */
}
@keyframes floatingCard {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-8px);
  }
  100% {
    transform: translateY(0px);
  }
}
.team-ring::before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  top: -30px;
  right: -30px;
}
.team-ring img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
  display: block;
  position: relative;
  z-index: 2;
}
.team_section .col-lg-push-4 {
  left: 66.666667%;
  position: relative;
}
.team_section .col-lg-pull-8 {
  right: 33.333333%;
  position: relative;
}
.team_section_bg {
  background: #f5f5f5;
}