body{
    font-family: 'Poppins', sans-serif;
	font-size: 16px;
	line-height: 24px;
	font-weight: 400;
	color: #212112;
	overflow-x: hidden;
}

.container{
  max-width: 1440px;
}
@media screen and (max-width: 1600px){
  .container {
  max-width: 1250px;
}
}
@media screen and (max-width: 1500px){
  .container{
  max-width: 1140px;
}
}
@media screen and (max-width: 1200px){
  .container{
  max-width: 960px;
}
}
h1,h2,h3,h4,h5,h6{
	font-family: "Abhaya Libre", serif;
}
.start-header {
	opacity: 1;
	transform: translateY(0);
	padding: 5px 0;
	box-shadow: 0 10px 30px 0 rgba(138, 155, 165, 0.15);
	-webkit-transition : all 0.3s ease-out;
	transition : all 0.3s ease-out;
}
.start-header.scroll-on {
	box-shadow: 0 5px 10px 0 rgba(138, 155, 165, 0.15);
	padding: 5px 0;position: fixed;
	-webkit-transition : all 0.3s ease-out;
	transition : all 0.3s ease-out;
}
.start-header.scroll-on .navbar-brand img{
	height: 50px;
	-webkit-transition : all 0.3s ease-out;
	transition : all 0.3s ease-out;
}
.navigation-wrap{
	position: relative;
	width: 100%;
	top: 0;
	left: 0;
	z-index: 1000;
	-webkit-transition : all 0.3s ease-out;
	transition : all 0.3s ease-out;
}
.navbar{
	padding: 0;
}
.navbar-brand img{
	height: 70px;
	width: auto;
	display: block;
	-webkit-transition : all 0.3s ease-out;
	transition : all 0.3s ease-out;
}
.navbar-toggler {
	float: right;
	border: none;
	padding-right: 0;
}
.navbar-toggler:active,
.navbar-toggler:focus {
	outline: none;
}
.navbar-light .navbar-toggler-icon {
	width: 24px;
	height: 17px;
	background-image: none;
	position: relative;
	border-bottom: 1px solid #000;
    transition: all 300ms linear;
}
.navbar-light .navbar-toggler-icon:after, 
.navbar-light .navbar-toggler-icon:before{
	width: 24px;
	position: absolute;
	height: 1px;
	background-color: #000;
	top: 0;
	left: 0;
	content: '';
	z-index: 2;
    transition: all 300ms linear;
}
.navbar-light .navbar-toggler-icon:after{
	top: 8px;
}
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
	transform: rotate(45deg);
}
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before {
	transform: translateY(8px) rotate(-45deg);
}
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
	border-color: transparent;
}
.nav-link{
	color: #fff !important;
	font-weight: 500;
    transition: all 200ms linear;
    font-family: "Abhaya Libre", serif;
    font-size: 20px;
    text-transform: uppercase;
}
.nav-item:hover .nav-link{
	color: #01afe0 !important;
}
.nav-item.active .nav-link{
	color: #777 !important;
}
.nav-link {
	position: relative;
	padding: 5px 0 !important;
	display: inline-block;
}
.nav-item{
	position: relative;
    transition: all 200ms linear;
}
.dropdown-toggle::after {
  display: none;
}

.dropdown-item {
  padding: 7px 30px;
  color: #212121;
  border-radius: 2px;
    transition: all 200ms linear;
    font-size:18px;
    text-transform: uppercase;
    border-bottom: 1px solid #ccc;font-family: "Abhaya Libre", serif;
}
.dropdown-item:hover, 
.dropdown-item:focus {
  color: #fff;
  background-color: #67b437;
}

.nav-item .dropdown-menu {
    transform: translate3d(0, 10px, 0);
    visibility: hidden;
    opacity: 0;
	max-height: 0;
    display: block;
	padding: 0;
	margin: 0;
    transition: all 200ms linear;
}
.nav-item.show .dropdown-menu {
    opacity: 1;
    visibility: visible;
	max-height: 999px;
    transform: translate3d(0, 0px, 0);
}
.dropdown-menu {
	padding: 0px!important;
	margin: 0;
	font-size: 13px;
	letter-spacing: 1px;
	color: #212121;
	background-color: #fcfaff;
	border: none;
	border-radius: 3px;
	box-shadow: 0 5px 10px 0 rgba(138, 155, 165, 0.15);
    transition: all 200ms linear;
}
.dropdown-toggle::after {
	display: none;
}

.dropdown-item {
	padding: 5px 25px;
	color: #212121;
	border-radius: 2px;
    transition: all 200ms linear;
}
.dropdown-item:hover, 
.dropdown-item:focus {
	color: #fff;
	background-color: rgb(2, 58, 114);
}


@media (max-width: 767px) { 
	
	.nav-item:after{
		display: none;
	}
	
	.dropdown-menu {
		padding: 0 !important;
		background-color: transparent;
		box-shadow: none;
		transition: all 200ms linear;
	}
	.dropdown-toggle[aria-expanded="true"] + .dropdown-menu {
		margin-top: 10px !important;
		margin-bottom: 20px !important;
	}
	
}

.logo {
	position: absolute;
	bottom: 30px;
	right: 30px;
	display: block;
	z-index: 100;
	transition: all 250ms linear;
}
.logo img {
	height: 26px;
	width: auto;
	display: block;
  filter: brightness(10%);
	transition: all 250ms linear;
}

.topbar {
	background: #01afe0;
	padding: 5px 0;
  position: relative;
  z-index: 3;
}

