@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100..900&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap");
:root {
  --primary_font_family: "Inter", sans-serif;
  --primary: #18AE93;
  --text_dark: #000000;
  --text_light: #6B6B6B;
  --bgLight: #EDFFFC;
  --white: #ffffff;
  --black: #000000;
}

body {
  font-size: 15px;
  line-height: 25px;
  font-family: var(--primary_font_family);
  color: var(--text_dark);
  overflow-x: hidden;
}

.text_light {
  color: var(--text_light);
}

.text_dark {
  color: var(--text_dark);
}

.text_white {
  color: var(--white);
}

.text_primary {
  color: var(--primary);
}

.bg_primary {
  background: var(--primary);
}

.bgLight {
  background: var(--bgLight);
}

p {
  font-size: 15px;
  line-height: 25px;
  color: var(--text_light);
  font-weight: 400;
}

.text_14 {
  font-size: 14px;
  line-height: 20px;
}

.text_16 {
  font-size: 16px;
  line-height: 28px;
}

.text_18 {
  font-size: 18px;
  line-height: 32px;
}

a {
  text-decoration: none;
  color: var(--primary);
  transition: 0.5s ease;
}

a:hover {
  color: var(--text_dark);
}

h1, .h1 {
  font-size: 60px;
  line-height: 72px;
  font-weight: 700;
}

h2, .h2 {
  font-size: 40px;
  line-height: 52px;
  font-weight: 700;
}

h3, .h3 {
  font-size: 25px;
  line-height: 36px;
  font-weight: 700;
}

h4, .h4 {
  font-size: 22px;
  line-height: 30px;
  font-weight: 700;
}

h5, .h5 {
  font-size: 18px;
  line-height: 28px;
  font-weight: 600;
}

h6, .h6 {
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
}

.fw_100 {
  font-weight: 100;
}

.fw_200 {
  font-weight: 200;
}

.fw_300 {
  font-weight: 300;
}

.fw_400 {
  font-weight: 400;
}

.fw_500 {
  font-weight: 500;
}

.fw_600 {
  font-weight: 600;
}

.fw_700 {
  font-weight: 700;
}

ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

img {
  max-width: 100%;
}

.container {
  max-width: 1230px;
}

.btn_primary {
  background: var(--primary);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  padding: 12px 14px;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 600;
  position: relative;
  overflow: hidden;
  z-index: 9;
}
.btn_primary:before {
  background-color: var(--text_dark);
  content: "";
  height: 100%;
  left: -100%;
  position: absolute;
  top: 0;
  width: 0;
  z-index: -1;
  -webkit-transform: skew(50deg);
  -moz-transform: skew(50deg);
  -o-transform: skew(50deg);
  transform: skew(50deg);
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  transform-origin: top left;
  -ms-transition: 0.4s;
}
.btn_primary img {
  margin-left: 6px;
}
.btn_primary:hover {
  color: var(--white);
}
.btn_primary:hover:before {
  height: 100%;
  width: 200%;
}

.btn_white {
  background: var(--white);
  color: var(--secondary);
  display: inline-flex;
  align-items: center;
  padding: 12px 24px;
  justify-content: center;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 600;
  position: relative;
  overflow: hidden;
  z-index: 9;
}
.btn_white:before {
  background-color: var(--secondary);
  content: "";
  height: 100%;
  left: -100%;
  position: absolute;
  top: 0;
  width: 0;
  z-index: -1;
  -webkit-transform: skew(50deg);
  -moz-transform: skew(50deg);
  -o-transform: skew(50deg);
  transform: skew(50deg);
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  transform-origin: top left;
  -ms-transition: 0.4s;
}
.btn_white img {
  margin-right: 6px;
}
.btn_white:hover {
  color: var(--white);
}
.btn_white:hover:before {
  height: 100%;
  width: 200%;
}

.btn_link {
  display: inline-flex;
  align-items: center;
  font-size: 16px;
  font-weight: 500;
  position: relative;
}
.btn_link:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: 0.5s ease;
}
.btn_link img {
  margin-left: 8px;
  transition: 0.3s ease;
}
.btn_link:hover {
  color: var(--primary);
}
.btn_link:hover img {
  transform: rotate(45deg);
}
.btn_link:hover:before {
  width: 100%;
}
header{
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  padding: 40px 0;
  overflow: hidden;
  transition: 0.5s ease;
  z-index: 99;
}
header.fixed {
  background: #fff;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2);
  padding: 20px 0;
}
header .navbar {
  padding: 0;
}
header .navbar .navbar-brand {
  margin: 0;
  padding: 0;
}
header .navbar .navbar-nav .nav-item .nav-link {
  padding: 10px 17px;
  font-size: 15px;
  line-height: 22px;
  font-weight: 400;
  color: #666666;
}
header .navbar .navbar-nav .nav-item .nav-link:hover{
  color: var(--primary);
}
header .navbar .navbar-nav .nav-item .nav-link.active {
  color: var(--primary);
  font-weight: 700;
}

