@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');
:root{
--site-font: 'Manrope', sans-serif;
--site-color:#26a7df;
--site-color-2:#011947;
--site-green:#e7a609;
--site-red:#ff0000;
--site-white:#fff;
--site-black:#000;
--site-grey:#555;
--site-red:#ff0000;
--site-bg:#f9f9f9;
}

body {
font-size:21px;
color:var(--site-color);
line-height:30px;
font-weight:400;
background:#ffffff;
font-family: var(--site-font);
-webkit-font-smoothing: antialiased;
}
img {
    display: inline-block;
    max-width: 100%;
    height: auto;
    transition-delay: .1s;
    transition-timing-function: ease-in-out;
    transition-duration: .7s;
    transition-property: all;
}
a{
text-decoration:none;
transition:all 500ms ease;
-moz-transition:all 500ms ease;
-webkit-transition:all 500ms ease;
-ms-transition:all 500ms ease;
-o-transition:all 500ms ease;
}

a:hover{
text-decoration:none;
outline:none;
}

ul,li{
list-style:none;
padding:0px;
margin:0px; 
}

input{
transition: all 500ms ease;
}

button:focus,
input:focus,
textarea:focus{
outline: none;
box-shadow: none;
transition: all 500ms ease;
}

p{
position: relative;
font-family: var(--site-font);
color: var(--site-grey);
font-weight: 400;
margin: 0px;
transition: all 500ms ease;
}
@media (min-width:1200px) {
  .container {
    max-width: 1200px;
    padding: 0px 15px;
  }
}
 
.boxed_wrapper{
  position: relative;
  margin: 0 auto;
  overflow: hidden !important;
  width: 100%;
  min-width: 300px;
}

.theme-btn{
  position: relative;
  display: inline-block;
  overflow: hidden;
  vertical-align: middle;
  font-size: 18px;
  line-height: 24px;
  font-weight: 600;
  letter-spacing:0.6px;
  font-family: var(--site-font);
  color: var(--site-black);
  background: var(--site-green);
  text-align: center;
  padding: 12px 20px;
  text-transform: capitalize;
  z-index: 1;
  transition: all 500ms ease;
  border-radius:5px;
}
.theme-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--site-color);
    z-index: -1;
    transition: transform 400ms ease-out;
    transform: scaleX(0);
    transform-origin: left;
}
.theme-btn:hover{
  background: var(--site-color);
  color: var(--site-white);
}
.theme-btn:hover::before {
   transform: scaleX(1);
}

.handle-preloader {
  align-items: center;
  -webkit-align-items: center;
  display: flex;
  display: -ms-flexbox;
  height: 100%;
  justify-content: center;
  -webkit-justify-content: center;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 9999999;
  background:var(--site-color);
}
.handle-preloader .animation-preloader {
  position: absolute;
  z-index: 100;
}

.handle-preloader .animation-preloader .spinner{
  animation: spinner 1s infinite linear;
  border-radius: 50%;
  height: 120px;
  margin: 0 auto 20px auto;
  width: 120px;
}
.handle-preloader .animation-preloader .load-img{
	position: relative;
    top: 90px;
    left: 220px;
    right: 0;
}
.handle-preloader .animation-preloader .txt-loading {
  text-align: center;
  user-select: none;
}

.handle-preloader .animation-preloader .txt-loading .letters-loading:before{
  animation: letters-loading 4s infinite;
  content: attr(data-text-preloader);
  left: 0;
  opacity: 0;
  top:0;
  position: absolute;
}

.handle-preloader .animation-preloader .txt-loading .letters-loading{
  font-family: var(--site-font);
  font-weight: 500;
  letter-spacing: 10px;
  display: inline-block;
  position: relative;
  font-size: 60px;
  line-height: 60px;
  text-transform: uppercase;
}

.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(2):before {animation-delay: 0.2s;}
.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(3):before {animation-delay: 0.4s;}
.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(4):before {animation-delay: 0.6s;}
.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(5):before {animation-delay: 0.8s;}
.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(6):before { animation-delay: 1s;}
.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(7):before { animation-delay: 1.2s;}
.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(8):before { animation-delay: 1.4s;}
.handle-preloader .loader-section {
  background-color: var(--site-white);
  height: 100%;
  position: fixed;
  top: 0;
  width: calc(50% + 1px);
}

