/* ########## start Global styles for landing pages ########## */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #0d8ee9;
  --secondary: #ff9107;
  --white-color: #ffffff;
  --paragraph-color: #383838;
  --paragraph-secondary-color: #333333;
  --section-bg-color: #eaf9ff;
}

body {
  font-size: 14px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--primary-color);
}

h2 {
  font-size: 20px;
  font-weight: 600;
  margin: 0;
  line-height: 26.63px;
}

h3 {
  font-size: 16px;
  line-height: 21.79px;
  font-weight: 600;
}

p {
  color: var(--paragraph-color);
  font-size: 14px;
  line-height: 20px;
  margin: 0;
}
/* center button in some sections */
.two-col-grid-section a,
.simple-even-odd-section a,
.country-features-section a,
.even-odd-section a {
  margin-top: 24px;
  display: block;
  text-align: center;
}
/* center button in some sections */

.landing-page-main {
  display: flex !important;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}

/* sections spacing */
.landing-page-main > section {
  width: 100%;
  padding: 32px 15px;
}

@media (min-width: 768px) {
  .landing-page-main > section {
    padding-top: 48px;
    padding-bottom: 48px;
  }
}

@media (min-width: 1280px) {
  .landing-page-main > section {
    padding: 68px 0;
  }
}
/* sections spacing */

.landing-page-main .bg-section {
  background-color: var(--section-bg-color);
}

