/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Open Sans", sans-serif;
  color: #444444;
  font-size: 17px;
}

a {
  color: #051e47;
  text-decoration: none;
}

a:hover {
  color: #051e47;
  text-decoration: none;
}
p {
  font-size: 17px;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Roboto", sans-serif;
}
.header-space-between {
  justify-content: flex-start !important;
  max-width: 1400px;
}
/*--------------------------------------------------------------
# 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 #051e47;
  border-top-color: #e2eefd;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}
.static-heading {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 8px 20px;
  position: absolute;
  width: 250px;
  height: 48px;
  left: 0px;
  top: 244px;
  background: rgba(5, 30, 71, 0.4);
  backdrop-filter: blur(5px);
  border-radius: 8px 8px 0px 0px;
}
.static-heading-para {
  width: 219px;
  height: 32px;
  left: 20px;
  top: 8px;

  font-family: Roboto Condensed;
  font-style: normal;
  font-weight: bold;
  font-size: 24px;
  line-height: 32px;
  /* identical to box height, or 133% */

  display: flex;
  align-items: center;
  text-align: center;

  color: #ffffff;

  /* Inside auto layout */

  flex: none;
  order: 0;
  flex-grow: 0;
  margin: 0px 10px;
}
.menu-styling {
  background: blue;
  color: white;
  border-radius: 9px;
}
@-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: #051e47;
  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: #051e47;
  color: #fff;
}
.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/

#header {
  background: #fff;
  transition: all 0.5s;
  z-index: 997;
  height: 86px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}
#header.fixed-top {
  height: 120px;
}
#header .logo {
  font-size: 18px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 600;
  letter-spacing: -0.2px;
  font-family: "Poppins", sans-serif;
}
#header .logo a {
  color: #222222;
  text-decoration: none;
}
#header .logo a span {
  color: #051e47;
  font-family: Saira SemiCondensed;
  font-style: normal;
  font-weight: bold;
  font-size: 18px;

  margin-left :10px !important;
}

#header .logo .subtitle {
  font-family: Saira SemiCondensed;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  margin-top: 12px;
  text-transform: uppercase;
  margin-left: 1.2rem;
  float: left;
  color: #ab180a;
  text-align: right;
  width: 95%;
}
#header img {
  max-height: 75px;
  margin-right: 0rem !important;
}
#header .home {
  font-size: 20px;
  margin-right: 1rem;
  margin-bottom: 5px;
  color: #051e47;
}
.home:hover {
  color: #051e47;
}

.scrolled-offset {
  margin-top: 70px;
}

