* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
@font-face {
  font-family: "MyFont";
  src: url("../font/Manrope-Medium.ttf") format("truetype");
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "MyShantell";
  src: url("../font/ShantellSans-Medium.ttf") format("truetype");
  font-style: normal;
  font-display: swap;
}
html,
body {
  font-family: "MyFont";
  overflow-x: hidden;
  scrollbar-width: thin;
  scrollbar-color: #ff944d white;
  scroll-behavior: smooth;
}
.container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}

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

li {
  list-style: none;
}

header.hero {
  position: relative;
  padding: 20px 0 300px;
  background: url(../img/hero.png) center/cover no-repeat;
}

header.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to left top, #fef9ea 0%, #ffff 100%);
  mix-blend-mode: hard-light;
  pointer-events: none;
}
.nav {
  z-index: 2;
  position: fixed;
  top: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: baseline;
  padding: 20px 10px;
  left: 0;
  right: 0;
  transition: background 0.3s ease;
}

.nav.scrol {
  background: white;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  z-index: 3;
}

.nav__list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.nav_ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.nav_ul li a {
  padding: 8px 0;
}

.next__list {
  display: flex;
  align-items: center;
  gap: 20px;
}

.next__btn {
  padding: 12px 16px;
  border: none;
  border-radius: 10px;
  background: #f0f0f0;
  color: black;
  cursor: pointer;
  font-weight: bold;
}

.hero__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-top: 100px;
}

.hero__title {
  width: 900px;
  max-width: 100%;
  color: black;
  font-size: 48px;
  margin-bottom: 20px;
  font-weight: 600;
  line-height: 52px;
  z-index: 1;
}

.hero__text {
  width: 600px;
  max-width: 100%;
  color: rgba(85, 80, 77, 1);
  font-size: 18px;
  font-weight: 500;
  line-height: 20px;
  z-index: 1;
}

.dwn__presentation {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  padding: 14px 20px;
  background-color: #ffc655;
  border-radius: 10px;
  z-index: 1;
  font-size: 14px;
  line-height: 20px;
  font-weight: 600;
}

.menu-toggle {
  display: none;
  cursor: pointer;
}

.menu-toggle i {
  font-size: 25px;
}

.lang-btn {
  background: #f0f0f0;
  color: black;
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  font-size: 16px;
  border-radius: 25px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  transition: background-color 0.3s ease;
  position: relative;
  z-index: 9999;
  overflow: visible;
}

@media (max-width: 1099px) {
  .menu-toggle {
    display: block;
    position: absolute;
    right: 10px;
    top: 32px;
  }
  .nav {
    justify-content: flex-start;
  }
  .nav_ul {
    flex-direction: column;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: #ffffff;
    max-height: 0;
    opacity: 0;
    z-index: 999;
    transition: max-height 0.6s ease, opacity 0.6s ease;
    text-align: center;
  }
  .nav_ul.show {
    max-height: 500px;
    opacity: 1;
    z-index: 999;
  }
  .nav_ul li a {
    display: block;
    font-size: 16px;
  }
  .next__list {
    flex-direction: column;
    margin-bottom: 20px;
  }
  .next__btn,
  .lang-btn {
    background-color: #ff944d;
  }
}

@media (max-width: 820px) {
  .hero__title {
    font-size: 32px;
    line-height: 38px;
    margin-bottom: 16px;
  }

  .hero__text {
    font-size: 16px;
    line-height: 22px;
  }
}
@media (max-width: 380px) {
  .hero__title {
    font-size: 24px;
    line-height: 28px;
    margin-bottom: 16px;
  }

  .hero__text {
    font-size: 14px;
    line-height: 18px;
  }

  .dwn__presentation {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    padding: 7px 10px;
    background-color: #ffc655;
    border-radius: 10px;
    z-index: 1;
    font-size: 14px;
    line-height: 20px;
    font-weight: 600;
  }
}

.lang-dropdown {
  position: relative;
  display: inline-block;
  z-index: 10000;
  user-select: none;
}

