* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  height: 100%;
  scroll-behavior: smooth;
}

ul,
ol,
p,
h1,
h2,
h3,
h4,
h5,
h6,
a,
span,
label,
div,
body {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

body {
  font-family: "Poppins", sans-serif;
}

.container {
  max-width: 1620px;
  margin: 0 auto;
}

.clear {
  clear: both;
}

/* header-css-start */
.main-header {
  background-color: #fff;
  padding: 20px 40px;
}
.main-header .container {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.nav-links {
  list-style-type: none;
  display: flex;
  gap: 20px;
}

.nav-links li {
  position: relative;
}

.nav-links a {
  text-decoration: none;
  color: #000;
  font-size: 16px;
  font-weight: 500;
}

.nav-links a.active {
  color: #011f41; /* Highlighted color */
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #011f41;
  transition: 0.3s all ease-in-out;
}
.nav-links a.active::after,
.nav-links a:hover::after {
  width: 100%;
}
.header-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.logo a {
  display: flex;
  align-items: center;
  text-decoration: none;
  font-size: 26px;
  text-transform: uppercase;
  color: #000;
  font-weight: bold;
  cursor: pointer;
}
.logo a img {
  width: 430px;
}
/* header-css-end */

/* about-section-css-start */

.about-section {
  position: relative;
  background-image: url("../images/bg-1.jpg");
  background-size: cover;
  background-position: center;
  height: 488px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom: 2px solid #011f41;
}

.about-section.bg-2 {
  background-image: url("../images/bg-2.jpg");
}
.about-section.bg-3 {
  background-image: url("../images/bg-3.png");
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    180deg,
    rgb(0 0 0 / 81%) 0%,
    rgba(0, 212, 255, 0) 100%
  );
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-section h1 {
  color: #fff;
  font-size: 51px;
  font-weight: 600;
}

.about-detais {
  padding: 135px 30px 70px;
}
.about-inner {
  max-width: 1158px;
  margin: 0 auto;
  text-align: center;
}
.about-detais h2 {
  color: #000b20;
  font-size: 25px;
  line-height: 1.5;
  font-weight: 600;
  margin-bottom: 32px;
}
.about-detais p {
  font-size: 18px;
  font-weight: 400;
  line-height: 26px;
  text-align: center;
  color: #5e6578;
  margin-bottom: 32px;
}
.about-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 150px;
  position: relative;
  background-color: #0e4474;
  border-radius: 20px;
}
.about-banner * {
  position: relative;
  z-index: 3;
}
.about-banner::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    0deg,
    rgb(0 121 144) 33%,
    rgb(1 31 65 / 54%) 100%
  );

  z-index: 1;
  border-radius: 20px;
}
.about-banner::before {
  background: url("../images/ab.png");
  background-repeat: no-repeat;
  background-position: left;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  border-radius: 20px;
}
.about-banner .text {
  padding: 140px 100px;
  padding-right: 10px;
}
.about-banner h3 {
  color: #fff;
  font-size: 42px;
  font-weight: 600;
  line-height: 63px;
  text-align: left;
}
.about-banner a {
  display: inline-block;
  margin-top: 0;
  color: #ffffff;
  font-size: 33px;
  font-weight: 400;
  line-height: 27px;
  text-align: center;
  text-decoration: none;
  border: 1px solid #fff;
  padding: 20px 60px;
  transition: 0.3s all ease-in-out;
}
.about-banner a:hover {
  background-color: #fff;
  color: #0e4474;
}
.about-banner .about-img {
  margin-top: -118px;
  width: 100%;
  max-width: 610px;
  margin-right: 70px;
  border: 9px solid #fff;
  font-size: 0;
  box-shadow: 0px -4px 9px 3px #00000057;
}
.about-banner .about-img img {
  width: 100%;
}
/* about-section-css-end */

/* caontact us start*/
.contact-us {
  padding: 250px 15px 0;
  background: linear-gradient(160deg, rgb(0 121 144) 33%, rgb(20 67 103) 100%);
}
.contact-us .container {
  max-width: 1390px;
  display: flex;
  justify-content: space-between;
}
.contact-us h2 {
  color: #ffffff;
  font-size: 36px;
  font-weight: 600;
  line-height: 54px;
  text-align: left;
  margin-top: 15px;
  margin-bottom: 12px;
}
.contact-us p {
  color: #ffffff;
  font-size: 18px;
  font-weight: 500;
  line-height: 26px;
  letter-spacing: 0.5px;
  text-align: left;
}

