.section__banner .banner__content span:first-child {
  color: var(--third-color);
}

/* .section__form .form__top--select img {
    display: none;
} */

.section__form .form__top--select select {
  -moz-appearance: none; /* Firefox */
  -webkit-appearance: none; /* Safari and Chrome */
  appearance: none;
  /*    background: transparent;*/
  /*    background-image: url('https://hoanmy.com/wp-content/themes/tot-bvhoanmy/assets/images/icons/dropdown.svg');*/
  background-repeat: no-repeat;
  background-position-x: calc(100% - 15px);
  background-position-y: 50%;
}

.package .package__list {
  padding-bottom: 72px;
}

.package .package__list .global-heading {
  margin-bottom: 32px;
  text-align: left;
  border-bottom: 2px solid #abdfe1;
  padding-bottom: 22px;
}

.package .package__list .row > div:nth-child(2) .package__item {
  margin: auto;
}

.package .package__list .row > div:nth-child(3) .package__item {
  margin-left: auto;
}

.package .package__item {
  width: calc(100% - 20px);
  height: 100%;
}

.package .package__item .card {
  box-shadow: 0px 10px 15px #0000001a;
  border: 2px solid #ffffff;
  border-radius: 10px;
  background-color: #f5f7f7;
  height: 100%;
  overflow: hidden;
}

.package .package__item .card-img {
  overflow: hidden;
  border-radius: 0;
}

.package .package__item .card:hover .card-img-top {
  transform: scale(1.04);
  transition: all 0.3s linear;
}

.package .package__item .card-img-top {
  width: 100%;
  height: 210px;
  object-fit: cover;
  transition: all 0.3s linear;
}

.package .package__item .card-title a,
.package .package__item .card-title {
  color: #00749b;
  font-size: 18px;
  line-height: 28px;
  font-weight: 600;
  margin-bottom: 12px;
}

.package .package__item .card-text {
  color: #5d5d5d;
  font-size: 14px;
  line-height: 24px;
  font-weight: 400;
  margin-bottom: 12px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 6; /* number of lines to show */
  -webkit-box-orient: vertical;
}

.package .package__item .card-btn {
  font-size: 13px;
  line-height: 20px;
  font-weight: 600;
  letter-spacing: 0.13px;
  color: #fff;
  background-color: #009bab;
  border-color: #009bab;
  border-radius: 17px;
  padding: 4px 25px;
  width: fit-content;
  transition: all 0.3s linear;
}

.package .card-body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.package .package__item .card-btn:hover {
  transform: scale(1.04);
  transition: all 0.3s linear;
}

.popup-package {
  position: fixed;
  z-index: 9999;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  border-radius: 14px;
  padding: 36px;
  padding-top: 48px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  width: 50%;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s linear;
}

.popup-package.active {
  opacity: 1;
  visibility: visible;
  transition: all 0.3s linear;
}

.popup-package .close {
  position: absolute;
  top: 5px;
  right: 10px;
}

.popup-package .close button {
  background-color: transparent;
  border: 0;
  outline: none;
  font-size: 16px;
  font-weight: 600;
  color: var(--third-color);
}

.popup-package .title {
  font-size: 22px;
  font-weight: 500;
  color: var(--third-color);
  margin-bottom: 18px;
}

.popup-package ul {
  max-height: 60vh;
  overflow-y: auto;
}

.popup-package ul li a {
  font-size: 20px;
  font-weight: 500;
  color: #5d5d5d;
  padding: 12px 12px;
  display: block;
  background-color: rgb(0 116 155 / 5%);
  border-radius: 10px;
  margin-bottom: 18px;
  width: 95%;
  position: relative;
  border: 1px solid rgb(0 116 155 / 5%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s linear;
}

.popup-package ul li a:hover {
  margin-left: 24px;
  background-color: var(--third-color);
  color: #fff;
  border: 1px solid #fff;
  box-shadow: rgba(0, 0, 0, 0.15) 0px 5px 15px 0px;
  transition: all 0.3s linear;
}

.popup-package ul li a img {
  width: 8px;
  height: auto;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s linear;
}

.popup-package ul li a:hover img {
  opacity: 1;
  visibility: visible;
  transition: all 0.3s linear;
}

/* .popup-package ul li a:hover::after {
    opacity: 1;
    visibility: visible;
    transition: all 0.3s linear;
}

.popup-package ul li a::after {
    position: absolute;
    content: '';
    width: 10px;
    height: 10px;
    border-top: 3px solid #fff;
    border-right: 3px solid #fff;
    right: 20px;
    top: 50%;
    transform: rotate(45deg) translateY(-50%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
} */

.popup-package .package-logo {
  position: absolute;
  top: -60px;
  left: 60px;
  background-color: #fff;
  border-radius: 50%;
  padding: 24px;
}

.btn-packages {
  cursor: pointer;
}

@media screen and (max-width: 991px) {
  .package .package__item {
    width: 100%;
  }

  .package .package__item .card-img-top {
    height: 150px;
  }

  .package .package__item .card-text {
    margin-bottom: 24px;
  }

  .package {
    padding-top: 60px;
  }

  .package .package__list {
    padding-bottom: 32px;
  }

  .popup-package {
    width: 80%;
  }
}

@media screen and (max-width: 567px) {
  .package .package__item .card-img-top {
    height: 210px;
  }

  .popup-package {
    width: 95%;
  }

  .popup-package .title {
    font-size: 16px;
  }

  .popup-package ul li a {
    font-size: 14px;
  }

  .package .package__list .global-heading {
    border-bottom: 0;
    padding-bottom: 0;
  }
}

.banner__img {
  object-position: center !important;
}