.preloader .loaded .animation-preloader {
  opacity: 0;
  transition: 0.3s ease-out;
}

.handle-preloader .animation-preloader .txt-loading .letters-loading{
  color: var(--site-white);
}

.handle-preloader .animation-preloader .txt-loading .letters-loading:before{
  color: var(--site-white);
}

.handle-preloader .animation-preloader .spinner{
  border: 3px solid var(--site-white);
  border-top-color: rgba(255, 255, 255, 0.5); 
}

@keyframes spinner {
  to {
    transform: rotateZ(360deg);
  }
}
@keyframes letters-loading {
  0%,
  75%,
  100% {
    opacity: 0;
    transform: rotateY(-90deg);
  }

  25%,
  50% {
    opacity: 1;
    transform: rotateY(0deg);
  }
}
.main-header{
  position:absolute;
  left:0px;
  top:0px;
  right: 0px;
  z-index:999;
  width:100%;
  transition:all 500ms ease;
  -moz-transition:all 500ms ease;
  -webkit-transition:all 500ms ease;
  -ms-transition:all 500ms ease;
  -o-transition:all 500ms ease;
}

.sticky-header{
  position:fixed;
  opacity:0;
  visibility:hidden;
  left:0px;
  top:0px;
  width:100%;
  z-index:0;
  background-color: var(--site-color);
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
  transition:all 500ms ease;
  -moz-transition:all 500ms ease;
  -webkit-transition:all 500ms ease;
  -ms-transition:all 500ms ease;
  -o-transition:all 500ms ease;
}

.fixed-header .sticky-header{
  z-index:999;
  opacity:1;
  visibility:visible;
  -ms-animation-name: fadeInDown;
  -moz-animation-name: fadeInDown;
  -op-animation-name: fadeInDown;
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
  -ms-animation-duration: 500ms;
  -moz-animation-duration: 500ms;
  -op-animation-duration: 500ms;
  -webkit-animation-duration: 500ms;
  animation-duration: 500ms;
  -ms-animation-timing-function: linear;
  -moz-animation-timing-function: linear;
  -op-animation-timing-function: linear;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -ms-animation-iteration-count: 1;
  -moz-animation-iteration-count: 1;
  -op-animation-iteration-count: 1;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}
.header-lower{
  position: relative;
  width: 100%;

}
.outer-box{
	display:flex;
}
.sticky-header .logo-box{
	background: transparent;
	box-shadow: none;

}
.logo-box{
 padding: 20px 30px;
    background: #f1f1f1;
    border-radius: 0 0 50px 50px;
	box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
}
.logo-box figure{
	margin-bottom:0;
}
.main-menu{
  float: left;
}

.main-menu .navbar-collapse{
  padding:0px;
  display:block !important;
}

.main-menu .navigation{
  margin:0px;
}

.main-menu .navigation > li{
  position:inherit;
  float:left;
  z-index:2;
  margin: 0px 15px;
  -webkit-transition:all 300ms ease;
  -moz-transition:all 300ms ease;
  -ms-transition:all 300ms ease;
  -o-transition:all 300ms ease;
  transition:all 300ms ease;
}

.main-menu .navigation > li:last-child{
  margin-right:0px !important;
}

.main-menu .navigation > li:first-child{
  margin-left: 0px !important;
}

.main-menu .navigation > li > a{
  position:relative;
  display:block;
  letter-spacing:0.6px;
  text-align:center;
  font-size:14px;
  line-height:30px;
  padding:0px;
  font-weight:700;
  font-family: var(--site-font);
  opacity:1;
  color: var(--site-black);
  z-index:1;
  text-transform: uppercase;
  -webkit-transition:all 500ms ease;
  -moz-transition:all 500ms ease;
  -ms-transition:all 500ms ease;
  -o-transition:all 500ms ease;
  transition:all 500ms ease;
}
.main-menu .navigation > li > a:hover{
	color:var(--site-color);
}
.menu-area .mobile-nav-toggler {
  position: relative;
  float: right;
  font-size: 40px;
  line-height: 50px;
  cursor: pointer;
  color: #3786ff;
  display: none;
}
.menu-area .mobile-nav-toggler {
  position: relative;
  float: right;
  font-size: 40px;
  line-height: 50px;
  cursor: pointer;
  color: #3786ff;
  display: none;
}

