

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Open Sans", sans-serif;
  color: #444444;
}

a {
  color: #ed502e;
  text-decoration: none;
}

a:hover {
  color: #f1775d;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Raleway", sans-serif;
}

@font-face {
    font-family: 'black_ocean_threeregular';
    src: url('../fonts/black_ocean_three-webfont.woff2') format('woff2'),
         url('../fonts/black_ocean_three-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}
ol, ul {
    padding-left: 0;
}
/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ed502e;
  border-top-color: white;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #00a3bd;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #f06f54;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  background: #fff;
  transition: all 0.5s;
  z-index: 997;
  padding: 5px 0;
}

#header.header-scrolled {
  padding: 12px 0;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#header .logo {
  font-size: 26px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

#header .logo a {
  color: #0b2341;
}

#header .logo img {
  max-height: 80px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-size: 18px;
  color: #0087d4;
  white-space: nowrap;
  transition: 0.3s;
  font-weight: 600;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: #00bbfe;
}

.navbar .getstarted,
.navbar .getstarted:focus {
  background: #ed502e;
  padding: 8px 20px;
  margin-left: 30px;
  border-radius: 4px;
  color: #fff;
}

.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
  color: #fff;
  background: #ef6445;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  text-transform: none;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: #ed502e;
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}
.top-nav .scrollto::after {
  background: url(../img/menuside.png) center no-repeat;
  background-size: cover;
  position: absolute;
  content: "";
  top: 17px;
  right: -24px;
  z-index: 9999;
  width: 15px;
  height: 12px;
}
.top-nav ul li.right_img::after { position: absolute;content: "";display: none;}

.card-height{
   height:100%; 
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #0b2341;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(4, 12, 21, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #0b2341;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #ed502e;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: #ed502e;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 96vh;
  background-color: rgba(4, 12, 21, 0.8);
  overflow: hidden;
  position: relative;
}

#hero .carousel,
#hero .carousel-inner,
#hero .carousel-item,
#hero .carousel-item::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}

#hero .carousel-item {
  background-size: auto;
  background-position: top center;
  background-repeat: no-repeat;
}

#hero .carousel-item::before {
  content: "";
  /*background-color: rgba(4, 12, 21, 0.5);*/
}

#hero .carousel-container {
  display: flex;
  align-items: center;
  position: absolute;
  bottom: 0;
  top: 82px;
  left: 100px;
  right: 50px;
  width:50%;
}

#hero h2 {
    color: #00c7d4;
    margin: 0;
    font-size: 45px;
    font-weight: 400;
    font-family: 'black_ocean_threeregular';
    letter-spacing: 4px;
}

#hero p {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
  color: #fff;
  margin-top: 0px;
  font-size: 27px;
  line-height: 35px;
}

@media (min-width: 1200px) {
  #hero p {
    width: 50%;
  }
}

#hero .carousel-inner .carousel-item {
  transition-property: opacity;
  background-position: center top;
}

#hero .carousel-inner .carousel-item,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
  opacity: 0;
}

#hero .carousel-inner .active,
#hero .carousel-inner .carousel-item-next.carousel-item-start,
#hero .carousel-inner .carousel-item-prev.carousel-item-end {
  opacity: 1;
  transition: 0.5s;
}

#hero .carousel-inner .carousel-item-next,
#hero .carousel-inner .carousel-item-prev,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
  left: 0;
  transform: translate3d(0, 0, 0);
}

#hero .carousel-control-next-icon,
#hero .carousel-control-prev-icon {
  background: none;
  font-size: 30px;
  line-height: 0;
  width: auto;
  height: auto;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  transition: 0.3s;
  color: rgba(255, 255, 255, 0.5);
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#hero .carousel-control-next-icon:hover,
#hero .carousel-control-prev-icon:hover {
  background: rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.8);
}

#hero .carousel-indicators li {
  cursor: pointer;
  background: #fff;
  overflow: hidden;
  border: 0;
  width: 12px;
  height: 12px;
  border-radius: 50px;
  opacity: 0.6;
  transition: 0.3s;
}

#hero .carousel-indicators li.active {
  opacity: 1;
  background: #ed502e;
}

#hero .btn-get-started {
  font-family: "Raleway", sans-serif;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 32px;
    border-radius: 4px;
    transition: 0.5s;
    line-height: 1;
    color: #000;
    -webkit-animation-delay: 0.8s;
    animation-delay: 0.8s;
    background: linear-gradient(to right, #00b0fd , #00f3ff);
    margin-top: 15px;
}

#hero .btn-get-started:hover {
  background: #ef6445;
}

@media (max-width: 992px) {
  

  #hero .carousel-container {
    text-align: center;
    top: 74px;
  }
}

@media (max-width: 768px) {
  #hero h2 {
    font-size: 30px;
  }
 
}

@media (min-width: 1024px) {

  #hero .carousel-control-prev,
  #hero .carousel-control-next {
    width: 5%;
  }
}

@media (max-height: 500px) {
  #hero {
    height: 120vh;
  }
 .card-height{
   height:400px!important; 
}
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
}