.topbar ul li {
	display: inline-block;
	color: #fff;
	margin-right: 20px
}

.topbar ul li a {
	font-size: 14px;
	padding-left: 5px;
	color: #fff !important
}

ul {
	padding: 0;
	margin: 0
}
.social {
	float: right
}


.topbar ul {
	float: left
}

.pbl-0 {
	padding: 0
}


.social {
	padding-right: 0px;
	float:right !important;
}

a {
	text-decoration: none !important
}


@media screen and (max-width:1199px){
	.nav-link{
		font-size: 17px;
	}
	.navbar-brand img {
  height: 50px;
}
}


@media screen and (max-width:767px){
	.topbar{
		display: none;
	}
}



.topbar::after {
  background: #023a72;
  content: "";
  position: absolute;
  z-index: -1;
  width: 70%;
  height: 110%;
  top: 0;
  right: calc(30%);
  transform: skewX(180deg);
  border-right: 4px solid #fff;
}

.navbar-nav{
  background: #023a72;
  padding: 12px 40px !important;
  border-radius: 51px;
}




/*Slider*/

.hero-slider {
  width: 100%;
  height: 700px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  z-index: 0;
}

@media (max-width: 991px) {
  .hero-slider {
    height: 600px;
  }
}

@media (max-width: 767px) {
  .hero-slider {
    height: 500px;
  }
}

.hero-slider .swiper-slide {
  overflow: hidden;
  color: #fff;
}

.hero-slider .swiper-container {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

.hero-slider .slide-inner {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: left;
}

.hero-slider .swiper-button-prev,
.hero-slider .swiper-button-next {
  background: transparent;
  width: 55px;
  height: 55px;
  line-height: 53px;
  margin-top: -30px;
  text-align: center;
  border: 2px solid #d4d3d3;
  border-radius: 55px;
  opacity:0;
  visibility:hidden;
  transition:all .3s ease;
}
.hero-slider:hover .swiper-button-prev,
.hero-slider:hover .swiper-button-next {
  transform:translateX(0);
  opacity:1;
  visibility:visible;
}

@media (max-width: 767px) {
  .hero-slider .swiper-button-prev,
  .hero-slider .swiper-button-next {
    display: none;
  }
}

.hero-slider .swiper-button-prev {
  left: 25px;
  transform:translateX(50px);
}

.hero-slider .swiper-button-prev:before {
  font-family: "Font Awesome 5 Free";
  content: "\f060";
  font-size: 15px;
  color: #d4d3d3;
  font-style: normal;
  display: inline-block
  vertical-align: middle;
  font-weight: 900;
}

.hero-slider .swiper-button-next {
  right: 25px;
  transform:translateX(-50px);
}

.hero-slider .swiper-button-next:before {
  font-family: "Font Awesome 5 Free";
  content: "\f061";
  font-size: 15px;
  color: #d4d3d3;
  font-style: normal;
  display: inline-block
  vertical-align: middle;
  font-weight: 900;
}

.hero-slider .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  text-align: left;
  line-height: 12px;
  font-size: 12px;
  color: #000;
  opacity: 0.3;
  background:#fff;
  transition:all .2s ease;
}

.hero-slider .swiper-pagination-bullet-active {
  opacity:1;
}

.hero-slider .swiper-container-horizontal > .swiper-pagination-bullets,
.hero-slider .swiper-pagination-custom,
.hero-slider .swiper-pagination-fraction {
  bottom: 30px;
}

@media screen and (min-width: 992px) {
  .hero-slider .swiper-container-horizontal > .swiper-pagination-bullets,
  .hero-slider .swiper-pagination-custom,
  .hero-slider .swiper-pagination-fraction {
/*     display: none; */
}
}
.swiper-pagination {
  text-align:left;
}

.hero-slider .swiper-container-horizontal > .swiper-pagination-bullets{
  bottom:50px;
  max-width: 1200px;
  padding: 0 15px;
  margin: 0 auto;
  left: 50%;
  text-align: center;
  transform: translateX(-50%);
}
}
@media (min-width: 767px) {
  .hero-slider .swiper-container-horizontal > .swiper-pagination-bullets{
    bottom:30px;

  }
}
/*--------------------------------------------------------------
  #hero-style
--------------------------------------------------------------*/
.hero-style {
  height: 780px;
  transition:all .4s ease;
}
.hero-slider .slide-inner::before{
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../images/hero_overlay.webp');
}
@media (max-width: 991px) {
  .hero-style {
    height: 600px;
  }
}

@media (max-width: 767px) {
  .hero-style{
    height: 350px;
  }
}

@media screen and (min-width: 992px) {
  .hero-style .container {
    padding-top: 0px;
  }
}

.slide-title h2{
  font-size: 40px;
  width: fit-content;
  background: #023a72;
  padding: 10px 60px;
  border-radius: 55px;
}




.aboutus{
	padding: 0px 0;
}
.aboutus .col-xl-4, .aboutus .col-xl-5{
	padding-left: 0px !important;
}
.aboutuscontent{
	padding: 60px 0;
}
p{
	font-family: 'Poppins', sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: #212112;
}
.aboutuscontent h2{
	color: #023a72;
  font-weight: 800;
  font-size: 46px;
}
.aboutus ul li{
	list-style: disclosure-closed;
  margin-left: 15px;
  margin-bottom: 5px;
}
.aboutus h4{
	font-weight: 600;
}


