* {
  font-family: 'Montserrat', sans-serif !important;
}
.footer {
  background: #333130;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  color: #ffffff;
  padding: 2vw;
  font-size: 1.2vw
}
.footer > * {
    width: 33vw;
  }
.footer .social {
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin: 0;
    padding: 0;
  }
.footer .social li {
      margin-right: 2vw;
    }
.footer .social li svg {
        width: 2.5vw;
        height: 2.5vw;
        fill: #91E2BC;
      }
.footer .copyright {
    font-weight: 700;
  }
.footer .link {
    color: #91E2BC;
  }

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: GillSansRegular, sans-serif;
}

html, body {
  font-weight: normal;
  font-size: 16px;
  color: black;
  min-height: 100vh;
}

ul, nav {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.image-container {
  width: 80%;
  position: relative;
}

.main-btn {
  display: inline-block;
  color: black !important;
  background: white;
  border: 2px solid black;
  padding: 10px 30px;
  font-family: GillSansRegular, sans-serif;
  outline: none !important;
  cursor: pointer;
  margin: 0;
  box-sizing: border-box;
  box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.25);
}
.main-btn:hover, .main-btn:active, .main-btn:focus {
  background: black;
  text-decoration: none;
  color: white !important;
}
.image-i {
  width: 100%;
  margin-bottom: 6.25vw;
}

.hero {
  background: white !important;
  display: flex;
  flex-direction: column;
  padding: 6.25vw 0;
  align-items: center;
  justify-content: center;
  height: 100vh !important;
}

/* mobile and tablet */
@media (max-width: 1024px) {
  .btn-register {
    width: 100%;
    font-size: 5vw;
    line-height: 6vw;
    text-align: center;
  }

  .mobile-only {
    display: block;
  }

  .desktop-only {
    display: none;
  }
}

/* tablet only */
@media (min-width: 700px) and (max-width: 1024px) {
  .btn-register {
    position: absolute;
    top: 70%;
    left: 50%;
    transform: translateX(-50%);
    width: 50vw;
    font-size: 4vw;
    line-height: 5vw;
  }

  .image-i {
    margin: 0;
  }
}

/* desktop only */
@media (min-width: 1025px) {
  .hero {
    padding: 2vw 0;
  }

  .btn-register {
    position: absolute;
    top: 18%;
    right: 4.5%;
    width: 18vw;
    font-size: 1.2vw;
    line-height: 2vw;
    text-align: center;
  }

  .image-i {
    margin: 0;
  }

  .mobile-only {
    display: none;
  }

  .desktop-only {
    display: block;
  }
}

