
/*--------------------------------------------------------------
# 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;
}

/*--------------------------------------------------------------
# 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: #006391;
  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: #00b3ff;
  color: #fff;
}

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

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  background: #fff;
  transition: all 0.5s;
  z-index: 997;
  padding: 20px 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: 40px;
}

/*--------------------------------------------------------------
# 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: 17px 0 10px 100px;
  font-size: 17px;
  color: #0b2341;
  white-space: nowrap;
  transition: 0.3s;
}

.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: #ed502e;
}

.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;
  background-color: #a6e4ff;
  border-bottom: 2px solid;
}

.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;
}

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

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

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  margin-left: 69%;
    color: #0b2341;
    font-size: 46px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
    margin-top: 22px;
}

.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: 0px;
  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;
}




/*--------------------------------------------------------------
# Sections & Section Header
--------------------------------------------------------------*/
section {
  overflow: hidden;
  padding: 80px 0;
}

.section-header {
  text-align: center;
  padding-bottom: 30px;
}

.section-header h2 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.section-header h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 2px;
  background: #0090d0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.section-header p {
  margin-bottom: 0;
}







/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 99vh;
  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: cover;
  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: 50px;
  right: 50px;
}

#hero h2 {
  color: #fff;
  margin: 0;
  font-size: 48px;
  font-weight: 700;
}

#hero h2 span{
  color: #22fed0;
}

#hero p {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
  color: #fff;
  margin-top: 10px;
}

@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: #00ffd3;
}

#hero .btn-get-started {
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 14px 32px;
  border-radius: 4px;
  transition: 0.5s;
  line-height: 1;
  color: #fff;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  background: #01638e;
  margin-top: 15px;
}

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

@media (max-width: 992px) {
  #hero {
    height: 100vh;
  }

  #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;
  }
}

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

.section-bg {
  background-color: #f6f9fd;
}

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

.section-title h2 {
  font-size: 20px;
  font-weight: 500;
  padding: 0;
  line-height: 1px;
  margin: 0 0 5px 0;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #ffffff;
  font-family: "Poppins", sans-serif;
}

.section-title h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: #f38b74;
  margin: 4px 10px;
}

.section-title p {
  margin: 0;
    margin: 0;
    font-size: 16px;
    /* font-weight: 700; */
    /* text-transform: uppercase; */
    font-family: "Poppins", sans-serif;
    color: #0f2f57;
}


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

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

.counts .count-box i {
  text-align: center;
    display: block;
    font-size: 30px;
    color: #0084c1;
    /* float: left; */
}

.counts .count-box span {
  display: flex;
    padding: 11px 0 0 0;
    font-size: 42px;
    line-height: 24px;
    /* display: block; */
    font-weight: 700;
    color: #0b2341;
    margin-left: 85px;
    text-align: center;
}

.counts .count-box p {
  text-align: center;
    padding: 12px 0 0 0;
    margin: 0;
    font-family: "Raleway", sans-serif;
    font-size: 18px;
}

.counts .count-box:hover{
  background-color: #01638e;
  color: white;
  border-radius: 40px 0px 40px 0px;
} 
.counts .count-box:hover i{
  color: white;
}
.counts .count-box:hover span{
  color: white;
}

.purecounter::after {
  content: "+";
  display: block;
  position: relative;
  font-weight: 600;
}
@media only screen and (min-width:1300px) and (max-width:1400px){
  .counts .count-box span{
    margin-left: 61px !important;
  }
}


/*--------------------------------------------------------------
# Why Choose Us Section
--------------------------------------------------------------*/
.why-us {
  background-color: #f6f6f6;
  /* padding-bottom: 35px; */
}

.why-us .img-bg {
  height: 100%;
  width: 100%;
  background-size: cover;
}

.why-us .slides {
  background-color: #01638e;
}

.why-us h3 {
  font-size: 30px;
    font-weight: 700;
    color: #ffffff;
}

