@import './animations.css';
@font-face {
  font-family: "OpenSans";
  src: url("../../assets/fonts/OpenSans-Light.woff2") format("woff2");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "OpenSans";
  src: url("../../assets/fonts/OpenSans-Regular.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "OpenSans";
  src: url("../../assets/fonts/OpenSans-Bold.woff2") format("woff2");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
.header {
  max-width: 1500px;
  margin: auto;
  background-color: #023E8A;
  color: #F9FAFB;
  height: 9.24rem;
}
@media screen and (min-width: 1025px) {
  .header {
    height: 10.96rem;
  }
}
@media screen and (min-width: 761px) and (max-width: 1024px) {
  .header {
    height: 11.099rem;
  }
}
.header__contact {
  text-align: center;
  padding: 2rem 0;
}
@media screen and (min-width: 1025px) {
  .header__contact {
    padding: 0.85rem 3.75rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: unset !important;
    margin-bottom: 1.1rem;
  }
}
@media screen and (max-width: 760px) {
  .header__contact {
    padding: 1.5rem 0;
  }
}
.header__contact > h1 {
  font-size: 2rem;
  margin: 0;
  color: #F9FAFB;
}
@media screen and (max-width: 760px) {
  .header__contact > h1 {
    font-size: 1.5rem;
  }
}
.header__contact--info {
  display: none;
}
@media screen and (min-width: 1025px) {
  .header__contact--info {
    display: flex;
  }
}
.header__contact--info > div {
  display: flex;
  gap: 1rem;
}
.header__contact--info > div:last-child {
  margin-left: 2rem;
}
.header__contact--info > div > img {
  width: 3rem;
}
.header__contact--info > div > div {
  display: flex;
  flex-direction: column;
}
.header__contact--info > div > div > h2 {
  font-size: 1rem;
  margin-top: 0;
  color: #F9FAFB;
}
.header__contact--info > div > div > p, .header__contact--info > div > div a {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 600;
  color: #111827;
}
.header__contact--info > div > div a {
  display: block;
  text-decoration: none;
  color: #F9FAFB;
}
.header__contact--info > div > div a:hover {
  border-bottom: 1px solid #C2410C;
  color: #C2410C;
  transition: 0.2s;
}
.header__contact--info > div > div a:focus, .header__contact--info > div > div a:focus-visible {
  outline: 3px solid #F9FAFB !important;
}

.nav {
  background-color: #023E8A;
  padding: 0;
  transition: 0.5s;
}
@media screen and (max-width: 760px) {
  .nav {
    position: relative;
  }
}
.nav > div {
  background-color: #F2F6FB;
  margin: auto;
  padding: 0.5rem 2rem;
  width: 100%;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 760px) {
  .nav > div {
    display: flex;
    justify-content: space-between;
    padding: 1rem 2rem;
    margin: unset;
  }
}
@media screen and (min-width: 1025px) {
  .nav > div {
    padding: 0.7rem 3.75rem;
  }
}
.nav > div > h2 {
  margin: 0;
  display: none;
}
@media screen and (max-width: 760px) {
  .nav > div > h2 {
    display: block;
    color: #111827;
  }
}
.nav__list {
  list-style: none;
  padding: 0;
  display: flex;
  margin-right: auto;
  gap: 3rem;
}
@media screen and (max-width: 760px) {
  .nav__list {
    flex-direction: column;
    gap: unset;
    position: absolute;
    z-index: 2;
    top: 4.09rem;
    left: 0;
    background-color: #F9FAFB;
    width: 100%;
    padding: 2rem 2rem;
    margin-top: 0;
  }
}
@media screen and (max-width: 760px) {
  .nav__list > li {
    border-bottom: 1px solid #111827;
    padding: 4% 0;
  }
}
.nav__list > li:last-child {
  border-bottom: unset;
}
.nav__list > li a {
  color: #111827;
  text-decoration: none;
  font-weight: 600;
}
.nav__list > li a:hover {
  padding-bottom: 0.5rem;
  cursor: pointer;
  border-bottom: 1px solid #1F4E79;
  transition: 0.2s;
  color: #1F4E79;
}
.nav__list--contain {
  display: flex;
  align-items: center;
  margin: 0 1rem;
}
.nav__btn {
  color: #111827;
  border: 3px solid #111827;
  margin-left: auto;
  padding: 0.5rem 1.5rem;
  transition: 0.7s;
}
@media screen and (max-width: 760px) {
  .nav__btn {
    display: none;
  }
}
.nav__btn:hover {
  color: #F9FAFB;
  background-color: #111827;
  border: 3px solid #111827;
}
.nav__hamburger:focus {
  border: 2px solid #111827;
  outline-offset: 3px;
}
.nav__hamburger--close1 {
  transform: rotate(0);
}
.nav__hamburger--0 {
  transform: rotate(45deg);
}
.nav__hamburger--close2 {
  transform: translateX(0);
  opacity: 1;
}
.nav__hamburger--1 {
  opacity: 0;
  transform: translateX(20px);
}
.nav__hamburger--close3 {
  transform: rotate(0);
}
.nav__hamburger--2 {
  transform: rotate(-45deg);
}
.nav__hamburger--button {
  display: none;
}
@media screen and (max-width: 760px) {
  .nav__hamburger--button {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 2rem;
    height: 2rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10;
  }
}
.nav__hamburger--button:focus {
  outline: none;
}
.nav__hamburger--button div {
  width: 2rem;
  height: 0.25rem;
  background-color: #111827;
  border-radius: 10px;
  transition: all 0.3s linear;
  position: relative;
  transform-origin: 1px;
}
.nav__hamburger--notActive {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease-in-out, visibility 0s 0.5s;
}
.nav__hamburger--isActive {
  opacity: 1;
  transition: opacity 0.5s ease-in-out, visibility 0s 0s;
  visibility: visible;
}

.sticky {
  position: fixed;
  width: 100%;
  max-width: 1500px;
  left: auto;
  right: auto;
  top: 0;
  padding: 0;
  z-index: 999;
}

.hero {
  max-width: 1500px;
  margin: auto;
  position: relative;
}
.hero__content {
  position: absolute;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: #F9FAFB;
  padding: 0 3.75rem;
}
@media screen and (max-width: 760px) {
  .hero__content {
    padding: 1.5rem 2rem;
  }
}
.hero__content > h2 {
  font-size: 3.75rem;
  line-height: 4.5rem;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 2.5rem;
}
@media screen and (min-width: 761px) and (max-width: 1024px) {
  .hero__content > h2 {
    font-size: 2rem;
    line-height: 3.5rem;
  }
}
@media screen and (max-width: 760px) {
  .hero__content > h2 {
    font-size: 3rem;
    line-height: 3.6rem;
    font-weight: 700;
    font-size: 1.25rem;
    line-height: 120%;
    margin-bottom: 1rem;
  }
}
.hero__content > p {
  margin-top: 0;
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 400;
  font-size: 1.5rem;
  line-height: normal;
}
@media screen and (max-width: 760px) {
  .hero__content > p {
    font-size: 0.875rem;
    line-height: 1.25rem;
    font-weight: 400;
    font-size: 0.875rem;
    line-height: normal;
    width: unset;
  }
}
.hero__img {
  aspect-ratio: 4/2;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  filter: brightness(50%);
}
@media screen and (max-width: 760px) {
  .hero__img {
    aspect-ratio: 4/2.35;
  }
}

.footer {
  background-color: #111827;
  color: #F9FAFB;
  margin: auto;
  padding-top: 2rem;
  padding-bottom: 2rem;
  display: flex;
  flex-direction: column;
  max-width: 1500px;
  padding: 3.75rem 3.75rem;
}
@media screen and (max-width: 760px) {
  .footer {
    padding: 2.5rem 2rem;
  }
}
.footer__header > p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 400;
}
.footer__slogan {
  font-size: 1.2rem !important;
  margin-bottom: 0.5rem !important;
}
.footer__title {
  margin-top: 0;
  margin-bottom: 0.5rem;
  line-height: normal;
  font-size: 2rem !important;
  font-size: 2.5rem;
  line-height: 3rem;
  font-weight: 600;
}
.footer__content {
  display: flex;
  gap: 5rem;
  margin-bottom: 1rem;
}
@media screen and (min-width: 761px) and (max-width: 1024px) {
  .footer__content {
    gap: 3rem;
  }
}
@media screen and (max-width: 760px) {
  .footer__content {
    flex-direction: column;
    gap: 2rem;
  }
}
.footer__contact {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 1025px) {
  .footer__contact {
    margin-left: 10rem;
  }
}
.footer__contact > h2 {
  font-size: 1rem !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  line-height: normal !important;
  font-size: 2.5rem;
  line-height: 3rem;
  font-weight: 600;
}
.footer__list {
  list-style: none;
  padding: 0;
}
.footer__list > li:first-child {
  margin-bottom: 1.5rem;
}
.footer__list--item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.footer__list--item img {
  width: 2rem;
  height: 2rem;
}
@media screen and (max-width: 760px) {
  .footer__list--item img {
    display: none;
  }
}
.footer__list--info {
  display: flex;
  flex-direction: column;
  text-align: left;
}
.footer__list--info h3 {
  font-size: 0.875rem;
  margin-top: 0;
}
.footer__list--info a, .footer__list--info p {
  margin: 0;
  font-size: 0.875rem;
  color: #F9FAFB;
}
.footer__quickLinks h2 {
  font-size: 1rem !important;
  margin-top: 0 !important;
  line-height: normal !important;
  font-size: 2.5rem;
  line-height: 3rem;
  font-weight: 600;
}
.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
}
.footer__links > li a {
  color: #F9FAFB;
  font-size: 0.875rem;
}
.footer__license {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  border-top: 1px solid #F9FAFB;
  padding-top: 1rem;
}
.footer__license p {
  margin: 0;
}
.footer__license a {
  color: #F9FAFB;
}
.footer__license img {
  width: 2rem;
  height: 2rem;
}
.footer__links > li a:focus, .footer__list--info a:focus, .footer__license a:focus {
  outline: 3px solid #F9FAFB !important;
  outline-offset: 2px;
}

