/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  background: #fff;
  color: #444;
  font-family: "Open Sans", sans-serif;
}

a {
  color: #007bff;
  text-decoration: none;
  transition: 0.5s;
}

a:hover,
a:active,
a:focus {
  color: #0b6bd3;
  outline: none;
  text-decoration: none;
}

p {
  padding: 0;
  margin: 0 0 30px 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  margin: 0 0 20px 0;
  padding: 0;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #007bff;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #2990ff;
  color: #fff;
}

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

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  height: 80px;
  z-index: 997;
  transition: all 0.5s;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.3);
  font-weight: bold;
  font-size: 18px;
}

#header.header-scrolled {
  height: 60px;
}

#header .logo h1 {
  font-size: 36px;
  margin: 0;
  padding: 0;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
}

@media (max-width: 991px) {
  #header .logo h1 {
    font-size: 28px;
  }
}

@media (max-width: 472px) {
  #header .container .logo {
    font-size: 12px;
  }
}

@media (max-width: 375px) {
  #header .container .logo {
    font-size: 12px;
  }
}

#header .logo h1 a,
#header .logo h1 a:hover {
  color: #00366f;
  text-decoration: none;
}

#header .logo img {
  padding: 0;
  max-height: 65px;
}

/*--------------------------------------------------------------
# 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: 10px 0 10px 30px;
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  color: #004289;
  font-weight: 500;
  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: #007bff;
}

.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;
  font-size: 14px;
  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: #007bff;
}

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

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

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

  #tHTitle a {
    font-size: 2px;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #283d50;
  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;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(23, 35, 46, 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: #004289;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #007bff;
}

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

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.carousel-item {
  height: 100vh;
  min-height: 350px;
  background: no-repeat center center scroll;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

.carousel-caption1 {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  padding: 100px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(173, 168, 168, 0.5);
}

.carousel-caption-content {
  position: relative;
  width: 75%;
  margin-top: 20%;
  font-size: medium;
  font-weight: bolder;
  color: #fff;
  text-shadow:
  -2px   -2px #007bff,
  -2px -1.5px #007bff,
  -2px   -1px #007bff,
  -2px -0.5px #007bff,
  -2px    0px #007bff,
  -2px  0.5px #007bff,
  -2px    1px #007bff,
  -2px  1.5px #007bff,
  -2px    2px lightblue,
  -1.5px  2px lightblue,
  -1px    2px lightblue,
  -0.5px  2px lightblue,
  0px     2px lightblue,
  0.5px   2px lightblue,
  1px     2px lightblue,
  1.5px   2px lightblue,
  2px     2px lightblue,
  2px   1.5px lightblue,
  2px     1px lightblue,
  2px   0.5px lightblue,
  2px     0px lightblue,
  2px  -0.5px lightblue,
  2px    -1px lightblue,
  2px  -1.5px lightblue,
  2px    -2px lightblue,
  1.5px  -2px lightblue,
  1px    -2px lightblue,
  0.5px  -2px lightblue,
  0px    -2px lightblue,
  -0.5px -2px lightblue,
  -1px   -2px lightblue,
  -1.5px -2px lightblue;
  /* background: rgba(173, 168, 168, 0.5); */

}

#hero1 {
  width: 100%;
  position: relative;
  background: url("../img/hero-bg.png") center bottom no-repeat;
  background-size: cover;
  padding: 200px 0 120px 0;
}

@media (max-width: 991px) {
  #hero1 {
    padding: 140px 0 60px 0;
  }
}

@media (max-width: 574px) {
  #hero1 {
    padding: 100px 0 20px 0;
  }
}

#hero1 .hero-img {
  width: 50%;
  float: right;
}

@media (max-width: 991px) {
  #hero1 .hero-img {
    width: 80%;
    float: none;
    margin: 0 auto 25px auto;
  }
}

#hero1 .hero-info {
  width: 50%;
  float: left;
}

@media (max-width: 991px) {
  #hero1 .hero-info {
    width: 80%;
    float: none;
    margin: auto;
    text-align: center;
  }
}

@media (max-width: 767px) {
  #hero1 .hero-info {
    width: 100%;
  }
}

#hero1 .hero-info h2 {
  color: #fff;
  margin-bottom: 40px;
  font-size: 70px;
  font-weight: 700;
}

#hero1 .hero-info h2 span {
  color: #74b5fc;
  text-decoration: underline;
}

@media (max-width: 767px) {
  #hero1 .hero-info h2 {
    font-size: 34px;
    margin-bottom: 30px;
  }
}

#hero1 .hero-info .btn-get-started {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 32px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 0 20px 20px 0;
  color: #fff;
}

#hero1 .hero-info .btn-get-started {
  background: #007bff;
  border: 2px solid #007bff;
  color: #fff;
}

#hero1 .hero-info .btn-get-started:hover {
  background: none;
  border-color: #fff;
  color: #fff;
}


/* NEW ADDED 04-18-24 */
#hero2 {
  width: 100%;
  height: 80vh;
  position: relative;
  background: url("../img/Cover1.png") center bottom no-repeat;
  background-size: cover;
  padding: 200px 0 120px 0;
}

@media (max-width: 991px) {
  #hero2 {
    padding: 140px 0 60px 0;
  }
}

@media (max-width: 574px) {
  #hero2 {
    padding: 100px 0 20px 0;
  }
}

#hero2 .hero-img {
  width: 50%;
  float: right;
}

@media (max-width: 991px) {
  #hero2 .hero-img {
    width: 80%;
    float: none;
    margin: 0 auto 25px auto;
  }
}

#hero2 .hero-info {
  width: 50%;
  /* float: center; */
  /* margin-top: 280px; */
  /* margin-left: 290px; */
  margin: 270px auto auto auto;
}

@media (max-width: 991px) {
  #hero2 .hero-info {
    width: 80%;
    float: none;
    margin: 270px auto auto auto;
    text-align: center;
  }
}

@media (max-width: 767px) {
  #hero2 .hero-info {
    width: 100%;
  }
}

#hero2 .hero-info h2 {
  color: #fff;
  margin-bottom: 40px;
  font-size: 70px;
  font-weight: 700;
}

