@import "./components/HeroSection.css";

#contact-navbar-selection {
  color: #ff8960;
}

.Contact-Info-Section {
  display: flex;
  position: relative;
  flex-direction: column;
  width: 100%;
  align-items: center;
  padding: 51px 83px 56px 83px;
}

.Contact-Info-Section-Box {
  display: flex;
  position: relative;
  max-width: 1590px;
  flex-direction: row;
  width: 100%;
  min-width: 1024px;
  justify-content: space-between;
  grid-gap: 20px;
}

.Contact-Info-Section-Box-Content {
  display: flex;
  position: relative;
  flex-direction: column;
  align-items: center;
  padding: 73px 20px;
  padding-bottom: 51px;
  flex: 1 1 calc(33.33% - 20px);
  max-width: 442px;
  border-radius: 5px;
  border: 1px solid #E0E0E0;
  background: #FFF;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}

.Contact-Info-Section-Box-Content-imgTag {
  width: 66px;
}

.Contact-Info-Section-Box-Content-Text {
  display: flex;
  position: relative;
  flex-direction: column;
  align-items: center;
}

.Contact-Info-Section-Box-Content-Text-Heading {
  color: #141414;
  text-align: center;
  font-size: 1.875rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.33;
  letter-spacing: 0.9px;
}

.Contact-Info-Section-Box-Content-Text-Description {
  color: #141414;
  font-size: 1.375rem;
  font-style: normal;
  font-weight: 300;
  line-height: 1.81;
  letter-spacing: 0.66px;
  text-align: center;
}

@media (max-width: 1245px) {

  .Contact-Info-Section {
    padding-left: 29px;
    padding-right: 29px;
  }

  .Contact-Info-Section-Box {
    max-width: unset;
    flex-direction: column;
    min-width: unset;
  }

  .Contact-Info-Section-Box-Content {
    flex-direction: row;
    align-items: center;
    max-width: unset;
    grid-gap: 33px;
  }

  .Contact-Info-Section-Box-Content-Text {
    align-items: flex-start;
  }
}

@media (max-width: 1050px) and (min-width: 450px) {}

@media (max-width: 450px) {

  .Contact-Info-Section {
    padding-left: 11px;
    padding-right: 11px;
  }

  .Contact-Info-Section-Box-Content-imgTag {
    width: 35px;
  }

  .Contact-Info-Section-Box-Content-Text-Heading,
  .Contact-Info-Section-Box-Content-Text-Description {
    font-size: 1.16rem;
    line-height: 1.78;
    text-align: left;
  }
}