.cont-wrap {
  margin-top: 50px;
  display: flex;
  gap: 30px;
  max-width: 680px;
}
.cont-wrap > .div {
  flex: 1;
}
.cont-wrap address {
  width: 50%;
}
.cont-wrap .links {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.cont-wrap .cont-col {
  background-color: #ffffff;
  border-radius: 11px;
  padding: 27px;
  padding-left: 45px;
  position: relative;
  margin-left: 22px;
}

.cont-wrap .cont-col .icon {
  position: absolute;
  top: 17px;
  left: -21px;
}
.cont-wrap .cont-col .icon svg {
  color: #ffffff;
}
.left-side {
  width: 50%;
}
.cont-wrap .cont-col a,
.cont-wrap .cont-col p {
  color: #595959;
  font-family: Poppins;
  font-size: 18px;
  font-weight: 400;
  line-height: 29.32px;
  text-align: left;
  text-decoration: none;
}
.contact-form {
  padding: 60px 40px;
  border: 1px solid #ccc;
  border-radius: 15px 15px 0 0;
  max-width: 39%;
  background-color: #fff;
  width: 100%;
}
.contact-form form {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.w-50 {
  width: calc(50% - 22px);
}
.w-100 {
  width: 100%;
}
.contact-form h2 {
  color: #000b20;
  text-align: center;
  margin-bottom: 20px;
  font-family: Poppins;
  font-size: 36px;
  font-weight: 600;
  line-height: 54px;
  text-align: left;
}

label {
  display: block;
  margin-bottom: 5px;
  font-family: Poppins;
  font-size: 14px;
  font-weight: 400;
  line-height: 16px;
  letter-spacing: 0.10000000149011612px;
  text-align: left;
}

input,
textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  background: #f1f4ff;
  outline: none;
  border: none;
  padding: 18px;
  font-size: 20px;
  margin-bottom: 15px;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
textarea {
  height: 100px;
  resize: none;
}

button {
  background-color: #011f41;
  color: white;
  padding: 20px 110px;
  font-size: 18px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  text-transform: uppercase;
  width: fit-content;
  margin: 0 auto;
  transition: 0.3s all ease-in-out;
}

button:hover {
  background-color: #007e9d;
}

/* caontact us end*/
/* location start */
.location {
  font-size: 0;
}
.location img {
  width: 100%;
}
/* location end */
/* footer-css-start */

.footer {
  background-color: #011f41;
  color: #fff;
  padding: 80px 0 0;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto 50px;
  gap: 40px;
  padding: 0 15px;
}

.footer-column {
  flex: 1;
}

.footer-column h3 {
  color: #ffffff;
  font-size: 22px;
  font-weight: 600;
  line-height: 33px;
  text-align: left;
  text-transform: uppercase;
}

.footer-column a,
.footer-column p {
  color: #acb3ce;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-align: left;
  margin-bottom: 10px;
}
.address {
  max-width: 280px;
}
.footer-column a {
  display: inline-block;
  text-decoration: none;
}
.footer-column p,
.footer-column ul,
.footer-column form {
  font-size: 14px;
  line-height: 1.6;
}

.footer-column ul {
  list-style-type: none;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a {
  text-decoration: none;
  color: #acb3ce;
}

.footer-column ul li a:hover {
  color: #ffffff;
}
.footer-nav {
  margin-top: 25px;
}
.newsletter input[type="email"] {
  width: 100%;
  padding: 17px;
  margin: 10px 0;
  border-radius: 5px;
  border: none;
}

.newsletter button {
  background-color: #ffc107;
  border: none;
  padding: 17px 20px;
  color: #fff;
  font-weight: bold;
  border-radius: 5px;
  cursor: pointer;
  width: 100%;
}

.newsletter button:hover {
  background-color: #e0a800;
}

.consent {
  margin-top: 15px;
  font-size: 12px;
  color: #acb3ce;
  display: flex;
  align-items: flex-start;
  position: relative;
}

.consent input {
  margin-right: 23px;
  width: fit-content;
}

.form-group label:before {
  content: "";
  -webkit-appearance: none;
  background-color: #011f41;
  border: 2px solid #ffffff;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05),
    inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
  padding: 10px;
  display: inline-block;
  position: relative;
  vertical-align: middle;
  border-radius: 2px;
  cursor: pointer;
  margin-right: 5px;
  position: absolute;
  left: 0;
  top: 0;
}

.form-group input:checked + label:after {
  content: "";
  display: block;
  position: absolute;
  top: 5px;
  left: 9px;
  width: 3px;
  height: 9px;
  border: solid #ffffff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.footer-bottom {
  background-color: #144367; /* Dark blue background */
  text-align: center;
  padding: 20px;
  font-size: 14px;
  color: #ccc;
}

.footer-bottom p {
  margin: 0;
}

nav {
  display: flex;
  gap: 10px;
}

header .container {
  position: relative;
}

body .lang-spanshie,
body.is-spanish .lang-en {
  display: none;
}
body.is-spanish .lang-spanshie {
  display: block;
}
/* asdasd */

/* General styles */
.custom-select {
  position: relative;
  width: 90px;
  font-family: Arial, sans-serif;
  cursor: pointer;
}

.selected-option {
  padding: 5px 25px 5px 5px;
  border: 1px solid #ccc;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
}

.selected-option img {
  width: 18px;
  height: 10px;
  margin-right: 5px;
}
.selected-option {
  background-image: url(../images/ad-img.png);
  background-size: 7px;
  background-repeat: no-repeat;
  background-position-x: 90%;
  background-position-y: center;
}
.options {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  font-size: 12px;
  background: white;
  display: none;
  z-index: 10;
}

.options li {
  padding: 5px;
  display: flex;
  align-items: center;
  list-style: none;
}

.options li img {
  width: 18px;
  height: 10px;
  margin-right: 5px;
}
.options li:hover {
  background: #f0f0f0;
}

.flag-icon {
  width: 20px;
  height: 15px;
  margin-right: 10px;
}
.slick-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: -50px;
  z-index: 10;
  position: relative;
}
.slick-dots li button {
  width: 10px;
  height: 10px;
  font-size: 0;
  padding: 0;
  background-color: #fff;
}
.slick-dots li.slick-active button {
  background-color: #007990;
}
@media (max-width: 1200px) {
  .about-section {
    height: 348px;
  }
  .about-detais h2 {
    color: #000b20;
    font-size: 26px;
  }
  .about-detais p {
    font-size: 16px;
  }
  .about-banner .text {
    padding: 48px 40px;
  }
  .about-banner h3 {
    font-size: 27px;
    line-height: 41px;
  }
  .about-banner a {
    margin-top: 30px;
  }
  .contact-us {
    padding: 100px 15px 0;
  }
  .contact-us h2 {
    font-size: 29px;
  }
  .contact-us p {
    font-size: 15px;
  }
  .cont-wrap .cont-col a,
  .cont-wrap .cont-col p {
    font-size: 16px;
  }
  .cont-wrap .cont-col {
    padding: 11px;
    padding-left: 40px;
  }
  .contact-form {
    padding: 30px 18px;
  }
  input,
  textarea {
    padding: 14px;
    font-size: 14px;
  }
  button {
    padding: 15px 60px;
  }
}
@media (max-width: 1024px) {
  .contact-us .container {
    align-items: flex-end;
  }
  .cont-wrap {
    max-width: 350px;
    flex-direction: column;
  }
  .address {
    max-width: 100%;
  }
  .cont-wrap .cont-col {
    padding: 26px;
    padding-left: 40px;
  }
  .contact-form {
    max-width: 49%;
  }
  .left-side {
    margin-bottom: 50px;
  }
  .w-50 {
    width: calc(50% - 8px);
  }
  /* .contact-us .container {
    flex-direction: column;
    gap: 15px;
  }
  .contact-form,
  .left-side {
    width: 100%;
  } */
}
@media (max-width: 768px) {
  .custom-select {
    width: 40px;
  }
  .options,
  .selected-option {
    font-size: 0;
  }
  .about-section {
    height: 258px;
  }
  .about-section h1 {
    font-size: 35px;
  }
  .about-detais h2 {
    color: #000b20;
    font-size: 20px;
    margin-bottom: 25px;
  }
  .about-detais p {
    font-size: 14px;
    line-height: 22px;
  }
  .about-detais {
    padding: 50px 15px 70px;
  }
  .about-banner h3 {
    font-size: 23px;
    line-height: 35px;
  }
  .about-banner .text {
    padding: 25px;
  }
  .about-banner .about-img {
    margin-top: -50px;
    width: 100%;
    margin-right: 0;
  }
  .about-banner {
    flex-direction: column-reverse;
  }
  .w-50 {
    width: 100%;
  }
  .contact-us .container {
    align-items: center;
    flex-direction: column;
  }
  .left-side {
    width: 100%;
  }
  .contact-form {
    max-width: 100%;
  }
  .location {
    min-height: 250px;
  }
  .location img {
    width: 100%;
    min-height: 250px;
    object-fit: cover;
  }
  .contact-us {
    padding: 50px 15px 0;
  }
  .footer {
    padding: 40px 0 0;
  }
  .footer-container {
    gap: 30px;
    flex-direction: column;
  }
  .footer-column h3 {
    font-size: 16px;
    margin-bottom: 7px;
    line-height: 30px;
    margin-top: 14px;
  }
}
@media (max-width: 525px) {
  .main-header {
    padding: 10px;
  }
  .nav-links a {
    font-size: 14px;
  }
  .logo a {
    font-size: 14px;
  }
  .logo a img {
    width: 150px;
  }
}
/* footer-css-end */