.section-bg {
  /* background-color: #f6f9fd; */
  background-image:linear-gradient(to right, #00b2fe , #00f5ff);
  background-size: cover;

}

.section-title {
  padding-bottom:35px;
}

.section-title h2 {
  font-size: 31px;
    font-weight: 600;
    padding: 0;
    margin-bottom: 40px !important;
    text-align: center;
    line-height: 1px;
    margin: 0 0 5px 0;
    letter-spacing: 2px;
    text-transform: capitalize;
    color: #ffffff;
    font-family: "Poppins", sans-serif;
}

.section-title h2::after {
  content: "";
  width: 55px;
  height: 2px;
  display: inline-block;
  background: #ffffff;
  margin: 4px 10px;
  top: 17px;
  position: relative;
  right: 12%;
}

.section-title p {
  margin: 0;
  margin: 0;
  font-size: 20px;
  font-weight: 400;
/*  text-transform: capitalize;*/
  font-family: "Poppins", sans-serif;
  color: #ffffff;
  text-align: center;
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/

.about {
    background-image: url(../img/images/about_bg.png);
    background-repeat: no-repeat;
    background-position: top;
    position: relative;
    margin-top: -55px;
    z-index: 99;
    height: auto;
/*    background-size: 100%;*/
}
.about .content h3 {
  font-weight: 500;
  font-size: 105px;
  font-family: 'black_ocean_threeregular';
  text-align: center;
  padding-right: 73px;
  color: #fff;
}

.about .content h5 {
  font-size: 30px;
  color: #fff;
  padding: 0px 125px;
  /* float: right; */
  font-weight: 600;
  text-align: left;
}

.about .content p {
font-size: 20px;
    color: #fff;
    text-align: justify;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding-left: 28px;
  position: relative;
}

.about .content ul li+li {
  margin-top: 10px;
}

.about .content ul i {
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 20px;
  color: #ed502e;
  line-height: 1;
}

.about .content p:last-child {
  margin-bottom: 0;
}

.about .content .btn-learn-more {
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 5px;
  transition: 0.3s;
  line-height: 1;
  color: #ed502e;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  margin-top: 6px;
  border: 2px solid #ed502e;
}

.about .content .btn-learn-more:hover {
  background: #ed502e;
  color: #fff;
  text-decoration: none;
}

.bubbles{
  width: 100%;
  height: 100%;
  position: absolute;
  z-index:0;
  overflow:hidden;
  top: 25px;
  left: 0;
}
.bubble{
  position: absolute;
  bottom: -100px;
  background-color: #0af593;
  border-radius:50%;
  opacity:0.5;
  animation:fly 15s ease-in-out infinite;
}
.bubble:nth-child(1){
  left: 1%;
  height: 40px;
  width: 40px;
  animation-duration:8s;
  
}
.bubble:nth-child(2){
  left: 10%;
  height: 20px;
  width: 20px;
  animation-duration:10s;
  animation-delay:1s;
}
.bubble:nth-child(3){
  left: 15%;
  height: 30px;
  width: 30px;
  animation-duration:6s;
  animation-delay:2s;
}
.bubble:nth-child(4){
  left: 30%;
  height: 60px;
  width: 60px;
  animation-duration:12s;
  animation-delay:5s;
}
.bubble:nth-child(5){
  left: 40%;
  height: 30px;
  width: 30px;
  animation-duration:9s;
  animation-delay:0;
}
.bubble:nth-child(6){
  left: 50%;
  height: 15px;
  width: 15px;
  animation-duration:13s;
  animation-delay:8s;
}
.bubble:nth-child(7){
  left: 55%;
  height: 60px;
  width: 60px;
  animation-duration:10s;
  animation-delay:0;
}
.bubble:nth-child(8){
  left: 60%;
  height: 10px;
  width: 10px;
  animation-duration:14s;
  animation-delay:5s;
}
.bubble:nth-child(9){
  left: 65%;
  height: 20px;
  width: 20px;
  animation-duration:10s;
  animation-delay:3s;
}
.bubble:nth-child(10){
  left: 70%;
  height: 55px;
  width: 55px;
  animation-duration:7s;
  animation-delay:11s;
}
.bubble:nth-child(11){
  left: 80%;
  height: 33px;
  width: 33px;
  animation-duration:4s;
  animation-delay:15s;
}
.bubble:nth-child(12){
  left: 90%;
  height: 24px;
  width: 24px;
  animation-duration:8s;
  animation-delay:5s;
}
.bubble:nth-child(13){
  left: 95%;
  height: 20px;
  width: 20px;
  animation-duration:9s;
  animation-delay:4s;
}
.bubble:nth-child(14){
  left: 25%;
  height: 28px;
  width: 28px;
  animation-duration:17s;
  animation-delay:0s;
}
.bubble:nth-child(15){
  left: 20%;
  height: 20px;
  width: 20px;
  animation-duration:14s;
  animation-delay:1s;
}

@keyframes fly{
  0%{
    bottom: -200px;
    transform:translateX(0);
  }
  50%{
    transform:translateX(100px);
  }
  
  100%{
    bottom: 1080px;
    transform:translateX(-200px);
  }
  
  
}


/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.counts {
  padding-top: 0;
}

.counts .count-box {
  box-shadow: -10px -5px 40px 0 rgba(0, 0, 0, 0.1);
  padding: 30px;
  width: 100%;
}

.counts .count-box i {
  display: block;
  font-size: 30px;
  color: #ed502e;
  float: left;
}

.counts .count-box span {
  font-size: 42px;
  line-height: 24px;
  display: block;
  font-weight: 700;
  color: #0b2341;
  margin-left: 50px;
}

.counts .count-box p {
  padding: 30px 0 0 0;
  margin: 0;
  font-family: "Raleway", sans-serif;
  font-size: 14px;
}

.counts .count-box a {
  font-weight: 600;
  display: block;
  margin-top: 20px;
  color: #164682;
  font-size: 15px;
  font-family: "Poppins", sans-serif;
  transition: ease-in-out 0.3s;
}

.counts .count-box a:hover {
  color: #2169c4;
}

/*--------------------------------------------------------------
# Why Us
--------------------------------------------------------------*/
.why-us {
  padding: 0;
}

.why-us .content {
  padding: 60px 100px 0 100px;
}

.why-us .content h3 {
  font-weight: 400;
  font-size: 34px;
  color: #123a6d;
}

.why-us .content h4 {
  font-size: 20px;
  font-weight: 700;
  margin-top: 5px;
}

.why-us .content p {
  font-size: 15px;
  color: #848484;
}

.why-us .video-box {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  min-height: 400px;
  position: relative;
}

.why-us .accordion-list {
  padding-top: 45px;
}

.why-us .accordion-list ul {
  padding: 0;
  list-style: none;
}

.why-us .accordion-list li+li {
  margin-top: 15px;
}

.why-us .accordion-list li {
  padding: 20px;
  /*background: linear-gradient(to right, #0ecfe9 , #c9ebda);*/
  background: linear-gradient(to right, #9cd9e1 , #c9ebda);
  border-radius: 4px;
  position: relative;
}

.why-us .accordion-list a {
  display: block;
  position: relative;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  padding-right: 30px;
  outline: none;
  color: #0b2341;
  cursor: pointer;
}

.why-us .accordion-list span {
  color: #006db5;
  font-weight: 600;
  font-size: 18px;
  padding-right: 10px;
}

.why-us .accordion-list i {
  font-size: 24px;
  position: absolute;
  right: 0;
  top: 0;
}

.why-us .accordion-list p {
  margin-bottom: 0;
  padding: 10px 0 0 0;
}

.why-us .accordion-list .icon-show {
  display: none;
}

.why-us .accordion-list a.collapsed {
  color: #0b2341;
}

.why-us .accordion-list a.collapsed:hover {
  color: #006db5;
}

.why-us .accordion-list a.collapsed .icon-show {
  display: inline-block;
}

.why-us .accordion-list a.collapsed .icon-close {
  display: none;
}

.why-us .play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(#ed502e 50%, rgba(237, 80, 46, 0.4) 52%);
  border-radius: 50%;
  display: block;
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
  overflow: hidden;
}

.why-us .play-btn::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.why-us .play-btn::before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
  -webkit-animation: pulsate-btn 2s;
  animation: pulsate-btn 2s;
  -webkit-animation-direction: forwards;
  animation-direction: forwards;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: steps;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid rgba(237, 80, 46, 0.7);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.why-us .play-btn:hover::after {
  border-left: 15px solid #ed502e;
  transform: scale(20);
}

.why-us .play-btn:hover::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  -webkit-animation: none;
  animation: none;
  border-radius: 0;
}

@media (max-width: 1024px) {

  .why-us .content,
  .why-us .accordion-list {
    padding-left: 0;
    padding-right: 0;
  }
}

@media (max-width: 992px) {
  .why-us .content {
    padding-top: 30px;
  }

  .why-us .accordion-list {
    padding-bottom: 30px;
  }
}

@-webkit-keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

@keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}


/*--------------------------------------------------------------
# FAQ
--------------------------------------------------------------*/
.why-us {
  padding: 0;
}

.why-us .content {
  padding: 60px 100px 0 100px;
}

.why-us .content h3 {
  font-weight: 400;
  font-size: 34px;
  color: #123a6d;
}

.why-us .content h4 {
  font-size: 20px;
  font-weight: 700;
  margin-top: 5px;
}

.why-us .content p {
  font-size: 15px;
  color: #848484;
}

.why-us .video-box {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  min-height: 400px;
  position: relative;
}

.why-us .accordion-list-faq {
  padding-top: 20px;
}

.why-us .accordion-list-faq ul {
  padding: 0;
  list-style: none;
}

.why-us .accordion-list-faq li+li {
  margin-top: 15px;
}

.why-us .accordion-list-faq li {
  padding: 20px;
  /*background: linear-gradient(to right, #0ecfe9 , #c9ebda);*/
  background: linear-gradient(to right, #9cd9e1 , #c9ebda);
  border-radius: 4px;
  position: relative;
}

.why-us .accordion-list-faq a {
  display: block;
  position: relative;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  padding-right: 30px;
  outline: none;
  color: #0b2341;
  cursor: pointer;
}

.why-us .accordion-list-faq span {
  color: #006db5;
  font-weight: 600;
  font-size: 18px;
  padding-right: 10px;
}

.why-us .accordion-list-faq i {
  font-size: 24px;
  position: absolute;
  right: 0;
  top: 0;
}

.why-us .accordion-list-faq p {
  margin-bottom: 0;
  padding: 10px 0 0 0;
}

.why-us .accordion-list-faq .icon-show {
  display: none;
}

.why-us .accordion-list-faq a.collapsed {
  color: #0b2341;
}

.why-us .accordion-list-faq a.collapsed:hover {
  color: #006db5;
}

.why-us .accordion-list-faq a.collapsed .icon-show {
  display: inline-block;
}

.why-us .accordion-list-faq a.collapsed .icon-close {
  display: none;
}

.why-us .play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(#ed502e 50%, rgba(237, 80, 46, 0.4) 52%);
  border-radius: 50%;
  display: block;
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
  overflow: hidden;
}

.why-us .play-btn::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.why-us .play-btn::before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
  -webkit-animation: pulsate-btn 2s;
  animation: pulsate-btn 2s;
  -webkit-animation-direction: forwards;
  animation-direction: forwards;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: steps;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid rgba(237, 80, 46, 0.7);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.why-us .play-btn:hover::after {
  border-left: 15px solid #ed502e;
  transform: scale(20);
}

.why-us .play-btn:hover::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  -webkit-animation: none;
  animation: none;
  border-radius: 0;
}

@media (max-width: 1024px) {

  .why-us .content,
  .why-us .accordion-list-faq {
    padding-left: 0;
    padding-right: 0;
  }
}

@media (max-width: 992px) {
  .why-us .content {
    padding-top: 30px;
  }

  .why-us .accordion-list-faq {
    padding-bottom: 30px;
  }
}

@-webkit-keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

@keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
  text-align: center;
  background: #fefefe;
  box-shadow: 0px 5px 90px 0px rgba(110, 123, 131, 0.1);
  padding: 80px 20px;
  transition: all ease-in-out 0.3s;
}

.services .icon-box .icon {
  margin: 0 auto;
  width: 64px;
  height: 64px;
  background: #ed502e;
  border-radius: 5px;
  transition: all 0.3s ease-out 0s;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transform-style: preserve-3d;
  position: relative;
  z-index: 2;
}

.services .icon-box .icon i {
  color: #fff;
  font-size: 28px;
}

.services .icon-box .icon::before {
  position: absolute;
  content: "";
  left: -8px;
  top: -8px;
  height: 100%;
  width: 100%;
  background: #f9c6bb;
  border-radius: 5px;
  transition: all 0.3s ease-out 0s;
  transform: translateZ(-1px);
  z-index: 1;
}

.services .icon-box h4 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 24px;
}

.services .icon-box h4 a {
  color: #0b2341;
}

.services .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.services .icon-box:hover {
  background: #ed502e;
  border-color: #ed502e;
}

.services .icon-box:hover .icon {
  background: #fff;
}

.services .icon-box:hover .icon i {
  color: #ed502e;
}

.services .icon-box:hover .icon::before {
  background: #f1775d;
}

.services .icon-box:hover h4 a,
.services .icon-box:hover p {
  color: #fff;
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials .testimonial-wrap {
  /* padding-left: 90px; */
  width: 450px;
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}
.testimonials-slider{
  /* justify-content: center;
  display: grid; */
}

.testimonials .testimonial-item {
  box-sizing: content-box;
  padding: 30px 30px 30px 31px;
  margin: 30px 15px;
  min-height: 250px;
  box-shadow: 0px 0px 20px 0px rgb(11 35 65 / 10%);
  position: relative;
  background: #fff;
}
.testimonials-slider{
  padding-top: 45px;
  justify-content: center;
}
.testimonials .testimonial-item .testimonial-img {
    width: 130px;
    border-radius: 10px;
    border: 10px solid #fff;
    border-radius: 50%;
    position: absolute;
    left: 0;
    right: 0;
    top: -62px;
    margin-left: auto;
    margin-right: auto;
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #111;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #999;
  margin: 0;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: #fdedea;
  font-size: 26px;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 45px auto 15px auto;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #0aab50;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #0aab50;
}

/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/
.cta {
  padding: 80px 0;
  background: #0b2341;
}

.cta h3 {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
}

.cta p {
  color: #fff;
}

.cta .cta-btn {
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 35px;
  border-radius: 4px;
  transition: 0.5s;
  margin-top: 10px;
  border: 2px solid #ed502e;
  color: #fff;
}

.cta .cta-btn:hover {
  background: #ed502e;
  border: 2px solid #ed502e;
}

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio #portfolio-flters {
  padding: 0;
  margin: 0 auto 25px auto;
  list-style: none;
  text-align: center;
  border-radius: 50px;
}

.portfolio #portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 10px 15px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  color: #0b2341;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}

.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
  color: #ed502e;
}

.portfolio #portfolio-flters li:last-child {
  margin-right: 0;
}

.portfolio .portfolio-item {
  margin-bottom: 30px;
}

.portfolio .portfolio-item .portfolio-info {
  opacity: 0;
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 0;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  background: rgba(255, 255, 255, 0.9);
  padding: 15px;
}

.portfolio .portfolio-item .portfolio-info h4 {
  font-size: 18px;
  color: #fff;
  font-weight: 600;
  color: #0b2341;
}

.portfolio .portfolio-item .portfolio-info p {
  color: #1a5298;
  font-size: 14px;
  margin-bottom: 0;
}

.portfolio .portfolio-item .portfolio-info .preview-link,
.portfolio .portfolio-item .portfolio-info .details-link {
  position: absolute;
  right: 40px;
  font-size: 24px;
  top: calc(50% - 18px);
  color: #123a6d;
}

.portfolio .portfolio-item .portfolio-info .preview-link:hover,
.portfolio .portfolio-item .portfolio-info .details-link:hover {
  color: #ed502e;
}

.portfolio .portfolio-item .portfolio-info .details-link {
  right: 10px;
}

.portfolio .portfolio-item .portfolio-links {
  opacity: 0;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 3;
  position: absolute;
  transition: all ease-in-out 0.3s;
}

.portfolio .portfolio-item .portfolio-links a {
  color: #fff;
  margin: 0 2px;
  font-size: 28px;
  display: inline-block;
  transition: 0.3s;
}

.portfolio .portfolio-item .portfolio-links a:hover {
  color: #f59f8c;
}

.portfolio .portfolio-item:hover .portfolio-info {
  opacity: 1;
  bottom: 20px;
}

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
  padding-top: 40px;
}

.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #ed502e;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #ed502e;
}

.portfolio-details .portfolio-info {
  padding: 30px;
  box-shadow: 0px 0 30px rgba(11, 35, 65, 0.08);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li+li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
}

