@import url("https://fonts.googleapis.com/css2?family=Spartan:wght@100;200;300;400;500;600;700;800;900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Spartan", sans-serif;
  font-family: "Merriweather", serif;;
}

html {
  scroll-behavior: smooth;
}

/* Global Styles */

h1 {
  font-size: 50px;
  line-height: 64px;
  color: #222;
}

h2 {
  font-size: 46px;
  line-height: 54px;
  color: #222;
}

h4 {
  font-size: 20px;
  color: #222;
}

h6 {
  font-weight: 700;
  font-size: 12px;
}

p {
  font-size: 16px;
  color: #465b52;
  margin: 15px 0 20px 0;
}

.section-p1 {
  padding: 40px 80px;
}

.section-m1 {
  margin: 40px 0;
}
button.normal{
  border-radius: 2px;
}

body {
  width: 100%;
}

#header {

  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 80px;
  background: #E3E6F3;
  box-shadow: 0 5px 15px rgba(0,0,0,0.6);
  z-index: 999;
  position: sticky;
  top: 0;
  left: 0;
}

#navbar{
  display: flex;
  align-items: center;
  justify-content: center;
  
  
}

#navbar li{
  list-style: none;
  padding: 0 20px;
  position: relative;
  
}

#navbar li a{
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  color: #1a1a1a;
  transition: 0.3s ease;
}

#navbar li a:hover,
#navbar li a.active{
  color:#088178;
}

#navbar li a.active::after,
#navbar li a:hover::after {
  content:"";
  width: 30%;
  height:2px;
  background-color: #088178;
  position: absolute;
  bottom: -4px;
  left: 20px;

}

#banner{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-image: url("img/b2.jpg");
  width: 100%;
  height: 30vh;
  background-size: cover;
  background-position: center;
}
#banner h4{
  color: #088178;
  font-size: 16px;
}
#banner h2{
  color: #088178;
  font-size: 30px;
  padding: 10px 0;
}
#banner h2 span{
  color: #ef3636;
}
.email-form {
  display: flex;
  gap: 10px;
}

.email-form input[type="email"] {
  padding: 8px;
  border: none;
  border-radius: 4px;
  width: 250px;
}

.email-form button {
  padding: 8px 16px;
  background-color: #E3E6F3;
  color: black;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.email-form button:hover {
  background-color: #2563eb;
}
.search-here {
  display: flex;
  gap: 10px;
}

.search-here input[type="search"] {
  padding: 8px;
  border: none;
  border-radius: 4px;
  width: 250px;
}

.search-here button {
  padding: 8px 16px;
  background-color: #E3E6F3;
  color: black;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.search-here button:hover {
  background-color: #088178;
}