#hero2 .hero-info h2 span {
  color: #74b5fc;
  text-decoration: underline;
}

@media (max-width: 767px) {
  #hero2 .hero-info h2 {
    font-size: 34px;
    margin-bottom: 30px;
  }
}

#hero2 .hero-info .btn-get-started {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 32px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 0 20px 20px 0;
  color: #fff;
}

#hero2 .hero-info .btn-get-started {
  background: #007bff;
  border: 2px solid #007bff;
  color: #fff;
}

#hero2 .hero-info .btn-get-started:hover {
  background: none;
  border-color: #fff;
  color: #fff;
}


/* #hero1 .hero-info .btn-services {
  border: 2px solid #fff;
}

#hero1 .hero-info .btn-services:hover {
  background: #007bff;
  border-color: #007bff;
  color: #fff;
} */


/*** Carousel Hero Header Start ***/
/* .header-carousel {
  position: relative; 
}

.header-carousel .owl-nav .owl-prev {
  position: absolute;
  width: 70px;
  height: 70px;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
  border-radius: 50%;
  background: var(--bs-primary);
  color: var(--bs-white);
  font-size: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.5s;
}

.header-carousel .owl-nav .owl-next {
  position: absolute;
  width: 70px;
  height: 70px;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  border-radius: 50%;
  background: var(--bs-primary);
  color: var(--bs-white);
  font-size: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.5s;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
  transition: 0.5s;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
  box-shadow: inset 150px 0 0 0 var(--bs-light) !important;
  color: var(--bs-primary) !important;
}

@media (max-width: 576px) {
  .header-carousel .owl-nav .owl-prev,
  .header-carousel .owl-nav .owl-next {
      top: 630px;
      transition: 0.5s;
  }

  .header-carousel .header-carousel-item .carousel-caption .carousel-caption-content {
      width: 95% !important;
  }

}

.header-carousel .header-carousel-item,
.header-carousel .header-carousel-item img {
  position: relative;
  width: 100%;
  height: 700px;
  margin-top: 95px;
  display: block;
  object-fit: cover;
  transition: 0.5s;

}

@media (max-width: 992px) {
  .header-carousel .header-carousel-item,
  .header-carousel .header-carousel-item img {
      margin-top: 0;
      transition: 0.5s;
  }

}

@media (min-width: 992px) {
  .header-carousel .owl-nav .owl-prev,
  .header-carousel .owl-nav .owl-next {
      margin-top: 50px;
  }
}

.header-carousel .header-carousel-item .carousel-caption {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  padding: 100px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, .5);
}

.header-carousel .header-carousel-item .carousel-caption .carousel-caption-content {
  position: relative;
  width: 75%;
  margin-top: -20%;
  font-size: medium;
  
} */
/*** Carousel Hero Header End ***/


/* #hero {
  width: 100%;
  position: relative;
  background: url("../img/hero-bg.png") center bottom no-repeat;
  background-size: cover;
  padding: 200px 0 120px 0;
  margin: auto;
} */

/* #hero .carousel-inner {
  width: 100%; This makes the carousel fit the height of the viewport
  height: 100vh;
}

#hero .carousel-item {
  position: relative;
}

#hero .carousel-item .container {
  display: flex;
  align-items: center;
  height: 100vh;
} */

/* @media (max-width: 991px) {
  #hero {
    padding: 140px 0 60px 0;
  }
}

@media (max-width: 574px) {
  #hero {
    padding: 100px 0 20px 0;
  }
} */

/* #hero .hero-img {
  width: 50%;
  float: right;
}

@media (max-width: 991px) {
  #hero .hero-img {
    width: 80%;
    float: none;
    margin: 0 auto 25px auto;
  }
} */

/* #hero .hero-info {
  position: absolute;
  top: 20%;
  left: 30%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 2;
} */

/* @media (max-width: 991px) {
  #hero .hero-info {
    width: 80%;
    float: none;
    margin: auto;
    text-align: center;
  }
}

@media (max-width: 767px) {
  #hero .hero-info {
    width: 100%;
  }
} */

/* #hero .hero-info h2 {
  color: #000000;
  margin-bottom: 10px;
  font-size: 48px;
  font-weight: 700;
} */

/* NEW ADDED */
/* #hero .hero-info h1 {
  color: #000000;
  margin-bottom: 40px;
  font-size: 18px;
  font-weight: 600; Adjusted font-weight
} */
/* END */

/* #hero .hero-info h2 span {
  color: #74b5fc;
  text-decoration: underline;
}

@media (max-width: 767px) {
  #hero .hero-info h2 {
    font-size: 34px;
    margin-bottom: 30px;
  }
}

#hero .hero-info .btn-get-started,
#hero .hero-info .btn-services {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 32px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 0 20px 20px 0;
  color: #fff;
}

#hero .hero-info .btn-get-started {
  background: #007bff;
  border: 2px solid #007bff;
}

#hero .hero-info .btn-get-started:hover {
  background: none;
  border-color: #fff;
  color: #fff;
}

#hero .hero-info .btn-services {
  border: 2px solid #fff;
}

#hero .hero-info .btn-services:hover {
  background: #007bff;
  border-color: #007bff;
  color: #fff;
} */

/* Responsive adjustments */
/* @media (max-width: 991px) {
  #hero .hero-info h2 {
    font-size: 36px;
  }

  #hero .hero-info h1 {
    font-size: 20px;
    margin-bottom: 30px;
  }
}

@media (max-width: 767px) {
  #hero .hero-info h2 {
    font-size: 24px;
  }

  #hero .hero-info h1 {
    font-size: 18px;
    margin-bottom: 20px;
  }
} */

