@font-face {
  font-family: "Poppins";
  src: url("fonts/Poppins-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Poppins";
  src: url("fonts/Poppins-Bold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: "Lato";
  src: url("fonts/Lato-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Lato";
  src: url("fonts/Lato-Bold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
}

* {
  scrollbar-color: #eaeaea transparent;
  scrollbar-width: thin;
}
#root {
  flex: 1;
}
body {
  margin: 0 !important;
  background-color: white;
  line-height: unset !important;
  font-family: "Lato", sans-serif;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 900;
}
.overlay.active {
  opacity: 1;
  visibility: visible;
}
.headerMain {
  position: fixed;
  z-index: 5;
  background-color: white;
  width: 100%;
  justify-content: center;
  display: flex;
  align-items: center;
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.15);
}
.headerContainer {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  gap: 0px;
  margin: 0;
  box-sizing: border-box;
  flex-direction: column;
}
.headerLogo {
  max-width: 200px;
  width: 100%;
}
.logoLink {
  text-decoration: none;
  color: rgb(255, 255, 255);
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: flex-start;
  max-width: 200px;
  cursor: pointer;
}
.headerFirst {
  width: 100%;
  border-bottom: 1px solid #e3e4e6;
}
.headerFirstContainerStart {
  padding-left: 8px;
}
.headerFirstStartLink {
  text-decoration: none;
  transition: all 0.2s;
  color: #2a5182;
  font-size: 14px;
}
.headerFirstStartLink:hover {
  color: #003674;
  text-decoration: underline;
}
.headerFirstContainerEnd {
  display: flex;
  align-items: center;
  padding-right: 8px;
}
.headerFirstEndLink {
  color: #353b42;
  transition: all 0.2s;
  text-decoration: none;
  padding: 6px 8px;
  font-size: 14px;
}
.headerFirstEndLink i {
  transform: rotate(-30deg);
  margin-right: 5px;
}
.headerFirstEndLink:hover {
  text-decoration: underline;
  background-color: #e3e4e6;
}
.maxWidth1280Center {
  max-width: 1296px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: auto;
}
.headerSecond {
  padding-top: 6px;
  padding-bottom: 6px;
  display: flex;
  gap: 30px;
}
.headerSecondContainerLogo {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-left: 8px;
}
.headerSecondLogoText {
  font-size: 18px;
  color: #2a5182;
  font-family: "Poppins", sans-serif;
}
.headerSecondContainerService {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-right: 8px;
}
.headerSecondService {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}
.headerSecondService i {
  font-size: 24px;
  color: #353b42;
  transition: color 0.2s;
}
.headerSecondServiceText {
  font-size: 14px;
  color: #353b42;
  transition: color 0.2s;
}
.headerSecondService:hover i,
.headerSecondService:hover .headerSecondServiceText {
  color: #2a5182;
}
.headerThird {
  display: flex;
  align-items: center;
  margin-top: 6px;
  justify-content: flex-start;
}
.headerThirdContainer {
  padding-left: 8px;
  display: flex;
  gap: 32px;
  overflow-x: auto;
}
.headerThirdContainerItem {
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  padding: 11px 0;
  font-size: 16px;
  color: inherit;
  text-decoration: none;
  font-family: "Poppins", sans-serif;
}
.headerThirdContainerItem::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: transparent;
  transition: background-color 0.2s;
}
.headerThirdContainerItem:hover::after,
.headerThirdContainerItem:active::after {
  background-color: #4e5761;
}
.headerThirdContainerItem:hover,
.headerThirdContainerItem:active {
  color: #4e5761;
}
.headerThirdContainerItem.active {
  color: #2a5182;
}
.headerThirdContainerItem.active::after {
  background-color: #2a5182;
}
.ml-auto {
  margin-left: auto;
}
.menuIcon {
  display: none;
  font-size: 24px;
  color: #353b42;
  cursor: pointer;
  transition: color 0.2s;
}
.menuIcon:hover i,
.menuIcon:hover {
  color: #2a5182;
}
.drawerMenu {
  position: fixed;
  top: 0px;
  right: -70%;
  width: 70%;
  height: 100vh;
  background-color: white;
  transition: right 0.3s ease;
  z-index: 1000;
}
.drawerMenu.open {
  right: 0;
}
.drawerContent {
  margin-top: 62px;
  display: flex;
  flex-direction: column;
}
.closeIcon {
  position: absolute;
  top: 8px;
  left: 8px;
  color: #353b42;
  font-size: 24px;
  cursor: pointer;
  transition: color 0.2s;
}
.closeIcon:hover i,
.closeIcon:hover {
  color: #2a5182;
}
.drawerContentTop {
  display: flex;
  flex-direction: column;
}
.drawerContentEnd {
  display: flex;
  flex-direction: column;
  background-color: #4e5761;
  gap: 8px;
  padding-top: 16px;
  padding-bottom: 16px;
}
.drawerContentItem {
  font-size: 20px;
  text-decoration: none;
  color: inherit;
  padding: 11px 8px;
  border-bottom: 1px solid #e3e4e6;
  transition: all 0.2s;
  font-family: "Poppins", sans-serif;
}
.drawerContentItem:last-child {
  border-bottom: none;
}
.drawerContentItem:last-child:hover {
  border-bottom: none;
}
.drawerContentItem:hover {
  border-bottom: 1px solid #4e5761;
}
.drawerContentItem::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: transparent;
  transition: background-color 0.2s;
}
.drawerContentItem:hover::after,
.drawerContentItem:active::after {
  background-color: #4e5761;
}
.drawerContentItem:hover,
.drawerContentItem:active {
  color: #4e5761;
}
.drawerContentItem.active {
  color: #2a5182;
  border-bottom: 1px solid #2a5182;
}
.headerThirdContainerItem.active::after {
  background-color: #2a5182;
}
.drawerContentEndItem {
  font-size: 12px;
  color: white;
  padding: 6px 8px;
  text-decoration: none;
  transition: all 0.2s;
  font-family: "Poppins", sans-serif;
  width: fit-content;
}
.drawerContentEndItem i {
  transform: rotate(-30deg);
  margin-right: 5px;
}
.drawerContentEndItem:hover {
  text-decoration: underline;
}
.footerMain {
  display: flex;
  justify-content: center;
  width: 100%;
  background-color: #4e5761;
  flex-direction: column;
  margin-top: auto;
}
.footerLogo {
  max-width: 200px;
  width: 100%;
}
.footerUpper {
  padding: 0 8px;
  gap: 8px;
  background-color: #e3e4e6;
}
.footerUpperSecondary {
  max-width: 1280px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: auto;
}
.footerUpperItem {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-family: "Poppins", sans-serif;
  color: #353b42;
  min-height: 56px;
}
.footerUpperItem i {
  color: #353b42;
  font-size: 18px;
}
.footerSecondary {
  width: 100%;
  max-width: 1280px;
  padding: 16px 8px 8px 8px;
  margin: auto;
  box-sizing: border-box;
}
.footerSecondaryFirstContainer {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.footerSecondaryFirstSingleContainer {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.footerSecondaryFirstContainerTitle {
  font-size: 18px;
  font-weight: 600;
  color: white;
  font-family: "Poppins", sans-serif;
  margin-bottom: 5px;
}
.footerSecondaryFirstContainerTexts {
  font-size: 18px;
  color: white;
}
.footerSecondaryFirstContainerBtn {
  color: white;
  font-size: 16px;
  border: 1px solid white;
  padding: calc(0.65625rem - 1px) 0.9375rem calc(0.65625rem - 1px) 0.9375rem;
  background-color: transparent;
  border-radius: 2px;
  cursor: pointer;
  text-transform: uppercase;
  transition: all 0.2s;
  margin-top: 8px;
  margin-bottom: 8px;
  font-family: "Poppins", sans-serif;
}
.footerSecondaryFirstContainerBtn:hover {
  color: #2a5182;
  background-color: #c6c9cc;
  border-color: #c6c9cc;
}
.footerDivider {
  border-top: 1px solid #e3e4e6;
  margin: 0.5rem 0 0.5rem 0;
  width: 100%;
}
.footerSecondarySecondContainer {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.footerSecondarySecondContainerLinks {
  display: flex;
  flex-direction: column;
}
.footerSecondarySecondContainerLink {
  font-size: 18px;
  color: white;
  font-family: "Poppins", sans-serif;
  text-decoration: none;
  transition: all 0.2s;
  padding: 0.5rem;
  width: fit-content;
  text-align: center;
}
.footerSecondarySecondContainerLink:hover {
  text-decoration: underline;
}
.footerSecondaryThirdContainer {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  column-gap: 16px;
  row-gap: 0px;
}
.footerSecondarySocialContainer {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
}
.footerSecondarySocialContainer i {
  font-size: 28px;
  color: white;
  transition: color 0.2s;
}
.footerSecondarySocialContainer i:hover {
  color: #c6c9cc;
}
.mainBodyContainer {
  padding-top: 141px;
}
.sectionSearch {
  position: relative;
  background-image: url(https://victorum-group.com/victorum-travel/images/filters-bg.jpg);
  object-fit: contain;
  background-position: center center;
  width: 100vw;
  height: 70vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
.sectionSearch::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(rgba(42, 81, 130, 0.2), rgba(42, 81, 130, 0.4));
  z-index: 1;
}
.searchContainer {
  background-color: rgba(255, 255, 255, 0.9);
  padding: 16px;
  z-index: 2;
  text-align: center;
  box-sizing: border-box;
  border-radius: 2px;
  box-shadow: 0 0.1875rem 0.1875rem rgba(0, 0, 0, 0.15);
  max-width: 1280px;
  width: 100%;
}
.searchContainerItems {
  background-color: white;
  border-radius: 2px;
  box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  padding: 16px 0;
}
.searchTitle {
  color: #2a5182;
  font-size: 34px;
  margin: 0 0 8px 0;
  font-family: "Poppins", sans-serif;
}
.searchSubtitle {
  color: #353b42;
  font-size: 18px;
  margin: 0 0 16px 0;
}
.searchContainerSingleItem {
  padding: 0 16px;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  border-right: 1px solid #e3e4e6;
  cursor: pointer;
  gap: 8px;
  width: 100%;
}
.searchContainerSingleItem p {
  font-size: 18px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  color: #353b42;
  margin: 0;
}
.searchContainerSingleItem i {
  color: #353b42;
}
.searchContainerSingleItem span {
  font-size: 14px;
  color: #666666;
}
.searchContainerSingleItem span.active {
  font-size: 14px;
  color: #003674;
}
.searchContainerSingleItemIconTitle {
  display: flex;
  align-items: center;
  flex-direction: row;
  gap: 5px;
}
.searchBtn {
  margin: 0 16px;
  cursor: not-allowed;
  color: #7e868f;
  background-color: rgba(126, 134, 143, 0.16);
  border: transparent;
  padding: calc(0.8125rem - 1px) 0.9375rem calc(0.8125rem - 1px) 0.9375rem;
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 18px;
  font-family: "Poppins", sans-serif;
  border-radius: 2px;
}
.searchBtn.active {
  margin: 0 16px;
  cursor: pointer;
  color: white;
  background-color: #2a5182;
  border: #2a5182;
  padding: calc(0.8125rem - 1px) 0.9375rem calc(0.8125rem - 1px) 0.9375rem;
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 18px;
  font-family: "Poppins", sans-serif;
  transition: all 0.2s;
  border-radius: 2px;
}
.searchBtn.active:hover {
  background: #24466b;
  border: #24466b;
}
.destination-input {
  border: none;
  outline: none;
}
.packagesGridContainer {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 100px auto;
  padding-left: 8px;
  padding-right: 8px;
}
.packageItem {
  border-radius: 2px;
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.15);
  cursor: pointer;
  max-width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.packageItem:hover {
  transform: scale(1.03);
  box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.2);
}
.packageImgContainer {
  position: relative;
  overflow: hidden;
}
.packageItem img {
  max-width: 100%;
  border-radius: 2px;
  transition: transform 0.3s ease;
}
.packageItem:hover img {
  transform: scale(1.3); 
}
.packageCategory {
  position: absolute;
  top: 42px;
  padding: 4px 16px;
  background-color: #4e5761;
  color: white;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 500;
}
.packageRatings {
  position: absolute;
  top: 10px;
  padding: 4px 16px;
  background-color: #4e5761;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.packageStars {
  color: #f5c518;
  font-size: 16px;
}
.packageContent {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 16px 8px;
  border-radius: 0 24px 0px 0px;
  background: #fff;
  box-sizing: border-box;
  flex-grow: 1;
  justify-content: space-between;
}
.packageContent h3 {
  font-size: 18px;
  margin: 0 0 10px 0;
  color: #003674;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: all 0.2s;
}
.packageContent h3:hover {
  opacity: 0.7;
}
.packagePriceContainer {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.packagePrice {
  font-size: 18px;
  color: #003674;
  font-weight: 600;
  margin: 0;
  font-family: "Poppins", sans-serif;
}
.packageOffersPriceContainer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 15px;
  flex-wrap: wrap;
}
.packageOffersContainer {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 5px;
}
.packageOffersContainer i {
  font-size: 15px;
  color: #4e5761;
}
.packageOffersContainer span {
  font-size: 14px;
  color: #4e5761;
  display: block;
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
  font-family: "Poppins", sans-serif;
}

@media screen and (max-width: 1280px) {
  .headerThirdContainerItem {
    font-size: 14px;
  }
  .footerUpperItem {
    font-size: 14px;
  }
  .footerSecondaryFirstContainerTitle {
    font-size: 16px;
  }
  .footerSecondaryFirstContainerTexts {
    font-size: 16px;
  }
  .footerSecondarySecondContainerLink {
    font-size: 16px;
  }
  .mainBodyContainer {
    padding-top: 137px;
  }
  .searchContainer {
    width: 90%;
  }
  .packageContent h3 {
    font-size: 16px;
  }
  .packagePrice {
    font-size: 16px;
  }
}
@media screen and (max-width: 1023px) {
  .headerThirdContainer {
    gap: 16px;
  }
  .packagesGridContainer {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 960px) {
  .headerFirst {
    display: none;
  }
  .headerMain {
    height: 62px;
  }
  .headerThird {
    display: none;
  }
  .headerSecondLogoText {
    display: none;
  }
  .headerSecondServiceText {
    display: none;
  }
  .headerSecond {
    padding-top: 8px;
    padding-bottom: 8px;
  }
  .menuIcon {
    display: block;
  }
  .footerUpperSecondary {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 16px;
  }
  .footerUpperItem {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom: 1px solid white;
  }
  .footerUpperItem:nth-last-child(-n + 2) {
    border-bottom: none;
  }
  .footerSecondaryFirstContainer {
    grid-template-columns: repeat(2, 1fr);
  }
  .mainBodyContainer {
    padding-top: 62px;
  }
  .searchContainerItems {
    flex-direction: column;
    padding: 0px;
  }
  .searchContainerSingleItem {
    border-right: none;
    border-bottom: 1px solid #e3e4e6;
    padding: 16px 16px;
    flex-direction: row;
    align-items: center;
    box-sizing: border-box;
  }
  .searchBtnContainer {
    width: 100%;
  }
  .searchBtn {
    width: 100%;
    margin-left: 0px;
    margin-right: 0px;
    justify-content: center;
    align-items: center;
    font-size: 16px;
  }
  .searchBtn i {
    display: none;
  }
  .searchBtn.active {
    width: 100%;
    margin-left: 0px;
    margin-right: 0px;
    justify-content: center;
    align-items: center;
    font-size: 16px;
  }
  .searchBtn.active i {
    display: none;
  }
  .searchContainer {
    text-align: left;
    background-color: transparent;
    padding: 0;
  }
  .searchTitle {
    font-size: 32px;
    color: white;
  }
  .searchSubtitle {
    font-size: 20px;
    color: white;
  }
  .searchContainerSingleItem p {
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  .packageOffersContainer span {
    font-size: 12px;
  }
  .packageCategory {
    font-size: 12px;
    padding: 2px 8px;
  }
  .packageRatings {
    font-size: 12px;
  }
  .packageStars {
    font-size: 14px;
  }
}
@media screen and (max-width: 600px) {
  .footerUpperSecondary {
    grid-template-columns: 1fr;
    column-gap: 16px;
  }
  .footerUpperItem:nth-child(3) {
    border-bottom: 1px solid white;
  }
  .footerUpperItem:last-child {
    border-bottom: none;
  }
  .footerUpperItem {
    font-size: 12px;
  }
  .footerSecondarySecondContainer {
    display: none;
  }
  .footerSecondaryThirdContainer {
    flex-direction: column;
  }
  .footerSecondaryFirstContainer {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .footerSecondaryFirstSingleContainer {
    margin: auto;
  }
  .footerSecondaryFirstContainerTitle {
    text-align: center;
  }
  .footerSecondaryFirstContainerTexts {
    text-align: center;
  }
  .d-none600 {
    display: none;
  }
  .footerSecondaryFirstContainerTitle {
    font-size: 14px;
  }
  .footerSecondaryFirstContainerTexts {
    font-size: 14px;
  }
  .footerSecondarySecondContainerLink {
    font-size: 14px;
  }
  .footerSecondaryFirstContainerBtn {
    font-size: 14px;
  }
  .packagesGridContainer {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 425px) {
  .searchContainerSingleItem {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }
}
