html {
  height: 100%;
}

body {
  font-family: "Verdana", sans-serif;
  font-style: normal;
  font-weight: normal;
  line-height: 1.25rem;
  color: #6F5C50;
  padding: 0;
  margin: 0;
  background: white;
  height: 100%;
}

h1, h2, h3 {
  font-family: "Times New Roman", Times, serif;
  line-height: 2.6rem;
  color: #6C101E;
  margin: 0;
}

.page {
  display: grid;
  align-items: center;
  height: 100%;
  overflow: auto;
}

.overlay {
  height: 100vh;
  height: 100dvh;
  width: 100%;
  max-width: 1920px;
  margin: auto;
}

.page-container, .extra-sections-container {
  display: grid;
  grid-gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 27rem), 1fr));
}

.contact-section, .extra-section {
  display: flex;
  padding: 0 1.25rem 2.5rem 1.25rem;
  flex-direction: column;
  align-items: flex-start;
  flex: 1 0 0;
  font-size: 0.875rem;
  gap: 1rem;
}
.contact-section p, .extra-section p {
  line-height: 1.25rem;
  margin: 0;
}
.contact-section .top-section h1, .extra-section .top-section h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
}
@media (min-width: 900px) {
  .contact-section .top-section h1, .extra-section .top-section h1 {
    font-size: 2.5rem;
    line-height: 130%;
    width: 80%;
  }
}
.contact-section .logo-container, .extra-section .logo-container {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-content: flex-start;
}
.contact-section .logo-container .logo img, .extra-section .logo-container .logo img {
  width: 7.5rem;
}
@media (min-width: 768px) {
  .contact-section .logo-container .logo img, .extra-section .logo-container .logo img {
    width: 10rem;
  }
}

@media (min-width: 900px) {
  .contact-section {
    padding: 5rem;
  }
}

.contact-info-container {
  display: flex;
  padding: 1rem;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  background: #52607E;
  color: #fff;
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.05) inset;
  margin-top: 0.5rem;
  width: calc(100% - 2rem);
}

.contact-info-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}
@media (min-width: 1200px) {
  .contact-info-wrapper {
    flex-direction: row;
    width: 100%;
    gap: 7rem;
  }
  .contact-info-wrapper .contact-info-text-right {
    align-self: end;
  }
}

.contact-info-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}
.contact-info-text h3 {
  color: #fff;
  font-size: 1.5rem;
  margin: 0;
}
.contact-info-text span {
  font-weight: 500;
}
.contact-info-text p {
  margin: 0;
}
.contact-info-text a {
  text-decoration: none;
  color: #fff;
}

.contact-info-image img {
  width: 6rem;
  height: 5.5rem;
  object-fit: cover;
  border-radius: 0.125rem;
  transform: scaleX(-1);
}

.buttons {
  display: flex;
  gap: 0.5rem;
  flex-direction: column;
  width: 100%;
}
@media (min-width: 900px) {
  .buttons {
    flex-direction: row;
    justify-content: space-between;
  }
}

.button {
  display: flex;
  padding: 0.75rem 1.125rem;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  border-radius: 0.125rem;
}
.button a {
  text-decoration: none;
}
@media (min-width: 768px) {
  .button {
    width: 100%;
  }
}

.button-primary {
  background: #6C101E;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
}
.button-primary a {
  color: white;
  white-space: nowrap;
  min-width: auto;
}

.button-secondary {
  border: 1px solid #fff;
  background: #fff;
}
.button-secondary a {
  color: #52607E;
  white-space: nowrap;
  min-width: auto;
}

.address {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}
@media (min-width: 900px) {
  .address {
    margin-top: auto;
  }
}
.address p {
  margin: 0;
}

.image-section {
  order: -1;
}
@media (min-width: 900px) {
  .image-section {
    order: 1;
  }
}
.image-section img {
  object-fit: cover;
  height: 20rem;
  width: 100%;
}
@media (min-width: 900px) {
  .image-section img {
    height: 100%;
  }
}
.image-section .logo-container {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-content: flex-start;
}
.image-section .logo-container .logo img {
  width: 15rem;
  height: auto;
}
@media (min-width: 900px) {
  .image-section .logo-container .logo {
    display: none;
  }
}

.image-extra-section img {
  object-fit: cover;
  height: 20rem;
  width: 100%;
}
@media (min-width: 768px) {
  .image-extra-section img {
    height: 100%;
  }
}

@media (min-width: 768px) {
  .extra-section {
    display: grid;
    grid-gap: 1.5rem;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 27rem), 1fr));
    align-items: center;
  }
}
@media (min-width: 900px) {
  .extra-section {
    padding: 2.5rem 5rem;
  }
}

/*# sourceMappingURL=index.css.map */