/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/

.team{
  padding: 20px 0px;
}
.team .member {
  text-align: center;
  margin-bottom: 20px;
  background: #343a40;
  position: relative;
  overflow: hidden;
}

.team .member .member-info {
  opacity: 0;
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  transition: 0.2s;
}

.team .member .member-info-content {
  position: absolute;
  left: 50px;
  right: 0;
  bottom: 0;
  transition: bottom 0.4s;
}

.team .member .member-info-content h4 {
  font-weight: 700;
  margin-bottom: 2px;
  font-size: 18px;
  color: #fff;
}

.team .member .member-info-content span {
  font-style: italic;
  display: block;
  font-size: 13px;
  color: #fff;
}

.team .member .social {
  position: absolute;
  left: -50px;
  top: 0;
  bottom: 0;
  width: 50px;
  transition: left ease-in-out 0.3s;
  background: rgb(0 109 181 / 67%);;
  text-align: center;
}

.team .member .social a {
  transition: color 0.3s;
  display: block;
  color: #fff;
  margin-top: 15px;
}

.team .member .social a:hover {
  color: #3a3a3c;
}

.team .member .social i {
  font-size: 18px;
  margin: 0 2px;
}

.team .member:hover .member-info {
  /*background: linear-gradient(0deg, rgba(11, 35, 65, 0.9) 0%, rgba(11, 35, 65, 0.8) 20%, rgba(0, 212, 255, 0) 100%);*/
  opacity: 1;
      background: linear-gradient(0deg, rgb(0 109 181) 0%, rgb(11 35 65 / 82%) 20%, rgba(0, 212, 255, 0) 100%);
  transition: 0.4s;
}

.team .member:hover .member-info-content {
  bottom: 30px;
  transition: bottom 0.4s;
}

.team .member:hover .social {
  left: 0;
  transition: left ease-in-out 0.3s;
}
.thought_wrapper .leadership_card h5{
  font-weight: 500;
  font-size: 30px;
  color: #01cbf6;
}
.thought_wrapper .leadership_card p{
  text-align: justify;
}
.thought_wrapper .leadership_card h5 span{
    color: #006db4;
    font-size: 17px;
    margin-left: 15px;
  }
.thought_wrapper .leadership_card img{
  border-radius: 20px;
}
.thought_wrapper .leadership_card{
  box-shadow: 0px 0px 4px 0px grey;
  display: flex;
  align-items: center;
  border-radius: 20px;
  margin-top: 20px;
}

.thought_wrapper .leadership_card .btn-red-more {
    /*font-family: "Raleway", sans-serif;*/
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 8px 32px;
    border-radius: 5px;
    transition: 0.3s;
    line-height: 1;
    color: #fff;
    -webkit-animation-delay: 0.8s;
    animation-delay: 0.8s;
    margin-top: 6px;
    background-color: #00b7f6;
     border: 2px solid #00b7f6; 
    text-transform: uppercase;
    float: right;
    margin-right: 20px;
    
}
.thought_wrapper .leadership_card .btn-red-more:hover {
background-color: #fff;
color: #000;
border: 2px solid #00b7f6;
  }

.thought_wrapper .circle-img{
            height: 300px;
            width: 300px;
            /* overflow: hidden; */
            /* border-left: 6px solid #02934f; */
            
            position: relative;
            border-radius: 50%;
            /* margin: auto; */
            padding: 5px;
            z-index: 3;
            background-color: #ffffff;
           }
.thought_wrapper .circle-img::before {
                   position: absolute;
                    content: " ";
                    height: 100px;
                    width: 100px;
                    bottom: -28px;
                    right: 43px;
                    border-radius: 13px;
                    opacity: 0.3;
                    background: #00924e;
                    z-index: -1;
            }
.thought_wrapper .circle-img::after {
               position: absolute;
                content: " ";
                height: 100px;
                width: 100px;
                bottom: 16px;
                right: -5px;
                border-radius: 13px;
                opacity: 0.3;
                background: #00ab9d;
                z-index: -2;
            }
.thought_wrapper .circle-img img {
    border-radius: 5%;
    /* background: #8cc53f; */
    border: 10px solid rgb(0 194 221 / 47%);
}
           
.thought_wrapper .leader-background{
                display: flex;
                flex-wrap: wrap;
                /* background: linear-gradient(208deg, #518CBB 0%, #51DC8D 100%); */
                justify-content: center;
                align-items: center;
                padding: 40px;
                border-radius: 40px;
                margin-top: 10px;
                position: relative;
                border-bottom:0.5px solid #006db5;
                padding-bottom:65px;
           }
           /* .leader-background::before{
            position: absolute;
            content:"";
            background: url(https://e-merald.com/themes/transvision-wp/wp-content/themes/transvision/images/backgrounds/dashed-curve.svg);
            top : -12px;
            left:-10px;
           } */
           /* .leader-background:hover{
                background: #00ab9d;
                transition: 0.4s ease-in-out;
           } */
.thought_wrapper  .leader_detail{
                margin-inline: 65px;
                /* text-align: left; */

            }
.thought_wrapper .opposite .leader_detail{
                margin-inline: 65px;
                /* text-align: right; */
            }
           .leader_detail p{
            color: grey;
            font-size: 18px;
            margin: auto;
            text-align: justify;
           }
.thought_wrapper .opposite{
                flex-direction: row-reverse;
           }
           /* .opposite:hover{
                background: #009245;
                transition: 0.4s ease-in-out;
           } */
.thought_wrapper .name{
            color: #006db5;
            margin-block: 0;
            padding-block: 0px;
            line-height: 30px;
            font-size: 25px;
            display:inline;
            text-transform: uppercase;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
           }
.thought_wrapper .opposite .leader_detail .desig,
           .leader_detail .desig {
                color: #00c2dd;
                margin-block: 0;
                padding-block: 0px;
                font-size:15px;
/*                margin-top:10px;*/
                /* line-height: 28px; */
           }
           .thought_wrapper .leader_detail ul li {
            font-size: 16px;
            margin-top: 10px;
            display: -webkit-box;
            -webkit-line-clamp: 4;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        .h-300{
          height:300px;
        }
 @media(max-width:991px){
.thought_wrapper .leader_detail {
                margin-inline: 0px;
                text-align: left;
                margin-top: 56px;
            }
.thought_wrapper .opposite .leader_detail {
            margin-inline: 0px;
                 }
.thought_wrapper .name , .desig{
               margin:0px 16px;
            }
.thought_wrapper .opposite .leader_detail .desig, .leader_detail .desig {
    margin: 0px 16px;
}
.leader_detail p {
    margin: 0px 16px;
}
           }
.thought_wrapper .leader_heading{
            text-transform:uppercase;
            text-align:center;
            color:green;
            margin-top:25px;
           }
           
          
           
          .thought_wrapper .green_text{
            color: #6c757d;
            font-size: 35px;
        }
        
        
       .thought_wrapper .social_link{
            display:inline;
            margin-left:10px;
        }
       .thought_wrapper .social_link a{
            margin-inline: 1px;
    font-size: 20px;
    border-radius: 50%;
    padding: 6px;
    background: rgb(211 211 211 / 30%);
        
            /* display:inline; */
        }



/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/
.pricing .row {
  padding-top: 40px;
}

.pricing .box {
  padding: 80px 40px;
  margin-bottom: 30px;
  box-shadow: 0px 5px 90px 0px rgba(110, 123, 131, 0.1);
  background: #fff;
  text-align: center;
}

.pricing h3 {
  font-weight: 300;
  margin-bottom: 15px;
  font-size: 28px;
}

.pricing h4 {
  font-size: 46px;
  color: #0b2341;
  font-weight: 400;
  font-family: "Open Sans", sans-serif;
  margin-bottom: 25px;
}

.pricing h4 span {
  color: #bababa;
  font-size: 18px;
  display: block;
}

.pricing ul {
  padding: 0;
  list-style: none;
  color: #999;
  text-align: left;
  line-height: 20px;
}

.pricing ul li {
  padding-bottom: 12px;
}

.pricing ul i {
  color: #ed502e;
  font-size: 18px;
  padding-right: 4px;
}

.pricing ul .na {
  color: #ccc;
}

.pricing ul .na i {
  color: #ccc;
}

.pricing ul .na span {
  text-decoration: line-through;
}

.pricing .get-started-btn {
  display: inline-block;
  padding: 10px 40px 11px 40px;
  border-radius: 4px;
  color: #0b2341;
  transition: none;
  font-size: 14px;
  font-weight: 600;
  transition: 0.3s;
  border: 2px solid #0b2341;
  background: #fff;
}

.pricing .get-started-btn:hover {
  background: #0b2341;
  color: #fff;
}

.pricing .featured {
  z-index: 10;
  padding: 100px 40px;
  border: 4px solid #ed502e;
}

.pricing .featured .get-started-btn {
  background: #ed502e;
  color: #fff;
  border-color: #ed502e;
}

.pricing .featured .get-started-btn:hover {
  background: #ef6445;
}

@media (max-width: 992px) {
  .pricing .box {
    max-width: 60%;
    margin: 0 auto 30px auto;
  }
}

@media (max-width: 767px) {
  .pricing .box {
    max-width: 80%;
    margin: 0 auto 30px auto;
  }
}

@media (max-width: 420px) {
  .pricing .box {
    max-width: 100%;
    margin: 0 auto 30px auto;
  }
}

/*--------------------------------------------------------------
# Frequently Asked Questions
--------------------------------------------------------------*/
.faq .faq-item {
  margin: 20px 0;
  padding: 20px 0;
  border-bottom: 1px solid #e9f1fb;
}

.faq .faq-item i {
  color: #669ee5;
  font-size: 20px;
  float: left;
  line-height: 0;
  padding: 13px 0 0 0;
  margin: 0;
}

.faq .faq-item h4 {
  font-size: 16px;
  line-height: 26px;
  font-weight: 500;
  margin: 0 0 10px 28px;
  font-family: "Poppins", sans-serif;
}

.faq .faq-item p {
  font-size: 15px;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info-box {
  color: #0b2341;
  text-align: center;
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
  padding: 20px 0 30px 0;
  background: #fff;
  height: 182px;
}

/*.contact .info-box i {
  font-size: 32px;
  color: #ed502e;
  border-radius: 50%;
  padding: 8px;
  border: 2px dotted #fbdad2;
}*/

.contact .info-box i {
    font-size: 32px;
    color: #00c2dd;
    border-radius: 50%;
    padding: 8px;
    border: 2px dotted #006db5;
}

.contact .info-box h3 {
  font-size: 20px;
  color: #777777;
  font-weight: 700;
  margin: 10px 0;
}

.contact .info-box p {
  padding: 0;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.contact .info-box p a{
    color: #777777;
}

.contact .info-box p a:hover{
    color: #00caf6;
}

.contact .php-email-form {
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
  padding: 30px;
  background: #fff;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br+br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  border-radius: 4px;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
  border-color: #00bbff;
}

.contact .php-email-form input {
  padding: 10px 15px;
}

.contact .php-email-form textarea {
  padding: 12px 15px;
}

.contact .php-email-form button[type=submit] {
  background: #ed502e;
  border: 0;
  padding: 10px 30px;
  border-radius: 4px;
  color: #fff;
  transition: 0.4s;
}

.contact .php-email-form button[type=submit]:hover {
  background: #ef6445;
}

@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background: #f6f9fd;
  min-height: 40px;
  margin-top: 82px;
}

@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 74px;
  }
}