.lang-btn.active .arrow {
  transform: rotate(180deg);
}

.lang-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #fff;
  margin-top: 8px;
  padding: 8px 0;
  list-style: none;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
  border-radius: 12px;
  width: 180px;
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  pointer-events: none;
  z-index: 10001;
}

.lang-menu.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.lang-menu li {
  padding: 12px 20px;
  cursor: pointer;
  color: #333;
  border-left: 4px solid transparent;
  border-radius: 0 12px 12px 0;
  user-select: none;
  transition: background-color 0.3s ease, color 0.3s ease;

  display: flex;
  align-items: center;
  gap: 10px;
}

.lang-menu li:hover,
.lang-menu li:focus {
  background-color: #ffc655;
  color: white;
  border-left-color: #ffaa00;
  outline: none;
}

.lang-menu li > span.fi {
  width: 24px;
  height: 16px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  flex-shrink: 0;
}

.lang-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.15);
  z-index: 900;
  backdrop-filter: blur(4px);
  transition: opacity 0.3s ease;
}

.lang-overlay.show {
  display: block;
  opacity: 1;
}

.lang-menu li img {
  width: 20px;
  height: 14px;
  object-fit: contain;
  flex-shrink: 0;
}

.card__section {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: -170px;
  position: relative;
}

.card__section {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: -170px;
  position: relative;
}

.info__card {
  width: 592px;
  height: 350px;
  border-radius: 16px;
  padding: 0;
  text-align: center;
  border: 8px solid white;
  overflow: hidden;
}

.video-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.video-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
}

.video-play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  cursor: pointer;
}

.video-play-button span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-40%, -50%);
  width: 0;
  height: 0;
  border-left: 20px solid #000;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
}
#loadingOverlay {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 1);
  z-index: 9999;
}

