@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
html {
  height: 100%;
}

body {
  font-family: "Poppins", sans-serif;
  font-style: normal;
  font-weight: normal;
  padding: 0;
  margin: 0;
  background: white;
  height: 100%;
}

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

.overlay {
  height: 100%;
  width: 100%;
  margin: auto;
}
@media (min-width: 768px) {
  .overlay {
    overflow: hidden;
  }
}

.page-container {
  height: 100%;
  display: grid;
  grid-gap: 4rem;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 27rem), 1fr));
}
@media (max-width: 767px) {
  .page-container {
    grid-gap: 1.5rem;
  }
}

.contact-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;
}
@media (min-width: 900px) {
  .contact-section {
    padding: 5rem 0 5rem 5rem;
  }
}
.contact-section p {
  line-height: 1.25rem;
  margin: 0;
}
.contact-section .top-section h1 {
  font-size: 2rem;
  margin: 0;
  color: #333333;
}
@media (min-width: 900px) {
  .contact-section .top-section h1 {
    font-size: 2.5rem;
    line-height: 130%;
  }
}
.contact-section .logo-container {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-content: flex-start;
}
.contact-section .logo-container .logo img {
  width: 15rem;
}

.contact-info-container {
  display: flex;
  padding: 1rem;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  border-radius: 0.25rem;
  border: 1px solid #E8E8E8;
  background: conic-gradient(from 110deg at -29.06% -40.08%, #F5F5F5 0deg, #E8E8E8 10.691486299deg, #F5F5F5 21.5999995172deg, #E8E8E8 32.4000012875deg, #F5F5F5 43.1999990344deg, #E8E8E8 54.0000021458deg, #F5F5F5 64.8000025749deg, #F5F5F5 360deg);
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.05) inset;
  margin-top: 0.5rem;
}

.contact-info-wrapper {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  gap: 1rem;
}

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

.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;
    flex-wrap: wrap;
  }
}

.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;
}

.button-primary {
  background: #333333;
  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 #333333;
  background: #F5F5F5;
}
.button-secondary a {
  color: #333333;
  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;
}

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