.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 4rem;
    background-color: #fff;
    font-family: 'Montserrat', sans-serif;
    width: 100%;
    box-sizing: border-box;
    position: relative;
}
.hamburger {
  font-size: 2rem;
  cursor: pointer;
  display: none;
}
.header-img {
    display: flex;
    flex-direction: row-reverse;
    gap: 2rem;
    align-items: center;
    justify-content: flex-end;
}
.header nav > ul {
    display: flex;
    gap: 5rem;
    font-size: 1.4rem;
    line-height: 2.4rem;
    letter-spacing: 0.02rem;
    font-weight: 600;
}
.header nav ul li {
    list-style-type: none;
}
.header nav ul li a {
    text-decoration: none;
    color: #737373;
}
.dropdown {
    position: relative;
}
.dropdown-menu {
    display: none;
    flex-direction: column;
    /* align-items: center; */
    justify-content: space-between;
    gap: 3rem!important;
    padding: 1.5rem;
    position: absolute;
    top: 100%;
    left:-1rem;
    background-color: #fff;
    /* width: 10rem; */
    color: #000;
    white-space: nowrap;
    z-index: 1000;
    box-shadow: 0 0.2rem 0.5rem rgba(0, 0, 0, 0.12);


}
.nav .dropdown-menu li a {
    color: #000;
    margin-top: 2rem;
}
.dropdown ul li {
    margin-bottom: 1rem;
}
.english-btn button {
    background-color: #fff;
    border: none;
    margin-right: 1rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #23A6F0;
    line-height: 2.4rem;
    letter-spacing: 0.02rem;
}
.signup-btn {
    padding: 1.5rem 2.5rem;
    background-color: #23A6F0;
    border-radius: 0.5rem;
    color: #fff;
    border: none;
    font-family: 'Poppins', sans-serif;
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 2.4rem;
    letter-spacing: 0.02rem;
    
}
.nav a.active, .nav .dropdown-menu li a.active {
  color: #23A6F0;
  font-weight: 600;
}

@media (max-width: 60rem) {
    .nav {
    display: none; /* hide nav by default */
    position: absolute;
    top: 70px;  /* below header */
    left: 0;
    /* transition: translate(100%); */
    width: 15rem;
    background: #fff;
    border-top: 1px solid #ddd;
    z-index: 1000;
  }

  .nav ul {
    flex-direction: column;
    padding: 1rem;
    gap: 2rem!important;
  }

  .hamburger {
    display: block; /* show hamburger */
  }
    .header nav {
        /* display: none; */
    }
}
@media (max-width: 40rem) {
    /* .header {
        padding: 2.5rem;
    } */
}
@media (max-width: 28rem) {
    .header img {
        width: 40%;
    }
    .english-btn button{
    font-size: 1rem;
    /* width: 50%; */
}
.english-signup {
    width: 50%;
    
}
.signup-btn {
    padding: 0.5rem;
    font-size: 1rem;
    white-space: nowrap;
    width: 100%;
}
.english-btn .dropdown .dropdown-toggle{
    width: 100%;
    display: inline-flex;
    white-space: nowrap;

    /* font-size: 0.5rem;
    padding: 1rem; */
}
}
.english-signup {
    display: flex;
    align-items: center;
    justify-content: center;
    /* gap: 1rem; */
}