/* SEARCH BAR */
#searchBar .container {
  position: relative;
  /* margin: 0 auto 0 auto; */
  margin-bottom: 20px;
  padding: 0;
  width: 100%;
  max-width: 840px;
}
#searchBar .search-box {
  position: relative;
  width: 100%;
  max-width: 360px;
  height: 60px;
  border-radius: 120px;
  margin-left: 0px;
}
#searchBar .search-icon, .go-icon {
  position: absolute;
  top: 0;
  height: 60px;
  width: 86px;
  line-height: 61px;
  text-align: center;
  color: #ffffff;
}
#searchBar .search-icon {
  left: 0;
  pointer-events: none;
  font-size: 1.22em;
  will-change: transform;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform-origin: center center;
  -webkit-transform-origin: center center;
  -moz-transform-origin: center center;
  -o-transform-origin: center center;
  transition: transform 400ms 220ms cubic-bezier(0.190, 1.000, 0.220, 1.000);
  -webkit-transition: transform 400ms 220ms cubic-bezier(0.190, 1.000, 0.220, 1.000);
  -moz-transition: transform 400ms 220ms cubic-bezier(0.190, 1.000, 0.220, 1.000);
  -o-transition: transform 400ms 220ms cubic-bezier(0.190, 1.000, 0.220, 1.000);
}
.si-rotate {
  transform: rotate(0deg);
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
}
#searchBar .go-icon {
  right: 0;
  pointer-events: none;
  font-size: 1.38em;
  will-change: opacity;
  cursor: default;
  opacity: 0;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transition: opacity 190ms ease-out, transform 260ms cubic-bezier(0.190, 1.000, 0.220, 1.000);
  -webkit-transition: opacity 190ms ease-out, transform 260ms cubic-bezier(0.190, 1.000, 0.220, 1.000);
  -moz-transition: opacity 190ms ease-out, transform 260ms cubic-bezier(0.190, 1.000, 0.220, 1.000);
  -o-transition: opacity 190ms ease-out, transform 260ms cubic-bezier(0.190, 1.000, 0.220, 1.000);
}
.go-in {
  opacity: 1;
  pointer-events: all;
  cursor: pointer;
  transform: rotate(0);
  -webkit-transform: rotate(0);
  -moz-transform: rotate(0);
  -o-transform: rotate(0);
  transition: opacity 190ms ease-out, transform 260ms 20ms cubic-bezier(0.190, 1.000, 0.220, 1.000);
  -webkit-transition: opacity 190ms ease-out, transform 260ms 20ms cubic-bezier(0.190, 1.000, 0.220, 1.000);
  -moz-transition: opacity 190ms ease-out, transform 260ms 20ms cubic-bezier(0.190, 1.000, 0.220, 1.000);
  -o-transition: opacity 190ms ease-out, transform 260ms 20ms cubic-bezier(0.190, 1.000, 0.220, 1.000);
}
#searchBar .search-border {
  display: block;
  width: 100%;
  max-width: 360px;
  height: 60px;
}
#searchBar .border {
  fill: none;
  stroke: #ffffff;
  stroke-width: 5;
  stroke-miterlimit: 10;
}
.border {
  stroke-dasharray: 740;
  stroke-dashoffset: 0;
  transition: stroke-dashoffset 400ms cubic-bezier(0.600, 0.040, 0.735, 0.990);
  -webkit-transition: stroke-dashoffset 400ms cubic-bezier(0.600, 0.040, 0.735, 0.990);
  -moz-transition: stroke-dashoffset 400ms cubic-bezier(0.600, 0.040, 0.735, 0.990);
  -o-transition: stroke-dashoffset 400ms cubic-bezier(0.600, 0.040, 0.735, 0.990);
}
#searchBar .border-searching .border {
  stroke-dasharray: 740;
  stroke-dashoffset: 459;
  transition: stroke-dashoffset 650ms cubic-bezier(0.755, 0.150, 0.205, 1.000);
  -webkit-transition: stroke-dashoffset 650ms cubic-bezier(0.755, 0.150, 0.205, 1.000);
  -moz-transition: stroke-dashoffset 650ms cubic-bezier(0.755, 0.150, 0.205, 1.000);
  -o-transition: stroke-dashoffset 650ms cubic-bezier(0.755, 0.150, 0.205, 1.000);
}
#searchBar #searchInput {
  font-family: Arial, Helvetica, sans-serif; /* 'Montserrat Alternates', sans-serif */
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 120px;
  border: none;
  background: rgba(255, 255, 255, 0);
  padding: 0 68px 0 68px;
  color: #ffffff;
  font-size: 1.32em;
  font-weight: 400;
  letter-spacing: -0.015em;
  outline: none;
}
#searchBar #searchInput::-webkit-input-placeholder {color: #ffffff;}
#searchBar #searchInput::-moz-placeholder {color: #ffffff;}
#searchBar #searchInput:-ms-input-placeholder {color: #ffffff;}
#searchBar #searchInput:-moz-placeholder {color: #ffffff;}
#searchBar #searchInput::-moz-selection {color: #ffffff; background: rgba(255, 255, 255, 0.25);}
#searchBar #searchInput::selection {color: #ffffff; background: rgba(255, 255, 255, 0.25);}

/*--------------------------------------------------------------
# Sections
--------------------------------------------------------------*/
section {
  overflow: hidden;
}

/* Sections Header
--------------------------------*/
.section-header h3 {
  font-size: 36px;
  color: #283d50; 
  text-align: center;
  font-weight: 500;
  position: relative;
}

.section-header p {
  text-align: center;
  margin: auto;
  font-size: 15px;
  padding-bottom: 60px;
  color: #556877;
  width: 50%;
}

@media (max-width: 767px) {
  .section-header p {
    width: 100%;
  }
}

/* Section with background
--------------------------------*/
.section-bg {
  background: #ecf5ff;
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 20px 0;
  background-color: #f5faff;
  min-height: 40px;
  margin-top: 80px;
}

@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 60px;
  }
}

.breadcrumbs h2 {
  font-size: 24px;
  font-weight: 300;
  margin: 0;
}

@media (max-width: 992px) {
  .breadcrumbs h2 {
    margin: 0 0 10px 0;
  }
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 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: #6c757d;
  content: "/";
}

@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }

  .breadcrumbs ol {
    display: block;
  }

  .breadcrumbs ol li {
    display: inline-block;
  }
}

/* About Us Section
--------------------------------*/
#about {
  background: #fff;
  padding: 60px 0;
  margin-top: 90px;
}

