* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

input,
button,
textarea {
  border: 0;
  background: none;
  outline: none;
}

a {
  text-decoration: none;
  color: inherit;
}

ul,
ol {
  list-style: none;
}

body {
  background-color: #11628d;
  color: #212529;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.5;
  font-family: "Catamaran", sans-serif;
}

.container {
  width: calc(100% - 20px);
  margin: 0 auto;
  max-width: 1600px;
}

header {
  position: fixed;
  width: 100%;
  z-index: 999;
  height: 100px;
  padding: 0px 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  left: 0;
  top: 0;
  transition: 0.7s;
}
header.active {
  background: #11628d;
}

.logo {
  width: 180px;
  aspect-ratio: 180/60;
  display: flex;
}
.logo svg {
  width: 100%;
  height: 100%;
}
.logo svg path {
  fill: #07415f;
}

.header__right__top {
  display: flex;
  align-items: center;
}

.header__right p {
  text-transform: uppercase;
  font-size: 0.6rem;
  text-align: right;
  color: #fff;
  display: flex;
  margin-top: 10px;
  justify-content: flex-end;
}

.lg {
  display: flex;
  align-items: center;
  background-color: #358bb7;
  color: #fff;
  border-radius: 0.5rem;
  padding: 7px;
  text-transform: uppercase;
  font-weight: 500;
  margin: 0px 5px;
  gap: 4px;
}

