/* sec-7 */
.footer {
  display: flex;
  width: 100%;
  position: relative;
  z-index: 5;
  background-color: #2e2e2e;
}

.footer-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.footer-wrapper {
  background-color: #fff;
  padding: 2rem;
  border-radius: 40px;
}

.footer-wrapper .stay-connected {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #cdcdcd;
  padding-bottom: 2rem;
  margin-bottom: 2rem;
}

.footer-wrapper .stay-connected .title {
  font-size: 2rem;
  color: #000000;
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.footer-wrapper .stay-connected .sub-title {
  font-size: 1rem;
  font-weight: 300;
}

.footer-wrapper .stay-connected .input-container {
  box-shadow: 0px 0px 11px -6px #000;
  border-radius: 50px;
  overflow: hidden;
}

.footer-wrapper .stay-connected .input-container input {
  border: none;
  padding: 0.75rem 1.2rem;
  font-size: 0.9rem;
}

.footer-wrapper .stay-connected .input-container input:focus {
  outline: 0;
}

.footer-wrapper .stay-connected .input-container button {
  padding: 0.5rem 1rem;
  margin: 0.32rem;
  border-radius: 50px;
  background-color: #000;
  color: #fff;
  font-size: 1rem;
  font-weight: 400;
}

.footer-wrapper .footer-content-wrapper {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.footer-wrapper .footer-content-wrapper .logo-container {
  width: 200px;
  min-width: 200px;
  height: auto;
}

.footer-wrapper .footer-content-wrapper .logo-container img {
  width: 100%;
  height: auto;
}

.footer-wrapper .footer-content {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 2rem;
}

.footer-wrapper .footer-content ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-wrapper .footer-content ul li {
  font-size: 0.9rem;
  line-height: 1.4rem;
}

.footer-wrapper .footer-content ul li h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  line-height: 1.5rem;
  margin-bottom: 1rem;
}

.footer-wrapper .footer-content ul li a {
  text-decoration: none;
  color: #000;
}

.footer-wrapper .footer-content ul li.social {
  display: flex;
  gap: 1rem;
}

.footer-wrapper .footer-content ul li.social svg {
  width: 1.6rem;
  height: 1.6rem;
  color: #515151;
}

.footer-container .copy-right {
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  text-align: center;
}

.footer-wrapper .footer-content ul li.social a {
  transform: translateY(0px);
  transition: all 0.3s ease-in-out;
}

.footer-wrapper .footer-content ul li.social a:hover {
  transform: translateY(-3px);
}

.footer-wrapper .footer-content ul.quick-link li {
  transform: translateX(0px);
  transition: all 0.3s ease-in-out;
}

.footer-wrapper .footer-content ul.quick-link li:hover {
  transform: translateX(3px);
}

@media (max-width: 550px) {
  .footer-wrapper .stay-connected {
    flex-direction: column;
    justify-content: left;
    gap: 2rem;
  }

  .footer-wrapper .footer-content-wrapper {
    flex-direction: column;
  }

  .footer-wrapper .footer-content ul {
    text-align: center;
  }

  .footer-wrapper .footer-content ul li.social {
    justify-content: center;
  }
}