/* NEW ADDED */
#about .box {
  padding: 30px;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  margin: 20px 10px 40px 10px;
  background: #FBFBFB;
  box-shadow: 0 10px 29px 0 rgba(68, 88, 144, 0.1);
  transition: all 0.3s ease-in-out;
}

#about .box:hover {
  transform: translateY(-5px);
}

#about .icon {
  position: absolute;
  left: -15px;
  top: calc(50% - 32px);
}

#about .icon i {
  font-size: 64px;
  line-height: 0;
  transition: 0.5s;
}

#about .title {
  margin-left: 40px;
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}

#about .title a {
  color: #111;
}

#about .box:hover .title a {
  color: #007bff;
}

#about .description {
  font-size: 14px;
  margin-left: 40px;
  line-height: 24px;
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# About Part 2 Section
--------------------------------------------------------------*/
#aboutP2 {
  padding: 60px 0 40px 0;
  box-shadow: inset 0px 0px 12px 0px rgba(0, 0, 0, 0.1);
}

#aboutP2 .box {
  padding: 30px;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  margin: 0 10px 40px 10px;
  background: #fff;
  box-shadow: 0 10px 29px 0 rgba(68, 88, 144, 0.1);
  transition: all 0.3s ease-in-out;
}
/* NEW ADDED */
#aboutP2 .boxL {
  padding: 30px;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  margin: 50px 10px 40px 10px;
  background: #fff;
  box-shadow: 0 10px 29px 0 rgba(68, 88, 144, 0.1);
  transition: all 0.3s ease-in-out;
  width: 550px;
  height: 950px;
  border-left: #31CEFF;
}

#aboutP2 .boxL img{
  width: 500px;
  height: 400px;
}


#aboutP2 .titleL {
  margin-left: 40px;
  font-weight: 700;
  margin-bottom: 15px;
  margin-top: 50px;
  font-size: 18px;
}

#aboutP2 .titleL a {
  color: #111;
}

#aboutP2 .boxR {
  padding: 30px;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  margin: 0 10px 40px 10px;
  background: #C5E1F1;
  box-shadow: 0 10px 29px 0 rgba(68, 88, 144, 0.1);
  transition: all 0.3s ease-in-out;
  width: 550px;
  height: 1050px;
}

.flip-card {
  background-color: transparent;
  width: 214px;
  height: 190px;
  perspective: 1000px;
}

.flip-card img {
  width: 214px;
  height: 190px;
}

.flip-card #iso17025 {
  width: 169px;
  height: 158px;
  margin-top: 15px;
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.6s;
  transform-style: preserve-3d;
  box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
}

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

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

.flip-card-front {
  background-color: #fff;
  color: black;
}

.flip-card-back {
  background-color: #FBFBFB;
  color: black;
  transform: rotateY(180deg);
  /* text-align: center; */
  display: flex;
  justify-content: center;
  flex-flow: column;
}
/* END */

#aboutP2 .box:hover {
  transform: translateY(-5px);
}

#aboutP2 .icon {
  position: absolute;
  left: -15px;
  top: calc(50% - 32px);
}

#aboutP2 .icon i {
  font-size: 64px;
  line-height: 0;
  transition: 0.5s;
}

#aboutP2 .title {
  margin-left: 40px;
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}

#aboutP2 .title a {
  color: #111;
}

#aboutP2 .box:hover .title a {
  color: #007bff;
}

#aboutP2 .description {
  font-size: 14px;
  margin-left: 40px;
  line-height: 24px;
  margin-bottom: 0;
}

@media (max-width: 576px) {
  #aboutP2 .boxL{
      width: 450px;
  }
  #aboutP2 .boxL img {
    width: 400px;
  }
}

@media (max-width: 991px) {
  #aboutP2 .boxL{
    width: 360px;
    height: 710px;
  }
  #aboutP2 .boxL img {
    width: 320px;
    height: 220px;
  }
  #aboutP2 .boxL .titleL{
    margin-top: 20px;
  }
  #aboutP2 .boxR{
    width: 300px;
    height: 800px;
  }
  #aboutP2 .boxR .title{
    margin-top: 20px;
  }
  #aboutP2 .boxR .flip-card{
    width: 100px;
    height: 100px;
  }
  #aboutP2 .boxR .flip-card img{
    width: 100px;
    height: 100px;
  }
  #aboutP2 .boxR .flip-card #iso17025{
    width: 100px;
    height: 80px;
  }
  #aboutP2 .boxR .flip-card-back p{
    font-size: 10px;
    display: flex;
    justify-content: center;
    flex-flow: column;
    margin-top: 30px;
  }
}

/* NEW 07-01-24 */
@media (max-width: 472px) {
  #aboutP2 .boxL{
    width: 320px;
    height: 710px;
  }
  #aboutP2 .boxL img {
    width: 280px;
    height: 220px;
    /* margin-right: 100px; */
  }
  #aboutP2 .boxL .titleL{
    margin-top: 20px;
    margin-left: 5px;
  }
  #aboutP2 .boxL .description{
    margin-left: 5px;
  }

  #aboutP2 .boxR{
    width: 320px;
    height: 500px;
    /* padding-bottom: -515px; */
  }
  #aboutP2 .boxR .title{
    margin-top: 20px;
    margin-left: 5px;
  }
  #aboutP2 .boxR .description{
    margin-left: 5px;
  }
  #aboutP2 .boxR .flip-card{
    width: 100px;
    height: 100px;
    margin-left: auto;
    margin-right: auto;
  }

  #aboutP2 .boxR #f7{
    width: 100px;
    height: 80px;
    margin-left: 142px;
  
  }

  #aboutP2 .boxR .flip-card img{
    width: 100px;
    height: 100px;
  }
  #aboutP2 .boxR .flip-card #iso17025{
    width: 100px;
    height: 80px;
  }
  #aboutP2 .boxR .flip-card-back p{
    font-size: 10px;
    display: flex;
    justify-content: center;
    flex-flow: column;
    margin-top: 30px;
  }
}

