/*!**********************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[5].rules[0].oneOf[0].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[5].rules[0].oneOf[0].use[2]!./src/styles.css?ngGlobalStyle ***!
  \**********************************************************************************************************************************************************************************************************************/
/* General Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.container {
  max-width: 100vw;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}

body {
  font-family: 'Manrope';
  height: 100vh;
  background: linear-gradient(45deg, #80FFDB 0%, #63d8d4 30%, #000000 60%, #000000 70%, #000000 90%, #000000 80%);
  background-blend-mode: multiply;
  background-color: rgba(0, 0, 0, 40%);
  background-attachment: fixed;
  background-size: cover;
}

img{
  max-width: 100%;
  height: auto;
}

h2{
  font-size: 39px ;
  line-height: 1.2em;
  margin-bottom: 18px;
}

h3{
  font-size: 31px ;
  line-height: 1.2em;
  margin-bottom: 18px;
}

h4 {
  font-size: 25px;
  line-height: 1.2em;
  margin-bottom: 18px;
}

p{
  font-size: 25px;
  line-height: 1.2em;
  margin-bottom: 28px;
  margin-top: 28px;

}

.form-label,label {
  font-family: 'Manrope';
  font-size: 20px;
  line-height: 1.2em;
  margin-bottom: 18px;
  margin-top: 25px;
}

.btn{
  display: inline-block;
  padding: 12px 20px;
  font-family: 'Manrope';
  font-size: 20px;
  line-height: 1.2em;
  border: none;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
}

.info-icon {
  font-size: 20px;
  color: #80FFDB;
  transition: color 0.3s ease;
 }

/* RESPONSIVE / MEDIA QUERIES */
@media only screen and (max-width: 1200px) {

  h2 {
    font-size: 36px;
  }
  h3 {
    font-size: 28px;
  }
  p {
    font-size: 22px;
  }
  h4 {
    font-size: 20px;
  }
}

@media only screen and (max-width: 992px) {

  h2 {
    font-size: 32px;
  }
  h3 {
    font-size: 25px;
  }
  p {
    font-size: 20px;
  }
  h4 {
    font-size: 18px;
  }
  .info-icon {
    font-size: 18px;
  }
}

@media only screen and (max-width: 800px) {

  h2 {
    font-size: 28px;
  }
  h3 {
    font-size: 24px;
  }
  p {
    font-size: 18px;
  }
  h4 {
    font-size: 16px;
  }
}

@media only screen and (max-width: 768px) {

  h2 {
    font-size: 22px;
  }
  h3 {
    font-size: 20px;
  }
  p {
    font-size: 14px;
  }
  h4 {
    font-size: 14px;
  }
}

@media only screen and (max-width: 576px) {

  h2 {
    font-size: 18px;
  }
  h3 {
    font-size: 16px;
  }
  p {
    font-size: 14px;
  }
  h4 {
    font-size: 14px;
  }
  .info-icon {
    font-size: 16px;
  }
}

@media only screen and (max-width: 480px) {
  h2 {
    font-size: 16px;
  }
  h3 {
    font-size: 15px;
  }
  p {
    font-size: 14px;
  }
  h4 {
    font-size: 14px;
  }
  .info-icon {
    font-size: 16px;
  }
}


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