.destination-section .section-title h2 {
    margin: auto;
    max-width: 600px;
    margin-bottom: 30px;
}

.destination-heading {
    padding: 50px 0;
    text-align: center;
    background-color: var(--second-color);
}

.destination-item {
    position: relative;
    min-height: 700px;
}
.destination-content{
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    width: 100%;
}
.destination-content .section-title{
    margin-bottom: 0;
}
.destination-content .section-title p{
    /* font-size: 65px; */
    font-family: var(--font-heading);
    color: var(--white-color);
    max-width: 80%;
    margin: auto;
    line-height: 1;
}
.destination-item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.destination-wrapper .destination-item{
    width: 50%;
}


#container {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
  }

  .popup {
    position: fixed;
    top: 0;
    right: 0;
    width: 300px;
    height: 100vh;
    background: #fff;
    box-shadow: -4px 0 10px rgba(0, 0, 0, 0.2);
    transform: translateX(100%);
    transition: transform 0.4s ease;
    padding: 20px;
    z-index: 221001;
  }

  .popup::before{
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    background-color: var(--main-color);
    z-index: -1;
    width: 100%;
    height: 100%;
    opacity: 0.8;
  }
  .popup.active {
    transform: translateX(0);
  }

  .popup h3 {
    margin-top: 0;
    color: var(--white-color);
    font-size: 24px;
    text-transform: uppercase;
  }

  .popup ul {
    padding-left: 20px;
  }

  #close-btn {
    position: absolute;
    top: 50px;
    right: 20px;
    font-size: 18px;
    background: #eee;
    padding: 5px 10px;
    cursor: pointer;
    border-radius: 5px;
    z-index: 20;
  }
  svg path{
    fill: var(--second-color) !important;
    cursor: pointer;
    opacity: 0.8;
  }
  svg path:hover{
    fill: var(--main-color) !important;
  }
.escorted-link,
.tailor-Made-link,
.search-icon,
.call-tag {
    color: var(--main-color)
}

.navbar-toggler-icon .bar1,
.navbar-toggler-icon .bar2,
.navbar-toggler-icon .bar3 {
    background-color: var(--main-color);
}
