@import url("https://fonts.googleapis.com/css2?family=Mukta:wght@200;300;400;500;600;700;800&family=Nunito:ital,wght@0,200..1000;1,200..1000&family=Outfit:wght@100;200;300;400;500;600;700;800;900&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");
.footer-3 .footer__top {
  padding: 60px 30px;
  background: var(--theme-color-500);
  word-break: break-word;
}
@media (max-width: 768px) {
  .footer-3 .footer__top {
    padding: 30px 0;
  }
}
.footer-3 .footer__grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  grid-gap: 30px;
}
@media (max-width: 575px) {
  .footer-3 .footer__grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
.footer-3 .footer__grid-content:nth-child(1) {
  grid-column: span 3;
}
@media (max-width: 1024px) {
  .footer-3 .footer__grid-content:nth-child(1) {
    grid-column: span 4;
  }
}
@media (max-width: 575px) {
  .footer-3 .footer__grid-content:nth-child(1) {
    grid-column: span 1;
  }
}
.footer-3 .footer__grid-content:nth-child(2) {
  grid-column: span 3;
}
@media (max-width: 1024px) {
  .footer-3 .footer__grid-content:nth-child(2) {
    grid-column: span 4;
  }
}
@media (max-width: 575px) {
  .footer-3 .footer__grid-content:nth-child(2) {
    grid-column: span 1;
  }
}
.footer-3 .footer__grid-content:nth-child(3) {
  grid-column: span 2;
}
@media (max-width: 1024px) {
  .footer-3 .footer__grid-content:nth-child(3) {
    grid-column: span 8;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 30px;
  }
}
@media (max-width: 575px) {
  .footer-3 .footer__grid-content:nth-child(3) {
    grid-column: span 1;
    grid-template-columns: repeat(1, 1fr);
  }
}
.footer-3 .footer__grid-content .content__wrapper:not(:last-child) {
  margin-bottom: 30px;
}
.footer-3 .footer__title {
  font-size: 20px;
  font-weight: bold;
  color: #fff;
  margin-bottom: 20px;
  border-bottom: 1px solid #ffffff3b;
  padding-bottom: 10px;
}
@media (max-width: 767px) {
  .footer-3 .footer__title {
    font-size: 18px;
  }
}
.footer-3 .footer__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-3 .footer__list-item {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 10px;
}
.footer-3 .footer__list-item .icon {
  min-width: 110px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  grid-gap: 10px;
  color: #fff;
  padding-bottom: 4px;
}
.footer-3 .footer__list-item .icon svg {
  display: flex;
  font-size: 16px;
}
.footer-3 .footer__list-item .contact {
  display: flex;
}
.footer-3 .footer__list-item a {
  text-align: left;
  gap: 10px;
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  line-height: 1.4;
  transition: all 0.2s ease-in-out;
}
.footer-3 .footer__list-item a:hover {
  opacity: 0.7;
}
@media (max-width: 767px) {
  .footer-3 .footer__list-item a {
    font-size: 16px;
  }
}
.footer-3 .footer__list-box {
  display: flex;
  gap: 20px;
}
.footer-3 .footer__list-box .footer__list {
  position: relative;
}
.footer-3 .footer__list-box .footer__list:not(:last-child)::before {
  content: "";
  position: absolute;
  right: -10px;
  height: 100%;
  width: 1px;
  background-color: #ffffff3b;
}
@media (max-width: 575px) {
  .footer-3 .footer__list-box .footer__list:last-child::before {
    left: -20px;
  }
}
@media (max-width: 420px) {
  .footer-3 .footer__list-box .footer__list:last-child::before {
    left: -15px;
  }
}
.footer-3 .footer__bottom {
  position: relative;
  background-color: var(--theme-color-400);
  padding: 20px 30px;
}
.footer-3 .footer__bottom-flex {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
}
@media (max-width: 1199px) {
  .footer-3 .footer__bottom-flex {
    flex-wrap: wrap;
    gap: 40px;
    row-gap: 20px;
  }
}
@media (max-width: 575px) {
  .footer-3 .footer__bottom-flex {
    flex-direction: column;
    text-align: center;
    row-gap: 15px;
  }
}
.footer-3 .footer__bottom-flex > div {
  position: relative;
}
.footer-3 .footer__bottom-flex > div:not(:last-child)::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 50px;
  background-color: #fff;
  left: -30px;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 1199px) {
  .footer-3 .footer__bottom-flex > div:not(:first-child)::after {
    left: -20px;
    height: 40px;
  }
}
@media (max-width: 575px) {
  .footer-3 .footer__bottom-flex > div:not(:first-child)::after {
    display: none;
  }
}
.footer-3 .footer__bottom-title {
  margin-bottom: 0;
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  margin-bottom: 2px;
}
@media (max-width: 1199px) {
  .footer-3 .footer__bottom-title {
    font-size: 14px;
  }
}
@media (max-width: 575px) {
  .footer-3 .footer__bottom-title {
    font-size: 12px;
  }
}
.footer-3 .footer__bottom-info p {
  font-size: 18px;
  font-weight: 500;
  color: #fff;
}
@media (max-width: 1199px) {
  .footer-3 .footer__bottom-info p {
    font-size: 16px;
  }
}
@media (max-width: 575px) {
  .footer-3 .footer__bottom-info p {
    font-size: 14px;
  }
}
.footer-3 .footer__bottom .footer__download {
  display: flex;
  align-items: center;
  gap: 60px;
}
@media (max-width: 1199px) {
  .footer-3 .footer__bottom .footer__download {
    gap: 40px;
  }
}
@media (max-width: 991px) {
  .footer-3 .footer__bottom .footer__download {
    width: 100%;
    justify-content: center;
  }
}
@media (max-width: 575px) {
  .footer-3 .footer__bottom .footer__download {
    gap: 15px;
    flex-wrap: wrap;
  }
}
@media (max-width: 991px) {
  .footer-3 .footer__bottom .footer__download::after {
    display: none;
  }
}
.footer-3 .footer__bottom .footer__download > div:not(:first-child)::before {
  content: "";
  position: absolute;
  left: -30px;
  height: 100%;
  width: 1px;
  background-color: #d0e4ff;
}
@media (max-width: 1199px) {
  .footer-3 .footer__bottom .footer__download > div:not(:first-child)::before {
    left: -20px;
  }
}
@media (max-width: 575px) {
  .footer-3 .footer__bottom .footer__download > div:not(:first-child)::before {
    display: none;
  }
}
.footer-3 .footer__bottom .google__play,
.footer-3 .footer__bottom .app__store {
  position: relative;
  text-align: start;
}
.footer-3 .footer__bottom .google__play a,
.footer-3 .footer__bottom .app__store a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Poppins", sans-serif;
}
@media (max-width: 575px) {
  .footer-3 .footer__bottom .google__play a,
  .footer-3 .footer__bottom .app__store a {
    gap: 5px;
  }
}
.footer-3 .footer__bottom .google__play a .icon,
.footer-3 .footer__bottom .app__store a .icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--theme-color);
}
@media (max-width: 1199px) {
  .footer-3 .footer__bottom .google__play a .icon,
  .footer-3 .footer__bottom .app__store a .icon {
    width: 40px;
    height: 40px;
  }
}
@media (max-width: 575px) {
  .footer-3 .footer__bottom .google__play a .icon,
  .footer-3 .footer__bottom .app__store a .icon {
    width: 35px;
    height: 35px;
  }
}
.footer-3 .footer__bottom .google__play a .icon img,
.footer-3 .footer__bottom .app__store a .icon img {
  width: 20px;
}
@media (max-width: 1199px) {
  .footer-3 .footer__bottom .google__play a .icon img,
  .footer-3 .footer__bottom .app__store a .icon img {
    width: 17px;
  }
}
@media (max-width: 575px) {
  .footer-3 .footer__bottom .google__play a .icon img,
  .footer-3 .footer__bottom .app__store a .icon img {
    width: 15px;
  }
}
.footer-3 .footer__bottom .google__play a .info,
.footer-3 .footer__bottom .app__store a .info {
  flex: 1;
}
.footer-3 .footer__bottom .google__play a .info span,
.footer-3 .footer__bottom .app__store a .info span {
  color: #fff;
  font-size: 14px;
  font-weight: 300;
  display: flex;
}
@media (max-width: 1199px) {
  .footer-3 .footer__bottom .google__play a .info span,
  .footer-3 .footer__bottom .app__store a .info span {
    font-size: 12px;
  }
}
@media (max-width: 575px) {
  .footer-3 .footer__bottom .google__play a .info span,
  .footer-3 .footer__bottom .app__store a .info span {
    font-size: 11px;
  }
}
.footer-3 .footer__bottom .google__play a .info h6,
.footer-3 .footer__bottom .app__store a .info h6 {
  margin-bottom: 0;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
}
@media (max-width: 1199px) {
  .footer-3 .footer__bottom .google__play a .info h6,
  .footer-3 .footer__bottom .app__store a .info h6 {
    font-size: 15px;
  }
}
@media (max-width: 575px) {
  .footer-3 .footer__bottom .google__play a .info h6,
  .footer-3 .footer__bottom .app__store a .info h6 {
    font-size: 12px;
  }
}
.footer-3 .footer__logo img {
  width: 85px;
  height: auto;
}
@media (max-width: 767px) {
  .footer-3 .footer__social-share {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .footer-3 .footer__social-share::after {
    display: none;
  }
}
.footer-3 .footer__social-share .social__share {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
@media (max-width: 575px) {
  .footer-3 .footer__social-share .social__share {
    gap: 5px;
  }
}
.footer-3 .footer__social-share .social__share a {
  display: inline-block;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--theme-color);
  transition: all 0.3s ease-in-out;
}
@media (max-width: 1199px) {
  .footer-3 .footer__social-share .social__share a {
    width: 40px;
    height: 40px;
  }
}
@media (max-width: 575px) {
  .footer-3 .footer__social-share .social__share a {
    width: 35px;
    height: 35px;
  }
}
.footer-3 .footer__social-share .social__share a:hover {
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
}
.footer-3 .footer__social-share .social__share a svg,
.footer-3 .footer__social-share .social__share a i {
  color: #ffffff;
  font-size: 20px;
}
@media (max-width: 1199px) {
  .footer-3 .footer__social-share .social__share a svg,
  .footer-3 .footer__social-share .social__share a i {
    font-size: 18px;
  }
}
@media (max-width: 575px) {
  .footer-3 .footer__social-share .social__share a svg,
  .footer-3 .footer__social-share .social__share a i {
    font-size: 15px;
  }
}
.footer-3 .footer__social {
  margin-top: 30px;
}
.footer-3 .footer__social .footer__list .icon {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  min-width: unset;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.2);
  padding-bottom: 0px;
}
.footer-3 .footer__social .footer__list .icon svg,
.footer-3 .footer__social .footer__list .icon i {
  font-size: 16px;
}
.footer-3 .footer__social .footer__list-item a {
  padding-top: 2px;
  flex: 1;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  white-space: normal;
  overflow: hidden;
  line-height: 1.5;
}

.footer__timeTable {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__timeTable h5 {
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .footer__timeTable h5 {
    font-size: 16px;
  }
}
.footer__timeTable-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  position: relative;
}
.footer__timeTable-flex {
  display: flex;
  grid-gap: 20px;
  align-items: center;
  justify-content: space-between;
}
.footer__timeTable-flex h6 {
  margin-bottom: 0;
  font-size: 16px;
  color: #afc8f1;
  font-weight: 500;
  min-width: 130px;
}
@media (max-width: 767px) {
  .footer__timeTable-flex h6 {
    font-size: 16px;
  }
}
.footer__timeTable-flex span {
  font-size: 16px;
  font-weight: 500;
  color: #afc8f1;
  position: relative;
}
.footer__timeTable-flex span::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -20px;
  width: 2px;
  height: 18px;
  background: #afc8f1;
}
@media (max-width: 575px) {
  .footer__timeTable-flex span {
    font-size: 12px;
  }
}
.footer__timeTable-flex span svg,
.footer__timeTable-flex span i {
  color: #ffd2d6;
  margin-right: 5px;
}
