.hero-container-awards-img .logo figure, .hero-container-awards-img {
  display: flex;
  justify-content: center;
  align-items: center;
}

@font-face {
  font-family: "Gilroy";
  src: url("../fonts/Gilroy-Regular.woff2") format("woff2"), url("../fonts/Gilroy-Regular.woff") format("woff");
  font-weight: 400; /* Regular weight */
  font-style: normal;
}
@font-face {
  font-family: "Gilroy";
  src: url("../fonts/Gilroy-Medium.woff2") format("woff2"), url("../fonts/Gilroy-Medium.woff") format("woff");
  font-weight: 500; /* Regular weight */
  font-style: normal;
}
@font-face {
  font-family: "Gilroy";
  src: url("../fonts/Gilroy-Semibold.woff2") format("woff2"), url("../fonts/Gilroy-Semibold.woff") format("woff");
  font-weight: 600; /* Bold weight */
  font-style: normal;
}
@font-face {
  font-family: "Gilroy";
  src: url("../fonts/Gilroy-Bold.woff2") format("woff2"), url("../fonts/Gilroy-Bold.woff") format("woff");
  font-weight: 700; /* Bold weight */
  font-style: normal;
}
* {
  padding: 0;
  margin: 0;
}

/* Customize pagination container */
.swiper-pagination {
  bottom: 10px; /* Position from the bottom */
  text-align: center;
}

.swiper-pagination-bullet {
  background: #eee;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  opacity: 0.7;
  transition: background 0.3s, opacity 0.3s;
}

.swiper-pagination-bullet-active {
  background: #DC5F00;
  opacity: 1;
}

.swiper-pagination-fraction {
  color: #eee; /* Text color */
  font-size: 14px; /* Font size */
}

.swiper-pagination-progressbar {
  background: rgba(0, 0, 0, 0.1); /* Background color */
}

.swiper-pagination-progressbar-fill {
  background: #007aff; /* Progress fill color */
}

body {
  font-family: "Gilroy", sans-serif;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Gilroy", sans-serif;
  line-height: 1;
}
h1 strong, h2 strong, h3 strong, h4 strong, h5 strong, h6 strong {
  font-weight: inherit;
  color: "Gilroy";
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

.btn-white {
  margin-top: 2rem;
  font-style: "Gilroy";
  font-size: 16px;
  padding: 0.6rem 2.3rem;
  color: #212b36;
  border: 0.5px solid #212b36;
  display: inline-block;
  line-height: 40px;
  text-decoration: none;
  letter-spacing: 1px;
  text-align: center;
  position: relative;
  transition: all 0.35s;
  text-transform: uppercase;
  font-weight: 700;
}
.btn-white span {
  position: relative;
  z-index: 4;
}
.btn-white::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: #DC5F00;
  transition: all 0.35s;
  z-index: 0;
}
.btn-white:hover {
  color: #fff;
  border: 1px solid #fff;
}
.btn-white:hover::after {
  width: 100%;
}

.btn-dark {
  font-size: 18px;
  padding: 0.8rem 3rem;
  border: 1px solid hsl(0, 0%, 100%);
  display: inline-block;
  line-height: 40px;
  text-decoration: none;
  color: #fff;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 600;
  text-align: center;
  position: relative;
  transition: all 0.35s;
}
.btn-dark span {
  position: relative;
  z-index: 4;
}
.btn-dark::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: #DC5F00;
  transition: all 0.35s;
  z-index: 1;
}
.btn-dark:hover {
  color: #fff;
}
.btn-dark:hover::after {
  width: 100%;
}

p {
  font-family: "Gilroy";
  font-size: 18px;
  line-height: 1.3;
  letter-spacing: 0.1px;
}

.mobile-menu-btn {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #eee;
  cursor: pointer;
}

