.wrapper {
  position: relative;
  overflow: hidden;
}

.navbar {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
  margin: 0;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 1;
  padding: 0; 
}
.navbar-wrap {
  height: 100px;
  align-items: center;
  display: flex;

}

.header__logo-img {
  width: 80%;
  height: auto;
  margin: 0;
  padding: 0;
  display: block;
}

.navbar__list {
  padding-left: 0;
  display: flex;
  list-style: none;
  justify-content: space-around;
}

.navbar__item {
  position: relative;
}

.navbar__item-link {
  text-decoration: none;
  text-transform: uppercase;
  display: block;
  font-size: 1.6rem;
  color: var(--white-color);
  padding: 8px;
  
}

.navbar__subnav {
  padding-left: 0;
  list-style: none;
  box-shadow: 0 0 2px #ccc;
  position: absolute;
  top: calc(100% + 10px);
  display: none;
  -webkit-animation: fadeIn ease-in 0.2s;
  animation: fadeIn ease-in 0.2s;
}

.navbar__item > .navbar__subnav::before {
  content: "";
  width: 100%;
  height: 20px;
  position: absolute;
  top: -20px;
}

.navbar__item:hover > .navbar__subnav {
  display: block;
}

.subnav__item:not(:first-child) {
  border-top: 1px solid #f1f1f1;
}

.subnav__item-link {
  --height: 40px;
  text-decoration: none;
  font-size: 1.6rem;
  text-transform: capitalize;
  color: var(--text-color);
  display: block;
  background-color: var(--white-color);
  min-width: 180px;
  padding-left: 16px;
  min-height: var(--height);
  line-height: var(--height);
  font-weight: 500;
  position: relative;
}

.subnav__item-link:hover {
  background-color: #f9f9f9;
}

.subnav__item {
  position: relative;
}

.subnav__item--new::after,
.subnav__item--best::after,
.subnav__item--hot::after {
  text-transform: uppercase;
  color: var(--white-color);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 16px;
  padding: 2px 4px;
  border-radius: 4px;
  letter-spacing: 1px;
}

.subnav__item--hot::after {
  content: "HOT";
  background-color: var(--red-color);
}

.subnav__item--has-menu::after {
  content: "";
  border: 6px solid;
  border-color: transparent transparent transparent #9a9a9a;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 16px;
}

.subnav__item--has-menu:hover > .subnav__menu {
  display: block;
}

.subnav__menu {
  position: absolute;
  top: 0;
  left: calc(100% + 16px);
  list-style: none;
  padding-left: 0;
  box-shadow: 0 0 2px #ccc;
  display: none;
  -webkit-animation: fadeIn ease-in 0.2s;
  animation: fadeIn ease-in 0.2s;
}

.subnav__menu::before {
  content: "";
  height: 100%;
  width: 20px;
  position: absolute;
  top: 0;
  left: -16px;
}

.subnav__item--best::after {
  content: "best";
  background-color: var(--blue-color);
}

.subnav__item--new::after {
  content: "new";
  background-color: var(--green-color);
}

.navbar__item--booking {
  background-color: var(--purple-color);
  border-radius: 100px;
  margin-left:10px;
}

.navbar__menu-icon {
  font-size: 3.4rem;
  color: var(--white-color);
  cursor: pointer;
}

.navbar__menu {
  padding: 16px;
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  width: 320px;
  background-color: var(--white-color);
  box-shadow: -2px 0 6px rgba(0,0,0,0.2); /* Đổ bóng bên trái */
  overflow-y: scroll;
  transform: translateX(100%);
  opacity: 0;
  transition: all ease-in 0.3s;
  will-change: transform, opacity;
  z-index: 999; /* Đảm bảo nổi trên navbar */
}

.navbar__menu:hover {
  pointer-events: auto;
}

#navbar__menu-input:checked ~ .navbar__menu {
  transform: translateX(0);
  opacity: 1;
}
.navbar__menu-close {
  --height: 24px;
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 2rem;
  color: #9c9c9c;
  border: 1px solid #9c9c9c;
  width: var(--height);
  height: var(--height);
  text-align: center;
  line-height: var(--height);
  border-radius: 50%;
  cursor: pointer;
}

.navbar__menu-close-icon {
  cursor: pointer;
}

.package-menu {
  padding: 24px 0;
}

.package-menu__head,
.navbar__menu-head {
  text-transform: uppercase;
  text-align: center;
  margin-top: 40px;
  margin-bottom: 20px;
}

.navbar__menu-head p {
  font-size: 1.4rem;
  color: var(--text-color);
  font-weight: 400;
}

