@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

body {
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
}

.header {
  margin-top: 10px;
}

.custom-navbar {
  border-radius: 100px;
  /* background: #fff !important; */
  position: relative;
  border: 1px solid #131193;
}

/* .custom-navbar .navbar-brand .logo {
    width: 180px;
    height: 60px;
} */

.nav-top-row {
  background: #131193;
}

.row.nav-top-row {
  padding: 14px;
  border-radius: 50px 100px 0 50px;
  width: 77%;
  right: 24px;
  position: absolute;
  top: 0px;
  z-index: 9;
}

.row.nav-top-row .left-info ul,
.row.nav-top-row .social-icons {
  margin: 0;
}

.row.nav-top-row ul li a {
  color: #fff;
}

ul.navbar-nav.me-auto {
  padding-top: 50px;
}

.navtopbox.w-100 {
  position: relative;
  color: #fff;
}

#navy {
  margin-left: 29px;
}

.navbar-light .navbar-nav .nav-link.active,
.navbar-light .navbar-nav .show > .nav-link {
  color: #e31e24;
  /* border-bottom: 1px solid #e31e24; */
}

.navbar-light .navbar-nav .nav-link:focus,
.navbar-light .navbar-nav .nav-link:hover {
  border-bottom: 2px solid #e31e24;
  padding-bottom: 0;
  color: #e31e24;
}

.navbar-light .navbar-nav .nav-link {
  font-weight: 500;
  color: #131193;
}

.carousel-inner img {
  width: 100%;
  height: 100%;
}

.slider-bg {
  background: rgba(255, 255, 255, 0.75);
}

.les-border-bottom {
  border-bottom: 3px solid #131193;
}

#about-us {
  background: url(../images/bg-1.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  padding: 20px 0 30px;
}

