*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body,html{
    width: 100%;
    height:100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}
/* NAVBAR */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');

.navbar {
  background: linear-gradient(to right, #043f49, #043f49);
  font-family: 'Poppins', sans-serif;
  padding: 20px;
}

.navbar-brand {
  color: #fff;
  font-weight: 600;
}

.navbar-brand:hover {
  color: #ffe9e3;
}

.navbar-nav .nav-link {
  color: #fff;
  margin-right: 1rem;
  font-weight: 400;
}

.navbar-nav .nav-link:hover {
    background-color: #0c6e80;
}

.navbar-nav .nav-link.active {
  color: #ffffff;
  font-weight: 600;
}

.nav-item.dropdown .nav-link {
  position: relative;
}

.nav-item.dropdown .dropdown-menu {
  background-color: #043f49;
  border: none;
  border-radius: 0.5rem;
}

.nav-item.dropdown .dropdown-menu .dropdown-item {
  color: #fff;
  padding: 0.5rem 1rem;
}

.nav-item.dropdown .dropdown-menu .dropdown-item:hover {
  background-color: #0c6e80;
  color: #ffffff;
}


.navbar-toggler {
  border-color: #ffffff;
  color:#fff !important;
}



@media (max-width: 991.98px) {
  .navbar-nav .nav-link {
    margin-right: 0;
    text-align: center;
  }
}



#about{
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
#about h2{
  text-align: center;
  color:#043f49;
  font-weight: bold;
  font-size: 100px;
}

@media screen and (max-width:576px) {
  #about h2{
    font-size: 20px;
  }
}
@media screen and (max-width:768px) {
  #about h2{
    font-size: 20px;
  }
}
@media screen and (max-width:1280px) {
  #about h2{
    font-size: 40px;
  }
}


#info{
  background-color: #043f49;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  place-content: center;
}
#info h2{
  text-align: center;
  color: #ffffff;
}

#info p{
 text-align: justify;
 color: #fff;
 line-height: 40px;
}

#info img{
margin-top: 2rem;
margin-bottom: 2rem;
}


#address{
    width: 100%;
    background-color: #043f49;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 70vh;
    margin-top: 5rem;
}
#address img{
    margin-top: 2rem;
    width: 30px;
    height: 30px;
}
#address p{
    color: #fff;
}
#address h4{
    color: #fff;

}
#address h5{
    color: #fff;
}


#footer{
    width: 100%;
    min-height: 20vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
#footer p{
    text-align: center;
    margin-bottom: 4rem;
    margin-top: 2rem;

}