.menu-area .mobile-nav-toggler .icon-bar{
  position: relative;
  height: 2px;
  width: 30px;
  display: block;
  margin-bottom: 5px;
  background-color: var(--site-black);
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}

.menu-area .mobile-nav-toggler .icon-bar:last-child{
  margin-bottom: 0px;
}
.sticky-header .main-menu .navigation > li > a{
  padding-top: 25px;
  padding-bottom: 25px;
  color:var(--site-white);
}
.sticky-header .main-menu .navigation > li > a:hover{
	color:var(--site-black);
}

.sticky-header .logo-box{
  padding: 10px 0px;
}

.menu-area{
  display: flex;
  align-items: center;
}
.nav-outer .mobile-nav-toggler{
  position: relative;
  float: right;
  font-size: 40px;
  line-height: 50px;
  cursor: pointer;
  color:#3786ff;
  display: none;
}

.mobile-menu{
  position: fixed;
  right: 0;
  top: 0;
  width: 300px;
  padding-right:30px;
  max-width:100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  z-index: 999999;
  transition: all 900ms ease;
}

.mobile-menu .navbar-collapse{
  display:block !important; 
}

.mobile-menu .nav-logo{
  position:relative;
  padding:50px 25px;
  text-align:left;  
  padding-bottom: 100px;
}

.mobile-menu-visible{
  overflow: hidden;
}

.mobile-menu-visible .mobile-menu{
  opacity: 1;
  visibility: visible;
}

.mobile-menu .menu-backdrop{
  position: fixed;
  left: 0%;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  transition: all 900ms ease;
  background-color: #000;
}

.mobile-menu-visible .mobile-menu .menu-backdrop{
  opacity: 0.70;
  visibility: visible;
  right: 100%;
  -webkit-transition: all .8s ease-out 0s;
  -o-transition: all .8s ease-out 0s
}

.mobile-menu .menu-box{
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  max-height: 100%;
  overflow-y: auto;
  background: #1c2a4d;
  padding: 0px 0px;
  z-index: 5;
  opacity: 0;
  visibility: hidden;
  border-radius: 0px;
  -webkit-transform: translateX(100%);
  -ms-transform: translateX(100%);
  transform: translateX(100%);
  transition: all 900ms ease !important;
}

.mobile-menu-visible .mobile-menu .menu-box{
  opacity: 1;
  visibility: visible;
  -webkit-transition: all 0.7s ease;
  -o-transition: all 0.7s ease;
  transition: all 0.7s ease;
  -webkit-transform: translateX(0%);
  -ms-transform: translateX(0%);
  transform: translateX(0%);
}

.mobile-menu .close-btn{
  position: absolute;
  right: 25px;
  top: 10px;
  line-height: 30px;
  width: 24px;
  text-align: center;
  font-size: 16px;
  color: #ffffff;
  cursor: pointer;
  z-index: 10;
  -webkit-transition:all 0.9s ease;
  -moz-transition:all 0.9s ease;
  -ms-transition:all 0.9s ease;
  -o-transition:all 0.9s ease;
  transition:all 0.9s ease;
}

.mobile-menu-visible .mobile-menu .close-btn{
  -webkit-transform:rotate(360deg);
  -ms-transform:rotate(360deg);
  transform:rotate(360deg);
}

.mobile-menu .close-btn:hover{
  -webkit-transform:rotate(90deg);
  -ms-transform:rotate(90deg);
  transform:rotate(90deg);
}

.mobile-menu .navigation{
  position: relative;
  display: block;
  width: 100%;
  float: none;
}

.mobile-menu .navigation li{
  position: relative;
  display: block;
  border-top: 1px solid rgba(255,255,255,0.10);
}

.mobile-menu .navigation:last-child{
  border-bottom: 1px solid rgba(255,255,255,0.10);
}

.mobile-menu .navigation li > ul > li:first-child{
  border-top: 1px solid rgba(255,255,255,0.10);
}

