*,
*::before,
*::after {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  line-height: 1.5;
  color: #ffffff;
  background-color: #6021ca;
}

a {
  color: #ffffff;
  text-decoration: underline;
}

a:hover {
  color: #e53885;
}

strong {
  font-weight: 600;
}

img {
  height: auto;
  max-width: 100%;
  vertical-align: middle;
}

.page__inner {
  position: relative;
  display: flex;
  justify-content: center;
  flex-direction: column;
  min-height: 100vh;
  padding-top: 4.375rem;
  padding-bottom: 4.375rem;
}

.page__image {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
}

.container {
  padding-right: 1rem;
  padding-left: 1rem;
}

.section {
  text-align: center;
}

.section__title {
  margin-top: 0;
  margin-bottom: 1.875rem;
  font-weight: 600;
  font-size: 1.5rem;
}

.section__subtitle {
  margin-top: 0;
  margin-bottom: 0.625rem;
  font-weight: 600;
}

.section__address {
  margin-bottom: 1.875rem;
  font-weight: 600;
  font-style: normal;
  color: #c2a9eb;
}

.section__actions {
  display: flex;
  align-items: center;
  flex-direction: column;
  margin-bottom: 4.375rem;
}

.btn {
  display: inline-block;
  padding: 0.875rem 1.5rem;
  font-weight: 500;
  color: #ffffff;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  background-color: transparent;
  border: 1px solid transparent;
  border-radius: 0.875rem;
  cursor: pointer;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
}

.btn:hover,
.btn:active,
.btn:focus-visible {
  color: #ffffff;
}

.btn:focus-visible {
  outline: 0;
}

.btn--phone {
  margin-bottom: 1.25rem;
  background-color: #e53885;
  border-color: #e53885;
}

.btn--phone:hover,
.btn--phone:active,
.btn--phone:focus-visible {
  background-color: #d6005f;
  border-color: #d6005f;
}

.btn--email {
  border-color: #ffffff;
}

.btn--email:hover,
.btn--email:active,
.btn--email:focus-visible {
  color: #6021ca;
  background-color: #ffffff;
  border-color: #ffffff;
}

.contact {
  margin-bottom: 1.875rem;
  font-size: 0.875rem;
  text-align: center;
}

.contact__title {
  margin-top: 0;
  margin-bottom: 0;
}

.brand__list {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 0;
  margin: 0;
  list-style: none;
}

.brand__item {
  flex: 0 0 auto;
  width: auto;
}

.brand__item {
  margin-right: 1rem;
  margin-left: 1rem;
}

.brand__link {
  display: block;
}

@media (min-width: 768px) {
  .section__title {
    font-size: 1.75rem;
  }

  .section__subtitle,
  .section__address,
  .btn {
    font-size: 1.125rem;
  }
}

@media (min-width: 992px) {
  .section__actions {
    margin-bottom: 5.625rem;
  }
}