@media (max-width: 375px) {
  #aboutP2 .boxL{
    width: 320px;
    height: 710px;
  }
  #aboutP2 .boxL img {
    width: 280px;
    height: 220px;
    /* margin-right: 100px; */
  }
  #aboutP2 .boxL .titleL{
    margin-top: 20px;
    margin-left: 5px;
  }
  #aboutP2 .boxL .description{
    margin-left: 5px;
  }
  

  #aboutP2 .boxR{
    width: 320px;
    height: 800px;
  }
  #aboutP2 .boxR .title{
    margin-top: 20px;
    margin-left: 5px;
  }
  #aboutP2 .boxR .description{
    margin-left: 5px;
  }
  #aboutP2 .boxR .flip-card{
    width: 100px;
    height: 100px;
    margin-left: auto;
    margin-right: auto;
  }

  #aboutP2 .boxR #f7{
    width: 100px;
    height: 80px;
    margin-left: 142px;
  
  }

  #aboutP2 .boxR .flip-card img{
    width: 100px;
    height: 100px;
  }
  #aboutP2 .boxR .flip-card #iso17025{
    width: 100px;
    height: 80px;
  }
  #aboutP2 .boxR .flip-card-back p{
    font-size: 10px;
    display: flex;
    justify-content: center;
    flex-flow: column;
    margin-top: 30px;
  }
}
/* END */

/* @media (max-width: 472px) {
  #aboutP2 .boxL {
    font-size: 12px;
  }
}

@media (max-width: 375px) {
  #header .container .logo {
    font-size: 12px;
  }
} */





/* Career Areas section */
#careerAreas {
  padding: 60px 0;
  /* background: #004a99; */
}

#careerAreas .section-header h3,
#careerAreas .section-header p {
  color: #000000;
}

#careerAreas .card {
  background: #00458f;
  border-color: #00458f;
  border-radius: 10px;
  margin: 0 15px;
  padding: 15px 0;
  text-align: center;
  color: #fff;
  transition: 0.3s ease-in-out;
  height: 90%;
}

@media (max-width: 991px) {
  #careerAreas .card {
    margin: 0;
  }
}

#careerAreas .card:hover {
  background: #003b7a;
  border-color: #003b7a;
}

#careerAreas .card i {
  font-size: 32px;
  padding-top: 15px;
  color: #bfddfe; 
  margin-bottom: -10px;
}

#careerAreas .card h5 {
  font-size: 22px;
  font-weight: 600;
}

#careerAreas .card p {
  font-size: 15px;
  color: #d8eafe;
  margin-bottom: 15px;
}

#careerAreas .card .readmore {
  color: #fff;
  font-weight: 600;
  display: inline-block;
  transition: 0.3s ease-in-out;
  border-bottom: #00458f solid 2px;
  margin-bottom: 10px;
}

#careerAreas .card .readmore:hover {
  border-bottom: #fff solid 2px;
}

#careerAreas .counters {
  padding-top: 40px;
}

#careerAreas .counters span {
  font-family: "Montserrat", sans-serif;
  font-weight: bold;
  font-size: 48px;
  display: block;
  color: #fff;
}

#careerAreas .counters p {
  padding: 0;
  margin: 0 0 20px 0;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  color: #cce5ff;
}

.main {
  margin-top: 150px;
}
/* Position Section 
--------------------------------*/
.position {
  padding: 5px 0;
  /* background: #004a99; */
  margin-top: 30px;
}

.position .section-header h3,
.position .section-header p {
  color: #000000;
}

.position .card {
  background: #00458f;
  border-color: #ffffff;
  border-radius: 10px;
  margin: 0 15px;
  padding: 15px 0;
  text-align: center;
  color: #fff;
  transition: 0.3s ease-in-out;
  height: 90%;
}

@media (max-width: 991px) {
  .position .card {
    margin: 0;
  }
}

.position .card:hover {
  background: #003b7a;
  border-color: #003b7a;
}

.position .card i {
  font-size: 32px;
  padding-top: 15px;
  color: #bfddfe; 
  margin-bottom: -10px;
}

.position .card h5 {
  font-size: 22px;
  font-weight: 600;
}

.position .card p {
  font-size: 15px;
  color: #d8eafe;
  margin-bottom: 15px;
  text-align: justify;
  padding: 5px;
}

.position .card .readmore {
  color: #fff;
  font-weight: 600;
  display: inline-block;
  transition: 0.3s ease-in-out;
  border-bottom: #00458f solid 2px;
  margin-bottom: 10px;
}

.position .card .readmore:hover {
  border-bottom: #fff solid 2px;
}

/* Careers Home Page (HP) Section
--------------------------------*/
#careersHP {
  /* background: #fff;
  padding: 60px 0; */
  padding: 60px 0 40px 0;
  box-shadow: inset 0px 0px 12px 0px rgba(0, 0, 0, 0.1);
}

#careersHP .content li {
  cursor: pointer;
  margin: 15px 15px 15px 0;
  display: inline-block;
  padding: 6px 20px;
  font-size: 12px;
  line-height: 20px;
  color: #007bff;
  border-radius: 50px;
  text-transform: uppercase;
  background: #ecf5ff;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}

#careersHP .content .readmore {
  color: #000000;
  font-weight: 600;
  display: inline-block;
  transition: 0.3s ease-in-out;
  border-bottom: #00458f solid 2px;
  margin-bottom: 10px;
}

#careersHP .about-container .background {
  margin: 20px 0;
  margin-top: 100px;
}

#careersHP .about-container .content {
  background: #fff;
  margin-top: 200px;
}

/* #careersHP .about-container .title {
  color: #333;
  font-weight: 700;
  font-size: 32px;
} */

#careersHP .about-container p {
  line-height: 26px;
  
}

#careersHP .about-container p:last-child {
  margin-bottom: 0;
}

/* #careersHP .about-container .icon-box {
  background: #fff;
  background-size: cover;
  padding: 0 0 30px 0;
} */

/* #careersHP .about-container .icon-box .icon {
  float: left;
  background: #fff;
  width: 64px;
  height: 64px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: 2px solid #007bff;
  transition: all 0.3s ease-in-out;
} */

