@import url('variables.css');

body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
}

.site-footer {
  position: relative !important;

  width: 100%;
  /* background-color: rgb(22, 21, 21); */
  background: linear-gradient(rgba(1, 1, 1, 0.789), rgba(26, 26, 26, 0.674)),
    url('https://images.unsplash.com/photo-1756786538245-4edb1c23104d?ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&q=80&w=2064')
      center/cover no-repeat;

  z-index: 50;
}

.footer-container {
  width: 100%;
  height: 100%;
  /* background-image: url(/assets/img/others/footer-map.png); */
  background-position: 90% 95%;
  background-repeat: no-repeat;
  background-size: cover;
}

.footer-main-container {
  width: var(--screen-max-width);
  max-width: calc(100% - var(--desktop-screen-padding-large));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 45px 0px;
  padding-bottom: 10px;
  gap: 10px;
  border-bottom: 1px solid rgb(73, 73, 73);
}

.footer-div {
  flex: 1 1 300px; /* 👈 this is the trick */
  min-width: 300px; /* will never shrink below 300px */
  max-width: 1fr; /* allow it to grow */

  min-height: 300px;
  /* background-color: rgba(185, 185, 185, 0.03); */
}

.footer-logo-container {
  width: 70%;
}

.footer-logo-container img {
  width: 80%;
  margin-left: -8px;
}

.footer-para {
  margin: 0;
  color: var(--text-color-white);
  margin-bottom: 0px;
}
.footer-div ul {
  list-style: none;

  padding: 0;
}
.footer-div ul li {
  display: flex;
  align-items: center;
  gap: 15px;
  color: var(--text-color-grey-white);
  font-size: var(--font-size-normal);
  margin: 15px 0px;
}

.footer-div ul li a {
  color: var(--text-color-grey-white);
  text-decoration: none;
}

.footer-div ul li div {
  width: 25px;
  height: 25px;
}
.footer-div ul li div img {
  width: 100%;
}
.footer-title {
  color: var(--text-color-grey-white);
  font-weight: var(--font-weight-medium);
  font-size: var(--font-size-sub-title);
  margin-bottom: 20px;
}

.footer-sub-title {
  color: var(--text-color-grey-white);
  font-weight: var(--font-weight-medium);
  font-size: var(--font-size-medium);
  margin-bottom: 8px;
  margin-top: 20px;
}
.footer-social-container {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}
.social-icon-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background-color: var(--text-color-white);
}
.social-icon-container img {
  width: 70%;
}

.newsletter-container {
  width: 100%;
  background-color: var(--text-color-white);
  border-radius: var(--border-radius-small);
  display: flex;
  overflow: hidden;
  margin-top: 20px;
}

.input-container {
  flex: 3;
  font-size: var(--font-size-normal);
  padding: 12px;
  border: none;
  background-color: var(--text-color-white);
}
.input-container:focus {
  outline: none;
}
.submit-btn-div {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;

  background-color: var(--primary-theme-color);
  color: var(--text-color-white);
  font-size: var(--font-size-normal);
}
.copyright-div {
  padding: 20px 0px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--text-color-white);
  text-align: center;
}