.mobile-menu .navigation li > a{
  position: relative;
  display: block;
  line-height: 24px;
  padding: 10px 25px;
  font-size: 15px;
  font-weight: 500;
  color: #ffffff;
  text-transform: uppercase;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease; 
}

.mobile-menu .navigation li ul li > a{
  font-size: 16px;
  margin-left: 20px;
  text-transform: capitalize;
}
.banner{
  position: relative;
  padding: 210px 0px 150px;
  background-size:cover !important;
}
.banner .content-box{
  position: relative;
  display: block;
  z-index:2;
}

.banner .content-box h2{
  display: block;
  font-size: 60px;
  line-height: 77px;
  font-weight: 300;
  margin-bottom: 15px;
  color:var(--site-white)
}
.banner .theme-btn{
	background:var(--site-green);
	color:#000;
	padding:12px 20px;
	border-radius:5px;
	font-weight:900;
	font-size:15px;
	text-transform:uppercase;
	border-left: 5px solid #917124;
}
.banner .theme-btn:hover{
	background:var(--site-color);
	color:#fff;
	border-left: 5px solid #0a5e83;
}
.rw-words{
	display: inline;
	text-indent: 10px;
}
.rw-words-1 span{
	position: absolute;
	opacity: 0;
	overflow: hidden;
	color: var(--site-color-2);
	-webkit-animation: rotateWord 24s linear infinite 0s;
	-ms-animation: rotateWord 24s linear infinite 0s;
	animation: rotateWord 24s linear infinite 0s;
	font-weight:800;
}
.rw-words-1 span:nth-child(2) { 
    -webkit-animation-delay: 3s; 
	-ms-animation-delay: 3s; 
	animation-delay: 3s; 
	color: var(--site-color-2);
}
.rw-words-1 span:nth-child(3) { 
    -webkit-animation-delay: 6s; 
	-ms-animation-delay: 6s; 
	animation-delay: 6s; 
	color: var(--site-color-2);	
}
.rw-words-1 span:nth-child(4) { 
    -webkit-animation-delay: 9s; 
	-ms-animation-delay: 9s; 
	animation-delay: 9s; 
	color: var(--site-color-2);
}
.rw-words-1 span:nth-child(5) { 
    -webkit-animation-delay: 12s; 
	-ms-animation-delay: 12s; 
	animation-delay: 12s; 
	color: var(--site-color-2);
}
.rw-words-1 span:nth-child(6) { 
    -webkit-animation-delay: 15s; 
	-ms-animation-delay: 15s; 
	animation-delay: 15s; 
	color: var(--site-color-2);
}
.rw-words-1 span:nth-child(7) { 
    -webkit-animation-delay: 18s; 
	-ms-animation-delay: 18s; 
	animation-delay: 18s; 
	color: var(--site-color-2);
}
.rw-words-1 span:nth-child(8) { 
    -webkit-animation-delay: 21s; 
	-ms-animation-delay: 21s; 
	animation-delay: 21s; 
	color: var(--site-color-2);
}
@-webkit-keyframes rotateWord {
    0% { opacity: 0; }
    2% { opacity: 0; -webkit-transform: translateY(-30px); }
	5% { opacity: 1; -webkit-transform: translateY(0px);}
    10% { opacity: 1; -webkit-transform: translateY(0px); }
	15% { opacity: 0; -webkit-transform: translateY(30px); }
	80% { opacity: 0; }
    100% { opacity: 0; }
}
@-ms-keyframes rotateWord {
    0% { opacity: 0; }
    2% { opacity: 0; -ms-transform: translateY(-30px); }
	5% { opacity: 1; -ms-transform: translateY(0px);}
    10% { opacity: 1; -ms-transform: translateY(0px); }
	15% { opacity: 0; -ms-transform: translateY(30px); }
	80% { opacity: 0; }
    100% { opacity: 0; }
}
@keyframes rotateWord {
    0% { opacity: 0; }
    2% { opacity: 0; -webkit-transform: translateY(-30px); transform: translateY(-30px); }
	5% { opacity: 1; -webkit-transform: translateY(0px); transform: translateY(0px);}
    10% { opacity: 1; -webkit-transform: translateY(0px); transform: translateY(0px); }
	15% { opacity: 0; -webkit-transform: translateY(30px); transform: translateY(30px); }
	80% { opacity: 0; }
    100% { opacity: 0; }
}
.bottom-banner-section{
  position: relative;
  padding: 70px 0;
  background:#f5f7f9;
}
.bottom-banner-section .pattern-layer{
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background-size: initial;
  background-repeat: no-repeat;
  background-position: center;
}
.scroll-top {
  width: 54px;
  height: 54px;
  line-height: 58px;
  position: fixed;
  bottom: 105%;
  right: 50px;
  font-size: 16px;
  z-index: 99;
  background: var(--site-white);
  color: var(--site-color);
  text-align: center;
  cursor: pointer;
  transition: 1s ease;
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.10) !important;
  border:0;
}

