* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Inter', sans-serif;
  min-height: 2000px;
  width: 100%;
  position: relative;
}
.header {
  width: 100%;
  height: 420px;
  display: flex;
  flex-direction: column;
}
.header-top {
  width: 85%;
  display: flex;
  justify-content: space-between;
  height: 118px;
  margin: 0 auto;
}
.header-img-box {
  display: flex;
  align-items: flex-end;
  width: 20%;
}
.header-img-box img{
  width: 100%;
}

nav {
  display: flex;
  width: 50%;
  align-items: end;
  justify-content: center;
  gap: 20px;
}

nav p {
  width: 84px;
  background-color: transparent;
  padding-top: 120px;
  padding-bottom: 20px;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  text-align: center;
  cursor: pointer;
  transition: all 400ms ease-out;
}

nav a {
  color: white;
  text-decoration: none;
  font-size: 17px;
  line-height: 24px;
  font-weight: 500;
}

nav p:hover {
  background-color: #dc214b;
}

.header-button-box {
  display: flex;
  align-items: flex-end;
}

/* Dropdown styles */
.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #b72a4e; /* Complementary color to #dc214b */
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1000;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.dropdown:hover .dropdown-content,
.dropdown:active .dropdown-content {
  display: block;
  opacity: 1;
  visibility: visible;
}

.dropdown-content a {
  color: white;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: center;
}

.dropdown-content a:hover {
  background-color: #dc214b;
}

.dropdown:hover > p {
  background-color: #dc214b;
}










.header-button-box {
  display: flex;
  align-items: flex-end;
}
.header-button {
  background-color: #dc214b;
  padding: 15px 40px 15px 40px;
  border-radius: 40px;
  color: white;
  border: 1px solid transparent;
  line-height: 24px;
  font-size: 16px;
  font-weight: 500;
}
button{
  cursor: pointer;
}
.header-text-box {
  display: flex;
  justify-content: center;
  align-items: center;
  /* border: 2px solid red; */
  width: 85%;
  margin: 150px auto 0;
}
.header-text-box h1 {
  font-size: 56px;
  font-weight: 700;
  line-height: 67.77px;
  letter-spacing: -0.02em;
  text-align: center;
  color: white;
  filter: drop-shadow( 4px 4px 0 rgba(0, 0, 0, 0.451));
}
span{
  border-bottom: 5px solid white;
}
.drop-down{
  width: 25%;
  border: 2px solid red;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.open{
  position: absolute;
  position: fixed;
  top: 0;
  left: 3px;
  background-color: #2c2c2c;
  color: #f5f5f5;
  border-radius: 6px;
  z-index: 7;
  cursor: pointer;
  display: none;
  opacity: 0.5;
}
.fa-bars, .fa-xmark{
  padding: 10px 12px;
}
.fa-bars{
  font-size: 24px;
}
.fa-xmark{
  font-size: 18px;
  position: absolute;
  cursor: pointer;
  background-color: #2c2c2c;
  color: #f5f5f5;
  top: 10px;
  right: 20px;
  border-radius: 6px;
  /* z-index: 7; */
}
.menu{
  z-index: 8;
  position: absolute;
  top: 0;
  transform: translateY(-100%);
  width: 100%;
  display: flex;
  position: fixed;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 50px 0 20px;
  background-color: #2c2c2c;
  max-height: 100vh;
}
.menu p, .in-menu{
  width: 100%;
  text-align: center;
  padding: 16px 0;
  margin: 1px 0;
  /* border-radius: 10px; */
  background-color: rgba(100, 100, 100, 0.3);
  cursor: pointer;
  transition: all 400ms ease-in-out;
}
.menu p:hover{
  background-color: rgba(100, 100, 100, 0.1);
}
.menu .active{
  background-color: rgba(54, 54, 54, 0.1);
}
.menu a{
  text-transform: uppercase;
  font-size: 20px;
  text-decoration: none;
  font-weight: 500;
  color: #f5f5f5;
}
button[class="in-menu"]{
  position: relative;
  background-color: transparent;
  text-transform: uppercase;
  font-size: 20px;
  text-decoration: none;
  font-weight: 500;
  background-color: rgba(100, 100, 100, 0.3);
  border: none;
  border-radius: 0;
  transition: all 400ms ease-in-out;
  /* margin-bottom: 26vh; */
  color: #f5f5f5;
}
button[class="in-menu"]:hover{
  background-color: rgba(100, 100, 100, 0.1);
  color: #f5f5f5;
}

.inner-menu{
  position: absolute;
  display: none;
  width: 100%;
  align-items: center;
  flex-direction: column;
  background-color: #2c2c2c;
  top: 42vh;
  /* transform: translateY(-100%); */
  z-index: -2;
}

.inner-menu p{
  background-color: #2c2c2c;
  padding: 16px 0;
  margin: 1px 0;
  z-index: -5;
  opacity: 0;
  border-radius: 10px;
  transition: all 400ms ease-in-out;
}
@keyframes sleek{
  0%{
    opacity: 0;
  }
  100%{
    opacity: 1;
  }
}
.inner-menu p:hover{
  background-color: rgba(100, 100, 100, 0.2);
}

@keyframes slideIn {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}
@keyframes slideOut {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-100%);
  }
}

@media only screen and (max-width: 991px){
  .open{
    display: block;
  }
  nav{
    display: none;
  }
}
@media only screen and (max-width: 768px){
  .header-button{
    padding: 10px 30px;
  }
  .header-img-box{
    width: 30%;
  }
}
@media only screen and (max-width: 576px){
  header{
    max-height: 300px;
  }
  .header-top{
    height: 60px;
  }
  .header-text-box{
    margin: 100px auto 0;
  }
  
  .header-text-box h1{
    font-size: 40px;
    line-height: 48.36px;
  }
  .menu{
    width: 100%;
  }
  .header-img-box{
    width: 100px;
  }
  .header-img-box img{
    width: 100%;
  }
  .header-button{
    padding: 5px 10px;
  }
}