@media screen and (max-width:1600px){
	.aboutuscontent{
	padding: 50px 0;
}
}
@media screen and (max-width:1500px){
	.aboutuscontent{
	padding: 60px 0;
}
.abtsec h4, .abtsec ul li{
	display: none;
}
}

@media screen and (max-width:767px){
	.slide-title h2 {
  font-size: 22px;
}
  .aboutuscontent {
    padding: 0px 0 10px;
  }
  .aboutuscontent h2{
  	font-size: 32px;
  }
  .aboutuscontent h3{
  	font-size: 24px;
  }
}



/*Services*/
.service-one {
  position: relative;
  background-color: #f6f4ec;
  padding: 120px 0;
}
@media (max-width: 767px) {
  .service-one {
    padding: 80px 0;
  }
}
.service-one__shape {
  position: absolute;
  left: -10px;
  top: 0;
  width: 100%;
  height: 100%;
  background-position: top left;
  background-repeat: no-repeat;
  animation: shapeMove 4s linear 0s infinite;
}
@media (max-width: 1599px) {
  .service-one__shape {
    display: none;
  }
}
.service-one__item {
  position: relative;
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  z-index: 2;
  transition: all 500ms ease;
}
.service-one__item__content {
  position: relative;
  padding: 32px 30px 33px;
}
.service-one__item__icon {
  font-size: 60px;
  line-height: 1;
  position: relative;
  z-index: 3;
  color: #02b3e3;
  display: inline-block;
  margin: 0 0 20px;
  transition: 500ms ease;
}
.service-one__item__icon span {
  display: inline-block;
  transition: all 500ms linear;
  transition-delay: 0s;
  transition-delay: 0.1s;
  transform: scale(1);
}
.service-one__item__icon::before {
  position: absolute;
  z-index: -1;
  right: -3px;
  top: -3px;
  width: 24px;
  height: 24px;
  background-color: #02b3e3;
  opacity: 0.2;
  border-radius: 50%;
  content: "";
  transition: all 500ms ease;
  animation: zoomsIn 4s linear 0s infinite;
}
.service-one__item__icon::after {
  position: absolute;
  z-index: -1;
  left: -3px;
  bottom: 0;
  width: 24px;
  height: 24px;
  background-color: #02b3e3;
  opacity: 0.2;
  border-radius: 50%;
  content: "";
  transition: all 500ms ease;
  animation: zoomsIn 4s linear 0s infinite;
}
.service-one__item:hover .service-one__item__icon {
  color: #02b3e3;
}
.service-one__item:hover .service-one__item__icon span {
  transform: scale(0.9);
}
.service-one__item:hover .service-one__item__icon::after {
  left: 62%;
}
.service-one__item:hover .service-one__item__icon::before {
  right: 65%;
}
.service-one__item__title {
  font-size: 26px;
  font-weight: 700;
  text-transform: capitalize;
  margin: 0 0 15px;
}
.service-one__item__title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.service-one__item__title a:hover {
  background-size: 100% 1px;
}
.service-one__item__title a:hover {
  color: #02b3e3;
}
.service-one__item__text {

  border-bottom: 1px solid #dddddd;
  padding-bottom: 13px;
  margin: 0 0 25px;
}
.service-one__item__link {
  color: #636363;
  font-size: 16px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-transform: capitalize;
  padding: 0 15px 0 9px;
  transition: 0.3s all ease;
  position: relative;
  background: transparent;
  border: none;
}
.service-one__item__link::before {
  position: absolute;
  content: "";
  left: 0;
  z-index: -1;
  background-color: #02b3e3;
  width: 38px;
  height: 38px;
  border-radius: 100px;
  transition: 0.4s all cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.service-one__item__link i {
  font-size: 20px;
  margin-right: 15px;
  color: #fff;
  transition: 0.3s all ease;
}
.service-one__item__link:hover {
  color: #fff;
}
.service-one__item__link:hover::before {
  width: 100%;
}
.service-one__item__image {
  position: relative;
  overflow: hidden;
}
.service-one__item__image::after {
  background: rgba(255, 255, 255, 0.3);
  bottom: 0;
  content: "";
  left: 50%;
  position: absolute;
  right: 51%;
  top: 0;
  opacity: 1;
  pointer-events: none;
  transition: all 400ms linear;
}
.service-one__item__image img {
  width: 100%;
  height: auto;
  border-radius: 0 0 10px 10px;
}
.service-one__item:hover .service-one__item__image::after {
  left: 0;
  right: 0;
  opacity: 0;
  transition: all 400ms linear;
}
.service-one__bottom {
  position: relative;
  margin-top: 65px;
}
.service-one__bottom__content {
  position: relative;
}
.service-one__bottom__title {
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 20px;
}
.service-one__bottom__list {
  position: relative;
  margin: 0 0 30px;
  padding: 0;
  list-style: none;
}
.service-one__bottom__list li {
  position: relative;
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-top: 4px;
}
.service-one__bottom__list li i {
  color: #122f2a;
  transition: all 300ms ease;
}
.service-one__bottom__list li:hover i {
  color: #02b3e3;
}
.service-one__bottom .bt-btn {
  font-size: 14px;
  padding: 8px 30px;
}
.service-one__bottom__image {
  padding: 0 0 0 48px;
  position: relative;
}
@media (max-width: 450px) {
  .service-one__bottom__image {
    padding-left: 30px;
  }
}
.service-one__bottom__image::after {
  height: 100%;
  width: 9px;
  content: "";
  background-color: #02b3e3;
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 10px;
}
@media (max-width: 991px) {
  .service-one__bottom__image {
    max-width: 670px;
    margin-top: 50px;
  }
}
.service-one__bottom__image .row {
  --bs-gutter-x: 22px;
}
@media (max-width: 767px) {
  .service-one__bottom__image .row .col-md-6:last-child img {
    margin-top: 20px;
  }
}
.ourservices{
	background: #e5f2ff;
	padding: 60px 0 180px;
}
.ourservices h2{
	color: #023a72;
  font-weight: 800;
  font-size: 46px;
  margin-bottom: 15px;
}
/**/


.funfact-one {
  position: relative;
  margin-top: -90px;
}
.funfact-one--about {
  padding-bottom: 120px;
}
@media (max-width: 767px) {
  .funfact-one--about {
    padding-bottom: 80px;
  }
}
.funfact-one__list {
  position: relative;
  z-index: 2;
  margin: 0 0 0;
  padding: 40px 40px;
  line-height: 1;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  justify-content: space-between;
  background-color: #fff;
  filter: drop-shadow(0 0 55px rgba(0, 0, 0, 0.21));
  border-radius: 150px;
}
@media (max-width: 1199px) {
  .funfact-one__list {
    grid-template-columns: repeat(2, 1fr);
    padding: 40px 60px;
  }
}
@media (max-width: 767px) {
  .funfact-one__list {
    grid-template-columns: repeat(1, 1fr);
    border-radius: 100px;
    padding: 30px 40px;
  }
}
.funfact-one__list li {
  position: relative;
  display: flex;
  align-items: center;
  flex-grow: 1;
  gap: 18px;
  padding: 15px 30px;
}
@media (max-width: 991px) {
  .funfact-one__list li {
    padding: 15px 20px;
  }
}
@media (max-width: 767px) {
  .funfact-one__list li {
    padding: 15px 30px;
  }
}
.funfact-one__list li:hover .funfact-one__list__text {
  background-size: 100% 1px;
}
.funfact-one__list li:hover .funfact-one__list__icon {
  background-color: #023a72;
}
.funfact-one__list li:hover .funfact-one__list__icon span {
  transform: scale(0.9);
}
.funfact-one__list li + li::after {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 1px;
  height: 100%;
  content: "";
  background-color: #dddddd;
}
@media (max-width: 1199px) {
  .funfact-one__list li + li::after {
    display: none;
  }
}
.funfact-one__list__icon {
  width: 70px;
  height: 70px;
  background-color: #202221;
  color: #fff;
  font-size: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 400ms linear;
}
.funfact-one__list__icon span {
  display: inline-block;
  transition: all 400ms linear;
  transform: scale(1);
}
.funfact-one__list__number {
  display: flex;
  align-items: center;
  margin: 0 0 4px;
  line-height: 1.2;
  font-size: 36px;
  font-weight: 700;
}
.funfact-one__list__text {
  font-size: 17px;
  line-height: 1.2;
  margin: 0;
  display: inline-block;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 300ms linear;
}

.funfact-one__list__icon img{
	height: 40px;
}




/*Testimonials*/

.testimonials{
	padding: 70px 0;
}
.testimonials h2 {
  color: #023a72;
  font-weight: 800;
  font-size: 46px;
  margin-bottom: 15px;
}

.testimonials-card {
  position: relative;
  border: 1px solid #dddddd;
  border-radius: 30px;
  transition: all 500ms ease;
  padding: 30px 70px 25px 45px;
  min-height: 320px;
}
@media (max-width: 767px) {
  .testimonials-card {
    padding: 50px 30px 48px 30px;
  }
}
.testimonials-card::after {
  position: absolute;
  right: -1px;
  top: -1px;
  width: 90px;
  height: 90px;
  background-color: #023a72;
  clip-path: polygon(100% 0, 0 0, 100% 100%);
  content: "";
  z-index: -1;
  border-radius: 0 30px 0 0;
  transition: all 500ms ease;
}
.testimonials-card__icon {
  position: absolute;
  right: 15px;
  top: 15px;
  width: 55px;
  height: 55px;
  background-color: #fff;
  font-size: 22px;
  color: #023a72;
  border: 3px solid #023a72;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 500ms ease;
}
.testimonials-card:hover {
  border-color: #023a72;
}
.testimonials-card:hover .testimonials-card__icon {
  color: #023a72;
  border-color: #023a72;
}
.testimonials-card:hover::after {
  background-color: #023a72;
}
.testimonials-card__image {
  width: 99px;
  height: 99px;
  border-radius: 50%;
  overflow: hidden;
  position: absolute;
  left: 30px;
  top: 51px;
}
@media (max-width: 767px) {
  .testimonials-card__image {
    position: relative;
    top: 0;
    left: 0;
    margin: 0 0 20px;
  }
}
.testimonials-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  object-position: center;
}
.testimonials-card__rating {
  display: flex;
  align-items: center;
  color: #ffa415;
  font-size: 22px;
  letter-spacing: 10px;
  margin-bottom: 12px;
}
.testimonials-card__content {
  font-size: 19px;
  line-height: 34px;
  font-style: italic;
  margin: 0 0 18px;
}
.testimonials-card__name {
  margin: 0;
  text-transform: capitalize;
  font-size: 22px;
  font-weight: bold;
  line-height: 1;
  margin-bottom: 9px;
}
.testimonials-card__designation {
  margin: 0;
  line-height: 1;
}