.wrapper {
  width: 100%;
  height: 100%;
  perspective: 2000px;
  padding: 2% 5%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.left,
.middle,
.right {
  float: left;
  position: relative;
  background-color: #ffffff;
  height: 100%;
  width: 33%;
  max-width: 400px;
  max-height: 450px;
}

.left,
.right {
  transition: 0.7s ease-in-out;
}

.left.open,
.right.open {
  transform: rotate(0deg);
  transition: 0.7s ease-in-out;
}

.left {
  z-index: 20;
  transform: rotateY(180deg);
  transform-origin: 100% 50%;
}

.right {
  transform: rotateY(-180deg);
  transform-origin: 0% 50%;
}

.front,
.back {
  width: 100%;
  height: 100%;
  position: absolute;
  background-color: #ffffff;
  top: 0;
}

.front {
  transform: rotateY(180deg);
  z-index: 5;
}

.back {
  background-color: #ffffff;
  z-index: 4;
  backface-visibility: hidden;
}

.back.open {
  z-index: 10;
}

.openb {
  background-color: #08abd9;
  border: #08abd9;
  padding: 10px;
  position: absolute;
  min-width: 120px;
  max-width: 150px;
  z-index: 50;
  bottom: 30px;
  font-weight: 300;
  font-size: 1em;
  transition: 0.2s ease-in-out;
  cursor: pointer;
  border-radius: 50px;
  color: #ffffff;
}

.openb:hover {
  background-color: #131193;
  border: none;
  color: #ffffff;
  transition: 0.2s ease-in-out;
  outline: none;
}

.closeb {
  position: absolute;
  border: none;
  background-color: rgba(51, 59, 140, 0.7);
  color: #ffffff;
  z-index: 50;
  width: 30px;
  font-size: 1em;
  cursor: pointer;
  height: 30px;
  top: 10px;
  right: 10px;
  border-radius: 50%;
  display: none;
}

.preview {
  max-height: 200px;
  overflow: hidden;
  text-overflow: ellipsis;
  content: "";
  position: relative;
  display: block;
  padding-top: 20px;
}

.preview:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: linear-gradient(transparent, #ffffff);
}

.sectionwrap {
  width: 100%;
  height: 450px;
  padding: 25px 30px;
  box-sizing: border-box;
  overflow: hidden;
}

.inside-wrap {
  background: url(../images/bg-2.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}

.services {
  background: #d9dfe6;
}

.services-button {
  border: 1px solid #000;
  border-radius: 25px;
  text-decoration: none;
  color: #000;
  padding: 15px;
}

.services-button:hover {
  background: #131193;
  border: none;
  color: #ffffff;
}

.careers-section {
  background: linear-gradient(
      to right,
      rgba(255, 255, 255, 0.1) 50%,
      rgba(8, 171, 217, 1)
    ),
    url("../images/bg-3.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 40px 0;
}

.contact-us {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  min-height: 100vh;
  background: #131193;
  margin-top: 10px;
}

.contact-us::before {
  content: "";
  position: absolute;
  left: 0;
  width: 50%;
  height: 100%;
  background: #e5ecee;
}

.contact-us-container {
  position: relative;
  min-width: 1100px;
  min-height: 600px;
  display: flex;
  z-index: 1000;
}

.contact-us-container .contactInfo {
  position: absolute;
  top: 40px;
  width: 350px;
  height: calc(100% - 80px);
  background: #131193;
  z-index: 1;
  padding: 40px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.15);
}

.contact-us-container .contactInfo h2 {
  color: #fff;
  font-size: 24px;
  font-weight: 500;
}

.contact-us-container .contactInfo ul.info {
  position: relative;
  margin: 20px 0;
  padding-left: 1rem;
}

.contact-us-container .contactInfo ul.info li {
  position: relative;
  list-style: none;
  display: flex;
  margin: 20px 0;
  cursor: pointer;
  align-items: flex-start;
}

.contact-us-container .contactInfo ul.info li span:nth-child(1) {
  width: 30px;
  min-width: 30px;
}

.contact-us-container .contactInfo ul.info li span:nth-child(1) i {
  max-width: 100%;
  font-size: 35px;
  color: #fff;
}

.contact-us-container .contactInfo ul.info li span:nth-child(2) {
  color: #fff;
  margin-left: 10px;
  font-weight: 300;
}

.contact-us-container .contactInfo ul.sci {
  position: relative;
  display: flex;
}

.contact-us-container .contactInfo ul.sci li {
  list-style: none;
  margin-right: 20px;
}

.contact-us-container .contactInfo ul.sci li a {
  text-decoration: none;
}

.contact-us-container .contactInfo ul.sci li a i {
  color: #fff;
  font-size: 35px;
}

.contact-us-container .contactForm {
  position: absolute;
  padding: 30px 70px 70px;
  padding-left: 250px;
  margin-left: 150px;
  width: calc(100% - 150px);
  height: 100%;
  background: #fff;
  box-shadow: 0 50px 50px rgba(0, 0, 0, 0.25);
}

.contact-us-container .contactForm h2 {
  color: #000;
  font-size: 24px;
  font-weight: 500;
}

.contact-us-container .contactForm .formBox {
  position: relative;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding-top: 30px;
}

.contact-us-container .contactForm .formBox .inputBox {
  position: relative;
  margin-bottom: 35px;
}

.contact-us-container .contactForm .formBox .inputBox.w50 {
  width: 47%;
}

.contact-us-container .contactForm .formBox .inputBox.w100 {
  width: 100%;
}

.contact-us-container .contactForm .formBox .inputBox input,
.contact-us-container .contactForm .formBox .inputBox textarea {
  width: 100%;
  resize: none;
  padding: 5px 0;
  font-size: 18px;
  font-weight: 300;
  color: #333;
  border: none;
  outline: none;
  border-bottom: 1px solid #777;
}

.contact-us-container .contactForm .formBox .inputBox textarea {
  height: 120px;
}

.contact-us-container .contactForm .formBox .inputBox span {
  position: absolute;
  left: 0;
  padding: 5px 0;
  pointer-events: none;
  font-size: 18px;
  font-weight: 300;
  transition: 0.3s;
}

.contact-us-container .contactForm .formBox .inputBox input:focus ~ span,
.contact-us-container .contactForm .formBox .inputBox input:valid ~ span,
.contact-us-container .contactForm .formBox .inputBox textarea:focus ~ span,
.contact-us-container .contactForm .formBox .inputBox textarea:valid ~ span {
  transform: translateY(-20px);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 1px;
  color: #131193;
  font-weight: 500;
}

.contact-us-container .contactForm .formBox .inputBox input[type="submit"] {
  position: relative;
  cursor: pointer;
  background: #08abd9;
  color: #fff;
  border: none;
  max-width: 150px;
  padding: 12px;
}

.contact-us-container .contactForm .formBox .inputBox button {
  position: relative;
  cursor: pointer;
  background: #131193;
  color: #fff;
  border: none;
  max-width: 150px;
  padding: 12px 25px;
}

.contact-us-container .contactForm .formBox .inputBox button span {
  position: relative;
}

.contact-us-container
  .contactForm
  .formBox
  .inputBox
  input[type="submit"]:hover {
  background: #1ba0c5;
}

.footer {
  background: #d9dfe6;
}

.footer p {
  color: #000;
}

/* .logo-footer {
  width: 300px;
  height: 100px;
} */

.footer-email {
  color: #000;
  text-decoration: none;
}

.footer-email:hover {
  color: #000;
  text-decoration: underline;
}

.text-black {
  color: #000 !important;
}

.les-blue {
  color: #131193;
}

.scroll-to-top {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 30px;
  width: 40px;
  height: 40px;
  z-index: 99;
  line-height: 1;
  font-size: 18px;
  border: none;
  outline: none;
  background-color: #131193;
  color: #ffffff;
  cursor: pointer;
  padding: 12px;
  border-radius: 50px;
  text-align: center;
}

.scroll-to-top .scroll {
  color: #ffffff;
}

@media screen and (min-width: 1400px) {
  .custom-navbar .container .navbar-collapse {
    margin-left: 25px !important;
  }
}

@media screen and (max-width: 1220px) {
  .wrapper {
    height: 500px;
  }

  .left,
  .middle,
  .right {
    max-height: 500px;
  }

  .sectionwrap {
    height: 100%;
  }
}

@media (max-width: 1200px) {
  .wrapper {
    height: 550px;
  }

  .contact-us-container {
    width: 90%;
    min-width: auto;
    margin: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
  }

  .contact-us-container .contactInfo {
    top: 0;
    height: 550px;
    position: relative;
    box-shadow: none;
  }

  .contact-us-container .contactForm {
    position: relative;
    width: calc(100% - 350px);
    padding-left: 0;
    margin-left: 0;
    padding: 40px;
    height: 550px;
    box-shadow: none;
  }
}

@media screen and (max-width: 1100px) {
  .wrapper {
    height: 580px;
  }

  .left,
  .middle,
  .right {
    max-height: 550px;
  }

  .sectionwrap {
    height: 100%;
  }
}

@media screen and (min-width: 992px) and (max-width: 1200px) {
  .row.nav-top-row .list-inline-item a {
    font-size: 14px;
  }
}

@media screen and (min-width: 992px) {
  .row.inner-row {
    margin: 0 0 0 12px;
    width: 100%;
  }

  .aboutus-mobile {
    display: none;
  }
}

@media screen and (max-width: 991px) {
  .row.nav-top-row {
    position: relative;
    width: 100%;
    right: 0;
    border-radius: 0;
    display: none;
  }

  .custom-navbar {
    border-radius: 0;
  }

  #about-us {
    display: none;
  }

  .aboutus-mobile {
    background: url(../images/bg-1.jpg);
    background-repeat: no-repeat;
    background-size: cover;
  }

  .contact-us {
    background: #e5ecee;
  }

  .contact-us::before {
    display: none;
  }

  .contact-us-container {
    display: flex;
    flex-direction: column-reverse;
  }

  .contact-us-container .contactForm {
    width: 100%;
    height: auto;
  }

  .contact-us-container .contactInfo {
    width: 100%;
    flex-direction: row;
    height: auto;
  }

  .contact-us-container .contactInfo ul.sci {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}

@media screen and (max-width: 768px) {
}

@media (max-width: 600px) {
  .services-button {
    padding: 10px;
  }

  .contact-us-container .contactForm {
    padding: 25px;
  }

  .contact-us-container .contactInfo {
    padding: 25px;
    flex-direction: column;
    align-items: flex-start;
  }

  .contact-us-container .contactInfo ul.sci {
    margin-top: 40px;
  }

  .contact-us-container .contactForm .formBox .inputBox.w50 {
    width: 100%;
  }
}