/* start button styles */
.call-action-btn {
  min-width: 200px;
  display: inline-flex;
  font-family: "Nunito", sans-serif;
  font-size: 14px;
  align-items: center;
  justify-content: center;
  height: 45px;
  text-align: center;
  font-weight: 700;
  color: var(--white-color, #fff);
  background-color: var(--primary-color, #007bff);
  border: none;
  border-radius: 10px;
  transition: all 0.3s ease-in-out 0s;
  cursor: pointer;
  outline: none;
  position: relative;
  padding: 0 20px;
  overflow: visible;
  z-index: 0;
  animation: bounce 1s infinite ease-in-out;
}

.call-action-btn:hover,
.call-action-btn:focus {
  transform: scale(1.1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Keyframes for the bounce effect */
@keyframes bounce {
  0%,
  100% {
    transform: translateY(-20%);
  }
  50% {
    transform: translateY(0%);
  }
}
/* end button styles */

/* start Section Head component styles */
.section-head-container {
  text-align: center;
  margin: 0 auto 24px;
}

.section-head-container p {
  margin: 12px 0 0;
}

@media screen and (min-width: 769px) {
  .section-head-container {
    margin-bottom: 48px;
  }
}

/* end Section Head component styles */

/* start Card styles */
.card-container {
  width: 100%;
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.card {
  padding: 20px 15px;
  text-align: center;
}

.grid-card {
  border: 2px solid var(--primary-color);
  border-radius: 15px;
}
.grid-card img {
  width: 270px;
  height: 200px;
}
/* end Card styles */

.three-col-grid,
.two-col-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 15px;
}

@media (min-width: 576px) {
  .three-col-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .two-col-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (min-width: 769px) {
  h2 {
    line-height: 33px;
    font-size: 24px;
  }

  h3 {
    font-size: 18px;
    line-height: 24.51px;
  }

  .call-action-btn {
    padding: 0 20px;
    font-size: 18px;
    height: 52px;
  }

  .card {
    padding: 20px;
  }
}

@media (min-width: 992px) {
  .three-col-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
/* ########## end Global styles for landing pages ########## */

/* ########## start Hero section styles ########## */
.hero-section-content {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
}

.hero-section-content p {
  font-size: 14px;
  text-align: center;
  margin: 8px 0;
  line-height: 26px;
}

.hero-section-content ul {
  margin-top: 24px;
  list-style-position: inside;
}

.hero-section-content ul a {
  margin-top: 24px;
}

.hero-section-content ul li {
  color: var(--paragraph-secondary-color);
  margin-bottom: 5px;
  font-size: 14px;
  text-align: center;
}

.hero-section-content h1 {
  font-weight: 700;
  font-size: 24px;
  line-height: 29.05px;
  text-align: center;
  margin-top: 0;
}

.hero-section-content img {
  width: 326px;
  height: 194px;
  background-size: contain;
}

.hero-section-content > div a {
  display: none;
}

.hero-section-content > a {
  margin-top: 25px;
}

@media screen and (min-width: 450px) {
  .hero-section-content > div {
    padding: 0;
  }
}

@media screen and (min-width: 769px) {
  .hero-section-content {
    flex-direction: row;
  }

  .hero-section-content > div {
    width: 627px;
  }

  .hero-section-content h1 {
    font-size: 36px;
    line-height: 43.57px;
  }
  .hero-section-content p {
    line-height: 30px;
    margin: 24px 0;
  }

  .hero-section-content p,
  .hero-section-content ul li {
    font-size: 20px;
  }

  .hero-section-content h1,
  .hero-section-content p,
  .hero-section-content ul li {
    text-align: left;
  }

  .hero-section-content img {
    width: 476px;
    height: 330px;
  }

  .hero-section-content > div a {
    display: inline-flex;
  }

  .hero-section-content > a {
    display: none;
  }
}

@media screen and (min-width: 1200px) {
  .hero-section-content img {
    width: 500px;
    height: 415.73px;
  }
}
/* ########## end Hero section styles ########## */

/* ########## start Helper Guide section styles ########## */
.helper-guide-section > a button {
  display: block;
  margin: 24px auto 0;
}
/* ########## end Helper Guide section styles ########## */

/* ########## start Promotion Banner section styles ########## */
.promotion-banner-section {
  display: flex;
  align-items: center;
  flex-direction: column;
  text-align: center;
  margin: 0 auto;
  gap: 24px;
}

.promotion-banner-section img {
  width: 341px;
  height: 202px;
}

.promotion-banner-section p {
  margin-top: 16px;
}

.promotion-banner-section ul {
  list-style: inside;
  list-style-type: disc;
}

.promotion-banner-section ul li {
  color: var(--paragraph-color);
  margin: 10px 0;
}

.promotion-banner-section .call-action-btn {
  margin-top: 24px;
}

@media screen and (min-width: 769px) {
  .promotion-banner-section {
    flex-direction: row;
    text-align: left;
    gap: 86px;
    max-width: 1074.6px;
  }
  .promotion-banner-section img {
    width: 410px;
    height: 224px;
  }
}
/* ########## end Promotion Banner section styles ########## */

/* ########## start Even Odd section styles ########## */
.even-odd-section,
.simple-even-odd-cards {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}

.even-odd-section .even-odd-card img {
  width: 100px;
  height: 100px;
}

.even-odd-section > div {
  width: 100%;
}
.even-odd-section > div:nth-child(2) > div:nth-child(2) {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.even-odd-section > figure {
  align-self: center;
}

.even-odd-section > figure img {
  display: none;
  width: 250.69px;
  height: 264px;
}

.even-odd-section .section-head-container img {
  width: 273.37px;
  height: 186.6px;
}

.even-odd-section > div h3 {
  font-weight: 600;
  margin-top: 0;
}

.even-odd-section > div a {
  display: block;
  text-align: center;
}

.even-odd-card {
  display: flex;
  align-items: start;
  gap: 16px;
}

.even-odd-card img {
  width: 80px;
  height: 80px;
}

@media screen and (min-width: 769px) {
  .even-section,
  .even-card {
    flex-direction: row;
  }

  .odd-section,
  .odd-card {
    flex-direction: row-reverse;
  }
  .even-odd-section .section-head-container {
    text-align: left;
  }

  .even-odd-section .section-head-container img {
    display: none;
  }

  .even-odd-section .simple-even-odd-cards {
    text-align: left;
    margin-left: 0;
  }

  .even-odd-section > figure img {
    display: block;
    width: 452px;
    height: 478px;
  }

  .even-odd-section > div {
    width: 630px;
  }

  .even-odd-card {
    align-items: center;
    gap: 40px;
  }

  .even-odd-section > div a {
    text-align: left;
    margin-left: 120px;
  }
}
/* ########## end Even Odd section styles ########## */

/* ########## start Prohibited Items section styles ########## */
.prohibited-items > article {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 0 3px;
  height: 100%;
  margin-bottom: 10px;
}

.prohibited-items > article img {
  width: 80px;
  height: 80px;
}

.prohibited-items h3,
.prohibited-items p {
  text-align: left;
}

.prohibited-items h3 {
  color: #000000;
}

.prohibited-items p {
  color: #545454;
}

.prohibited-section-big-screen {
  display: none;
}

.prohibited-section-small-screen {
  display: block;
}

@media screen and (min-width: 500px) {
  .prohibited-section-big-screen {
    display: block;
  }

  .prohibited-section-small-screen {
    display: none;
  }

  .prohibited-items > article {
    margin-bottom: 0;
  }
}
/* ########## end Prohibited Items  section styles ########## */

/* ########## start Popular International Destinations section styles ########## */
.popular-international-destinations article {
  height: 402px;
  display: flex;
  align-items: end;
  padding: 15px 10px 15px 28px;
  transition: 0.3s ease;
}

.popular-international-destinations article:hover {
  border-radius: 25px;
  transform: scale(1);
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
}

.popular-international-destinations article:hover > div {
  transition: 0.3s ease;
  border-radius: 25px;
}

.popular-international-destinations article div {
  height: 47%;
  padding: 12px 16px;
  background-color: var(--white-color);
  opacity: 85%;
  margin-top: auto;
}

@media screen and (min-width: 769px) {
  .popular-international-destinations article:hover {
    transform: rotate(-4deg) scale(1);
    -webkit-transform: rotate(-4deg) scale(1);
    -moz-transform: rotate(-4deg) scale(1);
    -ms-transform: rotate(-4deg) scale(1);
    -o-transform: rotate(-4deg) scale(1);
  }
}
/* ########## end Popular International Destinations section styles ########## */

/* ########## start FAQ section styles ########## */
.faq-section-container {
  padding: 0 20px;
}

.faq-section-container .section-head-container {
  text-align: left;
  max-width: 200%;
}

.faq-item {
  border-bottom: 1px solid #61779833;
}

.faq-section h3 {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  cursor: pointer;
  font-weight: 600;
  padding: 10px 0;
}

.faq-item .answer {
  height: 0;
  overflow: hidden;
  opacity: 0;
  clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
  transition: height 0.3s ease-in-out, clip-path 0.3s ease-in-out,
    opacity 0.3s ease-in-out;
}

.faq-item .answer.active {
  height: auto; /* Allows the content to expand */
  opacity: 1;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  border-top: 1px solid #787878;
  padding: 25px 0;
}

.faq-item .toggle-icon {
  transition: transform 0.3s ease;
}

.faq-item .toggle-icon.rotate {
  transform: rotate(45deg);
}

@media screen and (min-width: 769px) {
  .faq-section-container {
    padding: 0;
  }
}
/* ########## end FAQ section styles ########## */
/* ########## start Swiper section styles ########## */
.swiper-container {
  overflow: hidden;
}

.swiper-pagination {
  bottom: -20px !important;
}

.swiper-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
}

.swiper-pagination .swiper-pagination-bullet {
  width: 16px;
  height: 16px;
}

.swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: none;
}

.swiper-pagination span.swiper-pagination-bullet-active + span {
  background-color: var(--primary-color);
  border-radius: 0;
  width: 40px;
  height: 1px;
  opacity: 1;
}
/* ########## end Swiper section styles ########## */

/* ########## start Why Shipping With us section styles ########## */
.why-shipping-with-us-section {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  flex-direction: column;
}

.why-shipping-with-us-section div:last-of-type {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.why-shipping-with-us-section .even-odd-card img {
  width: 100px;
  height: 100px;
}

.why-shipping-with-us-section article h3 {
  margin-top: 0;
  margin-bottom: 2px;
}

.why-shipping-with-us-section .section-head-container {
  text-align: left;
}

.why-shipping-with-us-section .section-head-container button {
  display: none;
}

.why-shipping-with-us-section button {
  margin-top: 24px;
}

.why-shipping-with-us-section button.second-button {
  display: block;
  margin: 0 auto;
}

@media screen and (min-width: 769px) {
  .why-shipping-with-us-section .section-head-container button {
    display: block;
  }
  .why-shipping-with-us-section button.second-button {
    display: none;
  }
  .why-shipping-with-us-section {
    flex-direction: row;
    gap: 50px;
  }
}
/* ########## end Why Shipping With us section styles ########## */

/* ########## start grid section styles ########## */
.grid-section {
  gap: 24px;
}

.grid-section article img {
  width: 200px;
  height: 200px;
}

@media screen and (min-width: 769px) {
  .grid-section {
    gap: 48px;
  }
}
/* ########## end grid section styles ########## */

/* ########## start why choose us section styles ########## */
.why-choose-us-section article h3 {
  margin-top: 0;
}

.why-choose-us-section article img {
  width: 80px;
  height: 80px;
}
/* ########## end why choose us section styles ########## */

/* ########## start simple even odd section styles ########## */
.simple-even-odd-cards article {
  position: relative;
  top: -40px;
}

.simple-even-odd-cards,
.simple-even-odd-section .section-head-container {
  margin-right: auto;
  margin-left: auto;
}

.simple-even-odd-cards article img {
  width: 306px;
  height: 306px;
  display: block;
}

.simple-even-odd-cards > article {
  align-items: center;
  gap: 12px;
}

.simple-even-odd-cards article > div {
  text-align: center;
  align-self: center;
}

@media screen and (min-width: 769px) {
  .simple-even-odd-cards article > div {
    text-align: left;
  }

  .simple-even-odd-cards {
    max-width: 935px;
  }

  .simple-even-odd-cards > article {
    gap: 100px;
  }
}
/* ########## end simple even odd section styles ########## */

/* ########## start info banner section styles ########## */
.info-banner {
  padding: 0 3px;
}

.info-banner article {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 0 auto;
}

.info-banner img {
  width: 336px;
  height: 232.81px;
}

@media screen and (min-width: 769px) {
  .info-banner article {
    width: 85%;
  }

  .info-banner img {
    width: 424px;
    height: 293.78px;
  }
}
/* ########## end info banner section styles ########## */

/* ########## start country features section styles ########## */
.country-features-section article {
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 0;
  flex-direction: column;
}

.country-features-section article ul {
  list-style: outside;
  font-weight: 600;
  padding-left: 20px;
}
.country-features-section article ul li {
  margin-bottom: 10px;
}

@media screen and (min-width: 500px) {
  .country-features-section article {
    flex-direction: row;
    gap: 50px;
  }
}

/* ########## end country features section styles ########## */

/* ########## start Two col grid section styles ########## */
.two-col-grid img {
  width: 298.8px;
  height: 200px;
}

.two-col-grid article h2 {
  margin-bottom: 10px;
}
/* ########## end Two col grid section styles ########## */