.post-slide{
	padding: 20px;
}








/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact-one {
  position: relative;
  z-index: 1;
  background-color: #202221;
  overflow: hidden;
}
.contact-one::after {
  position: absolute;
  right: -60px;
  bottom: -380px;
  width: 600px;
  height: 600px;
  background-color: #023a72;
  border-radius: 50%;
  content: "";
  z-index: -1;
  animation: zoomsIn 4s linear 0s infinite;
}
@media (max-width: 1500px) {
  .contact-one::after {
    display: none;
  }
}
.contact-one__shape {
  position: absolute;
  right: 55px;
  bottom: 150px;
  width: 254px;
  height: 254px;
  background-position: center center;
  background-repeat: no-repeat;
  animation: treeMove2 6s linear 0s infinite;
}
@media (max-width: 1500px) {
  .contact-one__shape {
    display: none;
  }
}
.contact-one__image {
  position: relative;
  overflow: hidden;
}
.contact-one__image img {
  max-width: 100%;
}
@media (min-width: 992px) {
  .contact-one__image img {
    max-width: none;
  }
}
@media (max-width: 767px) {
  .contact-one__image img {
    min-height: 600px;
    object-fit: cover;
  }
}
.contact-one__info {
  position: absolute;
  left: 40px;
  bottom: 40px;
  z-index: 2;
  width: 300px;
  background-color: #023a72;
  border-radius: 10px;
  padding: 30px 20px 30px;
  border-bottom: 10px solid #02b3e3;
  text-align: center;
}
.contact-one__info__icon {
  font-size: 44px;
  margin-bottom: 20px;
  line-height: 1;
  color: #fff;
  display: block;
}
.contact-one__info__icon span {
  display: inline-block;
  transition: all 300ms linear;
  transform: scale(1);
}
.contact-one__info:hover .contact-one__info__icon span {
  transform: scale(0.9);
}
.contact-one__info__sub-title {
  text-transform: uppercase;
  margin: 14px 0 12px;
  color: #122f2a;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 1.1px;
}
.contact-one__info__title {
  font-size: 32px;
  line-height: 31px;
  font-weight: 700;
  margin: 0 0 14px;
  color: #fff;
}
.contact-one__info__phone {
  text-transform: uppercase;
  margin: 0;
  color: #122f2a;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 1.1px;
  color: #fff;
}
.contact-one__info__phone a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.contact-one__info__phone a:hover {
  background-size: 100% 1px;
}
.contact-one__info__phone a:hover {
  color: #fff;
}
.contact-one__form {
  padding: 40px 45px 45px;
  position: relative;
  z-index: 10;
  background-color: #fff;
  max-width: 470px;
  width: 100%;
  border-top: 3px solid #023a72;
  margin-left: 50px;
  text-align: center;
}
@media (max-width: 991px) {
  .contact-one__form {
    margin: 80px auto;
  }
}
.contact-one__form .sec-title {
  padding-bottom: 10px;
}
.contact-one__form .bb {
  margin: 0;
  width: 100%;
  color: #023a72;
}