.breadcrumbs h2 {
  font-size: 28px;
  font-weight: 600;
  color: #0b2341;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0 0 10px 0;
  margin: 0;
  font-size: 14px;
}

.breadcrumbs ol li+li {
  padding-left: 10px;
}

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #123a6d;
  content: "/";
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #ffffff;
    padding: 0 0 0px 0;
    color: #201f1f;
    font-size: 14px;
}

#footer .footer-top {
  padding: 60px 0 30px 0;
}

#footer .footer-top .footer-info {
  margin-bottom: 15px;
    /* background: #05101e; */
    /* border-top: 4px solid #ed502e; */
    /* text-align: center; */
    /*padding: 30px 20px;*/
}

#footer .footer-top .footer-info h3 {
  font-size: 24px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
}

#footer .footer-top .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Poppins", sans-serif;
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  color: #fff!important;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 4px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
  background: #00b2fe;
}

#footer .footer-top .social-links a:hover {
  color: #fff;
  background: #006db5;
  text-decoration: none;
}
#footer .footer-top .social-links a i{
  color: #fff!important;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: 600;
  color: #1f1f1f;
  position: relative;
  padding-bottom: 12px;
  font-family: "Poppins", sans-serif;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #0087d4;
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li img {
  padding-right: 2px;
  color: #0087d4;
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  white-space: nowrap;
  padding: 6px 0;
  display: flex;
  align-items: baseline;
  font-family: "Poppins", sans-serif;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #201f1f;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  color: #0087d4;
}

#footer .footer-top .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 4px;
}

#footer .footer-top .footer-newsletter form input[type=email] {
  border: 0;
  padding: 4px;
  width: calc(100% - 110px);
}

#footer .footer-top .footer-newsletter form input[type=submit] {
  position: absolute;
  top: 0;
  right: -2px;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px 2px 20px;
  background: #ed502e;
  color: #fff;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
}

#footer .footer-top .footer-newsletter form input[type=submit]:hover {
  background: #0087d4;
}
.designed_by{float: right;}
#footer .copyright {
  /* border-top: 1px solid #0f2f57; */
  text-align: center;
  padding-top: 10px;
}
#footer .copyright p{
  margin-bottom: 0px;
  /* text-align: left; */
  font-size: 15px;
  font-weight: 600;
}
#footer .credits {
  padding-top: 10px;
  text-align: center;
  font-size: 13px;
  color: #fff;
}
.designed_by a{color:#fff;}
.footer_bg{
  background: #00cae7;
    color: #fff;
    /* padding: 5px 0px; */
    height: 46px;
    line-height: 32px;
   
}

@media (max-width: 575px) {
  #footer .footer-top .footer-info {
    margin: -20px 0 30px 0;
  }
}


/*waves*/

.hero-waves {
  display: block;
  width: 100%;
  height: 90px;
  position: absolute;
  z-index: 99;
  bottom: 3px;
}

.wave1 use {
  -webkit-animation: move-forever1 10s linear infinite;
  animation: move-forever1 10s linear infinite;
  -webkit-animation-delay: -2s;
  animation-delay: -2s;
}

.wave2 use {
  -webkit-animation: move-forever2 8s linear infinite;
  animation: move-forever2 8s linear infinite;
  -webkit-animation-delay: -2s;
  animation-delay: -2s;
}

.wave3 use {
  -webkit-animation: move-forever3 6s linear infinite;
  animation: move-forever3 6s linear infinite;
  -webkit-animation-delay: -2s;
  animation-delay: -2s;
}

@-webkit-keyframes move-forever1 {
  0% {
    transform: translate(85px, 0%);
  }

  100% {
    transform: translate(-90px, 0%);
  }
}

@keyframes move-forever1 {
  0% {
    transform: translate(85px, 0%);
  }

  100% {
    transform: translate(-90px, 0%);
  }
}

@-webkit-keyframes move-forever2 {
  0% {
    transform: translate(-90px, 0%);
  }

  100% {
    transform: translate(85px, 0%);
  }
}

@keyframes move-forever2 {
  0% {
    transform: translate(-90px, 0%);
  }

  100% {
    transform: translate(85px, 0%);
  }
}

@-webkit-keyframes move-forever3 {
  0% {
    transform: translate(-90px, 0%);
  }

  100% {
    transform: translate(85px, 0%);
  }
}

@keyframes move-forever3 {
  0% {
    transform: translate(-90px, 0%);
  }

  100% {
    transform: translate(85px, 0%);
  }
}

.about_card{
  background-color: #fff;
  border-radius: 20px;
  border: 1px solid #e1dfda;
  position: relative;
  height: 640px;
}

.numb1::before {
    content: "01";
    position: absolute;
    top: -27px;
    border: 1px solid #fff;
    color: #fff;
    font-size: 25px;
    padding: 2px 5px;
    right: 21px;
    font-weight: 600;
}

.numb2::before {
    content: "02";
    position: absolute;
    top: -27px;
    border: 1px solid #fff;
    color: #fff;
    font-size: 25px;
    padding: 2px 5px;
    right: 21px;
    font-weight: 600;
}
.numb3::before {
    content: "03";
    position: absolute;
    top: -27px;
    border: 1px solid #fff;
    color: #fff;
    font-size: 25px;
    padding: 2px 5px;
    right: 21px;
    font-weight: 600;
}
.numb4::before {
    content: "04";
    position: absolute;
    top: -27px;
    border: 1px solid #fff;
    color: #fff;
    font-size: 25px;
    padding: 2px 5px;
    right: 21px;
    font-weight: 600;
}

.about_card .carrd_inner_img {
    text-align: center;
    padding: 9px 5px 1px 5px;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    background-image: linear-gradient(to bottom right, #6df25d, #00b0fd);
}

.about_card .carrd_inner_img img{
  height: 250px;
  width: 85%;
}

.about_card .inner_card_txt {
    padding: 20px 30px;
    text-align: justify;
}

.btn-learn-more {
    font-family: "Raleway", sans-serif;
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 8px 32px;
    border-radius: 5px;
    transition: 0.3s;
    line-height: 1;
    color: #000;
    -webkit-animation-delay: 0.8s;
    animation-delay: 0.8s;
    margin-top: 6px;
    background-color: #00b7f6;
    /* border: 2px solid #ed502e; */
    text-transform: uppercase;
    position: relative;
    top: -25px;
    left: 20%;
}
 .btn-learn-more:hover {
  background: #fff;
  color: #000;
  text-decoration: none;
   border: 2px solid #00b7f6; 
}

.about_card .carrd_inner_img h5 {
  font-size: 15px;
  text-transform: uppercase;
  height: 45px;
  padding: 6px 8px;
  font-weight: 600;
  margin: 10px 0px;
  margin-bottom: 12px;
  color:#444444;
}

/*--------------------------------------------------------------
facts
--------------------------------------------------------------*/
.facts{
  overflow: hidden;
  padding: 0px 0px;
}
.facts .icon-box {
  text-align: center;
  background: #fefefe;
  box-shadow: 0px 5px 90px 0px rgba(110, 123, 131, 0.1);
  padding: 5px 5px;
  transition: all ease-in-out 0.3s;
  border: 2px solid #fff;
  border-radius: 20px;
   transition: transform .4s;
   margin-top: 0;
}

.facts .icon-box:hover {
   transform: scale(1.1);
}

.facts_txt{
  text-align: justify;
    padding:25px;
    background-color: #02d7fc;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
        height: 300px;
}

.facts .icon-box .icon {
  margin: 0 auto;
  width: 64px;
  height: 64px;
  background: #ed502e;
  border-radius: 5px;
  transition: all 0.3s ease-out 0s;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transform-style: preserve-3d;
  position: relative;
  z-index: 2;
}

.facts .icon-box .icon i {
  color: #fff;
  font-size: 28px;
}

.facts .icon-box .icon::before {
  position: absolute;
  content: "";
  left: -8px;
  top: -8px;
  height: 100%;
  width: 100%;
  background: #f9c6bb;
  border-radius: 5px;
  transition: all 0.3s ease-out 0s;
  transform: translateZ(-1px);
  z-index: 1;
}

.facts .icon-box h4 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 24px;
}

.facts .icon-box h4 a {
  color: #0b2341;
}

.facts .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

/*.facts .icon-box:hover {
  background: #ed502e;
  border-color: #ed502e;
}*/

.facts .icon-box:hover .icon {
  background: #fff;
}

.facts .icon-box:hover .icon i {
  color: #ed502e;
}

.facts .icon-box:hover .icon::before {
  background: #f1775d;
}

.facts .icon-box:hover h4 a,
.facts .icon-box:hover p {
  color: #fff;
}

.facts .section-title_facts h2{
font-weight: 500;
    font-size: 40px;
    
    text-align: center;
    color: #fff;
}

.facts .section-title_facts h2 span{
 font-weight: 500;
    font-size: 100px;
    font-family: 'black_ocean_threeregular';
    text-align: center;
    color: #fff;
}




#rainy-container {
  position: relative;
  top:0;
  left:0;
  right:0;

  height: 100%;
  overflow: hidden;
  
}

.raindrop {
  border-radius: 50%;
  position: absolute;
  top: 0;
  width: 3px;
  height: 1em;
  background: linear-gradient(to bottom, transparent, rgba(50, 50, 250, 0.75));
  animation: raindrop-animation 1s linear infinite;
}

@keyframes raindrop-animation {
  0% {
    transform: translateY(-10vh);
  }
  100% {
    transform: translate(-5vw, 110vh);
  }
}

.facts_pos{
  position: absolute;
    top: 0;
    z-index: 999;
    text-align: center;
    left: 7%;
}

.facts_bx{
  padding: 25px;
}

.facts_bx img{
  width: 170px;
  height: 100px;
}

/*sectorsection*/

.sector{
  padding:40px 0;
}

.sector .sectr_inner_crdd {
    text-align: center;
    background-color: #a4dfff;

}

.sector .sectr_inner_crdd img {
    padding: 20px;
    
}

.sector .sectr_inner_crdd h5 {
     border-top: 4px solid #fff;
     padding: 6px;
    font-size: 18px;
}

.sector .section-title_facts h2{
font-weight: 500;
    font-size: 40px;
    
    text-align: center;
    color: #4dc7f5;
}

.sector .section-title_facts h2 span{
 font-weight: 500;
    font-size: 100px;
    font-family: 'black_ocean_threeregular';
    text-align: center;
    color: #4dc7f5;
}