.why-us h4 {
  font-size: 18px;
  font-weight: 400;
  color: #29486a;
  font-family: green;
}

.why-us .swiper {
  margin: 140px 140px 120px 140px;
  overflow: hidden;
}


.why-us .swiper .swiper-slide .item .why-icon{
  text-align: center;
}

.why-us .swiper .swiper-slide .item .why-icon i{
  font-size: 45px;
    color: #ffffff; 
}

.why-us .swiper .swiper-slide .item p{
  color: white;
}


.why-us .swiper-button-prev:after,
.why-us .swiper-button-next:after {
  font-size: 24px;
  color: #7ad6ff;
}

.why-us .swiper-button-prev {
  left: 80px;
}

.why-us .swiper-button-next {
  right: 80px;
}

.why-us .swiper-pagination {
  margin-top: 30px;
  position: relative;
}

/* .why-us .swiper-pagination .swiper-pagination-bullet {
  background-color: blue;
} */

.why-us .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #7ad6ff;
}



.flip-box {
  background-color: transparent;
  width: 100%;
  height: 100%;
  border: 1px solid #f1f1f1;
  perspective: 1000px;
}

.flip-box-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.8s;
  transform-style: preserve-3d;
}

.flip-box:hover .flip-box-inner {
  transform: rotateY(180deg);
}

.flip-box-front, .flip-box-back {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.flip-box-front {
  background-color: #bbb;
  color: black;
}

.flip-box-back {
  padding: 65px;
  background-color: #005175;
  color: white;
  transform: rotateY(180deg);
}
@media only screen and (min-width:1300px) and (max-width:1400px){
  .flip-box-back {
    padding: 55px;
  }
}



@media (max-width: 1200px) {
  .why-us .swiper {
    margin: 60px 60px 40px 60px;
  }

  .why-us .swiper-button-prev,
  .why-us .swiper-button-next {
    display: none;
  }
}

@media (max-width: 575px) {
  .why-us .swiper {
    margin: 40px 40px 20px 40px;
  }
}

.page-about .why-us {
  padding: 0 0 80px 0;
}






/*--------------------------------------------------------------
# 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;
}

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

.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 .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: #ed502e;
}

.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: linear-gradient(rgb(0 0 0 / 51%), rgb(0 0 0 / 61%)), url(../img/footer.jpg) fixed center center;
  /* background: #071527; */
  padding: 0 0 30px 0;
  color: #fff;
  font-size: 14px;
}

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

#footer .footer-top .footer-info {
  margin-bottom: 15px;
  background: #0039519c;
  border-top: 4px solid #5daed2;
  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: "Raleway", sans-serif;
}

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

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

#footer .footer-top h4 {
  font-size: 25px;
  font-weight: 600;
  color: #fff;
  position: relative;
  padding-bottom: 12px;
}

#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: #5baed0;
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

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

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

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

#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: #ef6445;
}

#footer .copyright {
  border-top: 1px solid #0f2f57;
  text-align: center;
  padding-top: 30px;
}

#footer .credits {
  padding-top: 10px;
  text-align: center;
  font-size: 13px;
  color: #fff;
}

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




/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/

.headerWraper {
  padding: 0px 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 99;
  background: #fff;
  /* height: 134px; */
}
.headerWrap {
  -webkit-box-shadow: 0px 0px 15px 0px rgb(0 0 0 / 25%);
  -moz-box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.25);
  box-shadow: 0px 0px 15px 0px rgb(0 0 0 / 25%);
  /* height: 134px; */
  z-index: 135;
  position: relative;
  background: #fff;
}
.header {
  display: flex;
  max-width: 100%;
  margin: 0 auto;
  justify-content: space-between;
}
.headerLeft {
  width: 30%;
}


.headerRight {
  width: 80%;
}
.headerRightTop {
  padding-top: 5px;
    background: #006491;
    display: flex;
    justify-content: space-between;
    border-radius: 0 0 0 10px;
    height: 48px;
}
.headerRightBottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  padding: 19px 87px;
}