.contact-info {
  position: relative;
}
.contact-info__list {
  margin: -1px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  border: 1px solid #dddddd;
}
@media (max-width: 991px) {
  .contact-info__list {
    flex-direction: column;
  }
}
.contact-info__item {
  position: relative;
  display: flex;
  align-items: center;
  flex-grow: 1;
  gap: 28px;
  padding: 50px 60px;
}
@media (max-width: 1199px) {
  .contact-info__item {
    padding: 50px 30px;
  }
}
.contact-info__item::before {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  margin: auto;
  width: calc(100% - 30px);
  height: calc(100% - 30px);
  border: 1px dashed #023a72;
  transform: scale(1.1);
  opacity: 0;
  z-index: -1;
  transition: all 400ms linear;
}
.contact-info__item:hover::before {
  opacity: 1;
  transform: scale(1);
}
.contact-info__item__icon {
  width: 64px;
  height: 64px;
  background-color: #202221;
  color: #fff;
  font-size: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 400ms linear;
}
.contact-info__item__icon span {
  display: inline-block;
  transition: all 400ms linear;
  transform: scale(1);
}
.contact-info__item:hover .contact-info__item__icon {
  background-color: #023a72;
}
.contact-info__item:hover .contact-info__item__icon span {
  transform: scale(0.9);
}
.contact-info__item__title {
  margin: 0 0 8px;
  font-size: 22px;
  font-weight: 700;
}
.contact-info__item__text {
  margin: 0;
}
.contact-info__item__text a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.contact-info__item__text a:hover {
  background-size: 100% 1px;
}
.contact-info__item__text a:hover {
  color: #023a72;
}
.contact-info__item + .contact-info__item::after {
  position: absolute;
  left: 0;
  top: 0;
  width: 1px;
  height: 100%;
  content: "";
  background-color: #dddddd;
}
@media (max-width: 991px) {
  .contact-info__item + .contact-info__item::after {
    width: 100%;
    height: 1px;
  }
}
.contact-info--contact-page {
  padding: 120px 0;
}
@media (max-width: 767px) {
  .contact-info--contact-page {
    padding: 80px 0;
  }
}
.contact-info--contact-page .contact-info__item {
  border: 1px solid #dddddd;
  padding: 32px 60px;
  transition: all 400ms ease;
}
@media (max-width: 1199px) {
  .contact-info--contact-page .contact-info__item {
    padding: 32px 25px;
    gap: 20px;
  }
}
.contact-info--contact-page .contact-info__item::before {
  width: 100%;
  height: 100%;
}
.contact-info--contact-page .contact-info__item:hover {
  border-color: transparent;
}
.form-one .bootstrap-select > .dropdown-toggle,
.form-one input[type=text],
.form-one input[type=email],
.form-one textarea {
  display: block;
  width: 100%;
  height: 55px;
  background-color: #fff;
  color: #636363;
  font-size: 16px;
  font-weight: 400;
  border: none;
  border: 1px solid #dddddd;
  filter: drop-shadow(-2.424px 4.373px 14.5px rgba(0, 0, 0, 0.03));
  outline: none;
  padding-left: 30px;
  padding-right: 30px;
  margin-bottom: 10px;
}
.form-one textarea {
  height: 195px;
  padding-top: 20px;
}
.form-one button{
	margin-top: 19px;
  text-align: left;
  float: left;
  background: #023a72;
  border: 1px solid #023a72;
  color: #fff;
  padding: 10px 20px;
  border-radius: 31px;
  transition: 0.5s ease;
}
.form-one button::hover{
	background: #fff;
	color: #023a72;
}
.contact-one .col-lg-6{
	padding:0;
}
.sec-title__title
{
	color: #023a72;
  font-weight: 800;
  font-size: 40px;
  margin-bottom: 15px;
}



