
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth; 
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background-color: #005da4;
  color: white;
}

.bg-primary{
    background-color: #005da4 !important
}

.me-2{
    width: 100px;
}

.navbar-nav .nav-link {
  margin-left: 1rem;
  margin-right: 1rem;
}

/* Prevent nav link color from changing on active */
.navbar-nav .nav-link.active,
.navbar-nav .nav-link:focus,
.navbar-nav .nav-link:hover {
  color: #8eb6dc !important;
  text-decoration: underline;
}


nav ul li a:hover {
  color: #8eb6dc;
}

nav{
    height: 90px;
}


.main-title {
  font-family: 'Anton', sans-serif;
  font-size: 300px;
  text-transform: uppercase;
  font-weight: 400;
  letter-spacing: 2px;
  padding: 0px 40px ;
  text-align: center;
  color: #8eb6dc;
}


.content {
  padding: 40px;
  
}

.image-box img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 5px;
  margin: 0;
  padding: 0;
}


.subheading {
  max-width: 600px;
}

.subheading_title {
  font-size: 40px !important;
}

.subheading p{
  font-size: 16px;
  max-width: 600px;
  line-height: 1.6;

}


.section {
  padding: 60px 40px;
  background-color: #004a87;
  margin-top: 20px;
  border-top: 2px solid #003d6b;
}

.section h2 {
  font-size: 40px;
  margin-bottom: 15px;
  text-transform: uppercase;
  color: #fff;
}

.section p {
  font-size: 16px;
  max-width: 600px;
  line-height: 1.6;
}

#section4{
    background-color: #8eb6dc;
    color: #004a87;
    margin-top: 20px;
    border-top: 2px solid #003d6b;
    padding: 60px 40px;

}

.bottom-title {
  font-family: 'Anton', sans-serif;
  font-size: 200px;
  text-transform: uppercase;
  font-weight: 400;
  letter-spacing: 2px;
  text-align: center;
  color: #004a87;
}


.responsive-title {
  font-family: 'Anton', sans-serif;
  word-break: break-word;
}


@media (max-width: 768px) {
  .main-title {
    font-size: 100px;
    margin-top: 30px;
  }

  .bottom-title {
    font-size: 50px !important;
  }
}

@media (min-width: 769px) and (max-width: 999px) {
  .main-title {
    font-size: 200px;
  }

  .bottom-title {
    font-size: 150px !important;
  }
}

@media (min-width: 1000px) {
  .main-title {
    font-size: 300px;
  }

  .bottom-title {
    font-size: 180px !important;
  }
}