.navbar__menu-heading {
  font-size: 2rem;
  position: relative;
  color: var(--heading-color);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  letter-spacing: 2px;
}

.navbar__menu-list {
  padding-left: 0;
  list-style: none;
}

.navbar__menu-item {
  display: flex;
}

.navbar__menu-item + .navbar__menu-item {
  margin-top: 24px;
}

.navbar__menu-item-city,
.navbar__menu-item-location,
.navbar__menu-item-price {
  display: block;
  text-align: left;
  text-decoration: none;
}

.navbar__menu-item-info {
  flex: 1;
  margin-top: 8px;
  margin-left: 16px;
}

.navbar__menu-item-img {
  width: 100px;
  height: 100px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.navbar__menu-item-city {
  font-size: 2rem;
  color: #555574;
  text-transform: capitalize;
  line-height: 1.5;
}

.navbar__menu-item-location {
  font-size: 1.6rem;
  color: #9a9ab3;
  display: flex;
  justify-content: flex-start;
  text-transform: capitalize;
  margin: 16px 0;
}

.navbar__menu-item-location-icon {
  font-size: 1.5rem;
  padding-right: 8px;
}

.navbar__menu-item-price {
  --height: 28px;
  width: 80%;
  height: var(--height);
  line-height: var(--height);
  text-align: center;
  font-size: 1.6rem;
  text-transform: uppercase;
  border-radius: 100px;
  color: var(--white-color);
  background-image: var(--background-color);
}

.mobile-menu__overlay {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgb(0, 0, 0, 0.3);
  display: none;
}

.mobile-menu__icon {
  font-size: 2.8rem;
  color: var(--white-color);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 320px;
  background-color: var(--white-color);
  opacity: 0;
  transform: translateX(100%);
  transition: all ease-in 0.2s;
}

#mobile-menu__input:checked ~ .mobile-menu {
  opacity: 1;
  transform: translateX(0);
}

#mobile-menu__input:checked ~ .mobile-menu__overlay {
  display: block;
}

.mobile-menu__close {
  color: var(--text-color);
  height: 40px;
  width: 40px;
  margin-left: auto;
  position: absolute;
  right: 16px;
  top: 16px;
  font-size: 3rem;
  border: 1px solid;
  border-radius: 50%;
  text-align: center;
  line-height: 40px;
}

.mobile-menu__list {
  padding-top: 50px;
  padding-left: 20px;
  list-style: none;
}

.mobile-menu__item-link {
  font-size: 2rem;
  text-decoration: none;
  color: var(--heading-color);
  text-transform: uppercase;
  display: block;
  padding: 12px 0;
  margin: 8px 0;
}

.package {
  position: relative;
  margin: 12px 0;
}

.mobile-package__link {
  display: none;
  color: white
}

.package-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 1;
  transition: all ease-out 0.6s;
}

.package-img {
  padding-top: 66.66%; /* Giữ tỉ lệ 3:2 thay vì vuông (100%) */
  background-position: center;
  background-size: cover; /* QUAN TRỌNG để ảnh phủ kín đẹp */
  background-repeat: no-repeat; /* Ngăn trùng lặp ảnh */
  opacity: 1;
  transition: all ease-out 0.6s;
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px; /* Bo góc nhẹ cho mềm mại */
}

.package-icon {
  position: absolute;
  top: 34px;
  left: 30px;
  width: 36px;
  height: 36px;
}

.package-info {
  position: absolute;
  bottom: 24px;
  left: 30px;
  color: var(--white-color);
}

.package-heading {
  text-transform: capitalize;
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  color: #ffffff; /* màu chữ sáng */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); /* đổ bóng */
}

.package-desc {
  text-transform: uppercase;
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 2px;
  color: #ffffff; /* màu chữ sáng */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); /* đổ bóng */
}

.package-cover {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background-color: var(--blue-color);
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  opacity: 0;
  transition: opacity ease-out 0.6s;
}

.package:hover .package-cover {
  opacity: 1;
  border-radius: 20px;
  
  transition: opacity ease-out 0.6s;
}

.package-cover-head {
  margin: 0;
  text-transform: capitalize;
  font-size: 2rem;
  color: var(--white-color);
  letter-spacing: 2px;
}

.package-list {
  margin: 0;
  padding-left: 0;
  list-style: none;
  width: 100%;
}

.package-link {
  display: block;
  text-decoration: none;
  text-transform: capitalize;
  text-align: center;
  font-size: 1.8rem;
  padding: 12px 0;
  color: var(--white-color);
  position: relative;
  left: 0;
  transition: all ease 0.2s;
}