/* Keyframe animations for different effects */
/* Fade-in-up */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Fade-in-down */
@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Fade-in-left */
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
/* Fade-in-right */
@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(20px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
/* Fade-in */
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* Base class for animations */
.fade-in-effect {
  opacity: 0;
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

/* Animation classes for different sections */
.fade-in-up-active {
  animation: fadeInUp 1s forwards;
}

.fade-in-left-active {
  animation: fadeInLeft 1s forwards;
}

.fade-in-right-active {
  animation: fadeInRight 1s forwards;
}

.fade-in-down-active {
  animation: fadeInDown 1s forwards;
}

.default-section-active {
  animation: fadeInUp 1s forwards;
}

/* Hero Section */
.hero-container .nav-container {
  width: 100%;
  background: rgba(55, 58, 64, 0.9);
  backdrop-filter: blur(2px);
  position: fixed;
  top: 0;
  z-index: 10;
  left: 0;
}
.hero-container .nav-container-menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
}
.hero-container .nav-container-menu-logo a {
  text-decoration: none;
}
.hero-container .nav-container-menu-logo a figure img {
  max-width: 8rem;
  height: auto;
}
.hero-container .nav-container-menu-items {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: rgba(55, 58, 64, 0.9);
}
.hero-container .nav-container-menu-items.active {
  transition: 1s ease-in-out;
  display: block;
}
.hero-container .nav-container-menu-items ul {
  list-style: none;
  padding: 0.5rem 1rem;
}
.hero-container .nav-container-menu-items ul li {
  padding: 1rem 0rem;
  position: relative;
  background-color: rgba(55, 58, 64, 0.7);
  /* &:hover ul{
      display: block;
  } */
}
.hero-container .nav-container-menu-items ul li a {
  padding: 0.3rem 1rem;
  color: #eee;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-weight: 400;
  display: block;
}
.hero-container .nav-container-menu-items ul li p {
  padding: 0.3rem 1rem;
  color: #eee;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-weight: 400;
  display: block;
  border: none;
  cursor: pointer;
}
.hero-container .nav-container-menu-items ul li.active > ul {
  display: block;
  transition: 1s ease-in-out;
}
.hero-container .nav-container-menu-items ul .btn-enquire {
  display: flex;
  justify-content: center;
  width: 50%;
  margin: auto;
}
.hero-container .nav-container-menu-items ul ul {
  display: none;
  /* &:hover{
      color: $primary-color;
  } */
}
.hero-container .nav-container-menu-items ul ul a {
  color: #eee;
  padding: 0.5rem 1.5rem;
}
.hero-container .nav-container-menu-items ul ul a:hover {
  color: #DC5F00;
}
.hero-container-content {
  z-index: 1;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #eee;
}
.hero-container-content-subtitle p {
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 1px;
  text-align: center;
}
.hero-container-content-title {
  margin-top: 2rem;
}
.hero-container-content-title h1 {
  font-size: 2rem;
  text-align: center;
  line-height: 1;
  letter-spacing: 0.5px;
}
.hero-container-content-title h1 strong {
  font-size: inherit;
  color: #DC5F00;
}
.hero-container-content-button {
  margin-top: 2rem;
}
.hero-container-content-button a {
  padding: 0.2rem 1.3rem;
}
.hero-container-content-button a span {
  font-size: 0.8rem;
}
.hero-container-awards {
  position: absolute;
  z-index: 1;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
}
.hero-container-awards-img {
  padding-bottom: 2rem;
  gap: 0.5rem;
  width: 100%;
}
.hero-container-awards-img .logo figure {
  width: 100%;
}
.hero-container-awards-img .logo figure img {
  width: 100%;
  height: auto;
}
.hero-container-mobile {
  width: 100%;
}
.hero-container-mobile figure {
  width: 100%;
}
.hero-container-mobile figure img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
}
.hero-container-image {
  display: none;
  width: 100%;
}
.hero-container-image .img figure {
  position: relative;
  width: 100%;
  height: 100vh;
}
.hero-container-image .img figure img {
  display: block;
  width: 100%;
  object-fit: cover;
  height: auto;
}
.hero-container-image .img figure::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.6) 0, rgba(0, 0, 0, 0.3) 50%);
}

