footer {
  background: #303030;
  border-radius: 24px;
  display: flex;
  flex-direction: row;
  align-items: start;
  gap: 40px;
  padding: 60px 50px;
  margin-top: 60px;
}

footer .left-footer,
footer .right-footer {
  flex: 50%;
}

footer .left-footer {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.left-footer header {
  color: #fff;
  text-transform: lowercase;
  font-size: 40px;
  font-family: "Playfair Display", serif;
}

.left-footer .links {
  display: flex;
  flex-direction: row;
  gap: 60px;
}

.left-footer .links div {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.left-footer .links a {
  color: #fff;
  text-decoration: none;
  font-family: "Work Sans", sans-serif;
}

.left-footer .socials i {
  color: #ffdd81;
  font-size: 20px;
}

.left-footer .foot-text {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.left-footer .foot-text p {
  color: #fff;
  font-size: 16px;
  font-family: "Work Sans", sans-serif;
}

footer .right-footer .foot-box {
  background: #ffdd81;
  padding: 50px;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.right-footer .foot-box header {
  font-size: 44px;
  font-weight: normal;
  font-family: "Playfair Display", serif;
  text-transform: capitalize;
}

.right-footer .foot-box header span {
  font-weight: 800;
  font-style: italic;
}

.right-footer .foot-box p {
  font-family: "Work Sans", sans-serif;
  width: 90%;
}

.foot-box button {
  padding: 19px 40px;
  border-radius: 12px;
  outline: none;
  font-size: 20px;
  text-transform: capitalize;
  cursor: pointer;
  border: none;
  background: #303030;
  color: #fff;
  width: fit-content;
}

@media (max-width: 768px) {
  footer {
    flex-direction: column;
    align-items: start;
    gap: 40px;
    padding: 30px 40px;
    margin-top: 30px;
  }

  footer .left-footer,
  footer .right-footer {
    flex: 1;
  }

  footer .left-footer {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }

  .left-footer header {
    font-size: 30px;
  }

  footer .right-footer .foot-box {
    background: #ffdd81;
    padding: 30px;
  }

  .right-footer .foot-box header {
    font-size: 24px;
  }

  .foot-box button {
    padding: 19px 25px;
    font-size: 16px;
  }
}