.package-link:hover {
  left: 4px;
}

.package-btn {
  --height: 30px;
  text-align: center;
  background-color: var(--white-color);
  border-radius: 100px;
}

.package-btn-link {
  display: block;
  padding: 8px 20px;
  font-size: 1.6rem;
  text-transform: capitalize;
  color: var(--blue-color);
  font-weight: 500;
  text-decoration: none;
}

.search {
  width: 100vw;
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  transition: background-image 1s ease-in-out;
  -webkit-filter: grayscale(36%);
  filter: grayscale(36%);
  display: flex;
  justify-content: center;
  align-items: center;
}

.fade-out {
  opacity: 0.5; /* Làm mờ ảnh cũ trước khi đổi */
}

.search__wrap {
  margin: calc(var(--header-height) + 200px) 0;
}

.search__head {
  color: var(--white-color);
  text-align: center;
  border-radius: 20px;
  background-color: rgba(0, 0, 0, 0.3); /* Nền mờ */
  backdrop-filter: blur(4px);
  text-shadow: 4px 4px 12px rgba(0, 0, 0, 0.9); /* Đậm & rộng hơn */
}

.search__head h2 {
  font-size: 3.6rem;
  letter-spacing: 4px;
  font-weight: 600;
  line-height: 4rem;
}

.search__head span {
  font-size: 2rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
}

.search__form {
  position: relative;
  height: 46px;
  top: 16px;
}

.search__selection {
  background-color: var(--white-color);
  width: 80%;
  height: 100%;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  border: none;
  border-radius: 100px;
  padding: 0 16px;
  color: #a3a3a3;
  cursor: pointer;
  font-size: 1.6rem;
  text-transform: capitalize;
}

.search__option {
  text-transform: capitalize;
  font-size: 1.6rem;
}

.search__form-submit-icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: calc(10% + 16px);
  color: #a3a3a3;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 16px;
}

.search__aside {
  position: relative;
  top: 50px;
  display: flex;         /* Sắp xếp ngang hàng */
  justify-content: space-around; /* Canh đều */
  flex-wrap: wrap;       /* Nếu màn hình nhỏ, sẽ xuống hàng */
  gap: 12px;             /* Khoảng cách giữa các ô */
}

.search__aside-item {
  text-decoration: none;
  background-color: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(4px);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center; /* Nội dung giữa ô */
  align-items: center;
  border-radius: 20px;
  width: 150px;       /* Kích thước cố định */
  height: 150px;
  line-height: 1.5;
  padding: 12px;
}

.search__aside-img {
  width: 30%;
  height: 50%;
  margin-top: 16px;
}

.search__aside-link {
  color: var(--white-color);
  font-size: 2rem;
  margin: 8px;
  padding: 16px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 400;
}

.package-menu__head p {
  font-size: 1.6rem;
  color: var(--text-color);
  font-weight: 500;
}

.package-menu__heading {
  font-size: 2.6rem;
  position: relative;
  color: var(--heading-color);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  letter-spacing: 2px;
}

.banner {
  display: flex;
}
.banner__full-width {
  width: 100%;
  height: 230px;
  display: flex;
  background-size: cover;
  background-position: center;
  align-items: center;
  justify-content: center;
}