/*--------------------------------------------------------------
# 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 > ul > li {
  white-space: nowrap;
  padding: 10px 0 10px 28px;
}
.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
  font-family: Roboto;
  font-style: normal;
  font-weight: 500;
  font-size: 12px;
  color: rgba(152, 152, 152, 1);
  white-space: nowrap;
  transition: 0.3s;
  position: relative;
}
.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}
.navbar > ul > li > a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -6px;
  left: 0;
  background-color: #051e47;
  visibility: hidden;
  width: 0px;
  transition: all 0.3s ease-in-out 0s;
}
.navbar a:hover:before,
.navbar li:hover:before,
.navbar .active:before {
  visibility: visible;
  width: 100%;
}
.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover > a {
  color: #051e47;
  text-decoration: none;
}
.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 28px;
  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;
  font-weight: 400;
  text-decoration: 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: #051e47;
  text-decoration: none;
}
.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 {
  color: #222222;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}
.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}
.navbar-mobile {
  position: fixed !important;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(9, 9, 9, 0.9);
  transition: 0.3s;
  z-index: 999;
}
.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}
.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}
.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #222222;
}
.navbar-mobile > ul > li {
  padding: 0;
}
.navbar-mobile a:hover:before,
.navbar-mobile li:hover > a:before,
.navbar-mobile .active:before {
  visibility: hidden;
}
.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover > a {
  color: #051e47;
  text-decoration: none;
}
.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}
.navbar-mobile .dropdown ul {
  position: obsoulte;
  height: 160px;
  top: 20px;
  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;
  text-decoration: none;
}
.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: #051e47;
  text-decoration: none;
}
.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials {
  padding: 50px 0;
  background-position: center center;
  background-size: cover;
  position: relative;
}
.testimonials::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}
.testimonials .section-header {
  margin-bottom: 40px;
}
.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}
.testimonials .testimonial-item {
  text-align: center;
  color: #fff;
  width: 100%;
  height: 800px;
  margin-top: 70px;
}
.testimonials .testimonial-item .testimonial-img {
  width: 100%;
  margin: 0 auto;
  height: 100%;
}
.testimonials .testimonial-item h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #fff;
}
.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #ddd;
  margin: 0 0 15px 0;
}
.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: rgba(255, 255, 255, 0.4);
  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 auto 15px auto;
  color: #eee;
}
.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}
.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #051e47;
  opacity: 1;
}
.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #ab180a;
}
@media (min-width: 992px) {
  .testimonials .testimonial-item p {
    width: 80%;
  }
}

/*--------------------------------------------------------------
# Featured Services
--------------------------------------------------------------*/
.featured-services .icon-box {
  padding: 22px;
  position: relative;
  display: flex;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 0 100px 0 rgba(68, 88, 144, 0.12);
  transition: all 0.3s ease-in-out;
  border-radius: 8px;
  z-index: 1;
  height: 100px;
  width: 315px;
  box-shadow: 0px 8px 25px rgba(149, 129, 129, 0.1);
  border-radius: 20px;
  margin: 0px 10px;
}
.featured-services .icon-box::before {
  content: "";
  position: absolute;
  background: #cbe0fb;
  right: 0;
  left: 0;
  bottom: 0;
  top: 100%;
  transition: all 0.3s;
  z-index: -1;
}
/* .featured-services .icon-box:hover::before {
   background: #008af0;
  top: 0;
  border-radius: 0px;
} */
.featured-services .icon {
  margin-bottom: 15px;
}
.featured-services .icon img {
  width: 50px;
  height: 50px;
  line-height: 1;
  color: #051e47;
  transition: all 0.3s ease-in-out;
}
.featured-services .title {
  margin: 10px;
  font-family: Roboto Condensed;
  font-style: normal;
  font-weight: bold;
  font-size: 15px;
  line-height: 20px;
  text-transform: uppercase;
}
.featured-services .title a {
  font-family: "Roboto", "Condensed";
  font-style: normal;
  font-weight: bold;
  font-size: 19px;
  text-transform: uppercase;
  color: #008af0;
  text-decoration: none;
}
.featured-services .description {
  font-size: 15px;
  line-height: 28px;
  margin-bottom: 0;
}
/* .featured-services .icon-box:hover .title a, */
.featured-services .icon-box:hover .description {
  color: #fff;
}
.featured-services .icon-box:hover .icon i {
  color: #fff;
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 10px 45px 45px;
  overflow: hidden;
}

.section-title {
  text-align: center;
  padding: 5px;
}
.section-title ul {
  margin: 30px 87px;
}
/*.section-title h2 {
  font-size: 13px;
  letter-spacing: 1px;
  font-weight: 700;
  padding: 12px 20px;
  margin: 0;
  display: inline-block;
  text-transform: uppercase;
  border-radius: 50px;
  cursor: pointer;
  margin-top: 1.5rem;
  background: #ffffff;
  box-shadow: 0px 20px 30px rgb(165 142 142 / 10%);
  border-radius: 20px;
  border: 2px solid #051e47;
  color: #051e47;
}
.section-title h2:hover {
  color: white;
  background-color: #051e47;
}*/
.section-title h3 {
  margin: 33px;
  font-size: 42px;
  font-weight: 700;
  color: #051e47;
}
.section-title h3 span {
  font-family: Roboto;
  font-style: normal;
  font-weight: bold;
  font-size: 48px;
  line-height: 56px;
  text-align: center;

  color: #051e47;
}
.section-title li {
  font-family: "Roboto";
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  text-align: justify;
  font-weight: 600;
  margin: 0px auto;
  line-height: 30px;
  margin-top: 10px;
}
@media (min-width: 1024px) {
  .section-title li {
    text-align: justify;
  }
}