.certificate .owl-item .item {
  transform: translate3d(0, 0, 0);
    transform: scale(1.2);
   /* transition: all .25s ease-in-out; */
    margin: 52px 71px 51px;
    transition: all .25s ease-in-out;

 }



.certificate .owl-item .item .leader_item {
  -webkit-transition: 0.3s;
  -webkit-box-shadow: 0 5px 10px 0 rgb(0 0 0 / 10%);
  box-shadow: 0 5px 10px 0 rgb(0 0 0 / 45%);
  -o-transition: 0.3s;
  transition: 0.3s;
  background: #00cde9;
  padding: 15px 6px;
  border: 5px solid #fff;
  border-radius: 25px;
  -webkit-transform: scale(0.80);
  -ms-transform: scale(0.80);
  transform: scale(1.1);
    z-index: 1000;
}



  .certificate .owl-item.center .item .leader_item {
      -webkit-transform: scale(1.5);
      -ms-transform: scale(1.7);
      transform: scale(1.5);
      background: #00cae7;
      padding: 15px 5px;
      border-radius: 20px;
      border: 3px solid #fff;
      -webkit-box-shadow: 2px 2px 6px 2px rgb(0 0 0 / 47%);
      box-shadow: 2px 2px 6px 2px rgb(0 0 0 / 47%);

}



.certificate .owl-nav {

    text-align: center;

    margin: 40px 0;

}



.certificate .owl-nav button {

  font-size: 24px !important;

  margin: 10px;

  color: #2196f3  !important;

}

.certificate .owl-item .item .leader_item img {
  -webkit-transition: 0.3s;
  -webkit-box-shadow: 0 5px 10px 0 rgb(0 0 0 / 10%);
  box-shadow: 0 5px 10px 0 rgb(0 0 0 / 44%);
  -o-transition: 0.3s;
  transition: 0.3s;
  border: 5px solid #fff;
  border-radius: 25px;
  background: #00cde9;
  -webkit-transform: scale(0.80);
  -ms-transform: scale(0.80);
  transform: scale(0.9);
  z-index: 1000;
}

.certificate .owl-carousel .owl-drag .owl-item {
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  /* background: #00c8e6; */
  user-select: none;
  /* border-radius: 45px; */
}

.certificate .owl-item.active .item {
  transform: translate3d(0, 0, 0);
  transform: scale(1.1);
  /* transition: all .25s ease-in-out; */
  margin: 90px 44px 90px;
  transition: all .25s ease-in-out;
}
 .certificate button.owl-prev {

    position: absolute!important;

    left: -2%;

    top: 34%;

    color: #fff;

  }



  .certificate button.owl-next {

    position: absolute;

    right: -2%;

    top: 34%;

    color: #fff;

  }

.certificate .owl-carousel .owl-nav button.owl-prev{

  position: absolute;

}

.certificate .center{z-index: 999999 !important;}

.certificate_head{

  text-align: center;

  margin-top: 20px;

  font-size: 30px;

  text-transform: uppercase;

  color: #fff;

}
.card_box{margin-top:75px;}
.about_card .inner_card_txt p{
  font-size: 14px;
    text-align: justify;
    font-weight: 600;
}

.water_magement_sec .section-title_facts h2{
  font-weight: 500;
    font-size: 40px;
    text-align: center;
    color: #4dc7f5;
    margin-bottom:0;
}
.water_magement_sec .section-title_facts h2 span {
  font-weight: 500;
  font-size: 100px;
  font-family: 'black_ocean_threeregular';
  text-align: center;
  color: #4dc7f5;
}


.certificate .owl-item .leader_item p{
  padding: 8px 4px 0px;
  margin: 0px;
  color: #fff;
  font-size: 14px;
  text-align: center;
}
/* 
.water_magement_sec .circle{
  height: 400px;
  margin-top: 250px;
} */


.gradient-box:before {
 content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  margin: -45px;
  border-radius: inherit;
 /* background: linear-gradient(to right, #bce62a, #00a4e7);*/
background: linear-gradient(to bottom right, #bce62a, #00a4e7);
}
.gradient-box {
  display: flex;
  justify-content: center;
  width: 180px;
  height: 180px;
  margin: auto;
  /* max-width: 22em; */
  position: relative;
  padding: 17% 0em;
  box-sizing: border-box;
  text-align: center;
  color: #000;
  font-size: 22px;
  font-weight: 700;
  background: #fff;
  background-clip: padding-box;
  border: solid 22px #b7f3f0;
  border-radius: 1em;
  border-radius: 50%;
}

.gradient-box .circle_inner_txt{
    /* margin-top: 16px; */
    /* margin-left: 9px; */
    font-size: 25px;
    font-weight: 600;
    line-height: 22px;
}
.bottom_border{
  /* background: #7ddb5d;
  height: 4px; */
  margin-top: 50px;
position:relative;
}

.shapes_des {
 height: 20px;
  width: 20px;
  background-color: #6dd766;
  border-radius: 50%;
  position: absolute;
  top: -8px;
  right: 48%;
}
.shapes_des_2nd {
    height: 20px;
    width: 20px;
    background-color: #6dd766;
    border-radius: 50%;
    position: absolute;
    top: -8px;
    left: 48%;
 }
 .shapes_des_3rd {
  height: 20px;
  width: 20px;
  background-color: #00b2c9;
  border-radius: 50%;
  position: absolute;
  top: -8px;
  right: 46%;
 }
 .shapes_des_4th {
    height: 20px;
    width: 20px;
    background-color: #00b2c9;
    border-radius: 50%;
    position: absolute;
    top: -8px;
    right: 41%;
 }

.water_txt_box p{
  font-size: 17px;
    font-weight: 600;
    line-height: 20px;
    text-transform: uppercase;
    text-align: center;
    height: 40px;
}
.water_magement_sec .circle{
  margin-top: 36px;
}
.water_magement_sec{position: relative;}
.bdr_bottom{
  content: '';
  position: absolute;
  left: 51%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 870px; 
  bottom: -5px;
  height: 4px;
  
  background: linear-gradient(to right, #68d366 0%, #68d366 41%, #68d366 10%, rgb(21 213 110 / 85%) 18%, #00b2c9 64%, #00b2c9 100%);
  /* background: #68d366; */
}

/***water  drop****/
.rain_water{
  width: 90%;
  height: 100%;
  min-width: 400px;
  max-width: 1220px;
  /* max-height: 500px; */
  display: grid;
  grid-template-columns: repeat(4, 2fr);
  grid-template-rows: repeat(4, 2fr);
  /* background: #000; */
  height: 455px;
  position: absolute;
  bottom: -150px;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
}


/*.row{
  display: flex;
  justify-content: center;
  align-items: center;
}*/

.rain{
  position: relative;
  width: 100%;
  height: 100%;
}

.rain:nth-of-type(1){
  --duration: 2.7s;
  --delay: 1s;
  transform: translate(10%, 10%) scale(0.9);
}

.rain:nth-of-type(2){
  --duration: 2.1s;
  --delay: 1.2s;
  transform: translate(-20%, 40%) scale(1.3);
}

.rain:nth-of-type(3){
  --duration: 2.3s;
  --delay: 2s;
  transform: translate(0%, 50%) scale(1.1);
}

.rain:nth-of-type(4){
  --duration: 2s;
  --delay: 4s;
  transform: translate(0%, -10%) scale(1.2);
}

.rain:nth-of-type(5){
  --duration: 2.5s;
  --delay: 0s;
  transform: translate(10%, 0%) scale(0.9);
}

.rain:nth-of-type(6){
  --duration: 2s;
  --delay: 2.7s;
  transform: translate(-20%, 0%) scale(1);
}

.rain:nth-of-type(7){
  --duration: 1.8s;
  --delay: 1.3s;
  transform: translate(20%, -40%) scale(1.2);
}

.rain:nth-of-type(8){
  --duration: 2.2s;
  --delay: 0s;
  transform: translate(20%, 0%) scale(1);
}

.rain:nth-of-type(9){
  --duration: 2s;
  --delay: 0.5s;
  transform: translate(0%, -10%) scale(1.3);
}

.drop{
  background-color: white;
  width: 3px;
  height: 100px;
  position: absolute;
  top: calc(50% - 100px); 
  left: calc(50% - 1.5px);
  animation-name: fall;
  animation-duration: var(--duration);
  animation-delay: var(--delay);
  animation-iteration-count: infinite;
  animation-timing-function: ease-in;
  animation-fill-mode: backwards;
}

@keyframes fall{
  0%{
    transform: translateY(-120vh);
  }
  45%{
    transform: translateY(0%);
    opacity: 1;
  }
  46%{
    opacity: 0;
  }
  100%{
    opacity: 0;
  }
}

.waves > div{
  position: absolute;
  top:0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  border-radius: 50%;
  border: solid white 3px;
  animation-name: spread;
  animation-duration: var(--duration);
  animation-delay: var(--delay);
  animation-iteration-count: infinite;
  animation-timing-function: ease-out;
  animation-fill-mode: backwards;
}

.waves > div:nth-child(2){
  animation-delay: calc(var(--delay) + 0.3s);
  animation-timing-function: linear;
}

@keyframes spread{
  0%{
    transform: scale(0);
    opacity: 1;
  }
  40%{
    transform: scale(0);
    opacity: 1;
  }

  100%{
    transform: scale(1);
    opacity: 0;
  }
}


.splash{
  position: absolute;
  top: 10%;
  bottom: 50%;
  left: 35%;
  right: 35%;
  border-radius: 8px;
  clip-path: polygon(7% 100%, 5% 95%, 3% 80%, 11% 50%, 17% 38%, 23% 44%, 30% 53%, 37% 28%, 40% 29%, 45% 43%, 51% 53%, 59% 36%, 64% 22%, 67% 23%, 70% 34%, 72% 46%, 79% 37%, 83% 37%, 93% 61%, 96% 76%, 96% 94%, 94% 100%);
  background-color: white;
  transform-origin: bottom;
  animation-name: splash;
  animation-duration: var(--duration);
  animation-delay: var(--delay);
  animation-iteration-count: infinite;
  animation-timing-function: ease-out;
  animation-fill-mode: backwards;
}

@keyframes splash{
  0%{
    transform: scale(0.3, 0);
  }

  49%{
    transform: scale(0.3, 0);
  }

  50%{
    transform: scale(0.3, 0.3);
  }

  60%{
    transform: scale(0.7, 1);
  }

  90%{
    transform: scale(1, 0);
  }

  100%{
    transform: scale(1, 0);
  }
}

.particles > div{
  position: absolute; 
  border-radius: 100%;
  background-color: white;
  animation-duration: var(--duration);
  animation-delay: var(--delay);
  animation-iteration-count: infinite;
  animation-timing-function: ease;
  animation-fill-mode: backwards;
}

.particles > div:nth-child(1){
  width: 7px;
  height: 7px;
  top: 50%;
  left: 50%;
  animation-name: jumpLeft;
}

.particles > div:nth-child(2){
  width: 5px;
  height: 5px;
  top: 30%;
  left: 50%;
  animation-name: jumpLeft;
  animation-delay: calc(var(--delay) + 0.1s);
}

.particles > div:nth-child(3){
  width: 3px;
  height: 3px;
  top: 20%;
  left: 70%;
  animation-name: jumpRight;
  animation-delay: calc(var(--delay) + 0.15s);
}

.particles > div:nth-child(4){
  width: 5px;
  height: 5px;
  top: 30%;
  left: 50%;
  animation-name: jumpRight;
  animation-delay: calc(var(--delay) + 0.3s);
}

@keyframes jumpLeft{
  0%{
    transform: translate(0,0) scale(0);
  }

  45%{
    transform: translate(0,0) scale(0);
  }

  60%{
    transform: translate(-50px, -90px) scale(1);
  }

  100%{
    transform: translate(-60px, 0px) scale(0.1);
  }
}

@keyframes jumpRight{
  0%{
    transform: translate(0,0) scale(0);
  }

  45%{
    transform: translate(0,0) scale(0);
  }

  60%{
    transform: translate(30px, -80px) scale(1);
  }

  100%{
    transform: translate(50px, 0px) scale(0.1);
  }
}


/****water  drop *****/
 


 /*service detail*/

 .section-title_abt h3{
      font-weight: 500;
    font-size: 40px;
    text-align: center;
    color: #4dc7f5;
 }

.section-title_abt h3 span {
    font-weight: 500;
    font-size: 100px;
    font-family: 'black_ocean_threeregular';
    text-align: center;
    color: #4dc7f5;
}

.section-title_abt {
    background-color: #e8f9fb;
    padding: 15px 45px;
    border-radius: 8px;
    box-shadow: -2px 1px 10px 3px #e8f9fb;
}

/*rain-thunder*/



.background {
    width: 100%;
    height: 100vh;
    position: relative;
    top: 0;
    left: 0;
    transform: scale(1,1);
    transition: transform 1.5s;
}

.mountain {
    position: absolute;
    width: 100%;
    height: 50%;
}

.mountain.mountain-1 {
    bottom: 0rem;
    left: 0;
    filter: blur(2px) brightness(0.3);
    z-index: 11;
}

.mountain.mountain-2 {
    bottom: 5rem;
    left: 0;
    transform: scaleX(-1);
    filter: blur(3px) brightness(0.3);
    opacity: 0.5;
    z-index: 5;
}

.mountain.mountain-3 {
    height: 70%;
  width:50%;
    bottom: 10rem;
    right: 0;
    filter: blur(5px);
    opacity: 0.3;
    z-index: 1;
}

.mountain.mountain-4 {
    height: 70%;
    bottom: 8rem;
  width:50%;
    left: 0;
    filter: blur(5px);
    transform: scaleX(-1);
    opacity: 0.3;
    z-index: 0;
}


/* rain */

canvas {
    width: 100%;
    height: 100%;
}

.thunder {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 11;
}

.thunder:after {
    content: "";
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    /* background: linear-gradient(to top, rgba(26, 20, 10, 0.8), rgba(55, 37, 58, 0.4), rgba(150, 112, 151, 0.6), rgba(116, 0, 137, 0.1)); */
    /* background: linear-gradient(to top, rgba(0, 0, 0, 0.6), rgba(47, 255, 154, 0.2)); */
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), rgba(47, 161, 255, 0.2));
    /* background: linear-gradient(to top, rgba(0, 0, 0, 0.6), rgba(255, 47, 248, 0.3)); */
    /* background: linear-gradient(to top, rgba(3, 3, 3, 0.8), rgb(110, 141, 105, 0.4), rgb(117, 151, 112, 0.6), rgba(0, 0, 137, 0.1)); */
    /* background: linear-gradient(to top, rgb(94, 122, 90, 0.8), rgb(110, 141, 105, 0.4), rgb(117, 151, 112, 0.6), rgba(0, 0, 137, 0.1)); */
    z-index: 1;
    -webkit-animation: thunder-bg 6s infinite;
    animation: thunder-bg 6s infinite;
}