.copyright {
  background: #023A72;
  padding: 10px 0;
  color: #fff;
  text-align: center;
}.copyright p {
  margin-bottom: 0;  color: #fff !important;
}
.copyright p a{
  color: #fff !important;
}
  .st-footer-area.style2 {
  padding-top: 60px;
  padding-bottom: 45px;background: #e5f2ff;
}
.st-footer-area.style2 .st__footer__title h2 {
  font-size: 30px;color: #023a72;font-weight: 600;
}
.st__footer__logo img{
  height: 60px;
}

.st-footer-area.style2 .st__footer__link a {
  margin-bottom: 10px;color: #212112 !important;
  line-height: 2;
}
.st-footer-area.style2 .st__footer__link a:hover{
  text-decoration: underline;
}
.st__footer__grid ul li {
  display: inline;
}
.st__footer__grid ul li img {
  margin: 5px;
}
/* Footer CopyRIght Area */
.st-footer-copyright-area {
  padding: 32px;
  position: relative;
  overflow: hidden;
}
.footer__scroll {
  position: absolute;
  top: 0px;
  right: 0;
  left: 0;
  display: flex;
  justify-content: center;
}
.st__footer__copyright__link ul li {
  display: inline;
}
.right__all__content {
  margin-left: 41px;
}
.st__footer__copyright__link ul li {
  display: inline;
  margin-left: 27px;
  color: #cacaca;
}
.st__footer__copyright__link ul li a{
  display: inline-block;
  color: #cacaca;
  transition: .5s;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  -ms-transition: .5s;
  -o-transition: .5s;
}
.st__footer__copyright__link ul li a:hover{
  color: #023A72;
}
.st-footer-copyright-area .st__footer__copyright span {
  margin-top: 0;
}.st-footer-area {
  overflow: hidden;
}
.ft_borer {
  border-bottom: 1px dashed #023A72;
  padding-bottom: 121px;
}
.st__footer__text p {

  width: 80%;
  margin: 24px 0 0;
}
.st__social__icon h2 {
  opacity: 1;
  font-size: 22px;

  font-weight: 500;
  margin: 25px 0 0 18px;
  position: relative;
}
.st__social__icon h2::before {
  position: absolute;
  content: "";
  top: -3px;
  left: -18px;
  width: 3px;
  height: 30px;
  background: #023A72;
}
.st__social__icon a {
  display: inline-block;
  color: #fff;
  width: 38px;
  height: 38px;
  line-height: 38px;

  text-align: center;
  margin-top: 22px;
  margin-right: 10px;
  transition: .5s;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  -ms-transition: .5s;
  -o-transition: .5s; background: #023A72;
 
}
.st__social__icon a:hover{
  background: #01b6e7;
}
.st__footer__title h2 {
  font-size: 30px;
  font-weight: 500;
  position: relative;
  margin-bottom: 13px;
}

.st__footer__link a {
  display: block;
  color: #fff;
  margin-bottom: 17px;
  font-size: 16px;
  transition: .5s;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  -ms-transition: .5s;
  -o-transition: .5s;
}
.st__footer__link a:hover{
  color: #023A72;
}
.st__footer__link a i {
  color: #023A72;
  margin-right: 7px;
}
.st__footer__title p {
  color: #fff;
  opacity: 0.8;
}
.st__footer__subscribe__form input {
  font-size: 16px;
  color: #939393;
  font-weight: 400;
  border: none;
  padding: 18px 17px;
  width: 89%;
}
.st__footer__subscribe__form input::placeholder{
  font-size: 16px;
  color: #939393;
  font-weight: 400;
}
.st__footer__subscribe__form button {
  border: none;
  background: #023A72;
  color: #fff;
  padding: 12px 19px;
  position: absolute;
  top: 6px;
  right: 42px;
}
.st__footer__copyright span {
  color: #fff;
  font-size: 18px;
  margin-top: 32px;
  display: inline-block;
}
.st__footer__copyright span a{
  display: inline-block;
  color: #023A72;
  text-decoration: underline;
}
.footer__scroll a {
  display: inline-block;
  background: #e5ffeb;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  line-height: 60px;
  text-align: center;
  color: #fff;
  font-size: 25px;
}