/* #careersHP .about-container .icon-box .icon i {
  color: #007bff;
  font-size: 24px;
  line-height: 0;
} */

/* #careersHP .about-container .icon-box:hover .icon {
  background: #007bff;
}

#careersHP .about-container .icon-box:hover .icon i {
  color: #fff;
} */

/* #careersHP .about-container .icon-box .title {
  margin-left: 80px;
  font-weight: 600;
  margin-bottom: 5px;
  font-size: 18px;
}

#careersHP .about-container .icon-box .title a {
  color: #283d50;
} */

/* #careersHP .about-container .icon-box .description {
  margin-left: 80px;
  line-height: 24px;
  font-size: 14px;
} */

/* #careersHP .about-extra {
  padding-top: 60px;
}

#careersHP .about-extra h4 {
  font-weight: 600;
  font-size: 24px;
} */

/* #careersHP .icon {
  position: absolute;
  left: -15px;
  top: calc(50% - 32px);
}

#careersHP .icon i {
  font-size: 64px;
  line-height: 0;
  transition: 0.5s;
}

#careersHP .title {
  margin-left: 40px;
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}

#careersHP .title a {
  color: #111;
}

#careersHP .box:hover .title a {
  color: #007bff;
}

#careersHP .description {
  font-size: 14px;
  margin-left: 40px;
  line-height: 24px;
  margin-bottom: 0;
} */
/* END */

/* Others Info Section
--------------------------------*/
#othersInfo {
  padding: 60px 0 40px 0;
  box-shadow: inset 0px 0px 12px 0px rgba(0, 0, 0, 0.1);
}

/* #othersInfo .box {
  padding: 30px;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  margin: 0 10px 40px 10px;
  background: #fff;
  box-shadow: 0 10px 29px 0 rgba(68, 88, 144, 0.1);
  transition: all 0.3s ease-in-out;
} */
/* END */

/* RBA Section 
--------------------------------*/
#rbaMainContent .box {
  padding-left: 30px;
  padding-top: 30px;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  margin: 0 10px 10px 10px;
  background: #ecf5ff;
  box-shadow: 0 10px 29px 0 rgba(255, 255, 255); /* rgba(255, 255, 255, 0.1) */
  transition: all 0.3s ease-in-out;
  font-size: 14px;
}

#rbaMainContent .box .title {
  color: #007bff;
}

#rbaMainContent .btn {
  margin-top: 30px;
  margin-bottom: -30px;
  border-color: #31CEFF;
  background-color: #0075C2;
  color: #fff;
}
#rbaMainContent .btnAll {
  margin-left: 30px;
}

#rbaMainContent .card {
  border-color: #31CEFF;
}
#rbaMainContent .card .title1 {
  margin-top: 10px;
  margin-left: 15px;
  font-weight: bold;
  color: #007bff;
}

#rbaMainContent .collapse {
  margin-bottom: 50px;
}

#rbaMainContent a:hover {
  background: #002f61;
  color: #fff;
}

#rbaMainContent #categoryIntro {
  margin: 10px 50px 40px 50px;
}
/* END */

/* NEW 07-01-24 */
/* @media (max-width: 472px) {
  #rbaMainContent .container .btnAll{
    width: 10px;
  }
}

@media (max-width: 375px) {
    #rbaMainContent .container .btnAll{
      width: 5px;
    }
}

@media (max-width: 472px) {
  #rbaMainContent .container .card .description{
    margin-right: 5px;
  }
  #rbaMainContent .container .card #a1{
    padding-right: 20px;
  }
}

@media (max-width: 375px) {
    #rbaMainContent .container .card .description{
      padding-right: 5px;
    }
} */
@media (max-width: 472px) {
  #rbaMainContent .container .btnAll{
    width: 10px;
  }
  #rbaMainContent .container .card .description{
    margin-right: 5px;
  }
  #rbaMainContent .container .card #a1{
    padding-right: 20px;
  }
  #rbaMainContent #categoryIntro {
    margin: 10px 15px 40px 20px;
  }
}

@media (max-width: 375px) {
  #rbaMainContent .container .btnAll{
    width: 5px;
  }
  #rbaMainContent .container .card .description{
    padding-right: 5px;
  }
  #rbaMainContent #categoryIntro {
    margin: 10px 15px 40px 20px;
  }
}
/* END */

/* Products Section
--------------------------------*/
#products {
  padding: 60px 0;
  background: #004a99;
  box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.1);
}

#products #products-flters {
  padding: 0;
  margin: 5px 0 35px 0;
  list-style: none;
  text-align: center;
}

#products #products-flters li {
  cursor: pointer;
  margin: 15px 15px 15px 0;
  display: inline-block;
  padding: 6px 20px;
  font-size: 12px;
  line-height: 20px;
  color: #007bff;
  border-radius: 50px;
  text-transform: uppercase;
  background: #ecf5ff;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}

#products #products-flters li:hover,
#products #products-flters li.filter-active {
  background: #007bff;
  color: #fff;
}

#products #products-flters li:last-child {
  margin-right: 0;
}

#products .products-item {
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
}

#products .products-item .products-wrap {
  overflow: hidden;
  position: relative;
  border-radius: 6px;
  margin: 0;
}

#products .products-item .products-wrap:hover img {
  opacity: 0.4;
  transition: 0.3s;
}

#products .products-item .products-wrap .products-info {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  opacity: 0;
  transition: 0.2s linear;
}

#products .products-item .products-wrap .products-info h4 {
  font-size: 22px;
  line-height: 1px;
  font-weight: 700;
  margin-bottom: 14px;
  padding-bottom: 0;
}

#products .products-item .products-wrap .products-info h4 a {
  color: #fff;
}

#products .products-item .products-wrap .products-info h4 a:hover {
  color: #007bff;
}

#products .products-item .products-wrap .products-info p {
  padding: 0;
  margin: 0;
  color: #e2effe;
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
}

#products .products-item .products-wrap .products-info .link-preview,
#products .products-item .products-wrap .products-info .link-details {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  width: 36px;
  height: 36px;
  background: #007bff;
  border-radius: 50%;
  margin: 10px 4px 0 4px;
}

