.destin-header-top {
      position: relative;
      padding: 10px 0;
}

@media(min-width:980px) {
      .destin-header-top {
            position: relative;
            padding: 20px 0;
      }
}

@media(min-width:980px) {
      .destin-header-top {
            position: relative;
            padding: 20px 0;
      }
}

.header-contact-info__wrapper {
      flex-wrap: nowrap;
}

.destin-header-content {
      display: flex;
      justify-content: center;
      align-items: center;
}

.contact-item {
      display: flex;
      gap: 20px;
      align-items: center;
}

.contact-item img {
      width: 35px;
}

.contact-item .subtitle {
      padding: 0;
      margin-bottom: 3px;
      font-size: 14px;
      line-height: 1.4em;
}

.contact-item .contact-item-tite {
      font-size: 18px;
      font-weight: 500;
      color: var(--text-dark);
}

.destin-header-content .logo-wrapper {
      width: 200px;
}

.destin-header-content .logo img {
      width: 100%;

}

.destin-header-nav {
      background-color: var(--primary-400);
}

.dest-nav {
      display: flex;
      gap: 1.5em;

}
.main-nav-item a {
      position: relative;
      padding: 15px 0;
      display: block;
}
.main-nav-item a.active::before {
      position: absolute;
    content: '';
    left: 0px;
    bottom: 0px;
    width: 100%;
    border-bottom: 1px solid var(--text-white);
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}
.main-nav-item a {
      color: var(--text-white);
      font-weight: 700;
      font-size: 18px;
}

.dest-nav-bar li,
.dest-nav-bar ul {
      list-style: none;
      padding-left: 0px;
      padding-right: 15px;
      margin-bottom: 0px;
}

.destin-sticky-header-nav {
      padding: 15px 0;
      position: fixed;
      visibility: hidden; /* Hidden initially */
      opacity: 0;
      background-color: var(--text-white);
      left: 0;
      top: 0;
      width: 100%; 
      z-index: 1000; 
      transition: opacity 0.5s ease-in-out, visibility 0s 0.5s; 
      box-shadow: 0px 0px 4px 0px rgba(0,0,0,0.50);
      border-bottom: 1px solid var(--primary-300);
    }
    
    .destin-sticky-header-nav.visible {
      visibility: visible;
      opacity: 1;
      transition: opacity 0.5s ease-in-out;
    }
    
    .destin-sticky-header-nav.show-slide {
      animation: slideInDown 0.5s ease-out;
    }
    
    @keyframes slideInDown {
      0% {
        transform: translateY(-100%);
      }
      100% {
        transform: translateY(0);
      }
    }
    
.main-nav-item a {
      display: inline-block;
      position: relative;
      /* color: #008 7ca; */
    }
    
    .main-nav-item a::after {
      content: '';
      position: absolute;
      width: 100%;
      transform: scaleX(0);
      height: 1px;
      bottom: 0;
      left: 0;
      background-color: var(--text-white);
      transform-origin: bottom right;
      transition: transform 0.25s ease-out;
    }
    .main-nav-item a:hover::after {
      transform: scaleX(1);
      transform-origin: bottom left;
    }
    .destin-sticky-header-nav .dest-sticky-logo-wrapper img{
      width: 200px;
}
.dest-sticky-nav-wrapper {
      justify-content: space-between;
      align-items: center;
}
.dest-sticky-nav-item-wrapper {
      display: flex;
      gap: 20px;
      align-items: center;
      justify-content: flex-end;
      padding-left: 0px;
      margin: 0px;
}
.dest-sticky-nav-item-wrapper  li {
      list-style: none;
      padding-right: 15px;
}
.dest-sticky-nav-item-wrapper a {
      color: var(--text-dark);
      font-weight: 700;
      font-size: 18px;
}