.utilityMenu {
  /* text-transform: uppercase; */
  font-size: 15px;
  padding-left: 0;
}
.utilityMenu ul {
  display: flex;
  justify-content: space-between;
}
.utilityMenu ul li {
  list-style: none;
  padding: 10px 20px 10px 20px;
  position: relative;
  border-radius: 0 0 0 10px;
}
.utilityMenu ul li a {
  color: #fff;
  text-decoration: none;
}

.utilityMenu ul li a:hover{
  color: #ffb413;
}
.utilityMenu ul li a img {
  top: -5px;
  position: relative;
}

.mainMenu ul li a {
  text-decoration: none !important;
  border-right: 1px solid #98002E;
  color: #3B3B3B;
  display: block;
  padding: 0 20px;
  font-size: 21px;
  font-family: "Avenir LT W01 85 Heavy";
}

.mainMenu ul li.active a {
  color: #98002E;
}


.mainMenu ul {
  display: flex;
  font-size: 17px;
  text-transform: uppercase;
  justify-content: center;
  align-items: center;
  height: 96px;
}

.mainMenu ul li {
  list-style: none;
  border-bottom: 2px solid #fff;
  position: relative;
  cursor: pointer;
}

.mainMenu ul li:last-child a {
  border: none;
}

.applyButton a {
    background-image: linear-gradient(140deg, #ffffff, #cfe5ea 50%, #0a88c6);
    color: #000;
    font-weight: 600;
    padding: 7px 38px;
    text-decoration: none;
    font-size: 15px;
    /* text-transform: uppercase; */
    border-radius: 30px;
}

.applyButton a:hover{
  background-image: linear-gradient(140deg, #004c5e, #004c5e 50%, #004c5e);
  color: white;
  border: 2px solid white;
}
.applyButton{
  margin-top: 5px;
}


.apply{
  margin-left: 500px;
}
.download{
  margin-right: 45px;
}

@media only screen and (min-width:1300px) and (max-width:1400px){
  .apply{
    margin-left: 0px;
  }
  .mainMenu ul li a{
    font-size: 15px !important;
  }
  .logo{
    padding: 7px 6px !important;
  }
  .headerWraper{
    height: 113px !important;
  }
  .headerWrap{
    height: 117px !important;
  }
}


@media (max-width: 991px) {
  .headerLeft .logo a img{
    margin-top: 29px;
    width: 225px;
  }
  .logo{
    padding: 19px 0px;
  }

  .download{
    margin-top: 7px !important;
    margin-right: 17px !important;
  }
  .apply {
    margin-top: 7px !important;
    margin-left: 18px !important;
  }
  .applyButton a{
    padding: 7px 24px !important;
    margin-top: 0px !important;
    font-size: 12px !important;
  }
  .utilityMenu{
    display: none;
  }


}






/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/

.testimonials{
  background: linear-gradient(rgb(0 72 102 / 70%), rgb(53 52 52 / 75%)), url(../img/why-us.jpg) fixed center center no-repeat;
    background-size: cover;

}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  box-sizing: content-box;
  min-height: 320px;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50%;
  margin: -40px 0 0 40px;
  position: relative;
  z-index: 2;
  border: 6px solid #fff;
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 45px;
  color: rgb(255, 255, 255);
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: rgb(255, 255, 255);
  margin: 0 0 0 45px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: #0286c0;
  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: 0 15px 0 15px;
  padding: 20px 20px 60px 20px;
  background: #ffffff;
  position: relative;
  border-radius: 6px;
  position: relative;
  z-index: 1;
}

.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 #3fbbc0;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #3fbbc0;
}




/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/
.clients {
  padding: 44px 0 49px 0;
}

.clients .swiper-slide img {

  /* opacity: 0.5; */
  transition: 0.3s;
  /* filter: grayscale(100); */
}