.scroll-top.open {
  bottom: 30px;
}
.sec-title{
  position: relative;
  display: block;
  margin-bottom: 15px;
}

.sec-title h2{
  position: relative;
  display: block;
  font-size: 45px;
  line-height: 55px;
  font-weight: 300;
  margin: 0px;
  color:var(--site-color);
}
.sec-title h2 span{
	color:var(--site-color-2);
	font-weight:800;
}
.centred {
    text-align: center;
}
.bottom-banner-section .sec-title{
	margin-bottom:0;
}
.bottom-banner-section .sec-title h2 {
    font-size: 60px;
    font-weight: 800;
    line-height: 70px;
	margin-bottom:20px;
	color:var(--site-color-2);
}
.bottom-banner-section .sec-title h2 span{
	color:var(--site-green);
}
.bottom-banner-section h3 {
    color: var(--site-black);
    font-size: 30px;
    line-height: 40px;
    font-weight: 300;
	margin-bottom:0;
}
.bottom-banner-section h3 .face-in{
	font-weight:800;
	color:var(--site-red);
	animation: topFadeOut 5s ease-in-out infinite;
}
@keyframes topFadeOut {
  0% {
    opacity: 0;
  }

  75% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}
.mission-section{
	position:relative;
	padding:70px 0;
}
.section-content p{
	font-size: 21px;
    line-height: 30px;
	margin-bottom:10px;
	color:var(--site-black);
	font-weight:400;
	text-align:justify;
}

.section-image .image-box{
  position: relative;
  display: block;
  padding-right: 35px;
}

.section-image .image-box img{
  width: 100%;
}

.section-image .image-box .image-inner{
  position: relative;
  clip-path: polygon(25% 0%, 75% 0%, 107.70% 50%, 75% 100%, 25% 100%, -7.70% 50%);
}

.section-image .image-box .image-inner .image{
  position: relative;
  transform: rotate(-90deg);
}

.section-image .image-box .shape-box .shape{
  position: absolute;
  width: 80px;
  height: 70px;
}


.section-image .image-box .shape-box .shape-2{
  left: -39px;
  top: 104px;
  z-index: 1;
  background:var(--site-green);
  animation: animName 5s linear infinite;
}

.section-image .image-box .shape-box .shape-3{
  right: -5px;
  bottom: 125px;
  z-index: 1;
  background: var(--site-color-2);
  animation: animName 5s linear infinite;
}
@keyframes animName {
 0%{
    transform: rotate(0deg);
   }
100%{
    transform: rotate(360deg);
   }
}
.hexagon_shape{
  clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
  transform: rotate(90deg);
}
.section-image .image-box .text{
  position: absolute;
  left: 10px;
  bottom: 20px;
  width: 190px;
  height: 190px;
  line-height: 190px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 10px solid #fff;
  border-radius: 50%;
  text-align: center;
  background:var(--site-color);
}

.section-image .image-box .text h2{
  position: relative;
  display: block;
  font-size: 36px;
  line-height: 40px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 6px;
}

.section-image .image-box .text h2 span{
  position: absolute;
  top: -9px;
  right: 26px;
  font-weight: 400;
}

.section-image .image-box .text h6{
  display: block;
  font-size: 14px;
  line-height: 24px;
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-bottom:0
}
.who-section{
	position:relative;
	padding:70px 0 120px;
	background-position:top right !important;
	background-repeat:no-repeat !important;
}

