*{
    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;
  }
}

#cont{
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
#cont h2{
  text-align: center;
  color:#043f49;
  font-weight: bold;
  font-size: 100px;
}

@media screen and (max-width:576px) {
  #cont h2{
    font-size: 20px;
  }
}
@media screen and (max-width:768px) {
  #cont h2{
    font-size: 20px;
  }
}
@media screen and (max-width:1280px) {
  #cont h2{
    font-size: 40px;
  }
}



#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;

}



#contact{
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;

}

#call button{
  background-color: #043f49;
  color: #fff;
  padding: 10px 30px;
  margin-top: 1rem;
  margin-bottom: 1rem;
  border-radius: 25px;
}

#call button:hover{
  background-color: #0c6e80;
  color: #fff;
 
  transition: 0.5s;
}

#contact p{
  text-align: justify;
  font-size: 14;
  line-height: 40px;
  letter-spacing: 1.5px;
}

#myForm {
  padding: 20px;
  background: #f4f7f8;
  margin-top: 20px;
  border-radius: 8px;
  box-shadow: 0 0 20px 0 rgba(72, 94, 116, 0.7);
  margin-bottom: 5rem;
}


#myForm label {
  display: block;
  margin-bottom: 10px;
}
#myForm input[type="text"], #myForm input[type="tel"], #myForm textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  box-sizing: border-box;
  margin-bottom: 10px;
}
#myForm input[type="submit"] {
  background-color: #043f49;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}
#myForm input[type="submit"]:hover {
  background-color: #0c6e80;
}
@media (min-width: 600px) {
  #myForm .row {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
  }
  #myForm .row > div {
      flex: 0 0 calc(33% - 20px);
      margin-bottom: 20px;
  }
}



#divs .col-lg-3 h2 {
  font-size: 20px;
  color: #333;
  margin-bottom: 15px;
}


#divs ul {
  list-style-type: none;
  padding: 0;
}


#divs ul li {
  margin-bottom: 8px;
  padding-left: 20px;
  position: relative;
}


#divs ul li:before {
  content: "\2022"; 
  color: #ff542e; 
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
  position: absolute;
  left: 0;
}


#divs ul li:hover {
  color: #FF5733; 
  cursor: pointer;
}