canvas {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
}

#canvas3 {
    filter: blur(2px);
    z-index: 3;
    animation: thunder-position 10s infinite alternate-reverse linear;
}

#canvas2 {
    z-index: 10;
}

#canvas1 {
    filter: blur(0.7px);
    z-index: 100;
}

@keyframes thunder-bg {
    0% {
        background-color: rgba(34, 34, 34, 0.9);
    }

    9% {
        background-color: rgba(34, 34, 34, 0.9);
    }

    10% {
        background-color: rgba(59, 59, 59, 0.3);
    }

    10.5% {
        background-color: rgba(34, 34, 34, 0.9);
    }

    80% {
        background-color: rgba(34, 34, 34, 0.9);
    }

    82% {
        background-color: rgba(59, 59, 59, 0.3);
    }

    83% {
        background-color: rgba(34, 34, 34, 0.9);
    }

    83.5% {
        background-color: rgba(59, 59, 59, 0.3);
    }

    100% {
        background-color: rgba(34, 34, 34, 0.9);
    }
}

@keyframes thunder-position {
    from {
        filter: blur(5px);
        z-index: 1;
        opacity: 0.5;
    }

    to {
        opacity: 1;
        filter: blur(0px);
        z-index: 3;
    }
}
 .section-title_rewards h2 span {
    font-weight: 500;
    font-size: 100px;
    font-family: 'black_ocean_threeregular';
    text-align: center;
    color: #4dc7f5;
}

 .section-title_rewards h2 {
    font-weight: 500;
    font-size: 40px;
    text-align: center;
    color: #4dc7f5;
}

.scarcity_wrapper{
  padding: 20px 0px 0px 0px;
}

 .section-title_scarcity h2 span {
    font-weight: 500;
    font-size: 70px;
    font-family: 'black_ocean_threeregular';
    text-align: center;
    color: #4dc7f5;
}

 .section-title_scarcity h2 {
    font-weight: 500;
    font-size: 35px;
    text-align: center;
    color: #4dc7f5;
}


.sectr_inner_crdd::before{
      content: "";
    background-color: #f3f3f3;
    width: 100%;
    height: 0%;
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    transition: 0.7s;
}

.sectr_inner_crdd:hover{
   background-color: #fff;
}

.sectr_inner_crdd:hover::before {
  width: 100%;
}

.sectr_inner_crdd::before {
  height: 100%;
  width: 0%;
}


.features {
  padding-top: 0;
}

.features .nav-tabs {
  border: 0;
}

.features .nav-link {
  border: 0;
  padding: 25px 20px;
  transition: 0.3s;
  color: #2b2320;
}

.features .nav-link:hover {
  color: #f03c02;
}

.features .nav-link h4 {
  font-size: 18px;
  font-weight: 600;
}

.features .nav-link p {
  font-size: 14px;
  margin-bottom: 0;
}

.features .nav-link.active {
  box-shadow: 0px 0 15px rgba(0, 0, 0, 0.12);
  color: #f03c02;
}

.features .tab-pane.active {
  -webkit-animation: slide-down 0.5s ease-out;
  animation: slide-down 0.5s ease-out;
}