.banner__btn {
  margin-left: 120px;
}
.banner__half-width {
  height: 270px;
  width: 50%;
  background-size: cover;
  background-position: center;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.banner__subheading {
  color: var(--white-color);
  font-size: 1.6rem;
}

.banner__heading {
  font-size: 4rem;
  color: var(--white-color);
  line-height: 4rem;
  letter-spacing: 2px;
  text-align: center;
  margin-top: 28px;
  margin-bottom: 28px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.banner__link {
  display: block;
  min-width: 44px;
  text-decoration: none;
  background-color: var(--white-color);
  color: var(--btn-color);
  padding: 14px 35px;
  font-size: 1.4rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-radius: 1000px;
}

.special-info {
  height: 408px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-top: 12px;
}

.special__head {
  text-transform: uppercase;
  text-align: left;
}

.special__location {
  font-size: 1.4rem;
  color: var(--text-color);
  letter-spacing: 2px;
}

.special__heading {
  font-size: 2.6rem;
  letter-spacing: 2px;
  text-transform: capitalize;
  margin: 8px 0 0;
}

.special__desc-paragraph {
  font-size: 1.8rem;
  color: var(--text-color);
  font-weight: 400;
  text-align: left;
  line-height: 1.2;
}

.special__desc-paragraph + .special__desc-paragraph {
  margin-top: 24px;
}

.special__price {
  width: 100%;
  text-align: left;
  color: var(--heading-color);
}

.special__old-price {
  font-size: 2.4rem;
  color: #dadada;
  text-decoration: line-through;
  margin: 0 2px;
}

.special__current-price {
  font-size: 2.8rem;
  margin: 0 2px;
}

.special__price-unit {
  font-size: 1.8rem;
  text-transform: uppercase;
}

.special__book-link {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  text-decoration: none;
  background: linear-gradient(90deg, #005bea, #00aaff);
  text-transform: uppercase;
  color: var(--white-color);
  margin: 16px 0;
  padding: 14px 30px;
  font-size: 1.8rem;
  border-radius: 100px;
}

.special__img-wrap {
  height: 480px;
  margin-top: 12px;
  position: relative;
}

.special__img {
  height: 385px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.special__duration {
  position: absolute;
  display: flex;
  background: linear-gradient(135deg, #00bfa6, #1de9b6); /* Gradient xanh ngọc */
  width: 520px;
  max-width: 100%;
  height: 114px;
  align-items: center;
  justify-content: space-around;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  padding: 12px;
}

.special__duration {
  position: absolute;
  display: flex;
  background: rgba(255, 255, 255, 0.85); /* Nền trắng mờ */
  border: 2px solid #a0522d; /* Viền nâu gạch */
  width: 520px;
  max-width: 100%;
  height: 114px;
  align-items: center;
  justify-content: space-around;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.15);
  backdrop-filter: blur(6px);
}

.special__duration-item {
  text-transform: uppercase;
  color: #4b2e1e; /* Nâu trầm */
  text-align: center;
  position: relative;
  transition: transform 0.3s ease;
  font-family: 'Georgia', serif; /* Phông chữ cổ điển */
}

.special__duration-item:hover {
  transform: scale(1.05);
}

.special__duration-number {
  font-size: 3rem;
  line-height: 3rem;
  font-weight: bold;
  color: #8b4513; /* Nâu đất */
  text-shadow: 1px 1px 4px rgba(0,0,0,0.1);
}

.special__duration-unit {
  padding: 4px 0;
  font-size: 1.4rem;
  line-height: 2rem;
  letter-spacing: 2px;
  color: #4b2e1e;
  opacity: 0.9;
}

.special__duration-item:not(:last-child)::after {
  content: "|";
  position: absolute;
  color: #a0522d;
  font-weight: normal;
  font-size: 2.4rem;
  right: -24px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.8;
}

.special__detail {
  display: flex;
  justify-content: space-between;
  margin: 40px 8px;
}

.special__detail-img {
  width: 50px;
  height: 50px;
}

.special__detail-info {
  margin: 0 16px;
}

.special__detail-heading {
  margin-top: 0;
  font-size: 2rem;
  color: var(--heading-color);
  text-transform: capitalize;
}

.special__detail-desc {
  font-size: 1.6rem;
  color: var(--text-color);
  font-weight: 400;
}

.special__detail-link {
  display: block;
  text-decoration: none;
  font-size: 1.4rem;
  color: var(--blue-color);
}

.tour {
  margin-bottom: 24px;
  box-shadow: 0 0px 5px 1px rgb(0 0 0 / 10%);
}

.tour__icon {
  text-decoration: none;
  position: absolute;
  top: 0;
  right: 30px;
  transform: translateY(-50%);
  background-image: var(--background-color);
  width: 50px;
  height: 50px;
  padding: 12px;
  border-radius: 50%;
}

.tour__icon-img {
  width: 100%;
}

.tour__img {
  display: block;
  background-position: center;
  background-size: cover;
  height: 250px;  /* Chiều cao cố định */
  overflow: hidden;  /* Ẩn phần dư */
}

.tour__img img {
  width: 100%;
  height: 100%; /* Bắt buộc chiếm đủ chiều cao */
  object-fit: cover; /* Giữ tỷ lệ, cắt phần thừa */
}

.tour__detail {
  padding: 30px;
  position: relative;
}

.tour__head {
  padding: 0 0 15px;
  text-transform: capitalize;
  position: relative;
  border-bottom: 1px solid #f1f1f1;
}

.tour__heading {
  margin: 0;
  font-size: 2rem;
  color: var(--heading-color);
}

.tour__subheading {
  font-size: 1.6rem;
  display: flex;
  margin: 16px 0;
  color: var(--text-color);
}

.tour__location-icon {
  margin-right: 8px;
}

.tour__info {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  border-bottom: 1px solid #f1f1f1;
}

.tour__type--second-line {
  display: flex;
  align-items: center;
  gap: 6px; /* Khoảng cách giữa các mục */
}

.tour__type-name {
  margin: 4px 8px;
  font-size: 1.4rem;
  font-weight: 400;
  text-transform: uppercase;
  color: var(--text-color);
  text-decoration: none;
}

.tour__type-addition {
  font-size: 1rem;
  background-color: var(--color);
  padding: 2px 8px;
  text-align: center;
  color: var(--white-color);
  border-radius: 100px;
  letter-spacing: 3px;
  font-family: "Open Sans", sans-serif;
  position: relative;
}

.tour__type-addition:hover .tour__type--hidden {
  display: block;
}
.tour__type--hidden {
  position: absolute;
  top: calc(100% + 16px);
  left: 0;
  background-color: #555;
  letter-spacing: normal;
  font-size: 1.4rem;
  text-transform: capitalize;
  padding: 8px 16px;
  display: none;
}

.tour__type--hidden::before {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 10px;
  border: 12px solid;
  border-color: transparent transparent #555 transparent;
  z-index: 1;
}

.tour__price {
  text-decoration: none;
  display: column;
  align-items: baseline;
}

.tour__price--old {
  color: var(--text-color);
  font-size: 2rem;
  font-weight: 400;
  text-decoration: line-through;
  margin: 2px 0 0 0;  /* Kéo sát giá mới */
  margin-right: 12px;
  
}

.tour__price--current {
  color: var(--heading-color);
  font-size: 2.4rem;
  font-weight: 400;
  margin: 2px 0 0 0;  /* Kéo sát giá mới */
  line-height: 1;
}

.tour__desc {
  --line-height: 2.7rem;
  --line-number: 3;
  color: var(--text-color);
  font-size: 1.4rem;
  line-height: var(--line-height);
  height: calc(var(--line-height) * var(--line-number));
  overflow: hidden;
  display: block;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: var(--line-number);
  margin-bottom: 40px;
}

.tour__btn {
  text-decoration: none;
  color: var(--white-color);
  background-image: var(--color);
  padding: 10px 24px;
  text-transform: uppercase;
  font-size: 1.4rem;
  border-radius: 100px;
  position: absolute;
  bottom: 16px;
  
}

.footer {
  background-image: url(../img/FooterBackground2.jpg);
  background-position: center;
  background-size: cover;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer__contact {
  height: 210px;
  padding: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer__contact-name {
  margin-right: 144px;
}

.footer__contact-text {
  font-size: 14px;
  color: var(--text-color);
}

.footer__contact-heading {
  margin: 24px 0;
  font-size: 3.6rem;
  color: var(--heading-color);
  color: #ffffff; /* màu chữ sáng */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); /* đổ bóng */
}

.footer__contact__input {
  width: 250px;
  height: 46px;
  padding: 0 18px;
  font-size: 1.8rem;
  color: var(--text-color);
  border-radius: 100px;
  outline: none;
  border: none;
}

.footer__contact-submit-btn {
  margin: 0 16px;
  font-size: 1.8rem;
  background-color: var(--blue-color);
  color: var(--white-color);
  padding: 8px 24px;
  border-radius: 100px;
  cursor: pointer;
}

.footer__inner {
  padding: 35px 30px 80px;
  background-color: var(--white-color);
  position: relative;
  border-radius: 20px;
}

.footer__logo {
  width: 150px;
}

.footer__desc {
  color: var(--text-color);
  font-size: 1.4rem;
  letter-spacing: 2px;
  margin: 30px 0;
}

.footer__contact-logo {
  text-decoration: none;
  display: inline-block;
  font-size: 2.2rem;
  color: var(--heading-color);
  margin-right: 12px;
}

.footer__list {
  padding-left: 0;
}

.footer__list-heading {
  text-transform: uppercase;
  font-size: 1.4rem;
  color: var(--heading-color);
  font-weight: 600;
  margin: 25px 0 35px;
}

.footer__item {
  font-size: 1.4rem;
  color: var(--text-color);
  list-style-type: none;
  display: flex;
  align-items: center;
  padding: 6px 0;
  position: relative;
  left: 0;
  transition: all linear 0.2s;
}

.footer__item:hover {
  left: 8px;
}

.footer__item-icon {
  font-size: 1rem;
}

.footer__item-link {
  display: inline-block;
  margin-left: 4px;
  color: var(--text-color);
  text-decoration: none;
}

.footer__copyright {
  background: linear-gradient(90deg, #005bea, #00aaff);
  color: var(--white-color);
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50px;
  font-size: 2rem;
  line-height: 50px;
  text-align: center;
  border-radius: 20px;
}