.st-footer-area, .right__all__content a{
	font-family: 'Poppins', sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: #212112;
}
.st-footer-area, .right__all__content i{
	color: #023a72;
}


@media screen and (max-width:1500px){
	.service-one__item__content {
  padding: 32px 22px 33px;
}
}

@media screen and (max-width:1199px){
	.service-one__item{
		margin-bottom: 20px;
	}.st__footer__logo img {
  height: 40px;
}
}

@media screen and (max-width:991px){
.navbar-brand img {
    height: 40px;
  }.navbar-nav {
  padding: 4px 20px 4px 1px !important;
}  .nav-link {
    font-size: 16px;
  }
  .topbar ul li a {
  font-size: 12px;
}
}

@media screen and (max-width:767px){
	  .navbar-nav {
    overflow: hidden;
  }
  .navbar-nav {
  background: #fff;
  border-radius: 0;
}
.nav-link{
	color: #212121 !important;
	font-size: 16px;
}
.dropdown-item{
	font-size: 15px;
}
  .dropdown-toggle[aria-expanded="true"] + .dropdown-menu {
    margin-top: -4px !important;
    margin-bottom: 10px !important;
  } 
  .dropdown-toggle::after,
    .nav-item::before {
        position: absolute;
        display: block;
        content: "";
        background-color: #000;
        vertical-align: 0
    } .nav-item::before {
        top: 16px;
        left: 0;
        width: 11px;
        height: 1px;
        border: none;
        opacity: 1
    }
    .dropdown-toggle::after {
        top: 12px;
        left: -23px;
        width: 1px;
        height: 11px;
        border: none;
        transition: .2s linear
    }  .slide-title h2 {
    padding: 10px 31px;
  }.ourservices {
  background: #e5f2ff;
  padding: 20px 0 105px;
}
.ourservices h2, .testimonials h2, .sec-title__title{
	font-size: 32px;
} .funfact-one__list {
    grid-template-columns: repeat(1, 1fr);
    border-radius: 13px;
    padding: 15px 5px;
  }  .funfact-one__list li {
    padding: 10px 30px;
  }
  .funfact-one__list__number{
  	font-size: 32px;
  }.testimonials {
  padding: 30px 0;
}.post-slide {
  padding: 0px;
}
.testimonials-card__content{
	font-size: 16px;
}  .testimonials-card {
    padding: 25px 30px 16px 30px;
  }
  .contact-one__info__title{
  	font-size: 25px;
  }  .contact-one__form {
    margin: 0px auto;
  }
  .contact-one__form {
  padding: 15px 19px 30px;
}
.form-one button{
	margin-top: 10px;
}.st__footer__text p {
  width: 100%;
  margin: 15px 0 0;
}
.st__social__icon{
	margin-bottom: 20px;
}
.st-footer-area.style2 .st__footer__title h2 {
  font-size: 26px;margin-bottom: 10px;
}.right__all__content {
  margin-left: 0;
}
.st-footer-area.style2 {
	padding-bottom: 5px;
  padding-top: 24px;
}
  .funfact-one__list__text{
  	font-size: 15px;
  }
  .start-header.scroll-on .navbar-brand img {
  height: 38px;
}
}