.section-title img {
  position: absolute;
  width: 156px;
  height: 156px;
  left: 594px;
  top: 230px;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/

.contact .info-box {
  color: #444444;
  text-align: center;
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.3);
  padding: 20px 0 30px 0;
}
.contact .info-box i {
  font-size: 32px;
  color: #106eea;
  border-radius: 50%;
  padding: 8px;
  border: 2px dotted #b3d1fa;
}
.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 {
  background: #ffffff;
  box-shadow: 0px 8px 25px rgba(149, 129, 129, 0.1);
  border-radius: 20px;
  margin: 15px 0px 50px;
}
.contact .php-email-form2 {
  background: linear-gradient(
      89.95deg,
      #000000 1.68%,
      rgba(61, 61, 61, 0.3) 70.96%
    ),
    url("../img/vision.avif") no-repeat;
  height: 350px;
  opacity: 0.7;
  border-radius: 20px;
  padding: 87px;
  display: flex;
  background-size: 100% 100%;
}
.section22-heading {
  font-family: "Roboto";
  font-style: normal;
  font-weight: bold;
  font-size: 45px;
  line-height: 53px;
  text-align: center;
  color: #ffffff;
}
.contact .php-email-form2 img {
  width: 96px;
  height: 96px;
  margin: 16px 50px;
}
.contact .php-email-form2 .section-title {
  font-family: Roboto;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 19px;
  text-align: justify;
  color: #ffffff;
  margin: 20px 20px 0px 0px;
}
.section-title22 li {
  font-family: "Roboto";
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 19px;
  text-align: justify;
  color: #ffffff;
  margin-bottom: 10px;
}

@media (max-width: 992px) {
  .header-space-between {
    justify-content: space-between !important;
  }
  .contact .php-email-form2 {
    height: 100%;
    display: block;
    padding: 10px;
  }

  .contact .php-email-form {
    padding: 0;
  }
  .contact .php-email-form2 img {
    margin-left: 0 !important;
  }
  .testimonials .testimonial-item {
    height: 350px;
  }
  .subtitle {
    margin-right: 86px;
  }
  .testimonials .testimonial-item .testimonial-img {
    object-fit: fill;
  }
}
@media (max-width: 450px) {
  .testimonials .testimonial-item .testimonial-img {
    object-fit: fill;
  }
  .testimonials .testimonial-item {
    height: 280px;
  }
}
/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team .member {
  position: relative;
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0px 2px 15px rgba(16, 110, 234, 0.15);
  height: 500px;
  width: 425px;
}
.team .member .member-img {
  position: relative;
  overflow: hidden;
}
.title-margin {
  margin-top: 38px;
}
.team .member .member-info {
  padding: 25px 15px;
  margin: 0px 45px;
}
.team .member .member-info h6 {
  font-family: Roboto Condensed;
  font-style: normal;
  font-weight: normal;
  font-size: 20px;
  line-height: 23px;
  text-align: center;
  color: #000000;
  margin-top: 20px;
}
.section-title2 {
  margin-top: 28px;
}
.team .member .member-info span {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: #aaaaaa;
}

.events {
  text-align: center;
}
.events img {
  margin-top: 2rem;
}
.card-strip {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 20px;
  background: #051e47;
  border-radius: 0px 0px 15px 15px;
}
@media (max-width: 430px) {
  .header .logo {
    height: 80px;
  }
  .logo span {
    font-size: 12px !important;
  }
  .subtitle {
    font-size: 10px !important;
  }
}
@media (max-width: 599px) {
  .events img {
    width: 100%;
  }
  .section-title img {
    left: 35% !important;
    top: 43% !important;
  }
  .section-title h3 {
    margin: 20px 5px 0 !important;
    font-size: 34px !important;
  }
  .section-title ul {
    margin: 10px !important;
  }
  .featured-services {
    padding: 10px !important;
  }
  .featured-services .icon-box {
    width: 100%;
  }
  .contact {
    padding: 0 !important;
    margin-bottom: 20px !important;
  }
  .vision-and-heading {
    display: flex;
    justify-content: space-evenly;
  }
  .section22-heading {
    margin-top: 35px !important;
  }
  #header .logo .subtitle {
    width: 90%;
  }
}
@media (min-width: 559px) and (max-width: 992px) {
  .section-title img {
    left: 40% !important;
  }
  .testimonials .testimonial-item {
    height: 500px;
  }
}
@media (max-width: 992px) {
  .header-space-between {
    justify-content: space-between !important;
  }
  #header .logo a span {
    font-size: 16px;
  }
}