.loader {
  width: 50px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(farthest-side, #ffa516 94%, #0000) top/8px 8px
      no-repeat,
    conic-gradient(#0000 30%, #ffa516);
  animation: spinLoader 1s infinite linear;
}

@keyframes spinLoader {
  100% {
    transform: rotate(1turn);
  }
}

.brand__section {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin: 50px 0 40px;
  flex-wrap: wrap;
  padding-bottom: 10px;
}

.brand__section img {
  flex-shrink: 0;
  height: auto;
  filter: grayscale(100%);
  opacity: 0.5;
  transition: filter 0.3s ease, opacity 0.3s ease;
}

.brand__section img:hover {
  cursor: pointer;
  filter: grayscale(0%);
  opacity: 1;
}

.funtion h3 {
  font-size: 42px;
  font-weight: 600;
  text-align: center;
  margin-top: 50px;
  margin-bottom: 40px;
  line-height: 52px;
}

.funtion__content {
  display: flex;
  gap: 20px;
}

.card__1 {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.card__1 .funtion__card {
  width: 288px;
  height: 264px;
  border: 1px solid #f2f2f2;
  padding: 24px;
  border-radius: 20px;
}

.card__2 .funtion__card {
  width: 288px;
  height: 544px;
  border: 1px solid #f2f2f2;
  padding: 24px;
  border-radius: 20px;
  box-shadow: 0px 0px 4px 1px rgba(0, 0, 0, 0.02);
}

.card__3 .funtion__card {
  width: 592px;
  height: 264px;
  border: 1px solid #f2f2f2;
  padding: 24px;
  border-radius: 20px;
  box-shadow: 0px 0px 4px 1px rgba(0, 0, 0, 0.02);
}

.card__4 .funtion__card {
  width: 288px;
  height: 264px;
  border: 1px solid #f2f2f2;
  padding: 24px;
  border-radius: 20px;
  box-shadow: 0px 0px 4px 1px rgba(0, 0, 0, 0.02);
}

.flex__card {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.card__4 {
  display: flex;
  gap: 20px;
}

.funtion__card__border {
  width: 48px;
  height: 48px;
  padding: 12px;
  border: 1px solid #f2f2f2;
  border-radius: 12px;
  box-shadow: 0 4px 48px 0 #fff8ec;
}

.funtion__card {
  display: flex;
  flex-direction: column;
}

.funtion__text {
  margin-top: auto;
}

.funtion__text h5 {
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
}

.funtion__text p {
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  color: rgba(85, 80, 77, 1);
}

@media (max-width: 1200px) {
  .funtion__content {
    padding: 20px 20px;
  }
  .card__1 .funtion__card,
  .card__2 .funtion__card,
  .card__3 .funtion__card,
  .card__4 .funtion__card {
    width: 100%;
    word-break: break-all;
  }

  .card__3 .funtion__card {
    width: 100%;
  }

  .card__4 {
    width: 100%;
  }
}

@media (max-width: 960px) {
  .funtion__content {
    flex-direction: column;
    align-items: center;
  }

  .card__1,
  .card__2,
  .card__3,
  .card__4 {
    width: 100%;
    flex-direction: column;
    gap: 20px;
  }

  .card__1 .funtion__card,
  .card__2 .funtion__card,
  .card__3 .funtion__card,
  .card__4 .funtion__card {
    width: 100%;
    height: auto;
  }
}

.benifits {
  margin-top: 150px;
  position: relative;
  padding: 20px 0 300px;
  background: url(../img/benifits.png) center/cover no-repeat;
  z-index: 1;
  margin-bottom: 100px;
}

.benifits::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, #fff5e9 0%, #ffffff 100%, transparent);
  mix-blend-mode: hard-light;
  pointer-events: none;
  z-index: 0;
}

.benifits__title {
  position: relative;
}

.benifits__title h3 {
  margin-top: 20px;
  font-size: 42px;
  font-weight: 600;
  line-height: 52px;
  text-align: center;
  color: black;
}

#text-box {
  font-size: 24px;
  text-align: center;
  width: 400px;
  margin: 0 auto;
  max-width: 100%;
}
#p-box {
  font-size: 20px;
  line-height: 24px;
  width: 400px;
  max-width: 100%;
  text-align: center;
  color: rgba(85, 80, 77, 1);
  margin: auto;
}

@media (max-width: 1200px) {
  .benifits {
    margin-top: 50px;
    padding: 20px 0 150px;
  }
}

.professionally {
  width: 100%;
}

.carousel__buttons {
  display: flex;
}

.carousel__buttons .carousel-button {
  font-size: 1rem;
  margin-right: 10px;
  padding: 0.5rem 0.8rem;
  cursor: pointer;
  color: #454545;
  background-color: white;
  border: 1px solid #f2f2f2;
  border-radius: 50%;
  height: 40px;
  width: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  outline: none;
}

.carousel {
  width: 100%;
  height: auto;
  overflow: hidden;
  display: grid;
  border-radius: 5px;
  grid-template-columns: repeat(6, 100%);
}
.carousel .carousel__item.active {
  transform: scale(1) translateX(-0%);
}
.carousel .carousel__item {
  width: 100%;
  height: auto;
  transform: translateX(-0%) scale(0.9);
  border-radius: 5px;
  transition: all 0.7s ease;
  gap: 30px;
  padding: 10px;
}
.bg-yellow.active,
.bg-brown.active,
.bg-green.active,
.bg-blue.active {
  color: black;
}

.professionally__container {
  display: flex;
  margin-bottom: 50px;
  gap: 20px;
}

.professionally__title {
  display: flex;
  flex-direction: column;
}

.carousel__buttons {
  margin-top: auto;
}

.professionally__title h4 {
  font-size: 42px;
  font-weight: bold;
  line-height: 52px;
}

.professionally__title p {
  font-size: 14px;
  margin-top: 10px;
  line-height: 20px;
}

.corousel__right p {
  font-family: "MyShantell";
  height: 250px;
  overflow: auto;
}

.corousel__right p::-webkit-scrollbar {
  width: 6px;
}

.corousel__right p::-webkit-scrollbar-track {
  border-radius: 3px;
}

.corousel__right p::-webkit-scrollbar-thumb {
  border-radius: 3px;
}

.corousel__right p {
  scrollbar-width: thin;
  scrollbar-color: #000000 white;
}

.corousel__bottom {
  margin-top: 40px;
}

.avatar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px;
}
.avatar__text {
  display: flex;
  align-items: center;
  gap: 20px;
}
.avatar__info h5 {
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
}
.avatar__info p {
  font-size: 14px;
  line-height: 20px;
}
.avatar__img img {
  margin-right: 30px;
}
.avatar__text img {
  width: 60px;
  border-radius: 50%;
}