.header__btn {
  padding: 10px;
  margin-left: 10px;
  color: rgb(255, 255, 255);
  background-color: rgb(7, 65, 95);
  font-weight: 700;
  text-transform: capitalize;
  border: 0 solid transparent;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  min-width: 80px;
  max-width: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header__btn:nth-child(3) {
  background-color: #fff;
  color: rgb(7, 65, 95);
}

.banner {
  height: 770px;
  background-image: url("../images/banner.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
}

.banner__content {
  padding: 0px 100px;
  max-width: 66.6666666667%;
  transform: translateY(-40px);
}
.banner__content p:nth-child(1) {
  font-size: 3.5vw;
  font-weight: 800;
  line-height: 1;
  color: #fff;
  text-align: left;
  padding: 10px 0;
}
.banner__content p:nth-child(2) {
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgb(7, 65, 95);
  width: 170px;
  font-size: 1.3rem;
  background-color: #fff;
  border-radius: 0.5rem;
  font-weight: 700;
  text-transform: capitalize;
  padding: 15px 20px !important;
}

.nav__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 88px;
  border-bottom: 3px solid #4295bf;
}

.nav__top__text {
  font-size: 0.75rem;
  color: rgb(226, 226, 226);
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
}

.nav__top__right {
  display: flex;
  align-items: center;
}
.nav__top__right p {
  font-size: 0.75rem;
  color: rgb(226, 226, 226);
  margin: 20px;
  line-height: 1.2;
  width: 132px;
  font-weight: 400;
}

.nav__menu {
  display: flex;
  align-items: center;
  justify-content: space-between;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 30px 0px 20px 0;
}
.nav__menu::-webkit-scrollbar {
  display: none;
}
.nav__menu li {
  min-width: -moz-max-content;
  min-width: max-content;
}
.nav__menu li:nth-child(1) a {
  background-color: rgb(53, 139, 183);
  border-radius: 0.5rem;
}
.nav__menu li a {
  color: rgb(255, 255, 255);
  font-weight: 700;
  background-color: transparent;
  padding: 10px 20px;
  text-transform: uppercase;
}

.cards {
  padding: 40px 0px;
}

.cards__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.cards__title {
  font-size: 24px;
  float: left;
  font-weight: 600;
  color: #fff;
  text-transform: capitalize;
  text-align: center;
}

.cards__nav {
  font-weight: 600;
  color: #fff;
  text-transform: capitalize;
  cursor: pointer;
  font-size: 14px;
  display: flex;
  align-items: center;
}
.cards__nav svg {
  width: 20px;
}

.cards__list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.cards__item {
  display: flex;
  aspect-ratio: 320/212;
}
.cards__item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.content {
  padding: 40px 0;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.content__item {
  color: #fff;
  font-size: 18px;
  line-height: 1.5;
  font-weight: 400;
}
.content__item strong,
.content__item h1,
.content__item h2,
.content__item h3,
.content__item h4 {
  font-weight: 900;
}
.content__item h1 {
  font-size: 40px;
  margin-bottom: 10px;
}
.content__item h2 {
  font-size: 35px;
  margin-bottom: 10px;
}
.content__item h3 {
  font-size: 27px;
  margin-bottom: 10px;
}
.content__item h4 {
  font-size: 20px;
  margin-bottom: 10px;
}
.content__item p,
.content__item .content__table,
.content__item ul,
.content__item ol {
  margin-bottom: 20px;
}
.content__item ol,
.content__item ul {
  padding-left: 50px;
  list-style: auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.content__item ol p,
.content__item ul p {
  margin-bottom: 15px;
}
.content__item ul {
  list-style: disc;
}
.content__item h3:last-child,
.content__item ol:last-child,
.content__item p:last-child,
.content__item .content__table:last-child,
.content__item ul:last-child {
  margin-bottom: 0;
}
.content__item.faq .faq__item {
  margin-bottom: 25px;
}
.content__item.faq .faq__item p,
.content__item.faq .faq__item ol,
.content__item.faq .faq__item ul,
.content__item.faq .faq__item .content__table {
  margin-bottom: 15px;
}
.content__item.faq .faq__item p:last-child,
.content__item.faq .faq__item ol:last-child,
.content__item.faq .faq__item ul:last-child,
.content__item.faq .faq__item .content__table:last-child {
  margin-bottom: 0;
}
.content__item.faq .faq__item p:first-child {
  margin-bottom: 15px;
  font-size: 25px;
  font-weight: 900;
}
.content__item.faq .faq__item:last-child {
  margin-bottom: 0;
}

.content__table table {
  border-collapse: collapse;
}
.content__table td {
  padding: 12px;
  border: 1px solid #fff;
  text-align: left;
  vertical-align: top;
}
.content__table tr:first-child td {
  text-align: center;
  font-weight: 900;
}

.table-left-bold td:first-child {
  font-weight: 900;
}

.table-not-head tr:first-child td {
  text-align: left;
  font-weight: 400;
}

footer {
  padding-top: 5rem;
  background-color: #07415f;
}

.footer__icons {
  padding: 40px 0 20px;
  border-bottom: 1px solid rgba(218, 221, 230, 0.1411764706);
  border-top: 1px solid rgba(218, 221, 230, 0.1411764706);
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px 0;
}

.footer__icons__item {
  width: 145px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-right: 1px solid rgba(218, 221, 230, 0.1411764706);
}
.footer__icons__item:first-child {
  border-left: 1px solid rgba(218, 221, 230, 0.1411764706);
}
.footer__icons__item svg {
  height: 30px;
  width: 100px;
}

.footer__copyright {
  padding: 10px 0 60px;
  text-align: center;
  color: #e2e2e2;
  font-size: 1rem;
}

.mobile-menu,
.mobile {
  display: none;
}

@media (max-width: 1919px) {
  .banner {
    height: 577px;
  }
}
@media (max-width: 1400px) {
  .banner {
    height: 400px;
  }
  .banner__content {
    transform: translateY(-20px);
  }
}
@media (max-width: 1025px) {
  .banner {
    background-image: url(../images/banner-mob.jpg);
    height: 861px;
  }
  header {
    padding: 0px 10px;
  }
  .banner__content {
    padding: 0px 50px;
    max-width: 40%;
  }
  .cards__list {
    grid-template-columns: repeat(2, 1fr);
  }
  .mobile-menu {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 55px;
    z-index: 99;
    background-color: rgb(31, 31, 31);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
  .mobile-menu a {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .mobile-menu a:nth-child(2) span {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #fff;
    width: 45px;
    aspect-ratio: 1/1;
  }
  .mobile-menu a:nth-child(2) svg path {
    fill: #000;
  }
  .mobile-menu a svg {
    width: 30px !important;
    height: 30px !important;
  }
  .mobile-menu a svg path {
    fill: #fff;
  }
}
@media (max-width: 767px) {
  .banner {
    height: 420px;
    align-items: flex-end;
  }
  header {
    height: 70px;
    padding: 0px 20px;
  }
  .logo {
    width: 70px;
  }
  .header__btn {
    padding: 10px 5px;
    min-width: auto;
    max-width: none;
    width: 60px;
  }
  .nav {
    margin-top: 20px;
  }
  .banner__content {
    width: 100%;
    max-width: none;
  }
  .banner__content {
    width: 100%;
    max-width: none;
    transform: translateY(130px);
    padding: 0px 20px;
  }
  .banner__content p:nth-child(1) {
    font-size: 1.6em;
    padding: 0px;
    line-height: 1.3;
    text-align: center;
  }
  .banner__content p:nth-child(2) {
    width: 100%;
    height: 54px;
    padding: 0 20px !important;
    font-size: 1rem;
    font-weight: 700;
    margin-top: 10px;
  }
  .nav__top {
    flex-direction: column;
    height: auto;
    border-bottom: 3px solid #4295bf;
  }
  .nav__top__text {
    font-size: 0.7rem;
  }
  .nav__top__right {
    justify-content: space-between;
    width: 100%;
    margin: 1rem 0px;
  }
  .nav__top__right svg {
    width: 30px;
    height: 30px;
  }
  .nav__top__right p {
    font-size: 0.7rem;
    margin: 0px;
    width: 124px;
  }
  .nav__menu {
    width: calc(100% + 10px);
    padding-right: 10px;
  }
  .cards {
    padding: 20px 0px;
  }
  .cards__title {
    font-size: 20px;
  }
  .cards__nav {
    font-size: 12px;
  }
  .content {
    padding: 20px 0;
  }
  .content__item ol,
  .content__item ul {
    padding-left: 30px;
  }
  .footer__icons__item {
    border: 0 !important;
  }
  .footer__icons__item {
    width: 80px;
    height: 36px;
  }
  .footer__icons {
    gap: 40px;
  }
  footer {
    padding: 4rem 0 2rem;
  }
  .banner__content {
    display: none;
  }
  .banner__content.mobile {
    display: block;
    transform: translateY(0px);
    margin-top: 10px;
  }
  .banner {
    background-size: 100% 100%;
  }
}/*# sourceMappingURL=styles.css.map */