@font-face {
  font-family: 'NewYork';
  src: url(../fonts/NEWYORK.OTF);
}

.contact-details {
  background-color: #f2f1ed;
  margin-top: 40px;
  margin-bottom: 40px;
  padding-top: 40px;
  padding-bottom: 40px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.contact-details .center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
}

.contact-details .center .element {
  min-width: 290px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.contact-details .center .element .icon {
  height: 55px;
  width: 55px;
}

.contact-details .center .element .icon.phone {
  background-image: url("../assets/contact/phone.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 60%;
}

.contact-details .center .element .icon.mail {
  background-image: url("../assets/contact/mail.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 70%;
}

.contact-details .center .element .icon.address {
  background-image: url("../assets/contact/pin.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 45%;
}

.contact-details .center .element .txt {
  font-size: 13px;
  font-weight: 700;
  line-height: 21px;
  -webkit-transition: 400ms;
  transition: 400ms;
  color: #333333;
  margin-top: 8px;
  margin-bottom: 5px;
  text-transform: capitalize;
}

@media only screen and (max-width: 750px) {
  .contact-details .center .element .txt {
    font-size: 13px;
    line-height: 21px;
  }
}

@media only screen and (max-width: 570px) {
  .contact-details .center .element .txt {
    font-size: 12px;
    line-height: 20px;
  }
}

@media only screen and (max-width: 400px) {
  .contact-details .center .element .txt {
    font-size: 12px;
    line-height: 20px;
  }
}

.contact-details .center .element .content {
  font-size: 13px;
  font-weight: 500;
  line-height: 21px;
  -webkit-transition: 400ms;
  transition: 400ms;
  color: #555555;
}

@media only screen and (max-width: 750px) {
  .contact-details .center .element .content {
    font-size: 13px;
    line-height: 21px;
  }
}

@media only screen and (max-width: 570px) {
  .contact-details .center .element .content {
    font-size: 12px;
    line-height: 20px;
  }
}

@media only screen and (max-width: 400px) {
  .contact-details .center .element .content {
    font-size: 12px;
    line-height: 20px;
  }
}
/*# sourceMappingURL=contact.css.map */