@media (max-width: 1024px) {
  .carousel__buttons {
    justify-content: center;
  }
  .professionally__container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .professionally__title h4 {
    font-size: 32px;
    line-height: 40px;
  }
  .carousel {
    height: auto;
  }
}

@media (max-width: 768px) {
  .professionally__title h4 {
    font-size: 28px;
    line-height: 36px;
  }
  .professionally__title p {
    font-size: 13px;
  }
  .carousel {
    height: auto;
    grid-template-columns: repeat(6, 100%);
  }
  .carousel .carousel__item {
    height: auto;
  }
  .avatar {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .avatar__text {
    flex-direction: column;
    gap: 10px;
  }
}

@media (max-width: 480px) {
  .professionally__title h4 {
    font-size: 22px;
    line-height: 30px;
  }
  .professionally__title p {
    font-size: 12px;
  }
  .carousel {
    height: auto;
  }
  .carousel .carousel__item {
    height: auto;
    transform: scale(1);
  }
  .avatar__text img {
    width: 50px;
  }
}
.biznes__plan {
  width: 100%;
  height: auto;
  background: linear-gradient(to bottom, #fff9ee 0%, #ffffff 100%);
  padding-bottom: 40px;
}

.biznes__tittle h3 {
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  margin: auto;
  padding-top: 30px;
  font-size: 42px;
  font-weight: bold;
  line-height: 52px;
  width: 50%;
}

.biznes__all__card {
  width: 100%;
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  padding: 20px;
}

.biznes__card {
  flex: 1 1 calc(33.333% - 20px);
  max-width: 389px;
  min-width: 280px;
  height: auto;
  background-color: #ffffff;
  border: 1px solid #f2f2f2;
  border-radius: 20px;
  padding: 24px;
  cursor: pointer;
  transition: all 0.5s ease;
  user-select: none;
  box-sizing: border-box;
}
.biznes__card.active {
  border: 1px solid #ffc655;
  box-shadow: 0 0 0 2px #ffc655;
}

.biznes__card h5 {
  font-size: 16px;
  font-weight: bold;
  line-height: 24px;
}

.biznes__card h6 {
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  color: #868280;
}

.sum {
  display: flex;
  align-items: flex-end;
  gap: 10px;
}

.sum h4 {
  font-size: 32px;
  letter-spacing: -2px;
}

.sum p {
  margin-bottom: 5px;
  font-size: 16px;
  font-weight: 600;
  color: #868280;
}

.biznes__button {
  width: 100%;
  max-width: 341px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 14px;
  background-color: #f2f2f2;
  border-radius: 10px;
  border: none;
  margin-top: 20px;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  cursor: pointer;
  color: #000;

  background-image: linear-gradient(to right, #ffb82b 100%);
  background-size: 0% 100%;
  background-repeat: no-repeat;
  background-position: left;
  transition: background-size 0.7s ease, color 0.7s ease;
}

.biznes__button.active {
  background-color: #fdcc69;
  color: #000;
  background-size: 0% 100%;
}

.biznes__button.active:hover {
  background-size: 100% 100%;
  color: #fff;
}

.biznes__card__context {
  margin-top: 20px;
}
.biznes__card__text {
  margin-top: 15px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.biznes__card__text h6 {
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  color: black;
}
.icon__card {
  filter: grayscale(100%);
}

.icon__card.active {
  filter: none;
}

@media (max-width: 1024px) {
  .biznes__tittle h3 {
    width: 80%;
    font-size: 32px;
    line-height: 40px;
  }
  .biznes__card {
    flex: 1 1 calc(50% - 20px);
  }
}

@media (max-width: 768px) {
  .biznes__tittle h3 {
    width: 90%;
    font-size: 28px;
    line-height: 36px;
  }
  .biznes__card {
    flex: 1 1 100%;
    height: auto;
  }
  .sum h4 {
    font-size: 28px;
  }
  .sum p {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .biznes__tittle h3 {
    font-size: 24px;
    line-height: 32px;
    padding-top: 20px;
  }
  .biznes__card {
    padding: 16px;
  }
  .sum h4 {
    font-size: 24px;
    line-height: 32px;
  }
  .sum p {
    font-size: 12px;
  }
  .biznes__button {
    font-size: 13px;
    height: 44px;
  }
}
.accordion-section {
  display: flex;
  justify-content: space-between;
}

.accordion-item {
  border: 1px solid #ddd;
  border-radius: 20px;
  margin-bottom: 12px;
  background: #fff;
  overflow: hidden;
  transition: all 0.3s ease;
  width: 592px;
}

.accordion {
  width: 100%;
  text-align: left;
  padding: 16px 20px;
  font-size: 16px;
  font-weight: 600;
  border: none;
  background: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
}

.icon {
  font-size: 20px;
  transition: transform 0.3s ease;
}

.panel {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.panel p {
  margin: 15px 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  color: rgba(85, 80, 77, 1);
  word-break: normal;
}

.accordion-item.open .panel {
  max-height: 400px;
  padding: 15px 20px;
}

.accordion-item.open .icon {
  transform: rotate(45deg);
}

.accardion__title {
  width: 500px;
  max-width: 100%;
}

.acardion__button {
  width: 158px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  outline: none;
  margin-top: 20px;
  border-radius: 10px;
}

.accordion__container {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

.accardion__title h3 {
  font-size: 42px;
  line-height: 52px;
}

.accardion__title p {
  font-size: 14px;
  line-height: 20px;
}

@media (max-width: 1000px) {
  .accordion-section {
    flex-direction: column;
    padding: 0 20px;
    gap: 20px;
  }
  .panel {
    width: auto;
  }

  .accordion__container {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
  }

  .accordion-item {
    width: 100%;
  }
}
@media (max-width: 480px) {
  .accardion__title h3 {
    font-size: 24px;
    line-height: 32px;
  }

  .accordion {
    font-size: 14px;
    padding: 12px 15px;
  }

  .icon {
    font-size: 16px;
  }

  .acardion__button {
    width: 120px;
    height: 40px;
    font-size: 13px;
  }
}

.bottom__top {
  position: relative;
  padding: 100px 0;
  background: url(../img/bottom__img.png) center/cover no-repeat;
  z-index: 1;
}

.bottom__top::before {
  content: "";
  position: absolute;
  background: linear-gradient(to left, #fff9ee 0%, #ffffff 100%, transparent);
  inset: 0;
  mix-blend-mode: hard-light;
  pointer-events: none;
  z-index: 0;
}

.bottom__top__content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.bottom__top__title {
  max-width: 900px;
  margin: 0 auto 30px;
  padding: 0 20px;
}

.bottom__top__title h3 {
  font-size: 42px;
  font-weight: bold;
  line-height: 1.3;
}
.bottom__top__input {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.form-group {
  width: 100%;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.form-control-input {
  width: 100%;
  height: 52px;
  border: 2px solid #f2f2f2;
  outline: none;

  border-radius: 10px;
  padding: 0 16px;
  font-size: 15px;
}

.form-control-input:focus {
  border-color: #ffaa00;
  box-shadow: 0 0 0 3px rgba(255, 170, 0, 0.3);
}

.form-control-submit-button {
  width: 100%;
  max-width: 500px;
  height: 52px;
  border: none;
  border-radius: 10px;
  background-color: #ffaa00;
  color: black;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}

.form-control-submit-button:hover {
  background-color: #e69900;
}

@media (max-width: 1000px) {
  .bottom__top__title h3 {
    font-size: 32px;
  }
}

@media (max-width: 768px) {
  .bottom__top {
    padding: 60px 0;
  }
  .bottom__top__title h3 {
    font-size: 26px;
  }
  .bottom__top__input {
    flex-direction: column;
    align-items: center;
  }
  .form-group,
  .form-control-submit-button {
    max-width: 350px;
    width: 100%;
  }
}

@media (max-width: 480px) {
  .bottom__top {
    padding: 40px 0;
  }
  .bottom__top__title h3 {
    font-size: 22px;
  }
  .form-group,
  .form-control-submit-button {
    max-width: 300px;
    height: 44px;
    font-size: 13px;
  }
}

.iti__country-list {
  background: #fff;
  border-radius: 8px;
  border: 1px solid #ffd8b5;
  box-shadow: 0 4px 12px rgba(255, 140, 0, 0.15);
  font-size: 13px;
  overflow-y: auto;
  padding: 3px 0;
}

.iti__country-list::-webkit-scrollbar {
  width: 5px;
}
.iti__country-list::-webkit-scrollbar-thumb {
  background: #ffb366;
  border-radius: 5px;
}
.iti__country-list::-webkit-scrollbar-thumb:hover {
  background: #ff944d;
}

.iti__country {
  padding: 6px 10px;
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  border-radius: 6px;
}

.iti--separate-dial-code .iti__selected-flag {
  background-color: white !important;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  user-select: none;
}
.footer {
  width: 100%;
  min-height: 332px;
  background-color: #251e1a;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 40px 20px;
  box-sizing: border-box;
  overflow-x: hidden;
}

.footer__logo img {
  width: 150px;
  max-width: 100%;
  height: auto;
}

.footer__content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap:210px;
  width: 100%;
}

.footer__p {
  margin-top: 20px;
  max-width: 500px;
}
.footer__p span {
  font-size: 14px;
  color: rgba(182, 180, 178, 1);
  line-height: 16px;
}
.footer__all__footers {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.footer__all__footers ul {
  line-height: 35px;
  width: 200px;
  font-size: 14px;
  font-weight: 400;
  color: rgba(182, 180, 178, 1);
}

.footer__hr {
  margin-top: 20px;
  width: 100%;
  border: 1px solid #55504d;
}

.footer__end {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
  margin-top: 20px;
}
.footer__end p {
  font-size: 14px;
  line-height: 16px;
  font-weight: 500;
  color: rgba(182, 180, 178, 1);
}

.footer__end__right {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.footer__end__right span {
  font-size: 14px;
  line-height: 16px;
  font-weight: 500;
  color: rgba(182, 180, 178, 1);
}
@media (max-width: 1000px) {
  .footer__content,
  .footer__all__footers,
  .footer__end {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer__p {
    width: 100%;
    margin-bottom: -10px;
  }

  .footer__all__footers ul {
    width: auto;
    text-align: center;
  }
}

@media (max-width: 576px) {
  .footer__logo img {
    width: 120px;
  }

  .footer__p {
    font-size: 14px;
  }

  .footer__all__footers ul {
    line-height: 28px;
  }
}

.carousel-wrapper {
  position: relative;
  width: 700px;
  height: 300px;
  margin: auto;
}
.icons-container {
  position: relative;
  width: 100%;
  height: 300px;
}
.icon-item {
  position: absolute;
  width: 60px;
  height: 60px;
  background: #fff;
  z-index: 60;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #444;
  cursor: pointer;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  border: 2px solid #eee;
  overflow: hidden;
  transition: all 0.8s ease-in-out;
}

.icon-item.active {
  background: #ffb400;
  color: white;
  opacity: 1;
}

.text-box {
  margin-top: -130px;
  font-size: 24px;
  max-width: 500px;
  position: absolute;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  position: relative;
  z-index: 999;
}

#backToTop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  padding: 10px 15px;
  font-size: 16px;
  background: #e69900;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease;
  z-index: 9999;
}

#backToTop.show {
  opacity: 1;
  visibility: visible;
}

#backToTop:hover {
  background: #fdcc69;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
