.dropbtn {
  color: white;
  padding: 0px;
  font-size: 18px;
  font-family: 'Gilroy-Medium';
  border: none;
  cursor: pointer;
}
.dropdown-holder {
  border: white solid 1px;
  border-radius: 25px;
  height: 59px;
  padding: 0px 20px;
  width: 220px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-right: 20px;
}
/* The container <div> - needed to position the dropdown content */
.dropdown {
  position: relative;
  display: inline-block;
}
/* Dropdown Content (Hidden by Default) */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: white;
  z-index: 1;
  width: 222px;
  left: -21px;
  padding: 0px 20px;
  max-height: 80vh;
  overflow: scroll;
  border-bottom-left-radius: 25px;
  border-bottom-right-radius: 25px;
  .item {
      display: flex;
      flex-direction: column;
      .icon {
          width: 12px;
      }
      .sub-item {
        padding-left: 20px;
      }
  }
}
/* Links inside the dropdown */
.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  font-family: 'Gilroy-Medium';
}
/* Change color of dropdown links on hover */
.dropdown-content a:hover {background-color: #f1f1f1}

/* Show the dropdown menu on hover */
.dropdown-holder:hover .dropdown-content {
  display: block;
}
/* Change the background color of the dropdown button when the dropdown content is shown */
.dropdown-holder:hover {
  background-color: white !important;
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
}
.dropdown-holder:hover .dropdown .dropbtn {
  background-color: white !important;
  border-bottom-left-radius: 0px;
  color: #00C3E3;
}
.top-menu { 
  background-color: #00C3E3;
  max-height: 96px;
  padding: 20px;
  color: white;
  .menu-container {
    margin: auto;
    max-width: 1312px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  .arrow {
    width: 12px;
  }
  .left {
      display: flex;
      align-items: center;
    }
    h3 {
      a {
        color: white;
      }
  }
  .socials a {
      font-size: 32px;
      margin-right: 8px;
      cursor: pointer;
  }
  .arrow-icon__close {
    display: none;
  }
}
@media (min-width: 1065px) {
  .burger-icon {
    display: none;
  }
  .dropdown-menu {
      display: flex;
      align-items: center;
  }
} 
@media (max-width: 1064px) { 
  .dropdown-holder.open .dropdown-content {
    display: block; 
    border-top: none;
    width: 239px;
  }
.dropdown-content .item:hover {
  background-color: initial;
}
.dropdown-holder:hover .dropdown-content {
  display: block;
  border-bottom: none;
}
.dropdown-holder:hover {
  background-color: initial !important;
  border-bottom-left-radius: 25px;
  border-bottom-right-radius: 25px;
}
.dropdown-holder:hover .dropdown .dropbtn {
  background-color: initial !important;
  color: initial;
}
  .dropdown-holder.open .arrow-icon__close {
    display: block;
    color: #00C3E3;
  }
  .dropdown-holder.open .arrow-icon {
    display: none;
  }
  .socials a i {
    font-size: 24px;
  }
  .arrow-icon path {
    fill: #00c3e3;
  }
  .dropbtn-text {
    color: #00C3E3;
    margin: 0px;
  }
  .top-menu.menu-open {
    background-color: white;
  }
  .burger-icon {
    cursor: pointer;
    position: relative;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .burger-icon .icon-bars,
  .burger-icon .icon-close {
    font-size: 24px;
    color: white;
    transition: opacity 0.3s ease;
    position: absolute;
  }
  .burger-icon .icon-close {
    opacity: 0;
  }
  .burger-icon .icon-bars {
    opacity: 1;
    font-size: 30px;
  }
  .burger-icon.open .icon-bars {
    opacity: 0;
  }
  .burger-icon.open .icon-close {
    opacity: 1;
    color: #00c3e3;
    font-size: 38px;
  }
  .top-menu {
    padding: 20px 20px 0 20px;
    transition: background-color 0.3s ease;
  }
  .dropdown-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 122px;
    left: 0;
    width: 100%;
    background-color: white;
    z-index: 1000;
  }
  .dropdown-menu.open {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 5px;
    gap: 7px;
  }
  .dropdown-holder {
    width: 220px;
    border: #00c3e3 1px solid;
  }
  .dropdown-holder .dropdown-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  .dropdown-holder.open .dropdown-content {
    max-height: 80vh;
    overflow: scroll;
  }
  .dropdown-content a {
    display: block;
    padding: 10px;
  }
  .socials {
    display: flex;
    justify-content: space-around;
    padding: 10px 0;
  }
  .socials a {
    margin-right: 10px;
    color: #00c3e3;
  }
  .dropdown-menu {
    top: 92px;
  }
  .dropbtn {
    color: #00c3e3;
    background: white;
  }
  .dropdown-content {
    border: 1px solid #00c3e3;
    border-top: none;
    top: 21px;
    left: -21px;
    padding: 0px 10px;
    width: 321px;
    max-height: 80vh;
  }  
}
@media (max-width: 767px) {
  .dropdown-menu {
    top: 81px;
  }
  .dropdown-content {
    display: none; 
    border: 1px solid #00c3e3;
    padding: 0px 10px;
    border-top: none;
    width: 319px;
    left: -20px;
    }
    .dropdown-holder.open .dropdown-content {
      display: block; 
      border-top: none;
    }
}

.all-travels {
  background-color: white !important;
  width: fit-content;
  color: #00c3e3;
  padding: 0;
  padding-left: 12px;
  padding-right: 12px;
  margin-right: 20px;
  border-radius: 25px;
  cursor: pointer;
}

@media (max-width: 576px) {
  .dropdown-menu {
    top: 82px;
  }
  .dropdown-content {
    padding: 0px 10px;
    display: none; 
  }
  .dropdown-holder.open .dropdown-content {
    display: block; 
    border-top: none;
  }

}