.how-section{
	position:relative;
	padding:70px 0;
}
.contact-section{
  position: relative;
  background:#f5f7f9;
  padding:50px 0;
  border-bottom: 8px solid var(--site-color-2);
}
.contact-section .content-column img{
	position: relative;
    top: 50px;
}
.contact-section .inner-content{
  position: relative;
  display: block;
  background: #fff;
  padding: 20px 30px 30px;
  border-radius:25px;
  box-shadow: 0 5px 10px #ccc;
}
.contact-section .sec-title h2{
	margin-bottom:5px;
}
.contact-section .sec-title p{
	font-size: 21px;
    line-height: 30px;
    text-align: justify;
    color: #000;
    font-weight: 400;
}

.contact-section .inner-content form{
  position: relative;
  margin: 0px 10px;
}

.contact-section .inner-content .form-group{
  position: relative;
  display: block;
  margin-bottom: 10px;
  padding: 0px 5px;
}

.contact-section .inner-content .form-group:last-child{
  margin-bottom: 0px;
}

.contact-section .inner-content .form-group label{
  position: relative;
  display: block;
  font-size: 15px;
  line-height: 24px;
  color: var(--site-black);
  font-weight: 500;
  margin-bottom: 2px;
}

.contact-section .inner-content .form-group input[type='text'],
.contact-section .inner-content .form-group input[type='email'],
.contact-section .inner-content textarea{
  position: relative;
  display: block;
  width: 100%;
  height: 50px;
  line-height: 50px;
  background: #f0f5f7;
  font-size: 16px;
      font-weight: 500;
    padding: 0px 20px 0px 10px;
    border: 0;
    color: var(--site-grey);
    border-radius: 5px;
    transition: all 500ms ease;
    border: 1px solid #93deff;
}
.contact-section .inner-content textarea{
	height:100px;
}
.contact-section .inner-content .form-group i{
  position: absolute;
  bottom: 16px;
  right: 20px;
  font-size: 18px;
  color: var(--site-color);
  z-index: 1;
}
.message-btn .theme-btn{
	width:100%;
	border:0;
}

.main-footer{
  position: relative;
  background: var(--site-color);
}

.main-footer .widget-section{
  position: relative;
  padding: 40px 0px;
}

.main-footer .widget-title{
  position: relative;
  display: block;
  margin-bottom: 25px;
}

.main-footer .widget-title h3{
  font-size: 24px;
  line-height: 32px;
  font-weight: 500;
  color: #fff;
}

.main-footer p,
.main-footer a{
  color: #d1dbe5;
}
.main-footer .lower-box{
    position: relative;
 padding-left:75px;
}

.main-footer .lower-box .icon-box{
  position: absolute;
  display: inline-block;
  left: 0px;
  top: 0px;
  width: 60px;
  height: 55px;
  line-height: 55px;
  text-align: center;
  font-size: 24px;
  color: #fff;
  z-index: 1;
}

.main-footer .lower-box .icon-box:before{
  position: absolute;
  content: '';
  width: 60px;
  height: 55px;
  left: 0px;
  top: 0px;
  z-index: -1;
  clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
  transform: rotate(90deg);
  background: var(--site-green);
}

.main-footer .lower-box h6{
  display: block;
  font-size: 18px;
  line-height: 28px;
  color: var(--site-black);
  font-weight: 800;
  text-transform: capitalize;
  letter-spacing: 0.6px;
  margin-bottom: 0;
}

.main-footer .lower-box h2{
  position: relative;
  display: inline-block;
  color: #fff;
  font-size:21px;
  font-weight:400;
  padding-right: 20px;
  line-height:30px;
}

.main-footer .lower-box h6 a i{
  position: absolute;
  top: 2px;
  right: 0px;
}

.footer-bottom{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0px;
}

.footer-bottom .copyright p a:hover{
  color: #fff;
}
.main-footer .social-links li{
  position: relative;
  display: inline-block;
  float: left;
  margin-right: 10px;
}

.main-footer .social-links li:last-child{
  margin: 0px !important;
}

