* {
  font-family: "Montserrat", sans-serif;
}

body, html {
  margin: 0;
  min-height: 100vh;
}

body {
  background-color: #00AEEF;
  color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo {
  width: 400px;
}

p {
  font-size: 20px;
  line-height: 1.5;
}

.description {
  margin-left: 110px;
}

.text-secondary {
  color: #B0E2F7;
}

.container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 80px;
}

.d-flex {
  display: flex;
}

.flex-column {
  flex-direction: column;
}

.flex-row {
  flex-direction: row;
}

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

.flex-between {
  justify-content: space-between;
  align-items: center;
}

.banner {
  width: 380px;
  height: 380px;
  position: relative;
  margin-left: 0;
}
.banner .circle {
  width: 100%;
  height: 100%;
  background-color: #B0E2F7;
  border-radius: 100%;
}
.banner img {
  position: absolute;
  top: 6px;
  right: 50px;
  height: 400px;
  border-top-right-radius: 105px;
}

h1 {
  text-align: center;
  margin-bottom: 0;
  margin-top: 80px;
  letter-spacing: 15px;
  font-weight: normal;
  font-size: 25px;
}

@media only screen and (max-width: 1200px) {
  .container {
    max-width: 90%;
    width: 90%;
  }
  h1 {
    font-size: 20px;
  }
}
@media only screen and (max-width: 992px) {
  .d-flex {
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  .container {
    max-width: 100%;
    width: 100%;
    padding: 0 24px;
    margin-top: 0;
  }
  .logo {
    width: 250px;
    margin-bottom: 20px;
  }
  .description {
    margin-left: 0;
    text-align: center;
  }
  .description p {
    font-size: 16px;
  }
  .banner {
    margin-left: 0;
    margin-top: 60px;
    width: 280px;
    height: 280px;
  }
  .banner .circle {
    width: 100%;
    height: 100%;
    background-color: #B0E2F7;
    border-radius: 100%;
  }
  .banner img {
    right: 16px;
    height: 280px;
  }
  h1 {
    font-size: 16px;
    letter-spacing: 6px;
  }
}

/*# sourceMappingURL=style.css.map */
