footer.footer {
  margin-top: 80px;
}

.foot__wrapper {
  background-color: #23429b;
}

.inner-foot {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-top: 40px;
  padding-bottom: 32px;
}

ul.contactItems {
  padding: 21px 0 48px;
}

.footer ul li {
  display: block;
  padding: 10px 0px 5px;
  max-width: max-content;
}

.foot-column li a {
  color: #fff;
  font-size: 15px;
  line-height: 19px;
  display: flex;
  align-items: center;
  position: relative;
  padding-bottom: 5px;
}

.foot-column li a img {
  margin-right: 10px;
}

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

.applinksWrapper img:hover {
  transform: scale(1.02);
}

.socialIconsWrapper {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 25px;
}

.socialIconsWrapper a:hover {
  transform: scale(1.02);
}

.inner-foot .col-head {
  color: #fff;
  font-size: 17px;
  line-height: 23px;
  padding-bottom: 26px;
  text-decoration: underline;
  font-weight: 500;
  /* font-family: 'Circular-Medium'; */
}

.foot-column ul li a:after {
  content: '';
  width: 0;
  height: 1px;
  position: absolute;
  bottom: 5px;
  left: 0;
  right: 0;
  background: #fff;
  border-radius: 15px;
  transition: width 0.2s;
}

.foot-column ul li a:hover:after {
  width: 100%;
  transition: width 0.2s;
}

.footDropDownsWrapper {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
  margin-top: 12px;
}

.footDropDown button {
  display: flex;
  align-items: center;
  padding: 14px 20px;
  column-gap: 15px;
  justify-content: flex-start;
  background-color: #fff;
  cursor: pointer;
  outline: none;
  border-radius: 10px;
  border: none;
  min-width: 260px;
  width: 100%;
  position: relative;
}

.footDropDown button span {
  color: #1b1a2e;
  font-size: 17px;
  font-weight: 500;
  /* font-family: 'Circular-Medium'; */
  line-height: normal;
  display: block;
}

.footDropDown button .plusIcon {
  position: absolute;
  right: 18px;
}

.dropDownMenu {
  padding: 10px 0 0 20px;
  position: absolute;
  width: 100%;
  left: 0;
  background-color: #fff;
  z-index: 1;
  top: 85%;
  border-radius: 0 0 10px 10px;
  display: none;
  max-height: 250px;
  overflow-y: auto;
}

.dropDownMenu a {
  display: block;
  color: #1b1a2e;
  font-size: 15px;
  line-height: 19px;
  padding-bottom: 16px;
}

.footDropDown {
  position: relative;
}

.dropDownMenu.show {
  display: block;
}

.dropDownMenu a:hover {
  color: #117bd4;
}

.dropDownMenu::-webkit-scrollbar {
  width: 5px;
  border-radius: 100px;
}

.dropDownMenu::-webkit-scrollbar-track {
  background: #d5e2ef;
  border-radius: 100px;
}

.dropDownMenu::-webkit-scrollbar-thumb {
  background: #117bd4;
}

.dropDownMenu::-webkit-scrollbar-thumb:hover {
  background: #555;
}

.ft-drp-dwn .plusIcon.rotate {
  transform: rotate(45deg);
}

.paymentWrapper {
  margin-top: 41px;
}

.newPaymentMethods p {
  color: #fff;
  font-size: 17px;
  font-weight: 500;
  /* font-family: 'Circular-Medium'; */
  line-height: normal;
  padding-bottom: 8px;
}

.btmFooter {
  padding: 14px 0 21px;
  border-top: 1px solid #d4d4d4;
}

.copyrightText {
  color: #fff;
  font-size: 12px;
  font-weight: 450;
  line-height: normal;
}

.disclaimerWrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 25px;
}

.diclraimerText {
  color: #fff;
  font-size: 12px;
  font-weight: 450;
  line-height: normal;
  max-width: 615px;
}

.diclraimerText strong {
  font-weight: 500;
  font-size: 14px;
  /* font-family: 'Circular-Medium'; */
}

.securityWrapper {
  display: flex;
  align-items: center;
  column-gap: 20px;
  justify-content: center;
  padding-top: 25px;
}

.dmca {
  transition: 0.2s;
}

.dmca:hover {
  transform: scale(1.04);
}

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

@media (max-width: 991px) {
  .inner-foot {
    flex-wrap: wrap;
    row-gap: 30px;
  }
}

@media (max-width: 767px) {
  .inner-foot {
    flex-wrap: wrap;
    row-gap: 30px;
    justify-content: flex-start;
    column-gap: 50px;
  }

  .order-0 {
    order: 0;
  }

  .order-1 {
    order: 2;
  }

  .order-2 {
    order: 3;
  }

  .order-3 {
    order: 1;
  }

  .disclaimerWrapper {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
}

@media (max-width: 575px) {
  .order-1 {
    order: 1;
  }

  .order-2 {
    order: 2;
  }

  .order-3 {
    order: 3;
  }

  .securityWrapper {
    flex-wrap: wrap;
  }

  /* footer.footer {
    margin-top: 60px;
  } */
}