.main-footer .social-links li h6{
  font-size: 20px;
  line-height: 38px;
  font-weight: 800;
  color: #fff;
  margin-right: 5px;
  margin-bottom:0;
}

.main-footer .social-links li a{
  position: relative;
  display: inline-block;
  width: 38px;
  height: 38px;
  line-height: 40px;
  font-size: 16px;
  color: #fff !important;
  background: #3b5998;
  text-align: center;
  border-radius: 50%;
}

.main-footer .social-links li:nth-child(3) a{
  background: #55acee;
}

.main-footer .social-links li:last-child(3) a{
  background: #0071bc;
}
.who-section .row > *{
	padding-right:0;
}
.service-block-one {
    margin-bottom: 0px;
}
.service-block-one .inner-box{
  position: relative;
  display: block;
  overflow: hidden;
  background: #fff;
  box-shadow: 0px 5px 15px 0px #e4e9ea;
  border-radius:15px;
}

.service-block-one .inner-box .image-box{
  position: relative;
  display: block;
  overflow: hidden;
}

.service-block-one .inner-box .image-box:before{
  position: absolute;
  content: '';
  background: #fff;
  width: 130px;
  height: 80px;
  right: -1px;
  bottom: 0px;
  z-index: 1;
  clip-path: polygon(0% 100%, 100% 0%, 100% 100%, 0% 100%, 0% 0%);
}

.service-block-one .inner-box .image-box .image{
  position: relative;
  display: block;
  overflow: hidden;
  background: #16436f;
}

.service-block-one .inner-box .image-box .image img{
  width: 100%;
  transition: all 500ms ease;
}

.service-block-one .inner-box:hover .image-box .image img{
  opacity: 0.3;
  transform: scale(1.05);
}

.service-block-one .inner-box .image-box .icon-box{
  position: absolute;
  right: 10px;
  bottom: 10px;
  width: 80px;
  height: 70px;
  line-height: 70px;
  text-align: center;
  font-size: 38px;
 font-weight: 800;
    font-size: 35px;
	color:#d5d5d5;
  z-index: 2;
}

.service-block-one .inner-box .image-box .icon-box:before{
  position: absolute;
  content: '';
  width: 80px;
  height: 70px;
  left: 0px;
  top: 0px;
  clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
  transform: rotate(90deg);
  z-index: -1;
  background: #f9f9f9;
}

.service-block-one .inner-box .image-box .icon-box:after{
  position: absolute;
  content: '';
  background-image: url(../images/shape-2.png);
  left: 5px;
  top: -5px;
  width: 70px;
  height: 80px;
  background-repeat: no-repeat;
  z-index: -1;
  transition: all 500ms ease;
}

.service-block-one .inner-box:hover .image-box .icon-box:after{
  top: -8px;
  left: 10px;
}

.service-block-one .inner-box .lower-content{
  position: relative;
  display: block;
  padding: 0 15px 15px;
  min-height:300px;
}

.service-block-one .inner-box .lower-content h3{
  display: block;
    font-size: 24px;
    line-height: 30px;
    font-weight: 800;
    margin-bottom: 10px;
}

.service-block-one .inner-box .lower-content h3 a{
  display: inline-block;
  color: var(--site-color);
}
.service-block-one .list li{
  position: relative;
    display: block;
    margin-bottom: 8px;
    padding-left: 25px;
    font-size: 16px;
    font-weight: 500;
    color: var(--site-grey);
	border-bottom: 1px dashed #c5cace;
    padding-bottom: 8px;
	line-height:24px
}

.service-block-one .list li:last-child{
  margin-bottom: 0px;
  border-bottom: 0px dashed #14246f;
    padding-bottom: 0px;
}

.service-block-one .list li:before{
  position: absolute;
  content: "\f113";
  font-family: 'flaticon';
  font-size: 16px;
  left: 0px;
  top: 0px;
  color: var(--site-green);
}
.floating {  
    animation-name: floating;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
}
 
@keyframes floating {
    0% { transform: translate(0,  0px); }
    50%  { transform: translate(0, 15px); }
    100%   { transform: translate(0, -0px); }    
}
.ocean {
  height: 80px; /* change the height of the waves here */
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  overflow-x: hidden;
}

