@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

:root {
  --primary-color: #ee7423;
  --primary-color-2: #ff6600;
  --primary-gradient: linear-gradient(90deg, #ee7423 0%, #f36e16 100%);
  --primary-para: #54595f;
  --primary-para-dark: #6e6e6e;
  --primary-heading: #333333;
  --primary-white: #fff;
  --primary-black: #040707;
  --primary-gray: gainsboro;
}

body {
  font-family: "Poppins", sans-serif !important;
  overflow-x: hidden;
}

.gradientBg {
  background: white;
  color: black;
}

.theme-section {
  width: 92%;
  margin-left: auto;
  margin-right: auto;
}

.img-text {
  display: grid;
  row-gap: 30px;
}

@media (min-width: 786px) {
  .theme-section {
    width: 88%;
  }

  .img-text {
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
  }
}

@media (min-width: 1530px) {
  .theme-section {
    width: 1500px;
  }
}

.faq-answer {
  max-height: 0;
  padding: 0;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}

.faq-answer.open {
  max-height: 200px;
  padding-top: 0.5rem;
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 20px;
}

.faq {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 1) 0%,
    rgba(62, 191, 194, 1) 100%
  );
  /* padding: 1rem; */
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  background-size: cover;
  width: 100%;
}

.faq-header {
  font-size: 1.5rem;
  font-weight: bold;
  text-align: center;
  color: #444;
  margin-bottom: 0.5rem;
}

.faq-description {
  text-align: center;
  color: #666;
  margin-bottom: 1.5rem;
}

.faq-item {
  background-color: #ffcba8;
  border-radius: 8px;
  /* padding: 0.75rem 1rem; */
  margin-bottom: 1rem;
  transition: all 0.3s ease-in-out;
}

.faq-item button {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1rem;
  font-weight: 500;
  color: #444;
}

.faq-answer {
  font-size: 0.875rem;
  color: #555;
}

.sub-hero {
}

footer {
  position: relative;
  background: #333;
  color: white;
  padding: 50px 0;
  overflow: hidden;
  margin-top: 80px;
}

footer .theme-section {
  display: grid;
  gap: 10px;
  position: relative;
  z-index: 10;
}

footer .logo img {
  margin-bottom: 30px;
  width: 260px;
}

footer .logo p {
  color: var(--primary-para-color);
  margin-top: 20px;
  font-size: 14px;
}

footer .logo > div {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 23px;
  margin-top: 20px;
}

footer .payment ul {
  margin-top: 30px;
}

footer .payment ul > * + * {
  margin-top: 14px;
}

footer .payment li {
  display: flex;
  align-items: center;
  gap: 8px;
}

@media (max-width: 500px) {
  footer .theme-section {
    row-gap: 50px;
  }
}

@media (min-width: 500px) {
  footer .theme-section {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  footer .payment {
    width: fit-content;
    margin: 0 auto;
  }
}

footer .services h1 {
  font-size: 28px;
  font-weight: 500;
}

footer .services div {
  margin-top: 14px;
  display: grid;
  row-gap: 12px;
  font-size: 15px;
}

footer .flags img{
  height: 50px !important;
  width: 50px !important;
  object-fit: cover !important;
}