.intro-section {
  margin-top: 2rem;
  padding: 2rem 0;
}
.intro-section .intro-container {
  margin: 0 auto;
  max-width: 94%;
}
.intro-section .intro-container .card {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.intro-section .intro-container .card-description .card-content {
  width: 100%;
}
.intro-section .intro-container .card-description .card-content h2 {
  color: #212b36;
  font-size: 2.3rem;
}
.intro-section .intro-container .card-description .card-content h2 strong {
  color: #DC5F00;
}
.intro-section .intro-container .card-description .card-content p {
  margin-top: 2rem;
  color: #212b36;
  font-size: 16px;
  letter-spacing: 0.3px;
  line-height: 1.3;
}
.intro-section .intro-container .card-description .card-content a {
  margin-top: 2rem;
  padding: 0.2rem 1.5rem;
  font-size: 12px;
}
.intro-section .intro-container .card-image figure {
  width: 100%;
}
.intro-section .intro-container .card-image figure iframe {
  width: 100%;
}

/* Awards Section */
.award-section {
  padding: 2rem 0;
}
.award-section .award-container {
  padding-top: 2rem 0;
  margin: 0 auto;
  max-width: 94%;
}
.award-section .award-container .card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.award-section .award-container .card-description {
  margin: 0 auto;
}
.award-section .award-container .card-description .card-content {
  width: 100%; /* changed */
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.award-section .award-container .card-description .card-content h3 {
  color: #212b36;
  font-size: 1.4rem;
  text-align: center;
}
.award-section .award-container .card-description .card-content h3 strong {
  color: #DC5F00;
}
.award-section .award-container .card-description .card-content p {
  text-align: center;
  margin-top: 2rem;
  color: #212b36;
  font-size: 16px;
  letter-spacing: 0.3px;
  line-height: 1.4;
}
.award-section .award-container .card-description .card-content a {
  margin-top: 2rem;
  padding: 0.2rem 1.5rem;
  font-size: 12px;
}
.award-section .award-container .card-image {
  display: flex;
  justify-content: end;
}
.award-section .award-container .card-image-awards {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
}
.award-section .award-container .card-image-awards .main-award figure {
  display: flex;
  justify-content: center;
}
.award-section .award-container .card-image-awards .main-award figure img {
  width: 70%;
  height: auto;
}
.award-section .award-container .card-image-awards .second-awards {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
.award-section .award-container .card-image-awards .second-awards figure img {
  width: 70%;
  height: auto;
}

/* Lodge Section */
.lodge-section {
  padding: 2rem 0;
  background-color: #eee;
}
.lodge-section .lodge-container {
  margin: 0 auto;
  max-width: 94%;
}
.lodge-section .lodge-container-description {
  padding: 2rem 0;
  display: flex;
  flex-direction: column;
  align-items: start;
}
.lodge-section .lodge-container-description .title {
  width: 100%;
}
.lodge-section .lodge-container-description .title h2 {
  color: #212b36;
  font-size: 2rem;
}
.lodge-section .lodge-container-description .title h2 strong {
  color: #DC5F00;
}
.lodge-section .lodge-container-description .description {
  max-width: 100%;
}
.lodge-section .lodge-container-description .description p {
  padding-top: 1rem;
  color: #212b36;
  font-size: 16px;
  letter-spacing: 0.3px;
  line-height: 1.4;
}
.lodge-section .lodge-container-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.lodge-section .lodge-container-cards .card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column-reverse;
}
.lodge-section .lodge-container-cards .card-description {
  width: 100%;
  background-color: #fff;
  padding: 0;
  background-image: url(https://salkantaytrekking.com/images/cartographic-section-bg2.png);
  background-repeat: repeat;
}
.lodge-section .lodge-container-cards .card-description .margin {
  max-width: 100%;
  padding: 1rem;
}
.lodge-section .lodge-container-cards .card-description .title {
  padding: 0.7rem 0;
}
.lodge-section .lodge-container-cards .card-description .title h3 {
  color: #DC5F00;
  font-size: 1.5rem;
}
.lodge-section .lodge-container-cards .card-description .title h3 strong {
  color: #DC5F00;
}
.lodge-section .lodge-container-cards .card-description .overview {
  display: none;
}
.lodge-section .lodge-container-cards .card-description .overview p {
  margin: 1rem 0;
  color: #212b36;
  font-size: 17px;
  letter-spacing: 0.3px;
  line-height: 1.2;
}
.lodge-section .lodge-container-cards .card-description .feautures ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: 100%;
}
.lodge-section .lodge-container-cards .card-description .feautures ul li {
  display: flex;
  align-items: start;
}
.lodge-section .lodge-container-cards .card-description .feautures ul li .img {
  display: none;
}
.lodge-section .lodge-container-cards .card-description .feautures ul li .img img {
  width: 1.8rem;
  height: 1.8rem;
  fill: #DC5F00;
  filter: invert(39%) sepia(70%) saturate(1553%) hue-rotate(0deg) brightness(103%) contrast(106%);
}
.lodge-section .lodge-container-cards .card-description .feautures ul li .info {
  display: flex;
  align-items: center;
  justify-content: center;
}
.lodge-section .lodge-container-cards .card-description .feautures ul li .info span {
  font-size: 16px;
  line-height: 1.3;
  color: #212b36;
  display: inline-block;
  letter-spacing: 1px;
  font-weight: 600;
}
.lodge-section .lodge-container-cards .card-description .feautures ul li .info p {
  padding-left: 4px;
  font-size: 16px;
}
.lodge-section .lodge-container-cards .card-description .button {
  margin-top: 0.3rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.lodge-section .lodge-container-cards .card-description .button a {
  margin-top: 1.2rem;
  padding: 0.2rem 1.5rem;
  font-size: 12px;
}
.lodge-section .lodge-container-cards .card-images {
  position: static;
  width: 100%;
}
.lodge-section .lodge-container-cards .card-images figure {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}
.lodge-section .lodge-container-cards .card-images figure img {
  width: 100%;
  height: 17rem;
  object-fit: cover;
  display: block;
}

/* tour section */
.tour-section {
  padding: 2rem 0;
}
.tour-section .tour-container {
  margin: 0 auto;
  max-width: 94%;
}
.tour-section .tour-container-description {
  padding: 2rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.tour-section .tour-container-description .title h2 {
  color: #212b36;
  font-size: 2rem;
}
.tour-section .tour-container-description .title h2 strong {
  color: #DC5F00;
}
.tour-section .tour-container-description .description {
  width: 100%;
}
.tour-section .tour-container-description .description p {
  text-align: center;
  margin-top: 2rem;
  color: #212b36;
  font-size: 16px;
  letter-spacing: 0.3px;
  line-height: 1.3;
}
.tour-section .tour-container-cards {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.tour-section .tour-container-cards .card {
  position: relative;
}
.tour-section .tour-container-cards .card-img figure {
  position: relative;
}
.tour-section .tour-container-cards .card-img figure img {
  width: 100%;
  display: block;
  object-fit: cover;
  height: 30rem;
}
.tour-section .tour-container-cards .card-img figure::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.7) 0, rgba(0, 0, 0, 0.5) 100%);
  z-index: 0;
}
.tour-section .tour-container-cards .card-details {
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 0.7rem;
}
.tour-section .tour-container-cards .card-details .title h3 {
  color: #eee;
  font-size: 2rem;
  line-height: 1.2;
  letter-spacing: 0.3px;
  font-weight: 400;
}
.tour-section .tour-container-cards .card-details .title h3 strong {
  color: #DC5F00;
}
.tour-section .tour-container-cards .card-details .days {
  margin: 0.5rem 0;
}
.tour-section .tour-container-cards .card-details .days p {
  margin-top: 1rem;
  color: #eee;
  font-size: 16px;
  letter-spacing: 0.3px;
  line-height: 1.2;
}
.tour-section .tour-container-cards .card-details .days p span {
  font-weight: 600;
}
.tour-section .tour-container-cards .card-details .domes {
  display: flex;
  align-items: start;
  justify-content: start;
  gap: 1rem;
  display: none;
}
.tour-section .tour-container-cards .card-details .domes figure img {
  width: 1rem;
  height: 1rem;
  color: #DC5F00;
  filter: invert(100%) sepia(100%) saturate(2%) hue-rotate(77deg) brightness(103%) contrast(101%);
}
.tour-section .tour-container-cards .card-details .domes figcaption span {
  width: 5rem;
  text-transform: uppercase;
  font-family: 14px;
  color: #eee;
  letter-spacing: 0.3px;
}
.tour-section .tour-container-cards .card-details .details {
  display: flex;
}
.tour-section .tour-container-cards .card-details .details-items {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.tour-section .tour-container-cards .card-details .details-items-content {
  width: calc(50% - 0.5rem);
  display: flex;
  align-items: center;
  justify-content: start;
}
.tour-section .tour-container-cards .card-details .details-items-content img {
  padding-right: 9px;
  width: 1.8rem;
  height: 1.8rem;
  filter: invert(35%) sepia(86%) saturate(839%) hue-rotate(349deg) brightness(104%) contrast(97%);
}
.tour-section .tour-container-cards .card-details .details-items-content .description {
  color: #eee;
}
.tour-section .tour-container-cards .card-details .details-items-content .description span {
  display: none;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1.4;
}
.tour-section .tour-container-cards .card-details .details-items-content .description p {
  margin-top: 0.3rem;
  font-size: 15px;
}
.tour-section .tour-container-cards .card-details .price {
  margin-bottom: 1rem;
}
.tour-section .tour-container-cards .card-details .price p {
  font-size: 1.5rem;
  color: #fff;
}
.tour-section .tour-container-cards .card-details .button {
  display: flex;
  justify-content: center;
  padding: 1rem 0;
}
.tour-section .tour-container-cards .card-details .button a {
  padding: 0.2rem 2rem;
}
.tour-section .tour-container-cards .card-details .button a span {
  font-size: 14px;
}

/* review section */
.review-section {
  padding: 2rem 0;
}
.review-section .review-container {
  margin: 0 auto;
  max-width: 94%;
}
.review-section .review-container-description {
  padding: 2rem 0;
  padding-bottom: 3rem;
  display: flex;
  flex-direction: column;
  align-items: start;
}
.review-section .review-container-description .title {
  width: 100%;
}
.review-section .review-container-description .title h2 {
  color: #212b36;
  font-size: 2rem;
}
.review-section .review-container-description .title h2 strong {
  color: #DC5F00;
}
.review-section .review-container-description .description {
  max-width: 100%;
  padding: 2rem 0;
}
.review-section .review-container-description .description p {
  color: #212b36;
  font-size: 16px;
  letter-spacing: 0.3px;
  line-height: 1.3;
}
.review-section .review-container-cards {
  position: relative;
  width: 100%;
  z-index: 4;
}
.review-section .review-container-cards .review-slides {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  flex-direction: column;
}
.review-section .review-container-cards .review-slides .directions {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: start;
  justify-content: start;
}
.review-section .review-container-cards .review-slides .directions .card-pagination {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.review-section .review-container-cards .review-slides .directions .card-pagination span {
  padding: 1rem;
  border: 1px solid #212b36;
  cursor: pointer;
}
.review-section .review-container-cards .review-slides .directions .card-pagination span i {
  font-size: 2rem;
}
.review-section .review-container-cards .review-slides .directions .card-pagination span:hover {
  background-color: #DC5F00;
}
.review-section .review-container-cards .review-slides .directions .card-pagination span:hover i {
  color: #eee;
}
.review-section .review-container-cards .review-slides .review-swiper {
  width: 100%;
}
.review-section .review-container-cards .card {
  background-color: #212b36;
  display: flex;
  position: relative;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  max-width: 100%;
  gap: 1rem;
  z-index: 4;
  padding: 0.8rem;
}
.review-section .review-container-cards .card-images {
  display: none;
  width: 100%;
}
.review-section .review-container-cards .card-images figure {
  width: 100%;
}
.review-section .review-container-cards .card-images figure img {
  width: 100%;
  max-height: 25rem;
  object-fit: cover;
}
.review-section .review-container-cards .card-description {
  height: 27rem;
  color: #fff;
  padding: 1.3rem 0.5rem;
}
.review-section .review-container-cards .card-description .review-company {
  padding-right: 2rem;
  display: flex;
  justify-content: end;
  width: 100%;
}
.review-section .review-container-cards .card-description .review-company img {
  width: 3rem;
  height: auto;
}
.review-section .review-container-cards .card-description .title p {
  color: #eee;
  font-size: 1.5rem;
  letter-spacing: 0.4px;
  line-height: 1.2;
  font-weight: 500;
}
.review-section .review-container-cards .card-description .text p {
  margin-top: 1rem;
  color: #eee;
  font-size: 16px;
  letter-spacing: 0.3px;
  line-height: 1.4;
  font-weight: 300;
  font-style: italic;
}
.review-section .review-container-cards .card-description .info p {
  margin-top: 1rem;
  color: #eee;
  font-size: 18px;
  letter-spacing: 0.4px;
  line-height: 1.2;
  font-weight: 500;
}
.review-section .review-container-cards .card-description .info span {
  margin-top: 0.7rem;
  font-size: 16px;
  display: inline-block;
}
.review-section .review-container-cards .card-description .info span a {
  text-decoration: underline;
  color: #eee;
}

.why-section {
  padding: 2rem 0;
  background: #eee;
}
.why-section .why-container {
  margin: 0 auto;
  max-width: 94%;
}
.why-section .why-container-description {
  padding: 2rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.why-section .why-container-description h2 {
  color: #212b36;
  font-size: 2rem;
}
.why-section .why-container-description h2 strong {
  color: #DC5F00;
}
.why-section .why-container-description p {
  padding-top: 2rem;
  color: #212b36;
  font-size: 16px;
  letter-spacing: 0.3px;
  line-height: 1.3;
  text-align: center;
}
.why-section .why-container-cards .card {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 20rem;
  background-color: #fff;
  background-image: url(https://salkantaytrekking.com/images/cartographic-section-bg2.png);
  background-repeat: repeat;
}
.why-section .why-container-cards .card-description {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}
.why-section .why-container-cards .card-description .img img {
  filter: invert(43%) sepia(23%) saturate(5541%) hue-rotate(2deg) brightness(104%) contrast(104%);
  width: 3rem;
  height: 3rem;
}
.why-section .why-container-cards .card-description .img svg {
  width: 3rem;
  height: 3rem;
  fill: #DC5F00;
}
.why-section .why-container-cards .card-description .text {
  padding-top: 1rem;
}
.why-section .why-container-cards .card-description .text p {
  text-align: center;
  color: #212b36;
  font-size: 17px;
  letter-spacing: 0.3px;
  line-height: 1.2;
}
.why-section .why-container-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.why-section .why-container-link a {
  display: inline-block;
  padding-top: 2rem;
  color: #212b36;
  font-size: 17px;
  letter-spacing: 0.3px;
  line-height: 1.2;
  text-align: center;
}
.why-section .why-container-link a span {
  padding-top: 2rem;
  color: #212b36;
  font-size: 17px;
  letter-spacing: 0.3px;
  line-height: 1.2;
  text-align: center;
  text-decoration: underline;
  transition: 0.3 ease-in-out;
}
.why-section .why-container-link a span:hover {
  color: #DC5F00;
}
.why-section .why-container-link a:hover {
  color: #DC5F00;
}

.story-section {
  padding: 2rem 0;
}
.story-section .story-container {
  margin: 0 auto;
  max-width: 94%;
}
.story-section .story-container-description {
  padding: 2rem 0;
  display: flex;
  flex-direction: column;
  align-items: start;
}
.story-section .story-container-description .title {
  width: 100%;
}
.story-section .story-container-description .title h2 {
  color: #212b36;
  font-size: 2rem;
}
.story-section .story-container-description .title h2 strong {
  color: #DC5F00;
}
.story-section .story-container-description .description {
  max-width: 100%;
  padding-top: 2rem;
}
.story-section .story-container-description .description p {
  color: #212b36;
  font-size: 16px;
  letter-spacing: 0.3px;
  line-height: 1.3;
}
.story-section .story-container-cards .directions {
  padding-bottom: 2rem;
}
.story-section .story-container-cards .directions .card-pagination {
  display: flex;
  justify-content: start;
  align-items: center;
}
.story-section .story-container-cards .directions .card-pagination span {
  padding: 1rem;
  border: 1px solid #212b36;
  cursor: pointer;
}
.story-section .story-container-cards .directions .card-pagination span i {
  font-size: 2rem;
}
.story-section .story-container-cards .directions .card-pagination span:hover {
  background-color: #DC5F00;
}
.story-section .story-container-cards .directions .card-pagination span:hover i {
  color: #eee;
}
.story-section .story-container-cards .cards .card .card-image figure {
  width: 100%;
  position: relative;
}
.story-section .story-container-cards .cards .card .card-image figure img {
  width: 100%;
  height: auto;
  height: 28rem;
  object-fit: cover;
  display: block;
}
.story-section .story-container-cards .cards .card .card-image figure::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(25deg, rgba(0, 0, 0, 0.7) 0, rgba(0, 0, 0, 0) 50%);
  width: 100%;
  height: 100%;
  z-index: 0;
}
.story-section .story-container-cards .cards .card .card-description .details {
  padding: 1rem;
  position: absolute;
  bottom: 0;
  z-index: 1;
}
.story-section .story-container-cards .cards .card .card-description .details h4 {
  color: #eee;
  text-transform: capitalize;
  font-size: 1.5rem;
  font-weight: 400;
}
.story-section .story-container-cards .cards .card .card-description .details p {
  margin-top: 0.5rem;
  color: #eee;
}
.story-section .story-container-cards .cards .card .card-description .story-type {
  padding: 1rem;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.story-section .story-container-cards .cards .card .card-description .story-type span {
  text-transform: uppercase;
  padding: 0.5rem 1rem;
  background-color: #eee;
  color: #212b36;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.3px;
}

.gallery-section {
  padding: 2rem 0;
}
.gallery-section .gallery-container {
  margin: 0 auto;
  max-width: 94%;
}
.gallery-section .gallery-container-description {
  padding: 2rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.gallery-section .gallery-container-description .title h2 {
  color: #212b36;
  font-size: 2rem;
}
.gallery-section .gallery-container-description .title h2 strong {
  color: #DC5F00;
}
.gallery-section .gallery-container-description .description {
  max-width: 70%;
}
.gallery-section .gallery-container-description .description p {
  text-align: center;
  margin-top: 2rem;
  color: #212b36;
  font-size: 17px;
  letter-spacing: 0.3px;
  line-height: 1.2;
}
.gallery-section .gallery-container-cards .card {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
}
.gallery-section .gallery-container-cards .card .card-image figure {
  height: 100%;
  position: relative;
}
.gallery-section .gallery-container-cards .card .card-image figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.gallery-section .gallery-container-cards .card .card-image figure figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 1rem;
  color: #fff;
  text-align: center;
  display: flex;
  align-items: center;
}
.gallery-section .gallery-container-cards .card .card-image figure figcaption i {
  padding-right: 0.5rem;
}
.gallery-section .gallery-container-cards .card .card-image .vertical {
  grid-column: span 1;
  grid-row: span 1;
}

.partner-section {
  padding: 2rem 0;
  background-color: #eee;
}
.partner-section .partner-container {
  margin: 0 auto;
  max-width: 94%;
}
.partner-section .partner-container-description {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.partner-section .partner-container-description .title h2 {
  color: #212b36;
  font-size: 2rem;
}
.partner-section .partner-container-description .title h2 strong {
  color: #DC5F00;
}
.partner-section .partner-container-description .description {
  max-width: 100%;
}
.partner-section .partner-container-description .description p {
  text-align: center;
  margin-top: 4rem;
  color: #212b36;
  font-size: 17px;
  letter-spacing: 0.3px;
  line-height: 1.2;
}
.partner-section .partner-container-cards .card {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
}
.partner-section .partner-container-cards .card-image {
  flex: 1 33.3%;
}
.partner-section .partner-container-cards .card-image figure {
  width: 100%;
  display: flex;
  justify-content: center;
}
.partner-section .partner-container-cards .card-image figure img {
  width: 70%;
  filter: grayscale(1);
  opacity: 0.5;
}

.footer-section {
  padding: 2rem 0;
  background-color: #212b36;
}
.footer-section .footer-container {
  max-width: 94%;
  margin: 0 auto;
}
.footer-section .footer-container .card {
  margin: 2rem 0;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  color: #eee;
  gap: 1rem;
}
.footer-section .footer-container .card-info h3 {
  font-size: 1.5rem;
  font-weight: 500;
  padding-bottom: 1rem;
}
.footer-section .footer-container .card .social-media ul {
  margin: 1rem 0;
  display: flex;
  gap: 1rem;
}
.footer-section .footer-container .card .social-media ul li {
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid #999;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  transition: 0.2s ease-in;
}
.footer-section .footer-container .card .social-media ul li a i {
  font-size: 1.5rem;
}
.footer-section .footer-container .card .social-media ul li:hover {
  background-color: #DC5F00;
}
.footer-section .footer-container .card .contact ul {
  margin-bottom: 1rem;
}
.footer-section .footer-container .card .contact ul li {
  padding: 2px 0;
}
.footer-section .footer-container .card .contact ul li a:hover {
  text-decoration: underline;
}
.footer-section .footer-container .card .contact ul p {
  font-style: italic;
  font-size: 15px;
  color: #DC5F00;
  padding: 4px 0;
}
.footer-section .footer-container .card .details p {
  font-size: 1rem;
}
.footer-section .footer-container .img {
  margin: auto;
  display: flex;
  justify-content: center;
}

/* mobile settings section */
@media (min-width: 768px) {
  .intro-section {
    margin-top: 4rem;
    padding: 5rem 0;
  }
  .intro-section .intro-container {
    max-width: 85%;
    margin: 0 auto;
  }
  .intro-section .intro-container .card {
    flex-direction: row;
  }
  .intro-section .intro-container .card-description {
    flex: 1 1 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .intro-section .intro-container .card-description .card-content {
    width: 80%;
  }
  .intro-section .intro-container .card-description .card-content h2 {
    font-size: 3rem;
    font-weight: 600;
  }
  .intro-section .intro-container .card-description .card-content p {
    font-size: 17px;
    line-height: 1.4;
  }
  .intro-section .intro-container .card-description .card-content a {
    padding: 0.8rem 3rem;
    font-size: 15px;
    font-weight: 600;
  }
  .intro-section .intro-container .card-image {
    flex: 1 1 50%;
  }
  .intro-section .intro-container .card-image figure {
    height: 100%;
  }
  .intro-section .intro-container .card-image figure iframe {
    height: 23rem;
  }
  .award-section {
    padding: 4rem 0;
  }
  .award-section .award-container {
    max-width: 85%;
    margin: 0 auto;
  }
  .award-section .award-container .card-description {
    margin-top: 0.5rem;
    width: 70%;
  }
  .award-section .award-container .card-description .card-content h3 {
    font-size: 2.5rem;
    font-weight: 600;
  }
  .award-section .award-container .card-description a {
    padding: 0.6rem 2.3rem !important;
    font-weight: 600;
  }
  .award-section .award-container .card-description a span {
    font-size: 16px;
  }
  .award-section .award-container .card-image-awards {
    flex-direction: row;
  }
  .tour-section {
    padding: 2rem 0;
  }
  .tour-section .tour-container {
    max-width: 85%;
    width: 100%;
  }
  .tour-section .tour-container-cards {
    flex-wrap: wrap;
    flex-direction: column;
    gap: 3rem;
  }
  .tour-section .tour-container-cards .card-details .title h3 {
    font-size: 2.5rem;
    font-weight: 500;
  }
  .tour-section .tour-container-cards .card-details .button {
    padding-top: 10px;
    justify-content: start;
  }
  .tour-section .tour-container-cards .card-details .details-items-content .description span {
    font-size: 15px;
  }
  .tour-section .tour-container-cards .card-details .details-items-content .description p {
    font-size: 16px;
  }
  .tour-section .tour-container-cards .card-img figure img {
    width: 100%;
    max-height: 45rem;
    height: 40rem;
  }
  .tour-section .tour-container-description {
    margin: 2rem 0;
  }
  .tour-section .tour-container-description .title h2 {
    font-size: 2rem;
  }
  .tour-section .tour-container-description .description {
    width: 70%;
  }
  .tour-section .tour-container-description .description p {
    margin-top: 2rem;
  }
  .footer-section {
    padding: 5rem 0;
  }
  .footer-section .footer-container {
    max-width: 85%;
    margin: 0 auto;
  }
  .footer-section .footer-container-cards .card {
    flex-direction: row;
    justify-content: start;
  }
  .footer-section .footer-container-cards .card-info {
    flex: 0 1 calc(25% - 1rem);
  }
  .footer-section .footer-container-cards .card-info h3 {
    font-size: 1.7rem;
    font-weight: 400;
  }
  .footer-section .footer-container-cards .card .office .details p {
    max-width: 80%;
    padding: 4px 0;
  }
  .footer-section .footer-container-cards .card .office .details p a:hover {
    text-decoration: underline;
  }
  .footer-section .footer-container-cards .card .info ul li {
    padding: 4px 0;
  }
  .footer-section .footer-container-cards .card .info ul li a:hover {
    text-decoration: underline;
  }
  .footer-section .footer-container-cards .card .social-media ul li {
    width: 2.5rem;
    height: 2.5rem;
  }
  .footer-section .footer-container-cards .card .social-media ul li a i {
    font-size: 1.2rem;
    font-weight: 300;
  }
  .footer-section .footer-container-cards .card .contact ul li {
    padding: 4px 0;
    font-size: 16px;
    font-weight: 400;
  }
  .footer-section .footer-container-cards .card .contact ul p {
    font-style: italic;
    font-size: 15px;
    color: #DC5F00;
    padding: 4px 0;
  }
  .partner-section {
    padding: 5rem 0;
  }
  .partner-section .partner-container {
    max-width: 85%;
  }
  .partner-section .partner-container-description .title h2 {
    font-size: 3rem;
    font-weight: 600;
  }
  .partner-section .partner-container-cards .card {
    justify-content: center;
  }
  .partner-section .partner-container-cards .card-image {
    flex: 0 1 20%;
  }
  .lodge-section {
    margin-top: 4rem;
    padding: 5rem 0;
  }
  .lodge-section .lodge-container {
    max-width: 85%;
    margin: 0 auto;
  }
  .lodge-section .lodge-container-description {
    padding: 6rem 0;
    flex-direction: row;
  }
  .lodge-section .lodge-container-description .title {
    width: 50%;
  }
  .lodge-section .lodge-container-description .title h2 {
    font-size: 3rem;
    font-weight: 600;
  }
  .lodge-section .lodge-container-description .description {
    max-width: 40%;
  }
  .lodge-section .lodge-container-description .description p {
    padding-top: 0;
  }
  .lodge-section .lodge-container-cards {
    gap: 2rem;
  }
  .lodge-section .lodge-container-cards .card {
    padding: 0;
    align-items: start;
    justify-content: start;
    flex-direction: row-reverse;
  }
  .lodge-section .lodge-container-cards .card-description {
    padding: 2rem 1rem;
    width: 50%;
  }
  .lodge-section .lodge-container-cards .card-description .margin {
    max-width: 70%;
  }
  .lodge-section .lodge-container-cards .card-description .title {
    padding: 1rem 0;
  }
  .lodge-section .lodge-container-cards .card-description .title h3 {
    font-size: 2rem;
    font-weight: 600;
  }
  .lodge-section .lodge-container-cards .card-description .button {
    justify-content: start;
  }
  .lodge-section .lodge-container-cards .card-description .button a {
    padding: 0.8rem 3rem;
    font-size: 16px;
  }
  .lodge-section .lodge-container-cards .card-description .overview {
    display: flex;
  }
  .lodge-section .lodge-container-cards .card-description .overview p {
    font-size: 16px;
  }
  .lodge-section .lodge-container-cards .card-description .feautures ul {
    justify-content: start;
    flex-wrap: wrap;
    flex-direction: row;
  }
  .lodge-section .lodge-container-cards .card-description .feautures ul li {
    flex: 1 calc(50% - 1rem);
    margin-top: 0.5rem;
  }
  .lodge-section .lodge-container-cards .card-description .feautures ul li .img {
    display: flex;
  }
  .lodge-section .lodge-container-cards .card-description .feautures ul li .info {
    padding-left: 8px;
    flex-direction: column;
    align-items: start;
  }
  .lodge-section .lodge-container-cards .card-images {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translate(0, -50%);
    width: 50vw;
  }
  .lodge-section .lodge-container-cards .card-images figure img {
    height: 25rem;
  }
  .tour-section {
    margin-top: 4rem;
    padding: 2rem 0;
  }
  .tour-section .tour-container {
    max-width: 85%;
  }
  .tour-section .tour-container-description .title h2 {
    font-size: 3rem;
    font-weight: 600;
  }
  .tour-section .tour-container-cards .card {
    position: relative;
  }
  .tour-section .tour-container-cards .card-details {
    position: absolute;
    top: 50%;
    left: 3.5rem;
    transform: translateY(-50%);
    padding: 0;
    width: 80%;
  }
  .tour-section .tour-container-cards .card-details .days {
    margin-top: 2rem;
  }
  .tour-section .tour-container-cards .card-details .days p {
    font-size: 18px;
  }
  .tour-section .tour-container-cards .card-details .days p span {
    font-size: 24px;
  }
  .tour-section .tour-container-cards .card-details .details {
    padding: 1rem 0;
  }
  .tour-section .tour-container-cards .card-details .details-items {
    flex-wrap: wrap;
    gap: 2rem;
    width: 50%;
  }
  .tour-section .tour-container-cards .card-details .details-items-content {
    flex: 1 calc(50% - 1rem);
  }
  .tour-section .tour-container-cards .card-details .button a {
    padding: 0.8rem 3rem;
  }
  .tour-section .tour-container-cards .card-details .button a span {
    font-size: 16px;
    font-weight: 600;
  }
  .story-section {
    padding: 2rem 0;
  }
  .story-section .story-container {
    max-width: 85%;
    margin: 0 auto;
  }
  .story-section .story-container-description {
    padding-top: 5rem;
    flex-direction: row;
  }
  .story-section .story-container-description .title {
    width: 50%;
  }
  .story-section .story-container-description .title h2 {
    font-size: 3rem;
    font-weight: 600;
  }
  .story-section .story-container-description .description {
    padding-top: 0rem;
    max-width: 40%;
  }
  .gallery-section {
    margin-top: 4rem;
    padding: 2rem 0;
  }
  .gallery-section .gallery-container {
    max-width: 85%;
  }
  .gallery-section .gallery-container-description {
    padding: 2rem 0;
  }
  .gallery-section .gallery-container-description .title h2 {
    font-size: 3rem;
    font-weight: 600;
  }
  .gallery-section .gallery-container-cards .card {
    grid-template-columns: repeat(3, minmax(250px, 1fr));
    grid-auto-rows: 350px;
  }
  .gallery-section .gallery-container-cards .card .vertical {
    grid-column: span 2;
    grid-row: 1;
  }
  .why-section {
    padding: 5rem 0;
  }
  .why-section .why-container {
    max-width: 85%;
  }
  .why-section .why-container-description h2 {
    font-size: 3rem;
    font-weight: 600;
  }
  .why-section .why-container-description p {
    font-size: 17px;
  }
  .why-section .why-container-cards {
    padding: 2rem 0;
  }
}
@media (min-width: 1024px) {
  .hero-container .nav-container-menu {
    margin: auto;
    padding: 0.5rem 0;
    max-width: 85%;
    width: 100%;
  }
  .hero-container .nav-container-menu-logo img {
    max-width: 10rem;
  }
  .hero-container .nav-container-menu-items {
    display: flex;
    position: static;
    width: auto;
    background: none;
    display: flex;
  }
  .hero-container .nav-container-menu-items ul {
    display: flex;
    align-items: center;
  }
  .hero-container .nav-container-menu-items ul li {
    transition: 0.5 ease-in-out;
  }
  .hero-container .nav-container-menu-items ul li a {
    padding: 0.3rem 1rem;
  }
  .hero-container .nav-container-menu-items ul li:hover > ul {
    display: block;
  }
  .hero-container .nav-container-menu-items ul ul {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background-color: #eee;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  }
  .hero-container .nav-container-menu-items ul ul a {
    color: #DC5F00;
  }
  .hero-container .mobile-menu-btn {
    display: none;
  }
  .hero-container-mobile {
    display: none;
  }
  .hero-container-image {
    display: flex;
  }
  .hero-container-image .img figure {
    height: 100%;
  }
  .hero-container-image .img figure img {
    height: 100vh;
  }
  .hero-container-content-subtitle p {
    font-size: 16px;
  }
  .hero-container-content-title h1 {
    font-size: 3.8rem;
    font-weight: 600;
    letter-spacing: 0.4px;
  }
  .hero-container-content-button a {
    padding: 0.6rem 2.3rem;
    font-weight: 400;
  }
  .hero-container-content-button a span {
    font-size: 16px;
    font-weight: 500;
  }
  .hero-container-awards-img {
    gap: 1.5rem;
  }
  .hero-container-awards-img .logo figure img {
    height: 6rem;
  }
  /* .hero-container{
      .nav-container{
          display: flex;
      }
  } */
  .footer-container-cards .card {
    flex-direction: row;
    justify-content: center;
  }
  .footer-container-cards .card-info {
    flex: 1 calc(25% - 1rem);
  }
  .partner-section .partner-container {
    max-width: 85%;
  }
  .partner-section .partner-container-cards .card {
    justify-content: center;
  }
  .partner-section .partner-container-cards .card-image {
    flex: 0 1 12.5%;
  }
  .review-section {
    padding: 5rem 0;
  }
  .review-section .review-container {
    max-width: 85%;
    margin: 0 auto;
  }
  .review-section .review-container-description {
    flex-direction: row;
  }
  .review-section .review-container-description .title {
    flex: 1;
    width: 50%;
  }
  .review-section .review-container-description .title h2 {
    font-size: 3rem;
    font-weight: 600;
  }
  .review-section .review-container-description .description {
    flex: 1;
    max-width: 50%;
    padding: 0;
  }
  .review-section .review-container-description .description p {
    max-width: 70%;
  }
  .review-section .review-container-cards {
    padding: 6rem 0;
  }
  .review-section .review-container-cards .review-slides {
    margin: auto;
    width: 60%;
    flex-direction: row;
    gap: 1rem;
  }
  .review-section .review-container-cards .review-slides .directions {
    width: 10%;
    display: flex;
    align-items: center;
    justify-content: start;
  }
  .review-section .review-container-cards .review-slides .directions .card-pagination {
    flex-direction: column-reverse;
    justify-content: center;
    align-items: center;
  }
  .review-section .review-container-cards .review-slides .directions .card-pagination span {
    padding: 1rem;
    border: 1px solid #212b36;
    cursor: pointer;
  }
  .review-section .review-container-cards .review-slides .directions .card-pagination span i {
    font-size: 2rem;
  }
  .review-section .review-container-cards .review-slides .directions .card-pagination span:hover {
    background-color: #DC5F00;
  }
  .review-section .review-container-cards .review-slides .directions .card-pagination span:hover i {
    color: #eee;
  }
  .review-section .review-container-cards .review-slides .review-swiper {
    flex: 1 calc(90% - 1rem);
    position: relative;
  }
  .review-section .review-container-cards .review-slides .review-swiper .card .review-company {
    position: absolute;
    top: 2rem;
    right: 0;
  }
  .review-section .review-container-cards .card {
    flex-direction: row;
    margin: auto;
  }
  .review-section .review-container-cards .card-images {
    display: block;
    flex: 1;
  }
  .review-section .review-container-cards .card-images figure img {
    max-height: 100%;
  }
  .review-section .review-container-cards .card-description {
    height: 25rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
  }
  .review-section .review-container-cards .bg {
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 0;
    width: 50%;
    height: 100%;
    background-color: #eee;
    z-index: -1;
    transform: translateY(-50%);
  }
  .review-section .review-container-cards .bg-color {
    position: relative;
    width: 100%;
    height: 100%;
    padding-left: 8rem;
    display: flex;
    align-items: center;
    justify-content: start;
  }
}

/*# sourceMappingURL=output.css.map */