.wave {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 800 88.7'%3E%3Cpath d='M800 56.9c-155.5 0-204.9-50-405.5-49.9-200 0-250 49.9-394.5 49.9v31.8h800v-.2-31.6z' fill='%23e7a609'/%3E%3C/svg%3E");
  position: absolute;
  width: 200%;
  height: 100%;
  animation: wave 10s -3s linear infinite;
  transform: translate3d(0, 0, 0);
  opacity: 0.8;
}

.wave:nth-of-type(2) {
  bottom: 0;
  animation: wave 18s linear reverse infinite;
  opacity: 0.5;
}

.wave:nth-of-type(3) {
  bottom: 0;
  animation: wave 20s -1s linear infinite;
  opacity: 0.5;
}

@keyframes wave {
    0% {transform: translateX(0);}
    50% {transform: translateX(-25%);}
    100% {transform: translateX(-50%);}
}
.service-block-one .list li.moretext,
.service-block-one .list li.moretext2,
.service-block-one .list li.moretext3,
.service-block-one .list li.moretext4 {
  display: none;
}
.service-block-one .moreless-button,
.service-block-one .moreless-button2,
.service-block-one .moreless-button3,
.service-block-one .moreless-button4 {
    font-size: 16px;
    color: var(--site-color-2);
    font-weight: 600;
    border-bottom: 2px solid var(--site-color-2);
	margin-top:5px;
	display:inline-block;
}
.service-block-one .moreless-button:hover,
.service-block-one .moreless-button2:hover,
.service-block-one .moreless-button3:hover,
.service-block-one .moreless-button4:hover{
	color: var(--site-color);
    border-bottom: 2px solid var(--site-color);
}
.middle-footer{
	margin-left:120px;
}
.sticky-header .logo-box .logo img {
    width: 150px;
}
.section-bg-content {
    background: #fff6e0;
    padding: 10px 25px;
    border-radius: 15px;
    box-shadow: 0 0px 10px #9b9b9b;
}


@media (min-width:200px) and (max-width:768px){
	.logo-box figure img{
		width:350px
	}
	.header-lower .outer-box{
		justify-content:center;
	}
	.logo-box{
		padding:10px 15px;
	}
	.banner .content-box h2 {
    font-size: 21px;
    line-height: 31px;
	}
	.banner {
    padding: 160px 0 60px;
	background-position: bottom -10px right -300px !important;
	}
	.banner .theme-btn {
		padding: 8px 15px;
		font-size: 16px;
	}
	.handle-preloader .animation-preloader .spinner {
    height: 100px;
    width: 100px;
	}
	.handle-preloader .animation-preloader .txt-loading .letters-loading {
    letter-spacing: 5px;
    font-size: 45px;
    line-height: 55px;
	}
	.handle-preloader .animation-preloader .load-img {
    position: relative;
    top: 75px;
    left: 150px;
    right: 0;
    width: 70px;
}
	.bottom-banner-section {
    padding: 50px 0;
	}
	.bottom-banner-section .sec-title h2 {
    font-size: 40px;
    line-height: 50px;
	}
	.bottom-banner-section h3 {
    font-size: 20px;
    line-height: 30px;
    font-weight: 500;
	}
	.mission-section{
		padding: 50px 0;
	}
	.section-image .image-box {
    padding-right: 0;
	margin-bottom:40px;
	}
	.section-image .image-box .shape-box .shape-2 {
    left: 0;
    top: 65px;
	}
	.section-image .image-box .shape-box .shape-3 {
    right: 0;
    bottom: 50px;
	}
	.section-image .image-box .text {
    left: 0px;
    bottom: -30px;
	}
	.who-section{
		padding:50px 0 100px;
	}
	.service-block-one .inner-box .lower-content{
		min-height:auto;
	}
	.contact-section .content-column img{
		top:-40px;
	}
	.main-footer .lower-box{
		margin-bottom:20px;
	}
	.middle-footer{
	margin-left:0px;
	}
	.sticky-header .logo-box .logo img {
    width: 180px;
	}
	.who-section .row > *{
	padding-right:calc(var(--bs-gutter-x) * 0.5);
	}
	.service-block-one {
    margin-bottom: 20px;
}
}