/* ?@__ ---- footer top ----__@ */

.footer__fluid {
  width: 100%;
  /* padding: 0px 15px; */
  margin: 0 auto;
}

.footer__section .footer__top {
  background-color: #fafafa;
  box-shadow: 0 1px 0 0 #ececec, 0 -1px 0 0 #ececec;
  padding: 50px 0px 30px;
}

.footer__section .footer__top .footer__top_inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer__section .footer__top .footer__top_col {
  padding: 0px 15px;
  width: 100%;
}

/* image */
.footer__section .footer__logo {
  margin-bottom: 24px;
}

.footer__section .footer__logo img {
  width: 125px;
  height: 42px;
  display: block;
  object-fit: contain;
}

/* company__info */
.footer__section .company__info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer__section .company__info p,
.footer__section .footer__nav_list li a,
.footer__section .get__in_touch .footer__nav_list li p,
.footer__section .get__in_touch .footer__nav_list li span {
  font-size: 14px;
  line-height: 22px;
  font-weight: 400;
  color: #555555;
}

/* social */
.footer__section .social__nav,
.footer__section .footer__nav_list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
}

.footer__section .social__nav {
  gap: 14px;
}

.footer__section .social__nav a,
.footer__section .footer__nav_list li a {
  display: flex;
  text-decoration: none;
}

.footer__section .footer__top_nav .footer__nav_list,
.footer__section .get__in_touch .footer__nav_list {
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.footer__section .footer__bottom_nav .footer__nav_list {
  gap: 16px;
}

.footer__section .footer__nav_title__wrapper {
  margin-bottom: 24px;
}

.footer__section .footer__nav_title {
  font-size: 20px;
  line-height: 28px;
  font-weight: 700;
  color: #333;
}

.footer__section .get__in_touch .footer__nav_list li {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 1px 0 0 #ececec;
  padding-bottom: 4px;
}

.footer__section .form__control_wrapper {
  position: relative;
}

.footer__section .btn {
  font-size: 14px;
  line-height: 22px;
  font-weight: 600;
  color: #fff;
  border: 1px solid var(--primaryColor);
  background-color: transparent;
}

.footer__section .btn__submit {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  background-color: var(--primaryColor);
  height: 44px;
  padding: 0px 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0px 5px 5px 0px;
  text-transform: uppercase;
}

.footer__section .form__control {
  height: 44px;
  width: 100%;
  padding: 0px 125px 0px 15px;
  border: none;
  outline: none;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 14px;
  line-height: 22px;
  font-weight: 400;
  color: #555;
}

.footer__section .form__control_wrapper .form__control,
.footer__section .form__control_wrapper .Subscribe__btn {
  height: 40px;
}

.footer__section .form__control_wrapper .Subscribe__btn {
  padding: 0px 19px;
  text-transform: capitalize;
}

.footer__section .newsletter__form,
.footer__section .payment__method {
  margin-top: 20px;
}

/* ?@__ ---- footer bottom ----__@ */

.footer__section .footer__bottom {
  background-color: #fff;
  box-shadow: 0 1px 0 0 #ececec;
  padding: 17px 0;
}

.footer__section .footer__bottom_col {
  position: relative;
  display: flex;
  align-items: center;
  /* width: calc(100% / 3); */
}

.footer__section .footer__bottom_inner {
  display: flex;
  align-items: center;
  justify-content: space-between;

  flex-direction: column;
  gap: 20px;
}

.footer__section .scoket__text {
  font-size: 14px;
  line-height: 22px;
  font-weight: 400;
  color: #555555;
}

.footer__section .footer__bottom_col:nth-child(2) {
  justify-content: center;
}

.footer__section .payment__method img {
  width: max-content;
  height: 100%;
  display: block;
  object-fit: contain;
}

/*  =================================================================== */
/* ================ county and language selector ================ */
/*  =================================================================== */

.footer__section .country__selector_wrapper,
.footer__section .language__selector_wrapper {
  position: relative;
}

.footer__section .selected__country,
.footer__section .selected__language,
.footer__section .country__name_flag,
.footer__section .dropdown__icon {
  display: flex;
  align-items: center;
}

.footer__section .country__name_flag {
  gap: 6px;
}

.footer__section .country__flag img {
  display: flex;
}

.footer__section .country__name,
.footer__section .language__name {
  font-size: 14px;
  line-height: 22px;
  font-weight: 400;
  color: #555555;
  transition: 0.3s;
}

.footer__section .country__selector_wrapper .country__name {
  text-transform: uppercase;
}

/* country list */
.footer__section .country__list,
.footer__section .language__list {
  position: absolute;
  bottom: calc(100% + 20px);
  right: 0;
  margin: 0;
  padding: 15px;
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  box-shadow: 0 1px 5px 2px rgba(0, 0, 0, 0.1);
  background-color: #f7f7f7;
  border-radius: 3px;
  z-index: 10;
  transform: translateY(20px);
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s, visibility 0.3s, transform 0.3s,
    -webkit-transform 0.3s;
}

.footer__section .country__list li a,
.footer__section .language__list li a {
  display: flex;
  align-items: center;
  gap: 5px;
  text-decoration: none;
  cursor: pointer;
}

.footer__section .country__list li:hover .country__name,
.footer__section .language__list li:hover .language__name {
  color: var(--primaryColor);
}

.footer__section .language__selector_wrapper:hover .language__list,
.footer__section .country__selector_wrapper:hover .country__list {
  visibility: visible;
  opacity: 1;
  transform: translateY(8px);
}

@media (min-width: 724px) {
  .footer__section .footer__top .footer__top_inner {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .footer__section .footer__top .footer__top_col {
    width: calc(100% / 2 - 15px);
  }
}

@media (min-width: 972px) {
  .footer__fluid {
    width: 972px;
    padding: 0;
  }

  .footer__section .footer__top {
    padding: 80px 0px 30px;
  }

  .footer__section .footer__top .footer__top_inner {
    flex-direction: row;
    justify-content: space-between;
  }

  .footer__section .footer__top .footer__top_col {
    padding: 0px 15px;
    width: calc(100% / 4 - 10px);
  }

  .footer__section .footer__bottom_col:nth-child(3) {
    justify-content: flex-end;
    margin-left: auto;
  }

  .footer__section .footer__top .footer__top_col:nth-child(2) {
    max-width: 200px;
  }

  .footer__section .footer__bottom_inner {
    flex-direction: row;
  }

  .footer__section .footer__bottom_col {
    width: calc(100% / 3);
  }
}

@media (min-width: 1220px) {
  .footer__fluid {
    width: 1220px;
  }
}