.clients .swiper-slide img:hover {
  transform: scale(1.3);
  filter: none;
  opacity: 1;
}












/*--------------------------------------------------------------
# Solution section
--------------------------------------------------------------*/
.solution .post-item {
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.06);
  transition: 0.3s;
}

.solution .post-item .post-img img {
  transition: 0.5s;
}



.solution .post-item .post-content {
  padding: 17px;
}

.solution .post-item .post-title {
  font-size: 19px;
    color: #02285d;
    font-weight: 500;
    transition: 0.3s;
  /* margin-bottom: 15px; */
}

.solution .post-item .meta i {
  font-size: 16px;
  color: red;
}

.solution .post-item .meta span {
  font-size: 15px;
  color: #838893;
}

.solution .post-item hr {
  color: #888;
  margin: 20px 0;
}

.solution .post-item .readmore {
  /* display: flex; */
  align-items: center;
  font-weight: 600;
  line-height: 1;
  transition: 0.3s;
  color: #01638e;
}

.solution .post-item .readmore i {
  line-height: 0;
  margin-left: 6px;
  font-size: 16px;
}

.solution .post-item:hover .post-title
 {
  color: #f9ae40;
}

.solution .post-item:hover .post-img img {
  transform: scale(1.1);
}


.solution .post-item:hover .readmore1{
  text-align: center;
    padding: 10px 0;
    color: #fff;
    background-color: #006491;
    border-radius: 30px
}

.solution .post-item:hover .readmore2{
  text-align: center;
    padding: 10px 0;
    color: #fff;
    background-color: #fff;
    background-image: linear-gradient(140deg, #a5a5a5, #004b6e 50%, #43c5ff);
    border-radius: 30px;
}



.slick-list {
  outline: none !important;
}
.slick-slide {
  outline: none !important;
  }


.prev {
  border: 1px solid #56cbff;
    padding: 10px;
    margin-top: 174px;
    margin-left: -36px;
    position: absolute;
    width: 35px;
}
.prev:hover,
.next:hover
{
  background-color: #01638e;
  color: white;
}

.next{
  border: 1px solid #56cbff;
    margin-left: 100%;
    position: absolute;
    bottom: 212px;
    padding: 10px;
    width: 35px;
}








/*--------------------------------------------------------------
# Our overview  Section
--------------------------------------------------------------*/
.overview {
  background: linear-gradient(rgb(0 72 102 / 70%), rgb(53 52 52 / 75%)), url(../img/bg.png) fixed center center no-repeat;
    background-size: cover;
  padding: 60px 0;
}

.overview  .vision-mission {
  padding: 40px;
  background: #fff;
  height: 100%;
  border-radius: 10px;
}

.overview  .vision-mission .icon {
  width: 48px;
  height: 48px;
  position: relative;
  margin-bottom: 50px;
}

.overview  .vision-mission .icon i {
  color: #1384cb;
  font-size: 56px;
  transition: ease-in-out 0.3s;
  z-index: 2;
  position: relative;
}

.overview  .vision-mission .icon:before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  background: #b9e5f8;
  border-radius: 50px;
  z-index: 1;
  top: 10px;
  right: -20px;
  transition: 0.3s;
}

.overview  .vision-mission h3 {
  color: #01638e;
    font-weight: 700;
    margin: 0 0 20px 0;
    padding-bottom: 8px;
    font-size: 22px;
    position: relative;
    display: inline-block;
    border-bottom: 4px solid #7eccff;
    transition: 0.3s;
}

.overview  .vision-mission p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.overview  .vision-mission .readmore {
  margin-top: 15px;
  display: inline-block;
  color: #00afff;
}

.overview  .vision-mission:hover .icon:before {
  background: #a0a0a0;
}

.overview  .vision-mission:hover h3 {
  border-color: #0086c0;
}
.overview  .vision-mission:hover .readmore{
  color: rgb(255, 0, 0);
}