#products .products-item .products-wrap .products-info .link-preview i,
#products .products-item .products-wrap .products-info .link-details i {
  font-size: 22px;
  color: #fff;
  line-height: 0;
}

#products .products-item .products-wrap .products-info .link-preview:hover,
#products .products-item .products-wrap .products-info .link-details:hover {
  background: #3395ff;
}

#products .products-item .products-wrap .products-info .link-preview:hover i,
#products .products-item .products-wrap .products-info .link-details:hover i {
  color: #fff;
}

#products .products-item .products-wrap:hover {
  background: #003166;
}

#products .products-item .products-wrap:hover .products-info {
  opacity: 1;
}
/* NEW ADDED */
#products .section-header h3{
  background: #004a99;
  color: #fff;
}
/* END */

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
  padding-top: 40px;
}

.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #007bff;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #007bff;
}

.portfolio-details .portfolio-info {
  padding: 30px;
  box-shadow: 0px 0 30px rgba(40, 61, 80, 0.08);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li+li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
}

/* Technology Section
--------------------------------*/
#technology {
  padding: 60px 0;
  box-shadow: inset 0px 0px 12px 0px rgba(0, 0, 0, 0.1);
}

#technology .section-header {
  margin-bottom: 40px;
}

#technology .technology-carousel,
#technology .technology-slider {
  overflow: hidden;
}

@media (max-width: 767px) {
  #technology .testimonial-item {
    text-align: center;
  }
}

#technology .testimonial-item .testimonial-img {
  width: 120px;
  border-radius: 50%;
  border: 4px solid #fff;
  float: left;
}

@media (max-width: 767px) {
  #technology .testimonial-item .testimonial-img {
    float: none;
    margin: auto;
  }
}

#technology .testimonial-item h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #111;
  margin-left: 140px;
}

#technology .testimonial-item h4 {
  font-size: 14px;
  color: #999;
  margin: 0 0 15px 0;
  margin-left: 140px;
}

#technology .testimonial-item p {
  font-style: italic;
  margin: 0 0 15px 140px;
}

@media (min-width: 992px) {
  #technology .testimonial-item p {
    width: 80%;
  }
}

@media (max-width: 767px) {

  #technology .testimonial-item h3,
  #technology .testimonial-item h4,
  #technology .testimonial-item p {
    margin-left: 0;
  }
}

#technology .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

#technology .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #007bff;
}

#technology .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #007bff;
}

/* NEW ADDED */
#technology .flip-card {
  background-color: transparent;
  width: 350px;
  height: 350px;
  perspective: 1000px;
  margin-left: 60px;
}

#technology .flip-card-front {
  background-color: #FBFBFB;
  color: black;
  text-align: center;
  display: flex;
  justify-content: center;
  flex-flow: column;
  font-family: "Lucida Console", "Courier New", monospace;
  font-size: 30px;
}

@media (max-width: 1399px) {
  #technology .flip-card {
    width: 300px;
    height: 300px;
    margin-left: 50px;
  }
}
@media (max-width: 1199px) {
  #technology .flip-card {
    width: 260px;
    height: 260px;
    margin-left: 50px;
  }
}


/*--------------------------------------------------------------
# technology 2 SECTION
--------------------------------------------------------------*/
.technology2 {
  padding-bottom: 20px;
  margin-top: 50px;
  box-shadow: 10px;
}

.technology2 .icon-box {
  padding: 30px;
  position: relative;
  overflow: hidden;
  margin: 0 0 40px 0;
  background: #fff;
  box-shadow: 0 5px 26px 0 rgba(68, 88, 144, 0.14);
  transition: all 0.3s ease-in-out;
  text-align: center;
  border: 1px solid #fff;
}

.technology2 .icon {
  margin: 0 auto 20px auto;
  padding-top: 17px;
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  width: 72px;
  height: 72px;
}

.technology2 .icon i {
  font-size: 36px;
  line-height: 1;
}

.technology2 .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}

.technology2 .title a {
  color: #111;
}

.technology2 .description {
  font-size: 15px;
  line-height: 28px;
  margin-bottom: 0;
}

.technology2 .icon-box-pink .icon {
  background: #fceef3;
}

.technology2 .icon-box-pink .icon i {
  color: #ff689b;
}

.technology2 .icon-box-pink:hover {
  border-color: #ff689b;
}

.technology2 .icon-box-cyan .icon {
  background: #e6fdfc;
}

.technology2 .icon-box-cyan .icon i {
  color: #3fcdc7;
}

.technology2 .icon-box-cyan:hover {
  border-color: #3fcdc7;
}

.technology2 .icon-box-green .icon {
  background: #eafde7;
}

.technology2 .icon-box-green .icon i {
  color: #41cf2e;
}

.technology2 .icon-box-green:hover {
  border-color: #41cf2e;
}

.technology2 .icon-box-blue .icon {
  background: #e1eeff;
}

.technology2 .icon-box-blue .icon i {
  color: #2282ff;
}

.technology2 .icon-box-blue:hover {
  border-color: #2282ff;
}



/* FAQ Section
--------------------------------*/
#faq {
  /* background: #fff; */ 
  padding: 60px 0;
  box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.1);
}

#faqAccount {
  margin-top: 0px;
}

/* Clients Section
--------------------------------*/
#clients {
  padding: 60px 0;
  box-shadow: inset 0px 0px 12px 0px rgba(0, 0, 0, 0.1);
}

#clients .clients-wrap {
  border-top: 1px solid #d6eaff;
  border-left: 1px solid #d6eaff;
  margin-bottom: 30px;
}

#clients .client-logo {
  padding: 64px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-right: 1px solid #d6eaff;
  border-bottom: 1px solid #d6eaff;
  overflow: hidden;
  background: #fff;
  height: 160px;
}

#clients .client-logo:hover img {
  transform: scale(1.2);
}

#clients img {
  transition: all 0.4s ease-in-out;
}

/* Contact Section
--------------------------------*/
#contact {
  box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.1);
  padding: 60px 0;
  overflow: hidden;
}

#contact .section-header {
  padding-bottom: 30px;
}