@-webkit-keyframes slide-down {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes slide-down {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.srvice_heading{
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 5px;
    color: #4dc7f5;
}
.srvice_heading span{
  font-weight: 500;
    font-size: 100px;
    font-family: 'black_ocean_threeregular';
    text-align: center;
    color: #4dc7f5;
}

.service_page_tabs .nav-link {
  border: 0;
  padding: 25px 20px;
  transition: 0.3s;
  color: white;
  background:  #00b0fd;
}

.service_page_tabs .nav-link:hover {
  color: #f03c02;
}

.service_page_tabs .nav-link h4 {
  font-size: 18px;
  font-weight: 600;
}

.service_page_tabs .nav-link p {
  font-size: 14px;
  margin-bottom: 0;
}

.service_page_tabs .nav-link.active {
  box-shadow: 0px 0 15px rgba(0, 0, 0, 0.12);
  color: #fff;
  background: linear-gradient(to bottom right, #6df25da8 40%, #00b0fd 100%);

}
.service_page_tabs .tab-pane.active h2{
  color: #00b0fd;
  font-weight: 600;
  width: fit-content;
  position: relative;
}
.service_page_tabs .tab-pane.active h2::after{
  width: 100%;
  position: absolute;
  content: "";
  padding: 2px;
  background:linear-gradient(to bottom right, #6df25da8 40%, #00b0fd 100%);
  bottom: -5px;
  left: 0px;
}
.service_page_tabs .tab-pane.active {
  -webkit-animation: slide-down 0.5s ease-out;
  animation: slide-down 0.5s ease-out;
}
.service_page_tabs .tbs_content{
  color: black;
  text-align: justify;

}
.service_page_tabs .tbs_content li{
  list-style: none;
  position: relative;
}
.service_page_tabs .tbs_content li:before{
  position: absolute;
  content: "";
  background-image: url(https://vibescom.org/vibesdesign/respl/assets/img/check.png);
  background-repeat: no-repeat;
  background-size: cover;
  height: 22px;
  width: 22px;
  top: 0;
  left: -32px;
}
@-webkit-keyframes slide-down {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes slide-down {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.about_service{
    background-color: #e8f9fb;
    padding: 15px 65px;
    border-radius: 8px;
    box-shadow: -2px 1px 10px 3px #e8f9fb;

}

.about_service h2{
  color: #4dc7f5;
    font-weight: 400;
    font-size: 45px;
    text-align: center;
    font-size: 40px;

}
.about_service p{
  font-weight: 400;
    /*font-size: 18px;*/
    text-align: justify;
    color: #000;
}
.about_service span{
  font-family: 'black_ocean_threeregular';
  font-size: 100px;
}
.service_page_tabs .tab-pane{
  border: 1px solid #00b3fe;
    padding: 24px;
}

.circular .abt_counter_text{
     position: relative;
    top: 100%;
    color: #02bce5;
    text-align: center;
    font-size: 11px;
   /* font-family: 'black_ocean_threeregular';*/
}

.mt-75{
      margin-top: 75px!important;
}



.circle1 {
      position: absolute;
      background-color: inherit;
      height: 100%;
      width: 100%;
      border-radius: 100%;
      opacity: 0.5;
      animation: pulse 3s ease-out infinite;
      background: #fff6f673;
      }
      .circle1:nth-of-type(1) {
      animation-delay: -0.5s;
      }
      .circle1:nth-of-type(2) {
      animation-delay: -1s;
      }
      .circle1:nth-of-type(3) {
      animation-delay: -1.5s;
      }
      @keyframes pulse {
      100% {
      transform: scale(2.75);
      opacity: 0;
      }
      }
.play-button::after {
    content: '';
    top: 21px;
    left: 27px;
    position: absolute;
    border-left: 15px solid #edecec;
    border-top: 10px solid transparent;
    border-bottom: 13px solid transparent;
    border-right: 20px solid transparent;
}



/* Pop Up Style */
.video-pop {
  position: fixed;
  left:0;
  top: 0;
  width: 100%;
  height: 100%;
  visibility: hidden;
  opacity: 0;
  z-index: 9999;
}
.video-pop:target {
  visibility: visible;
  opacity: 1;
}

.pop-bg {
    background: rgb(0 0 0 / 62%);
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.pop-container {
  width: 80%;
  text-align: right;
  font-size: 30px;
  font-weight: bold;
  color: #fff;
}
.pop-container iframe {
  width:100%;
  height: 450px;
}

.video-pop .close{
  color: #fff;
}

.pulse-effect i {
    position: absolute;
    left: 38%;
    top: 36%;
    color: #fff;
    font-size: 25px;
}
      .pulse-effect {
    background: url(../img/retas-logo_1.png) no-repeat;
    background-size: contain;
    height: 100px;
    width: 100px;
    border-radius: 100%;
    position: absolute;
    top: 13%;
    z-index: 99;
    left: 35%;
}
      .circle1 {
      position: absolute;
      background-color: inherit;
      height: 100%;
      width: 100%;
      border-radius: 100%;
      opacity: 0.5;
      animation: pulse 5s ease-out infinite;
      background: #fff6f673;
      }
      .circle1:nth-of-type(1) {
      animation-delay: -0.5s;
      }
      .circle1:nth-of-type(2) {
      animation-delay: -1s;
      }
      .circle1:nth-of-type(3) {
      animation-delay: -1.5s;
      }
      @keyframes pulse {
      100% {
      transform: scale(2.75);
      opacity: 0;
      }
      }
.chart_slice1{
      padding: 20px;
    border: 1px solid #006fb5;
    box-shadow: 0px 0px 3px 1px;
    margin-top: 60px;
}

.chart_slice1 h2::after {
    width: 100%;
    position: absolute;
    content: "";
    padding: 2px;
    background: linear-gradient(to bottom right, #6df25da8 40%, #00b0fd 100%);
    bottom: -5px;
    left: 0px;
}

.chart_slice1 h2 {
    color: #00b0fd;
    font-weight: 600;
    width: fit-content;
    position: relative;
}

.chart_slice1 li {
    list-style: none;
    position: relative;
}

.chart_slice1 li:before {
    position: absolute;
    content: "";
    background-image: url(https://vibescom.org/vibesdesign/respl/assets/img/check.png);
    background-repeat: no-repeat;
    background-size: cover;
    height: 22px;
    width: 22px;
    top: 0;
    left: -32px;
}

/*timeline*/

.install_process .controls {
  width: 40px;
  height: 40px;
  position: absolute;
  left: 120px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.install_process .controls:hover:after {
  transform: translateX(-10px) rotate(45deg);
}
.install_process .controls:hover:active:after {
  transform: translateX(-20px) rotate(45deg);
  transition: 300ms all;
}
.install_process .controls:after {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  transform: rotate(45deg);
  border-left: 4px solid #fff;
  border-bottom: 4px solid #fff;
  transition: 500ms all;
}
.install_process .controls.next {
  left: auto;
  right: 120px;
  transform: rotate(180deg);
}

.install_process .time-line {
  width: 100%;
  height: 480px;
  background-color: #0053A0;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  bottom: 0;
  overflow: hidden;
}
.install_process .time-line * {
  transition: 800ms all cubic-bezier(0.23, 1, 0.32, 1);
}
.install_process .time-line .dates-overflow {
  left: 0;
  width: 500vw;
  position: absolute;
  bottom: 50px;
  height: 50px;
}
.install_process .time-line .dates-wrap {
  display: inline-block;
  position: absolute;
  height: 100%;
  left: calc(50vw - 80px);
}
.install_process .time-line .dates-wrap:before, .time-line .dates-wrap:after {
  content: "";
  position: absolute;
  width: 160px;
  height: 100%;
  left: -1px;
  transform: translate(-50%, -50%);
  background: linear-gradient(to right, #0053a0 0%, rgba(125, 185, 232, 0) 100%);
  z-index: 2;
}
.install_process .time-line .dates-wrap:after {
  left: auto;
  right: -1px;
  background: linear-gradient(to left, #0053a0 0%, rgba(125, 185, 232, 0) 100%);
  transform: translate(50%, -50%);
}
.install_process .time-line .dates-wrap .date {
  width: 160px;
  position: relative;
  float: left;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 800ms all cubic-bezier(0.23, 1, 0.32, 1);
}
/*.install_process .time-line .dates-wrap .date .date-content {
  visibility: hidden;
  position: absolute;
  width: 400px;
  height: 225px;
  bottom: 100%;
  margin-bottom: 80px;
  border-radius: 3px;
  transform-origin: 50% 100%;
  transform: scale(0.7);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0);
}*/
.install_process .time-line .dates-wrap .date .date-content {
    visibility: hidden;
    position: absolute;
    width: 600px;
    height: 225px;
    bottom: 100%;
    margin-bottom: 140px;
    border-radius: 3px;
    transform-origin: 50% 100%;
    transform: scale(0.7);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0);
}
/*.install_process .time-line .dates-wrap .date .date-content:after {
  content: "";
  position: absolute;
  left: 50%;
  width: 1px;
  top: 100%;
  margin-top: 8px;
  height: 65px;
  opacity: 0;
  background-color: #fff;
  transform: scaleY(0);
  transform-origin: 100% 100%;
  transition: 800ms all cubic-bezier(0.23, 1, 0.32, 1);
}*/
.install_process .time-line .dates-wrap .date .date-content:after {
    content: "";
    position: absolute;
    left: 50%;
    width: 1px;
    margin-top: 39px;
    height: 48px;
    opacity: 0;
    background-color: #fff;
    transform: scaleY(0);
    transform-origin: 100% 100%;
    transition: 800ms all cubic-bezier(0.23, 1, 0.32, 1);
}
.install_process .time-line .dates-wrap .date .date-content .date-image {
  width: 100%;
  height: auto;
  /*height: calc(100% - 60px);*/
  /*background-image: url(https://images.unsplash.com/photo-1573591172652-f548fe02ef77?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=844&q=80);*/
  background-size: cover;
  background-position: center;
}
.install_process .time-line .dates-wrap .date .date-content > div {
  opacity: 0;
  transform: translateY(40px);
}
.install_process .time-line .dates-wrap .date .date-content .date-text {
  width: 100%;
  height: 40px;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #0053A0;
  font-weight: 700;
}
.install_process .time-line .dates-wrap .date .date-year {
  opacity: 0.4;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.install_process .time-line .dates-wrap .date .date-year:hover {
  opacity: 1 !important;
}
.install_process .time-line .dates-wrap .date .date-year:hover:after {
  transform: scale(1) !important;
}
.install_process .time-line .dates-wrap .date .date-year p {
  position: absolute;
  top: 35px;
  line-height: 0;
  color: #fff;
  font-size: 35px;
  font-weight: 900;
  transform: scale(0.4);
  z-index: 2;
}
.install_process .time-line .dates-wrap .date .date-year:after {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  background-color: #fff;
  bottom: 100%;
  margin-bottom: -7px;
  border-radius: 50%;
  transform: scale(0.4);
  transition: 500ms all;
}
.install_process .time-line .dates-wrap .date .date-year:before {
  content: "";
  position: absolute;
  top: 0;
  width: 200%;
  height: 1px;
  background-color: #fff;
}
.install_process .time-line .dates-wrap .date.sibling .date-year {
  opacity: 0.6;
}
.install_process .time-line .dates-wrap .date.sibling .date-year:after {
  transform: scale(0.8);
}
.install_process .time-line .dates-wrap .date.sibling .date-year p {
  transform: scale(0.6);
}
.install_process .time-line .dates-wrap .date.active + .date .date-year {
  opacity: 0.6;
}
.install_process .time-line .dates-wrap .date.active + .date .date-year:after {
  transform: scale(0.8);
}
.install_process .time-line .dates-wrap .date.active + .date .date-year p {
  transform: scale(0.6);
}
.install_process .time-line .dates-wrap .date.active .date-year {
  opacity: 1;
  font-family: 'black_ocean_threeregular';
}
.install_process .time-line .dates-wrap .date.active .date-year:before {
  width: calc(200% - 11px);
}
.install_process .time-line .dates-wrap .date.active .date-year:after {
  transform: scale(1);
}
.install_process .time-line .dates-wrap .date.active .date-year p {
  transform: scale(.8);
}
.install_process .time-line .dates-wrap .date.active .date-content {
  transform: scale(1);
  visibility: visible;
}
.install_process .time-line .dates-wrap .date.active .date-content:after {
  transition-delay: 200ms;
  opacity: 1;
  transform: scaleY(1);
}
.install_process .time-line .dates-wrap .date.active .date-content div {
  transition-delay: 200ms;
  opacity: 1;
  /*transform: translateY(0px) scale(1);*/
}

.install_process .section-title_facts h2 {
    font-weight: 500;
    font-size: 40px;
    text-align: center;
    color: #4dc7f5;
}

.install_process .section-title_facts h2 span {
    font-weight: 500;
    font-size: 100px;
    font-family: 'black_ocean_threeregular';
    text-align: center;
    color: #4dc7f5;
}

.install_process{
  padding: 30px 0px;
}

/*banner drop*/

.outer-shadow {
    width: 20%;
    height: 20%;
    border-radius: 50%;
    box-shadow: -0.7rem 0.2rem 0.5rem rgb(255 255 255 / 10%), 0.7rem 0.2rem 0.5rem rgb(215 215 215 / 10%), 0 0.5rem 0.5rem rgb(60 60 60 / 10%), inset 0 -0.1rem 0.2rem rgba(34, 100, 158, 0.2), inset 0 0.1rem 0.1rem rgba(255, 255, 255, 0.1), 0 -0.3rem 0.3rem rgba(255, 255, 255, 0.1);
    animation: wave 3s ease-out infinite;
    transform: scale(0);
}
.inner-shadow {
  height: 20%;
  width: 20%;
  border-radius: 50%;
 /* box-shadow:
  0 0.1rem 0.15rem rgba(255, 255, 255, 0.3),
  inset 0 -0.1rem 0.15rem rgba(255, 255, 255, 0.3),
  inset 0 0.5rem 0.5rem rgba(34, 100, 158, 0.2),
  inset 0.2rem 0 0.3rem rgba(34, 100, 158, 0.1),
  inset -0.2rem 0 0.3rem rgba(34, 100, 158, 0.1),
  0 -0.1rem 0.1rem rgba(34, 100, 158, 0.2);*/
}
.wave_1 {
  animation-delay: 1s;
}
.wave_2 {
  animation-delay: 2s;
}
 .wave_3 {
  animation-delay: 3s;
}
/*.align-center {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 43%;
  right: 0;
  margin: auto;
}*/
.align-center {
    position: absolute;
    top: -22%;
    bottom: -240px;
    left: 41%;
    right: 0;
    margin: auto;
    height: 6%;
}
/*.drop {
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background: #7cb5db;
  box-shadow:
    inset 0 -0.2rem 0.2rem rgba(34, 100, 158, 0.3),
    inset 0 -0.1rem 0.5rem #7cb5db, 
    0 -0.5rem 1rem #7cb5db ;
  transform: translateY(-7rem);
  animation: fall 1s linear infinite;
  opacity: 0;
}*/
/*.drop1 {
    width: 1rem;
    height: 1rem;
    border-radius: 50%;
    background: #fefffd;
    box-shadow: inset 0 -0.2rem 0.2rem rgb(193 194 195 / 30%), inset 0 -0.1rem 0.5rem #767676, 0 -0.5rem 1rem #000000;
    transform: translateY(-7rem);
    animation: fall 1.3s linear infinite;
    opacity: 0;
}*/

.drop1 {
    width: 1rem;
    height: 1rem;
    border-radius: 50%;
    background: #cee8e900;
    box-shadow: inset 0 -0.2rem 0.2rem rgb(110 176 243 / 62%), inset 0 -0.1rem 0.5rem #00c2da9e, 0 -0.5rem 1rem #f9f9f900;
    transform: translateY(-7rem);
    animation: fall 1.3s linear infinite;
    opacity: 0;
}
@keyframes wave {
  to { transform: scale(1); opacity: 0 }
}
@keyframes fall {
  90% { transform: scale(0.7, 1); opacity: 1; }
  100% { transform: translateY(0rem) scale(0.7, 0.3); opacity: 0.7 }
 }

/*.fat-arrow {
    display: flex;
    align-items: center;
    width: 100%;
    height: 200px;
    position: relative;
    background: #006fb5;
    margin-right: 20px;
    color: white;
    text-align: left;
    box-shadow: inset 0 0 60px 5px #41627f, 3px 3px 5px 0 #ccc;
}
.fat-arrow:before {
    content: "";
    position: absolute;
    right: -35px;
    bottom: 0;
    width: 0;
    height: 0;
    border-left: 35px solid #006db5;
    border-top: 97px solid transparent;
    border-bottom: 104px solid transparent;
}
.fat-arrow:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 0;
   border-left: 35px solid #fff;
    border-top: 97px solid transparent;
    border-bottom: 104px solid transparent;
}

.fat-arrow div.inner {
    width: 100%;
    font-weight: 600;
    font-size: 14px;
    padding: 20px;
    margin-left: 50px;
}*/

.arrow_card{
  padding: 20px 0px;
}

.graph_wrapper{
  padding: 20px 0px;
}

.arrow_card .section-title_facts h2 {
    font-weight: 500;
    font-size: 40px;
    text-align: center;
    color: #4dc7f5;
}
.arrow_card .section-title_facts h2 span {
    font-weight: 500;
    font-size: 100px;
    font-family: 'black_ocean_threeregular';
    text-align: center;
    color: #4dc7f5;
}

.chart_slice_offering{
      padding: 20px;
    box-shadow:0px 0px 19px 1px #adadadd9;
    height: 220px;
    /*margin-top: 60px;*/
}

.chart_slice_offering h2::after {
  width: 100%;
    position: absolute;
    content: "";
    padding: 1px;
    background: linear-gradient(to bottom right, #6df25da8 40%, #00b0fd 100%);
    bottom: -1px;
    left: 0px;
}

.chart_slice_offering h2 {
    color: #00b0fd;
    font-weight: 600;
    width: fit-content;
    position: relative;
    margin-bottom: 20px;
}

.chart_slice_offering li {
    list-style: none;
    position: relative;
}

.chart_slice_offering li:before {
    position: absolute;
    content: "";
    background-image: url(../img/check_offer.png);
    background-repeat: no-repeat;
    background-size: cover;
    height: 22px;
    width: 22px;
    top: 0;
    left: -32px;
}
.service_acc_icn{
      width: 24px;
    height: 24px;
    margin-right: 10px;
}

.w-250{
  width: 250px;
}

.main_banner {
    background-repeat: no-repeat;
    height: 500px;
    margin-top: 90px;
    background-size: 100%;
}

.main_banner .carousel-container {
    display: flex;
    align-items: center;
    position: absolute;
    bottom: 0;
    top: 82px;
    left: 50px;
    right: 50px;
    width:35%;
}

.main_banner p {
    -webkit-animation-delay: 0.4s;
    animation-delay: 0.4s;
    color: #fff;
    margin-top: 0px;
    font-size: 27px;
    line-height: 35px;
}

.main_banner h2 {
    color: #00c7d4;
    margin: 0;
    font-size: 45px;
    font-weight: 400;
    font-family: 'black_ocean_threeregular';
    letter-spacing: 4px;
}

.main_banner .btn-get-started {
    font-family: "Raleway", sans-serif;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 32px;
    border-radius: 4px;
    transition: 0.5s;
    line-height: 1;
    color: #000;
    -webkit-animation-delay: 0.8s;
    animation-delay: 0.8s;
    background: linear-gradient(to right, #00b0fd , #00f3ff);
    margin-top: 15px;
}

/*--------------------------------------------------------------
# Why Us
--------------------------------------------------------------*/
.resource_wrapper {
  padding: 0;
}

.resource_wrapper .content {
  padding: 60px 100px 0 100px;
}

.resource_wrapper .content h3 {
  font-weight: 400;
  font-size: 34px;
  color: #123a6d;
}

.resource_wrapper .content h4 {
  font-size: 20px;
  font-weight: 700;
  margin-top: 5px;
}

.resource_wrapper .content p {
  font-size: 15px;
  color: #848484;
}

.resource_wrapper .collapse{
background-color: #00c2dd29;
/*padding:10px 15px;*/
}

.resource_wrapper .video-box {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  min-height: 400px;
  position: relative;
}

.resource_wrapper .accordion-list {
  padding-top: 0px;
}

.resource_wrapper .accordion-list ul {
  padding: 0;
  list-style: none;
}

.resource_wrapper .accordion-list li+li {
  margin-top: 0px;
}

.resource_wrapper .accordion-list li {
  padding-top: 10px;
  /*background: linear-gradient(to right, #0ecfe9 , #c9ebda);*/
  /*background: linear-gradient(to right, #9cd9e1 , #c9ebda);*/
  border-radius: 4px;
  position: relative;
}

.resource_wrapper .accordion-list a.res_acc{
  display: block;
  position: relative;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  padding-right: 30px;
  outline: none;
  color: #fff;
  cursor: pointer;
  background-color: #006db5;
  padding: 10px;
}

.resource_wrapper .accordion-list span {
  color: #006db5;
  font-weight: 600;
  font-size: 18px;
  padding-right: 10px;
}

.resource_wrapper .accordion-list i {
  font-size: 24px;
  position: absolute;
  right: 0;
  top: 10px;
}


.resource_wrapper .accordion-list p {
  margin-bottom: 0;
  /*padding: 10px 0 0 0;*/
}

.resource_wrapper .accordion-list p i{
  position: relative;
  top: 3px;
  color: red;
  margin-left: 10px;
}

.resource_wrapper .accordion-list .icon-show {
  display: none;
}

.resource_wrapper .accordion-list a.collapsed {
  color: #fff;
}

.resource_wrapper .accordion-list a.collapsed:hover {
  color: #fff;
}

.resource_wrapper .accordion-list a.collapsed .icon-show {
  display: inline-block;
}

.resource_wrapper .accordion-list a.collapsed .icon-close {
  display: none;
}


@media (max-width: 1024px) {

  .resource_wrapper .content,
  .resource_wrapper .accordion-list {
    padding-left: 0;
    padding-right: 0;
  }
}

@media (max-width: 992px) {
  .resource_wrapper .content {
    padding-top: 30px;
  }

  .resource_wrapper .accordion-list {
    padding-bottom: 30px;
  }
}

@-webkit-keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

@keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

/*product inner slider*/

.product_slider{
  padding:20px 0;
}

.product_slider .contain {
  margin: 0 auto;
  max-width: 1200px;
  width: 100%;
}

.product_slider .item {
  align-items: center;
/*  background-color: tomato;*/
  color: white;
  display: flex;
/*  height: 300px;*/
  justify-content: center;
}

.product_slider .owl-carousel .owl-item img {
    display: block;
    width: 100%;
    height: 400px;
}

.product_slider .owl-theme .owl-nav {
    margin-top: 10px;
    text-align: center;
    -webkit-tap-highlight-color: transparent;
/*    position: absolute;*/
    top: 35%;
}
.product_slider .owl-carousel .owl-prev{
    position: absolute;
    left: -27px;
    top: 40%;
    font-size: 57px!important;
}
.product_slider .owl-carousel .owl-next{
    position: absolute;
    right: -27px;
    top: 40%;
    font-size: 57px!important;
}
.product_slider .owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
    background: #006db5;
}

.product_slider{
  position:relative;
}
/*product inner slider end*/

/*popup */

.modal-content1 {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    pointer-events: auto;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 0.3rem;
    outline: 0;
    height: 520px;
}
.modal-body1 {
    position: relative;
    flex: 1 1 auto;
    padding: 1rem;
    overflow-y: scroll;
}
.text-justify{
  text-align: justify;
}

/*.margin-t {
    margin-top: 50px;
    margin-right: 40px;
}
*/
/*popup end*/

/*video-pop*/
.btn-close_video {
    box-sizing: content-box;
    width: 20px;
    position: absolute;
    right: -10px;
    height: 20px;
    padding: 0.25em 0.25em;
    color: #000;
    border: 0;
    border-radius: 50%;
    opacity: .8;
    top: -11px;
    font-weight: 900;
    z-index: 99;
    background-color: #fff;
    border: 2px solid #00b7f6;
    /* color: #fff; */
}

.tp-10{
  top:10%;
}

/*video-pop end*/

.thought_leader_wrapper{
  padding:20px 0px;
}

.thought_leader_wrapper .thought_head span {
    font-family: 'black_ocean_threeregular';
    font-size: 100px;
}

.thought_leader_wrapper .thought_head h2 {
    color: #4dc7f5;
    font-weight: 400;
    font-size: 45px;
    text-align: center;
    font-size: 40px;
    line-height: .8;
}

.thought_leader_wrapper .thought_head p {
text-align: justify;
}

.leader_detail .btn-read-more {
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 8px 32px;
    border-radius: 5px;
    transition: 0.3s;
    line-height: 1;
    color: #fff;
    background-color: #00b7f6;
    /* border: 2px solid #ed502e; */
    text-transform: uppercase;
   
}
.classtinavigatesectorsection {
    cursor: context-menu!important;
}

.chart_slice_offering ol, ul {
    padding-left: 20px;
}

.city-service{
  padding:60px 0px;
}
/*15-10-2024*/
.eHezJm{background: white !important;}
   .iUcvZP{background: white !important;}
   .WidgetTitle__Header-sc-ruy1gu-2{display: none;}
   .cDHIQK{background: white !important;}