.banner_wrapper{
  padding: 170px 0 70px;
  position: relative;
  z-index: 9;
}
.banner_wrapper:before{
  content: "";
  position: absolute;
  left: -380px;
  top: 0;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: var(--primary);
  filter: blur(230px);
  z-index: -1;
}
.banner_wrapper:after{
  content: "";
  position: absolute;
  right: -380px;
  bottom: -350px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: var(--primary);
  filter: blur(230px);
  z-index: -1;
}
.banner_inner h1{
  font-weight: 400;
  margin: 0 0 40px;
}
.banner_inner h1 span{
  font-weight: 700;
  display: block;
}

.about_img{
  border-radius: 15px;
  overflow: hidden;
}

.about_wrapper{
  background: #EDFFFC;
  border-radius: 30px 30px 0 0;
  position: relative;
  z-index: 10;
}

.highlight_box{
  padding: 65px 35px 35px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 24px 64px 0 rgba(0,0,0,0.07);
  height: 100%;
  transition: 0.5s ease;
}
.highlight_box:hover{
  background: var(--primary);
}
.highlight_box h3{
  margin: 20px 0;
  transition: 0.5s ease;
}
.highlight_box p{
  transition: 0.5s ease;
}
.highlight_box:hover h3,
.highlight_box:hover p{
  color: #fff;
}

.timeline_title{
  text-align: center;
  max-width: 830px;
  margin: 0 auto;
}
.timeline_image_wrapper{
  background: #42DABE;
  border-radius: 20px;
  padding: 0 60px;
}
.timeline_image_wrapper img{
  width: 100%;
  margin-top: -40px;
  margin-bottom: -40px;
  animation: MoveUpDown 5s linear infinite;
}

@keyframes MoveUpDown {
  0%, 100% {
    margin-top: -40px;
  margin-bottom: -40px;
  }
  50% {
    margin-top: -60px;
    margin-bottom: -20px;
  }
}
.step_inner_wrapper{
  position: relative;
}
.step_inner_wrapper:before{
  content: "";
  position: absolute;
  left: 0;
  top: 47px;
  width: 100%;
  height: 54px;
  background: #303748;
  z-index: -1;
}
.step_inner_wrapper:after {
  content: "";
  position: absolute;
  left: 0;
  top: 70px;
  width: 100%;
  height: 7px;
  background-image: linear-gradient(to right, #ffffff 33%, rgba(255, 255, 255, 0) 0%);
  background-position: bottom;
  background-size: 25px 3px;
  background-repeat: repeat-x;
  z-index: -1;
}
.step_Wrapper .title h2{
  max-width: 570px;
  margin:  0 auto 15px;
}
.step_box {
  text-align: center;
  padding: 0 20px;
}
.step_box .step_count{
  width: 146px;
  height: 146px;
  border-radius: 50%;
  margin: 0 auto 30px;
  background: #42DABE;
  display: flex;
  align-items: center;
  justify-content: center;
  outline: 1px solid #000;
  border: 9px solid #fff;
}
.step_box .step_count h4{
  font-weight: 600;
  color: #fff;
  margin: 0;
}
.step_box  h3{
  font-weight: 400;
}
.inShort_wrapper{
  position: relative;
  z-index: 9;
}
.inShort_wrapper:before{
  content: "";
  position: absolute;
  left: -400px;
  bottom: 0;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: var(--primary);
  filter: blur(150px);
  z-index: -1;
}

.inShot_inner:before{
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(24,174,147,1) 0%, rgba(24,174,147,0) 90%);
  z-index: -1;
}