#contact .contact-about h3 {
  font-size: 36px;
  margin: 0 0 10px 0;
  padding: 0;
  line-height: 1;
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #007bff;
}

#contact .contact-about p {
  font-size: 14px;
  line-height: 24px;
  font-family: "Montserrat", sans-serif;
  color: #888;
}

#contact .social-links {
  padding-bottom: 20px;
}

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

#contact .social-links a:hover {
  background: #007bff;
  color: #fff;
}

#contact .info {
  color: #283d50;
}

#contact .info i {
  font-size: 32px;
  color: #007bff;
  float: left;
  line-height: 0;
}

#contact .info p {
  padding: 0 0 10px 36px;
  line-height: 28px;
  font-size: 14px;
}

#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;
  animation: animate-loading 1s linear infinite;
}

#contact .php-email-form input,
#contact .php-email-form textarea,
#contact .php-email-form select { /* NEW ADDED */
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
}

#contact .php-email-form input:focus,
#contact .php-email-form textarea:focus,
#contact .php-email-form select:focus { /* NEW ADDED */
  border-color: #007bff;
}

#contact .php-email-form input {
  padding: 10px 15px;
}

#contact .php-email-form textarea {
  padding: 12px 15px;
}

/* NEW ADDED */
#contact .php-email-form select {
  padding: 12px 15px;
}
/* END */

#contact .php-email-form button[type=submit] {
  background: #007bff;
  border: 0;
  border-radius: 20px;
  padding: 8px 30px;
  color: #fff;
  transition: 0.3s;
}

#contact .php-email-form button[type=submit]:hover {
  background: #0067d5;
  cursor: pointer;
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* Job Application Section apply.php
--------------------------------*/
#job {
  box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.1);
  padding: 60px 0;
  overflow: hidden;
}

#job .section-header {
  padding-bottom: 30px;
}

#job .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

#job .php-email-form .error-message br+br {
  margin-top: 25px;
}

#job .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

#job .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

#job .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;
  animation: animate-loading 1s linear infinite;
}

#job .php-email-form input,
#job .php-email-form textarea,
#job .php-email-form select { /* NEW ADDED */
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
}

#job .php-email-form input:focus,
#job .php-email-form textarea:focus,
#job .php-email-form select:focus { /* NEW ADDED */
  border-color: #007bff;
}

#job .php-email-form input {
  padding: 10px 15px;
}

#job .php-email-form textarea {
  padding: 12px 15px;
}

/* NEW ADDED */
#job .php-email-form select {
  padding: 12px 15px;
}
/* END */

#job .php-email-form button[type=submit] {
  background: #007bff;
  border: 0;
  border-radius: 20px;
  padding: 8px 30px;
  color: #fff;
  transition: 0.3s;
}

#job .php-email-form button[type=submit]:hover {
  background: #0067d5;
  cursor: pointer;
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* TABLE ADD.PHP*/
/* .table-striped>tbody>tr:nth-child(odd)>td,
.table-striped>tbody>tr:nth-child(odd)>th {
  background-color: #58A1F0;
  color: white;
} */

/* Job Application | ADD.php Section
--------------------------------*/
#job1 {
  box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.1);
  padding: 60px 0;
  overflow: hidden;
}

#job1 .section-header {
  padding-bottom: 30px;
}

#job1 .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

#job1 .php-email-form .error-message br+br {
  margin-top: 25px;
}

#job1 .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

#job1 .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

#job1 .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;
  animation: animate-loading 1s linear infinite;
}

#job1 .php-email-form input,
#job1 .php-email-form textarea,
#job1 .php-email-form select { /* NEW ADDED */
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
}

#job1 .php-email-form input:focus,
#job1 .php-email-form textarea:focus,
#job1 .php-email-form select:focus { /* NEW ADDED */
  border-color: #007bff;
}

#job1 .php-email-form input {
  padding: 10px 15px;
}

#job1 .php-email-form textarea {
  padding: 12px 15px;
}

/* NEW ADDED */
#job1 .php-email-form select {
  padding: 12px 15px;
}
/* END */

#job1 .php-email-form button[type=submit] {
  background: #007bff;
  border: 0;
  border-radius: 20px;
  padding: 8px 30px;
  color: #fff;
  transition: 0.3s;
}

#job1 .php-email-form button[type=submit]:hover {
  background: #0067d5;
  cursor: pointer;
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}
/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #00428a;
  padding: 0 0 30px 0;
  color: #eee;
  font-size: 14px;
}

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

#footer .footer-top .footer-info {
  margin-bottom: 30px;
}

#footer .footer-top .footer-info h3 {
  font-size: 34px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-family: "Montserrat", sans-serif;
  color: #fff;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
}

#footer .footer-top .footer-info p {
  font-size: 13px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Montserrat", sans-serif;
  color: #ecf5ff;
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #007bff;
  color: #fff;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .footer-top .social-links a i {
  line-height: 0;
}

#footer .footer-top .social-links a:hover {
  background: #0067d5;
  color: #fff;
}

#footer .footer-top h4 {
  font-size: 14px;
  font-weight: bold;
  color: #fff;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 10px;
}

#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 li {
  padding: 8px 0;
}

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

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

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

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}

#footer .footer-top .footer-contact p {
  line-height: 26px;
}

#footer .footer-top .footer-newsletter {
  margin-bottom: 30px;
}

#footer .footer-top .footer-newsletter input[type=email] {
  border: 0;
  padding: 6px 8px;
  width: 65%;
}

#footer .footer-top .footer-newsletter input[type=submit] {
  background: #007bff;
  border: 0;
  width: 35%;
  padding: 6px 0;
  text-align: center;
  color: #fff;
  transition: 0.3s;
  cursor: pointer;
}

#footer .footer-top .footer-newsletter input[type=submit]:hover {
  background: #0062cc;
}

#footer .copyright {
  text-align: center;
  padding-top: 30px;
}

#footer .credits {
  text-align: center;
  font-size: 13px;
  color: #f1f7ff;
}

#footer .credits a {
  color: #bfddfe;
}

#footer .credits a:hover {
  color: #f1f7ff;
}