/* General CSS rules */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');

body {
  font-family: 'Poppins';
  width: 100vw;
  margin: 0;
  overflow-x: hidden;
}

.header-logo {
  height: 20vh;
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px 15px 15px;
}

.header-logo img {
  height: 100%;
}

.header-nav {
  height: 58px;
  background-color: #E0E1E9;
  z-index: 1300;
  position: absolute;
  width: 100vw;
  text-align: center;
  transition: all 0.3s ease;
}

.header-nav.fixed {
  position: fixed;
  top: 0;
}

.navbar-nav {
  list-style: none;
  padding-left: 0;
}

.navbar-nav .nav-item {
  display: inline;
  margin-right: 1rem;
}

.navbar-nav .nav-link {
  color:#2C2F67 ;
  text-decoration: none;
}

.navbar-nav .nav-link:hover {
  text-decoration: underline;
}

.hero-section h1 {
  font-size: 3rem;
}

.hero-section p {
  font-size: 1.2rem;
}

h2{
  padding: 10px ;
  margin: auto;
  color: #2C2F67;
}

h2.text-center {
  border-bottom: #2C2F67 solid 2px;
  width: 277px;
  padding: 10px ;
  margin: auto;
  color: #2C2F67;
}

.text-center{
  text-align: center;
}

.footer {
  background-color: #2C2F67;
  color: white;
  padding: 10px 0;
  margin-top: auto;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 80%;
  margin: 0 auto;
}

.footer-content p {
  margin: 0;
  font-size: 10px;
}

.social-media-icons {
  display: flex;
  gap: 10px;
}

.social-media-icons img {
  width: 30px;
  height: 30px;
}

@media (max-width: 720px){
  .header-logo {
    height: 20vw;
    padding: 15px;
}
}