.banner-section{
	padding: 40px 0 30px;background: #023a72;
}
.banner-section h2{
	color: #fff;
	text-align: center;
	font-size: 38px;
}
.aboutinternal ul{
position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 2px 20px;
}
.aboutinternal li::marker{
	color: #023a72;
}
.gallery-section{
	padding: 70px 0 40px;
}
.gallery-box{
	margin-bottom: 30px;
}
.contactus {
	padding: 70px 0;
}
.box-cards {
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
	padding: 30px 30px 15px;
	overflow: hidden;
	border-radius: 3px;
	-webkit-transition: all 0.4s ease-in-out 0s;
	-o-transition: all 0.4s ease-in-out 0s;
	transition: all 0.4s ease-in-out 0s;
}
.contactus .sec-title2 {
	font-size: 30px;
	margin-bottom: 20px;
}
.box-cards ul {
	padding: 0;
	margin: 0;
}
.box-cards ul li {
	list-style: none;
	margin-bottom: 15px;
}
.box-cards ul li i {
	padding-right: 10px;
	color: #fff;
	background: linear-gradient(to right, #023A72 0% , #01afe0 50%, #023a72 100%);
	background-clip: border-box;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	font-size: 18px;
	line-height: 28px;
}
.box-cards a{
	list-style: none;
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  line-height: 28px;
  font-weight: 400;
  color: #212112;
}
.box-cards ul li a {
	list-style: none;
	font-family: 'Poppins', sans-serif;
	font-size: 18px;
	line-height: 28px;
	font-weight: 400;
	color: #212112;
}
.box-cards {
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
	padding: 30px 30px 15px;
	overflow: hidden;
	border-radius: 3px;
	-webkit-transition: all 0.4s ease-in-out 0s;
	-o-transition: all 0.4s ease-in-out 0s;
	transition: all 0.4s ease-in-out 0s;
}
.contactus .sec-title2 {
	font-size: 30px;
	margin-bottom: 20px;
}
.sec-title2 {
	font-size: 40px;
	margin-top: -0.22em;
	text-transform: uppercase;
}	
.contactus .form-control {
	margin-bottom: 10px;
}
.form-control {
	display: block;
	width: 100%;
	height: calc(2.25rem + 2px);
	padding: .375rem .75rem;
	font-size: 1rem;
	line-height: 1.5;
	color: #495057;
	background-color: #fff;
	background-clip: padding-box;
	border: 1px solid #ced4da;
	border-radius: .25rem;
	transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}	
.contactus .form-control {
	margin-bottom: 10px;
}
.contactus .btn {
	margin-top: 19px;
  text-align: left;
  float: left;
  background: #023a72;
  border: 1px solid #023a72;
  color: #fff;
  padding: 10px 20px;
  border-radius: 31px;
  transition: 0.5s ease;
  margin-bottom: 20px;
}

.contactus iframe {
	margin-top: 50px;
}
.contactus textarea {
	height: 135px;
}

.box-cards{
	min-height: 215px;
}

@media screen and (max-width:1600px){
	.box-cards{
	min-height: 232px;
}
}
@media screen and (max-width:1500px){
	.box-cards{
	min-height: 262px;
}
}@media screen and (max-width:1199px){
	.box-cards{
	min-height: auto;
	margin-bottom: 20px;
}
}
.mt-202w{
	margin-top: 30px;
}
@media screen and (max-width:767px){
	.aboutinternal{
		padding-bottom: 25px;
	}.gallery-section {
  padding: 35px 0 7px;
}
.box-cards{
	min-height: auto;
}.contactus .sec-title2 {
  font-size: 25px;
  margin-bottom: 8px;
}
.box-cards ul li a, .box-cards  a{
	font-size: 16px;
}.contactus {
  padding: 30px 0 12px;
}
.banner-section {
  padding: 24px 0 12px;
}.mt-202w{
	margin-top: 15px;
}
}.service__thumb2 {
  margin-top: 18px;
}
.service__thumb2 img {
  width: 100%;
}
.service__details__content1 {
  padding-left: 0px;
  padding-top: 15px;
}
.service__details_thumb img {
  width: 100%;
}
.service__details__content1 ul li {
  font-weight: 500;
  margin-bottom: 5px;
  position: relative;
  margin-left: 30px;
}
.service__details__content1 ul li::before {
  position: absolute;
  content: "";
  width: 13px;
  height: 13px;
  background: #023a72;
  top: 9px;
  left: -28px;
}
.service__details__content1 h3 {
  font-size: 24px;
  font-weight: 600;
  border-bottom: 1px solid #d5d5d5;
  padding-bottom: 17px;
  margin-bottom: 12px;
  color: #000;
}
.servcie__links a {
  display: flex;
  justify-content: space-between;
}
.servcie__links a {
  display: flex;
  justify-content: space-between;
  background: #e6e6e6;
  padding: 10px 22px;
  font-size: 18px;
  font-weight: 500;
  color: #2a2f4b;
  border: 4px double #f7f6f1;
  transition: .5s;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  -ms-transition: .5s;
  -o-transition: .5s;
  margin-bottom: 20px;
}
.servcie__links a:hover{
  border: 4px double #fff;
  background: #023a72;
  color: #fff;
}
.service__details__wrap ul li{
	margin-left: 15px;
  list-style: disclosure-closed;;

}
.service__details__wrap ul {
	margin-bottom: 20px;
}
.activelinks{
  border: 4px double #fff !important;
  background: #023a72 !important;
  color: #fff !important;
}
.service__contact__wrap {
  padding: 50px 0px;
  margin-top: 35px;
}
.service__details__left__wrap {
  padding-right: 30px;
}
.service__contact__content h2 {
  font-size: 36px;
  color: #ffffff;
  font-weight: 600;
  line-height: 48px;
  margin-bottom: 32px;
}
.service__contact__content span {
  display: block;
  color: #ededed;
  margin-top: 35px;
  margin-bottom: 20px;
}
.service__contact__content h3{
  font-size: 30px;
  color: #ededed;
  font-weight: 600;
}
.service__contact__content h3 a{
  color: #fff !important;
}
.service__Details__btn a img {
  margin-right: 10px;
}
.service__Details__btn a {
  display: inline-block;
  background: #023a72;
  padding: 22px 30px;
  width: 100%;
  color: #fff;
  font-size: 24px;
  font-weight: 600;
  margin-top: 30px;
  transition: .5s;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  -ms-transition: .5s;
  -o-transition: .5s;
  margin-bottom: 30px;
}
.service__Details__btn a:hover{
  background: #2a2f4b;
}
.service-details-area{
  padding: 70px 0 50px;
}
.service__details_thumb{
  margin-bottom: 20px;
}
.service__details__content1 ul li{
  list-style: none;
}
.service__details__content1 ul{
  padding-left: 0;
}

.service__details__wrap h2{
   color: #000;
}



@media screen and (max-width:767px){
	.banner-section h2 {
  color: #fff;
  text-align: center;
  font-size: 27px;
}
.service-details-area {
  padding: 30px 0 14px;
}
.service__details__wrap h2{
	font-size: 28px;
}
.servcie__links a{
	padding: 7px 14px;
  font-size: 16px;
}
.service__details__wrap h3{
	font-size: 26px;
}
	 .navbar-nav {
    background: #f8f9fa;
	}
}
.fixedbtn{
  position: fixed;
  bottom: 10px;
  left: 10px;background: #023a72;
  color: #fff !important;
  border: 1px solid #fff;
  padding: 10px;
  font-size: 24px;
  border-radius: 4px;
}