*,
:after,
:before {
  box-sizing: border-box;
  font-family: sans-serif;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #20214f;
  background-color: #fff;
  margin: 0;
  padding: 0;
}

.container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 20px;
}

.container-fluid {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

.section-title {
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 1rem;
  text-align: center;
}

.title-gradient {
  background: -webkit-linear-gradient(45deg, #20214f, #9a9a9b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-subtitle {
  font-size: 1.3rem;
  color: #5f5e5e;
  text-align: center;
  font-weight: 500;
  margin-bottom: 2rem;
}

.btn {
  display: inline-block;
  padding: 0.5rem 1rem;
  background-color: #ffffff;
  color: #20214f;
  text-decoration: none;
  border-radius: 20px;
  transition: background-color 0.3s ease;
  border: none;
}
.btn:hover {
  background-color: rgb(229.5, 229.5, 229.5);
  cursor: pointer;
}
.btn.btn-gray {
  background-color: #9b9b9b;
  color: #ffffff;
}
.btn.btn-transparent {
  background-color: transparent;
  color: #ffffff;
}

.arrow {
  border: solid #20214f;
  border-width: 0 3px 3px 0;
  display: inline-block;
  padding: 3px;
  margin-top: 3px;
}
.arrow.right {
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}
.arrow.left {
  transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
}
.arrow.up {
  transform: rotate(-135deg);
  -webkit-transform: rotate(-135deg);
}
.arrow.down {
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}

.icon-w-24 {
  display: inline-block;
  width: 24px;
  height: 24px;
}

textarea {
  resize: none;
}

.container {
  width: 100%;
  margin: 0 auto;
  padding: 0 16px;
}
@media only screen and (min-width: 992px) {
  .container {
    padding: 0 32px;
  }
}
@media only screen and (min-width: 1600px) {
  .container {
    max-width: 1500px;
  }
}

.hero {
  position: relative;
  height: 600px;
  margin-top: 76px;
}
.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__overlay .container {
  width: 100%;
}
.hero__content {
  color: #ffffff;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.hero__content .hero__logo {
  width: 100%;
  max-width: 371px;
}
.hero__content .hero__text {
  padding-top: 64px;
}
.hero__content .hero__text .hero__title {
  font-size: x-large;
  font-weight: 500;
  margin: 0;
}
.hero__content .hero__text .hero__subtitle {
  font-size: xx-large;
  font-weight: 500;
  margin: 0;
}
.hero__title {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}
.hero__subtitle {
  font-size: 2rem;
}

.destinations {
  padding: 4rem 0;
}
.destinations__grid {
  display: grid;
  /* grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); */
  gap: 1rem;
}
@media only screen and (min-width: 768px) {
  .destinations__grid {
    grid-template-columns: repeat(auto-fit, minmax(calc(50% - 1rem), 1fr));
  }
}

.destination-card {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}
.destination-card__image {
  width: 100%;
  height: 100%;
  max-height: 600px;
  border-radius: 10px;
  object-fit: cover;
}
@media (max-width: 2000px) {
  .destination-card__image {
    max-height: 400px;
  }
}
.destination-card__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 1rem;
  text-align: center;
  color: #ffffff;
}
.destination-card__title {
  font-size: 1.8rem;
  font-weight: 500;
  margin: 0;
  margin-bottom: 0.5rem;
}
@media only screen and (min-width: 768px) {
  .destination-card:first-child .destination-card__overlay {
    right: 0;
    left: inherit;
  }
}
@media only screen and (min-width: 768px) {
  .destination-card:nth-child(3) .destination-card__overlay {
    top: 0;
    right: 0;
    left: inherit;
    bottom: inherit;
  }
}
@media only screen and (min-width: 768px) {
  .destination-card:nth-child(4) .destination-card__overlay {
    right: inherit;
    left: 0;
    top: 0;
    bottom: inherit;
  }
}

.team {
  background-color: #f5f5f5;
  padding: 4rem 0;
}
.team-title-content {
  width: 80%;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-bottom: 1rem;
}
.team-title-content .section-title {
  margin: 0;
}
.team-title-content .section-subtitle {
  margin: 0;
  padding-top: 10px;
}
.team__grid {
  /*display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;*/
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  flex-direction: row;
  gap: 1rem;
}
.team__grid .card {
  background-color: #ffffff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  position: relative;
  flex: 1 1 auto;
  max-height: 536px;
}
.team__grid .card:first-child {
  background-color: #9b9b9b;
  width: 100%;
  min-height: auto;
}
@media only screen and (min-width: 1600px) {
  .team__grid .card:first-child {
    width: 30%;
  }
}
.team__grid .card:first-child h3 {
  color: #ffffff;
  font-weight: 500;
}
.team__grid .card:first-child .card__text {
  color: #ffffff;
}
.team__grid .card__content {
  padding: 1.5rem;
}
.team__grid .card.member {
  min-height: 235px;
}
@media only screen and (min-width: 576px) {
  .team__grid .card.member {
    min-height: 290px;
  }
}
@media only screen and (min-width: 768px) {
  .team__grid .card.member {
    min-height: 380px;
  }
}
@media only screen and (min-width: 992px) {
  .team__grid .card.member {
    min-height: 515px;
    width: 20%;
    display: block;
  }
}
@media only screen and (max-width: 1600px) {
  .team__grid .card.member {
    width: calc(33% - 1rem);
  }
  .team__grid .card.member .card__content {
    padding: 0;
  }
}
.team__grid .card__image {
  width: 100%;
  position: absolute;
  background-position: top;
  left: 0;
  top: 0;
}
@media only screen and (max-width: 576px) {
  .team__grid .card__image {
    height: 100%;
  }
}
@media only screen and (min-width: 1600px) {
  .team__grid .card__image {
    height: 100%;
  }
}
.team__grid .card__title {
  font-size: 1rem;
  font-weight: 500;
  margin-top: 1rem;
  text-align: center;
  position: relative;
  z-index: 2;
}
@media only screen and (min-width: 768px) {
  .team__grid .card__title {
    font-size: 1.5rem;
    margin-top: 2rem;
  }
}
.team__grid .card__text {
  color: #333333;
}
.team__grid .card__author {
  margin-top: 1rem;
}
.team__grid .card__name {
  font-weight: bold;
}
.team__grid .card__location, .team__grid .card__date {
  font-size: 0.9rem;
  color: #666666;
}
.team .contact__content {
  width: 80%;
  margin: auto;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 48px;
}
.team .contact__content .section-title {
  margin: 0;
}
.team .contact__content .contact__phone, .team .contact__content .contact__hours, .team .contact__content .contact__email {
  color: #20214f;
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 1.7rem;
}
.team .contact__content .contact__email {
  font-size: 1.2rem;
}
.team .contact__content .contact__email:hover {
  color: #f7ab3e;
}
.team .contact__content .contact__phone {
  display: flex;
  align-items: center;
  gap: 8px;
}
.team .contact__content .contact__phone img {
  width: 32px;
  height: 32px;
}
.team .contact__content .contact__phone:hover {
  color: #f7ab3e;
}

.best-destinations {
  background-color: #f5f5f5;
  padding: 4rem 0;
}
.best-destinations .section-title-content {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-bottom: 16px;
}
.best-destinations .section-title-content .section-title {
  margin: 0;
}
.best-destinations .section-title-content .section-subtitle {
  margin: 0;
  padding-top: 10px;
}
.best-destinations .container-fluid {
  padding: 0;
}
.best-destinations .best-destinations-carousel .carousel-cell {
  position: relative;
}
.best-destinations .best-destinations-carousel .carousel-cell .destination-card__overlay {
  text-align: left;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

.carousel .carousel-cell {
  width: 50%; /* half-width */
  height: 450px;
  margin-right: 10px;
}

@media only screen and (min-width: 992px) {
  .gallery-testimonials {
    padding: 0 90px;
  }
}
.gallery-testimonials .carousel-cell {
  width: 33%; /* half-width */
  height: 250px;
  margin-right: 10px;
  min-width: 200px;
}

.faq {
  padding: 4rem 0;
  background-color: #f5f5f5;
}
.faq .section-title-content {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  width: 80%;
  margin: auto;
  margin-bottom: 16px;
}
.faq .section-title-content .section-title {
  margin: 0;
}
.faq .section-title-content .section-subtitle {
  margin: 0;
  padding-top: 10px;
}

.accordion {
  width: 80%;
  margin: auto;
}
.accordion__item {
  background-color: #ffffff;
  margin-bottom: 1rem;
}
.accordion__item.open .accordion__trigger {
  background: #20214f;
  color: #ffffff;
}
.accordion__item.open .trigger-icon::after {
  content: "-";
}
.accordion__item.open .accordion__content {
  display: block;
}
.accordion__trigger {
  width: 100%;
  padding: 1rem;
  text-align: left;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #dddddd;
  color: #2d2d2d;
  font-weight: 500;
  font-size: 1rem;
}
.accordion__trigger .trigger-icon {
  display: inline-block;
  width: 24px;
  height: 24px;
  margin-left: 0.5rem;
  font-size: 1.5rem;
}
.accordion__trigger .trigger-icon::after {
  content: "+";
}
.accordion__content {
  padding: 1rem;
  display: none;
}
.accordion__content p {
  margin: 0;
}

.benefits {
  padding: 4rem 0;
  color: #ffffff;
  background: linear-gradient(90deg, #20214f, #9a9a9b);
}
.benefits__grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}
.benefits__title {
  font-size: 2rem;
  font-weight: 500;
  margin: 0;
  margin-bottom: 0.5rem;
}
@media only screen and (min-width: 992px) {
  .benefits__title {
    text-align: right;
  }
}
.benefits__subtitle {
  font-size: 1.2rem;
  font-weight: 500;
  margin: 0;
  margin-bottom: 1rem;
}
@media only screen and (min-width: 992px) {
  .benefits__subtitle {
    text-align: right;
  }
}
.benefits__list {
  list-style-type: none;
  padding-left: 0;
  margin: 0;
}
.benefits__list li {
  margin-bottom: 0;
  font-size: 0.9rem;
}

.testimonials {
  background-color: #f5f5f5;
  padding: 4rem 0;
}
.testimonials .section-title-content {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-bottom: 16px;
  width: 80%;
  margin: auto;
}
.testimonials .section-title-content .section-title {
  margin: 0;
}
.testimonials .section-title-content .section-subtitle {
  margin: 0;
  padding-top: 10px;
}
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  width: 90%;
  margin: auto;
}
.testimonials__grid .card__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: url("/static/images/quotes-white.png") no-repeat bottom center;
  margin-top: 32px;
  gap: 8px;
}
.testimonials__grid .card__content p {
  margin: 0;
  text-align: center;
  color: #2d2d2d;
}
.testimonials__grid .card__text, .testimonials__grid .card__date {
  font-weight: bold;
}
.testimonials__grid .card__testimonial {
  font-style: italic;
}

@media (max-width: 768px) {
  .hero {
    height: 400px;
  }
  .hero__title {
    font-size: 2rem;
  }
  .hero__subtitle {
    font-size: 1.5rem;
  }
}

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