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

html {
  scroll-behavior: smooth;
}

body {
  font-family: Encode Sans Condensed, sans-serif;
  color: #002336;
  background-color: #000040;
}

header {
  justify-content: center;
}

.navbar {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  padding: 10px;
  background-color: #000040;
  z-index: 100;
  width: 100%;
}

.navbar-links {
  display: flex;
  align-items: center;
}
.nav-logo {
  width: 100px;
  margin: 1rem;
}

.navbar-links ul {
  list-style: none;
  padding: 0;
  display: flex;
  margin: 0;
}

.navbar-links li {
  padding: 0 10px;
}

.nav-logo-mobile {
  display: none;
}

.navbar-links a {
  color: white;
  text-decoration: none;
  font-size: 1em;
  text-transform: uppercase;
  padding: 1em 0.8em;
}

.toggle-button {
  display: none;
  font-size: 2em;
  color: white;
  background: none;
  border: none;
  cursor: pointer;
  text-decoration-line: none;
}

@media (max-width: 991px) {
  .navbar {
    flex-direction: column;
    align-items: flex-end;
    padding-right: 2rem;
  }

  .navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }

  .nav-logo-mobile {
    display: block;
    width: 100px;
  }

  .nav-logo {
    display: none;
  }

  .navbar-links {
    display: none;
    width: 100%;
  }

  .navbar-links ul {
    flex-direction: column;
    width: 100%;
  }

  .navbar-links li {
    text-align: center;
    width: 100%;
    padding: 10px 0;
  }

  .navbar-links a {
    padding: 5px 5px;
  }

  .toggle-button {
    display: block;
    font-size: 3rem;
  }

  .navbar-links.active {
    display: flex;
  }
}

.nav-link:hover {
  background-color: #fff;
  color: rgb(6, 25, 59);
}

.special-link:hover {
  background-color: rgb(252, 238, 79);
  color: black;
}

.hero {
  height: 100vh;
  background-image: url(./images/main-bg.png);
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  overflow: hidden;
}

