body {
  font-family: montserrat;
  font-size: 1vw;
  margin: 0 auto;
  transition: all 0.2s;
}

h1 {
  font-weight: 800;
  font-size: 2.7em;
  margin: 0;
}

h2 {
  font-size: 1.2em;
  text-transform: uppercase;
}

.devider {
  position: sticky;
  top: 9vh;
  z-index: 10;
  background-color: #0056b8;
  height: 1px;
  width: 100%;
  margin: 0 0 50px 0;
}

.btn-bottom {
  position: absolute;
  display: block;
  bottom: 0;
  margin: 4vw 0 !important;
}

.flex-container {
  display: flex;
  width: 70vw;
  margin: 20px auto 0;
  justify-content: space-between;
  gap: 20px;
}

.flex-container > .column {
  width: 100%;
}

/*FOOTER*/
footer {
  background-color: #0056b8;
  display: flex;
  margin: 100px auto 0;
  justify-content: space-around;
  
  a  { text-decoration:none; color:inherit; outline-style:none; }
}

.flex-container-footer {
  display: flex;
  width: 70vw;
  justify-content: space-between;
}

.flex-container-footer > .column {
  color: white;
  margin: 50px 0;
  font-weight: 600;
  font-size: 1em;
  line-height: 2;
  white-space: nowrap;
}

.contact-btn {
  background-color: white;
  display: block;
  color: #0056b8;
  text-align: center;
  padding: 10px 0;
  margin: 30px 0 0 0;
  width: 100%;
  text-decoration: none;
}

/* RESPONSIVE SMARTPHONE*/

@media only screen and (max-width: 600px) {
  body {
    font-size: 3vw;
  }

  h1 {
    font-size: 2em;
  }

  .devider {
    top: 8vh;
    margin: 0 0 25px 0;
  }

  .flex-container {
    width: 95vw;
    flex-direction: column;
  }

  .flex-container-footer {
    width: 85%;
    flex-direction: column;
  }

  .flex-container-footer > .column {
    margin: 20px 0;
  }

  .contact-btn {
    margin: 10px 0;
  }
}
