:root {
  --white: white;
  --black: black;
}

.sec_full {
  background-color: #f7f7f7;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  display: flex;
}

.logo {
  max-width: 430px;
}

.heading {
  color: #04786f;
  margin-top: 31px;
  font-family: Lato, sans-serif;
  font-size: 22px;
  font-weight: 300;
}

.h2 {
  color: #373934;
  margin-left: 20px;
  margin-right: 20px;
  font-family: Open Sans, sans-serif;
  font-size: 21px;
  font-weight: 300;
  text-decoration: none;
}

.row-address {
  justify-content: center;
  align-items: center;
  display: flex;
}

@media screen and (max-width: 991px) {
  .h2 {
    margin-bottom: 0;
  }
}

@media screen and (max-width: 767px) {
  .h2 {
    margin-bottom: 40px;
    font-size: 16px;
  }

  .row-address {
    flex-flow: column;
  }
}

@media screen and (max-width: 479px) {
  .logo {
    max-width: 80%;
  }

  .heading {
    font-size: 19px;
  }
}