@media screen and (max-width: 991px) {
  .hero {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .hero {
    display: none;
  }
}

.hero-mobile {
  display: none;
}

@media screen and (max-width: 991px) {
  .hero-mobile {
    display: flex;
    height: 100vh;
    background-image: linear-gradient(
        rgba(0, 0, 61, 0.85),
        rgba(0, 0, 61, 0.85)
      ),
      url(./images/hero-bg-mobile.jpg);
    background-position: 0 0, 0%;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    overflow: hidden;
  }

  .hero-mobile img {
    width: 100%;
    margin-top: 30rem;
  }
}

@media screen and (max-width: 767px) {
  .hero-mobile {
    display: flex;
    height: 100vh;
    background-image: linear-gradient(
        rgba(0, 0, 61, 0.85),
        rgba(0, 0, 61, 0.85)
      ),
      url(./images/hero-bg-mobile.jpg);
    background-position: 0 0, 0%;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: scroll;
    overflow: hidden;
    align-items: center;
    justify-content: center;
  }
  .hero-mobile img {
    width: 100%;
    margin-top: 20rem;
  }
}

.section {
  display: flex;
  min-height: 100vh;
  justify-content: center;
  padding-top: 150px;
  padding-bottom: 150px;
  overflow: hidden;
  background-attachment: fixed;
  background-size: cover;
  background-position: 0 0, 0%;
}

@media screen and (max-width: 991px) {
  .section {
    padding-top: 80px;
    padding-bottom: 80px;
    background-attachment: scroll;
  }
}

@media screen and (max-width: 767px) {
  .section {
    padding-top: 80px;
    padding-bottom: 80px;
    background-attachment: scroll;
  }
}

.footer {
  display: flex;
  justify-content: center;
  color: #fff;
  overflow: hidden;
}

.nav-container {
  text-align: center;
  justify-content: center;
  max-width: 1200px;
}

@media screen and (max-width: 991px) {
  .nav-container {
    max-width: 728px;
  }
}

@media screen and (max-width: 767px) {
  .nav-container {
    max-width: none;
  }
}

.section-container {
  display: block;
  text-align: center;
  justify-content: center;
  max-width: 1200px;
}

@media screen and (max-width: 991px) {
  .section-container {
    max-width: 728px;
  }
}

@media screen and (max-width: 767px) {
  .section-container {
    max-width: none;
  }
}

.cta-button {
  padding: 1rem 1rem;
  border-width: 1px;
  border-style: solid;
  border-color: #fff;
  background-color: transparent;
  text-decoration-line: none;
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
  margin-top: 4rem;
}

.cta-button-alt {
  padding: 1rem 1rem;
  border-width: 1px;
  border-style: solid;
  border-color: #000040;
  background-color: transparent;
  text-decoration-line: none;
  font-size: 1rem;
  color: #000040;
  cursor: pointer;
  margin-top: 4rem;
}

.cta-button-alt-yellow {
  padding: 1rem 1rem;
  border-width: 1px;
  border-style: solid;
  border-color: rgb(252, 238, 79);
  background-color: transparent;
  text-decoration-line: none;
  font-size: 1rem;
  color: rgb(252, 238, 79);
  cursor: pointer;
  margin-top: 4rem;
}

.cta-button-alt:hover {
  background-color: #000040;
  color: #fff;
}

.cta-button-alt-yellow:hover {
  padding: 1rem 1rem;
  border-width: 1px;
  border-style: solid;
  background-color: rgb(252, 238, 79);

  text-decoration-line: none;
  font-size: 1rem;
  color: black;
  cursor: pointer;
  margin-top: 4rem;
}

.cta-button:hover {
  background-color: #fff;
  color: #000040;
}

.section-header {
  color: #fff;
  font-weight: 400;
  font-size: 2rem;
  text-align: left;
}

.highlight {
  color: #fff;
  font-weight: 800;
  font-size: 2rem;
  text-align: left;
}

.highlight-dark {
  color: #000040;
  font-weight: 800;
  font-size: 2rem;
  text-align: left;
}

.highlight-yellow {
  color: rgb(252, 238, 79);
  font-weight: 800;
  font-size: 2rem;
  text-align: left;
}

@media screen and (max-width: 991px) {
  .section-header {
    font-size: 1.7rem;
  }

  .highlight {
    color: #fff;
    font-weight: 800;
    font-size: 1.7rem;
    text-align: left;
  }

  .highlight-dark {
    color: #000040;
    font-weight: 800;
    font-size: 1.7rem;
    text-align: left;
  }
}

@media screen and (max-width: 767px) {
  .section-header {
    font-size: 1.6rem;
  }

  .highlight {
    color: #fff;
    font-weight: 800;
    font-size: 1.6rem;
    text-align: left;
  }

  .highlight-dark {
    color: #000040;
    font-weight: 800;
    font-size: 1.6rem;
    text-align: left;
  }

  .highlight-yellow {
    color: rgb(252, 238, 79);
    font-weight: 800;
    font-size: 1.6rem;
    text-align: left;
  }
}

.section-text {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1.6rem;
  margin-top: 2rem;
  text-align: left;
}

@media screen and (max-width: 991px) {
  .section-text {
    font-size: 1.5rem;
  }

  .cta-button {
    font-size: 1.2rem;
  }

  .cta-button-alt {
    font-size: 1.2rem;
  }

  .cta-button-alt-yellow {
    font-size: 1.2rem;
  }
}

@media screen and (max-width: 767px) {
  .section-text {
    font-size: 1.3rem;
  }

  .cta-button {
    font-size: 1rem;
  }
  .cta-button-alt {
    font-size: 1rem;
  }
  .cta-button-alt-yellow {
    font-size: 1rem;
  }
}

.columns {
  display: flex;
  height: auto;
  width: 100%;
}

@media screen and (max-width: 991px) {
  .columns {
    display: block;
  }
}

@media screen and (max-width: 767px) {
  .columns {
    display: block;
  }
}

.column-1 {
  height: 100%;
  flex: 3;
  padding: 1rem;
}

.column-2 {
  height: 100%;
  flex: 3;
  padding: 1rem;
}
.column-3 {
  height: 100%;
  flex: 3;
  padding: 1rem;
}

.info-block {
  padding: 1rem;
}

.image-block {
  padding: 1rem;
}

.swiper {
  width: 100%;
  height: 50%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 10em;
}

@media screen and (max-width: 991px) {
  .swiper {
    margin-top: 0em;
  }
}

@media screen and (max-width: 767px) {
  .swiper {
    margin-top: 0em;
  }
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-block {
  display: flex;
}

.about-info-block {
  padding: 1rem;
  padding-left: 4rem;
}

.about-image-block {
  padding: 1rem;
  width: 100%;
}

@media screen and (max-width: 991px) {
  .about-block {
    display: block;
  }
  .about-image-block {
    height: 300px;
  }
  .about-info-block {
    padding: 1rem;
  }
}

@media screen and (max-width: 767px) {
  .about-block {
    display: block;
  }
  .about-image-block {
    height: 300px;
  }

  .about-info-block {
    padding: 1rem;
  }
}

.form-wrapper {
  display: block;
  background-color: #fff;
  padding: 5rem;
  margin-top: 4rem;
}

@media screen and (max-width: 991px) {
  .form-wrapper {
    padding: 2rem;
  }

  .form-wrapper form label {
    font-size: 1.5rem;
  }

  .form-button {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .form-wrapper {
    padding: 2rem;
  }

  .form-wrapper form label {
    font-size: 1.3rem;
  }

  .form-button {
    font-size: 1.3rem;
  }
}
form label {
  display: block;
  font-size: 1rem;
  color: black;
  font-weight: bold;
  text-align: left;
}

form input {
  width: 100%;
  padding: 1rem;
  border-style: none;
  margin-top: 1rem;
  background-color: #f0f0f0;
}

form textarea {
  width: 100%;
  padding: 1rem;
  margin-top: 1rem;
  border-style: none;
  background-color: #f0f0f0;
}

.form-button {
  background-color: #000040;
  color: #fff;
  cursor: pointer;
}

.form-button:hover {
  transform: scale(1.05);
}

.footer-container {
  display: flex;
  padding: 10px;
}

.footer-link {
  text-decoration: underline;
  color: #fff;
}

@media screen and (max-width: 991px) {
  .footer-container {
    display: block;
  }

  .footer-container p {
    font-size: 1.5rem;
  }
  .footer-container h3 {
    font-size: 1.7rem;
  }
}

@media screen and (max-width: 767px) {
  .footer-container {
    display: block;
  }

  .footer-container p {
    font-size: 1.3rem;
  }

  .footer-container h3 {
    font-size: 1.5rem;
  }
}

.footer-logo,
.footer-address,
.footer-contact {
  flex: 2;
  padding: 10px;
}

@media screen and (max-width: 991px) {
  .footer-logo,
  .footer-address,
  .footer-contact {
    flex: 1;
  }
}

.footer-logo img {
  max-width: 200px;
}

.footer-logo img:hover {
  transform: scale(1.1);
}

.footer-logo p {
  margin: 5px 0;
}

.footer-address h3,
.footer-contact h3 {
  margin-bottom: 10px;
  text-align: left;
}

.footer-address p,
.footer-contact p {
  margin: 10px 0;
  text-align: left;
}

.footer-contact a {
  color: #fff;
}

.footer-contact a:hover {
  text-decoration: underline;
}

.footer-bottom {
  border-top: 1px solid #fff;
  padding: 10px 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

@media screen and (max-width: 991px) {
  .footer-bottom {
    display: flex;
    justify-content: center;
  }
}

@media screen and (max-width: 767px) {
  .footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .footer-bottom {
    display: block;
    justify-content: center;
  }
}

.footer-bottom p {
  margin: 5px 0;
}

.social-icons {
  margin-top: 1rem;
  display: flex;
  justify-content: flex-start;
}

.social-icons a {
  margin: 0 8px;
}

.social-icons a:hover {
  text-decoration: none;
  transform: scale(1.1);
}

.social-icons img {
  width: 30px;
  height: 30px;
}

.links-wrapper {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}