.hero {
  display: flex;
  justify-content: center;
  padding: 40px 0;
  text-align: center;
  background-image: url("/assets/images/contactus-banner.webp");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
@media screen and (max-width: 760px) {
  .hero {
    padding: 50px 0;
  }
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}
.hero h2 {
  color: #F9FAFB;
  border-bottom: 1px solid #F9FAFB;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 2.5rem !important;
  font-size: 3.75rem;
  line-height: 4.5rem;
  font-weight: 700;
}
@media screen and (max-width: 760px) {
  .hero h2 {
    font-size: 3rem;
    line-height: 3.6rem;
    font-weight: 700;
  }
}

.contact {
  padding: 3.75rem 3.75rem;
  max-width: 1500px;
  margin: auto;
}
@media screen and (max-width: 760px) {
  .contact {
    padding: 2.5rem 2rem;
  }
}

form {
  margin-top: 2rem;
}

.formlist {
  list-style: none;
  padding-left: 0;
  max-width: 900px;
}
.formlist li {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.formlist li label {
  font-size: 0.875rem;
  line-height: 1.6rem;
  font-weight: 700;
  font-size: 1rem;
}
.formlist li input {
  height: 2rem;
  padding: 0.5rem 0.5rem;
}
.formlist li textarea {
  height: 5rem;
  padding: 0.5rem 0.5rem;
}
.formlist li button {
  padding: 14px 24px;
  transition: 0.7s;
  font-size: 0.875rem;
  line-height: 1.6rem;
  font-weight: 700;
  width: -moz-fit-content;
  width: fit-content;
  color: #1F4E79;
  background-color: transparent;
  border: 3px solid #1F4E79;
}
.formlist li button:hover {
  cursor: pointer;
}
.formlist li button:hover {
  color: #F9FAFB;
  background-color: #1F4E79;
}/*# sourceMappingURL=contact.css.map */