footer {
  background: url('../images/cover/pattern.svg') center / cover no-repeat, var(--blue);
  height: auto;
  width: 100%;
  margin-top: 250px;
}

.footer-wrapper {
  max-width: 1220px;
  height: 100%;
  margin: 0 auto;
  padding: 0 10px;
}

.footer-container {
  display: flex;
  flex-direction: row;
  gap: 40px;
}

.review-section {
  width: 600px;
  display: flex;
  /* justify-content: space-between; */
  gap: 32px;
}

.review-wrapper {
  position: relative;
  width: 520px;
  height: 640px;
  overflow: hidden;
  top: -125px;
}

.review-container {
  width: 100%;
  position: absolute;
  transition: 200ms;
}

.review-tile {
  width: 100%;
  height: 300px;
  margin-bottom: 40px;
  padding: 40px;
  background-color: #F4FAFE;
}

.review-tile-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.review-quotes {
  width: 40px;
  height: 40px;
}

.review-stars-container {
  display: flex;
  align-items: center;
}

.review-star {
  height: 20px;
  margin-left: 2px;
}

.review-tile-text {
  font-size: 18px;
  font-family: var(--geometria);
  color: #000000;
  font-weight: 400;
  line-height: 175%;
  text-align: justify;
  text-align-last: left;
  margin-bottom: 24px;
}

.review-tile-name {
  font-size: 18px;
  font-family: var(--geometria);
  color: var(--blue);
  font-weight: 700;
  line-height: 175%;
}

.review-tile-country {
  font-size: 18px;
  font-family: var(--geometria);
  color: var(--blue);
  font-weight: 400;
  opacity: 0.5;
  line-height: 175%;
}

.review-controls {
  display: flex;
  flex-direction: column;
  position: relative;
  top: 32px;
  height: 96px;
}

.review-controls-button {
  display: flex;
  align-items: center;
  justify-content: space-around;
  width: 48px;
  height: 48px;
  background-color: var(--orange);
  transition: 200ms;
  cursor: pointer;
}

.review-controls-button:hover {
  background-color: #ffffff;
  transition: 200ms;
}

.review-arrow {
  border: solid white;
  border-width: 0 3px 3px 0;
  display: inline-block;
  padding: 3px;
}

.review-arrow-up {
  transform: rotate(-135deg);
  -webkit-transform: rotate(-135deg);
}

.review-arrow-down {
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}

.review-controls-button:hover .review-arrow {
  border: solid var(--blue);
  border-width: 0 3px 3px 0;
}

.review-controls-button:active .review-arrow {
  border: solid var(--hover-orange);
  border-width: 0 3px 3px 0;
}

/* .review-controls-arrow {width: 16px;} */

.contact-section {
  margin-top: 200px;
  width: 560px;
}

.contact-text {
  font-family: var(--mulish);
  color: #ffffff;
  font-weight: 400;
  font-size: 40px;
}

.contact-button-container {
  margin-top: 40px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.contact-button-container-text {
  font-family: var(--geometria);
  font-size: 20px;
  font-weight: 400;
  color: #ffffff;
}

.footer-line {
  width: 100%;
  height: 2px;
  background-color: rgba(255, 255, 255, 0.2);
}

.filler {
  height: 100px;
}

.footer-link-wrapper {
  padding: 60px 10px;
  width: 590px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.footer-logo {
  width: 180px;
  margin-bottom: 40px;
}

.footer-description {
  font-family: var(--geometria);
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  line-height: 28px;
}

.footer-contact-wrapper {
  display: flex;
  justify-content: space-between;
}

.footer-contact-item {
  font-family: var(--geometria);
  font-size: 18px;
  color: rgba(255, 255, 255, 0.5);
}

.footer-contact-item a {
  font-weight: 700;
  color: #ffffff;
  transition: 100ms;
}

.footer-contact-item a:hover {
  color: rgba(255, 255, 255, 0.7);
}

.footer-pages-wrapper {
  display: flex;
  justify-content: space-between;
}

.footer-pages-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-pages-item {
  font-family: var(--geometria);
  font-size: 20px;
  color: #ffffff;
  font-weight: 400;
}

.footer-pages-container a {
  opacity: 0.5;
  transition: 100ms;
}

.footer-pages-container a:hover {
  opacity: 0.7;
}

.footer-copyright {
  width: 100%;
  padding: 10px;
  background-color: rgba(0, 0, 0, 0.2);
  color: rgba(255, 255, 255, 0.3);
  font-family: var(--geometria);
  font-size: 12px;
  text-align: center;
}