.inShot_inner h2{
  color: #fff;
}
.inShot_inner p{
  color: #fff;
  margin: 0;
}
.inShot_text_wrap{
  max-width: 450px;
}
.inShot_text_wrap h5{
  display: inline-block;
  background: #148873;
  border-radius: 40px;
  margin-bottom: 0;
  padding: 7px 35px;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
}
.why_choose_wrapper{
  position: relative;
  z-index: 9;
}
.why_choose_wrapper:before{
  content: "";
  position: absolute;
  right: -400px;
  bottom: 0;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: var(--primary);
  filter: blur(200px);
  z-index: -1;
}
.why_choose_box{
  padding: 35px;
  border-radius: 20px;
  box-shadow: 0 24px 64px 0 rgba(0,0,0,0.07);
  height: 100%;
  background: #fff;
}
main{
  overflow: hidden;
}

/* Footer styling */
.footer-ui {
  padding: 30px 60px;
  background: #FFFFFF;
  border-top: 1px solid #DDDDDD;
  min-height:initial
}
.footer-ui .footer-container {
  max-width: initial;
}
.footer-ui a {
  display: inline;
  padding: 0;
  text-decoration: underline;
}
.footer-ui a:hover, .footer-ui a:focus {
  text-decoration: none;
  color: #888888;
}
.footer-ui, .footer-ui a {
  font-size: 16px;
  color: #888888;
  /* font-family: gesta, sans-serif; */
  font-family: "Open Sans", sans-serif;
}
.footer-ui .footer-social-icon {
  padding: 0 3px;
}
.footer-ui .footer-inline-block-element {
  display: inline-block;
  line-height: 39px;
  vertical-align: middle;
}
/* End Footer styling */

@media (max-width: 1281px){
  .container {
    max-width: 1100px;
  }
  header .navbar .navbar-nav .nav-item .nav-link {
    padding: 10px 13px;
  }
  h1, .h1 {
    font-size: 50px;
    line-height: 62px;
  }
}
@media (max-width: 1200px){
  .container {
    max-width: 100%;
  }

  .navbar-light .navbar-toggler {
    color: transparent;
    border-color: transparent;
  }
  .navbar-collapse {
    position: absolute;
    left: 0;
    top: 57px;
    z-index: 99;
    width: 100%;
    background: #fff;
    padding: 0px 10px 20px;
    box-shadow: 0 20px 20px 0 rgba(0, 0, 0, 0.1);
}
header,
header.fixed {
    padding: 20px 0;
    overflow: initial;
}

  .highlight_box {
    text-align: center;
}
.banner_wrapper {
  padding: 130px 0 70px;
}
}
@media (max-width: 991px){
  .step_inner_wrapper:before,
  .step_inner_wrapper:after{
    display: none;
  }
  h1, .h1 {
    font-size: 40px;
    line-height: 52px;
}
}
@media (max-width: 767px){
  header {
    padding: 20px 0;
  }
  .banner_bottom h5 {
    font-size: 17px;
  }
  .banner_bottom {
    padding: 8px 18px;
  }
  .inShot_inner {
    padding: 30px 30px;
    text-align: center;
}
.inShot_text_wrap {
  max-width: 100%;
}
.inShot_inner{
  position: relative;
  z-index: 9;
}
.inShot_inner:before{
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: -1;
}
}

@media (max-width: 575px){
  .about_text {
    text-align: center;
  }
  h2, .h2 {
    font-size: 30px;
    line-height: 42px;
  }
  h3, .h3 {
    font-size: 22px;
    line-height: 32px;
  }
  .banner_bottom {
    padding: 8px 28px;
    white-space: nowrap;
}
.accordion-button {
  padding: 10px 0;
  font-size: 16px;
  line-height: 20px;
}
header.fixed {
  top: 0;
  position: fixed;
  border-radius: 0;
}
.navbar-collapse {
  position: absolute;
  left: 0;
  top: 57px;
  z-index: 99;
  width: 100%;
  background: #fff;
  padding: 0px 10px 20px;
  box-shadow: 0 20px 20px 0 rgba(0, 0, 0, 0.1);
}
header:before{
  display: none;
}
.banner_img_wrapper {
  border-radius: 10px;
}
.banner_bottom {
  bottom: 20px;
}
.banner_bottom h5 {
  font-size: 14px;
}
.banner_bottom {
  padding: 4px 28px;
}
.why_choose_title {
  text-align: center;
}
.why_choose_box {
  text-align: center;
}
}

@media (max-width: 481px){
  h1, .h1 {
    font-size: 32px;
    line-height: 42px;
}
.inShot_text_wrap h5 {
  font-size: 13px;
}
h2, .h2 {
  font-size: 26px;
  line-height: 36px;
}
}