@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');

* {
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  font: normal normal 15px 'Poppins', sans, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0px;
  padding: 0px;
  font-family: 'Poppins', sans-serif;
  font-style: normal;
  margin-top: 130px;
}

.page-title {
  width: 60%;
  display: flex;
  justify-content: center;
  font-weight: 300;
  font-size: 34px;
  line-height: 51px;
  letter-spacing: 0.115em;
  text-align: center;
  margin: 2em auto 1em auto;
}

/* Banner */
.banner {
  width: 94%;
  /* background: #c4c4c4; */
  margin: 2em auto;
  text-align: center;
}

.banner img {
  width: 100%;
  /* height: 500px; */
}

/* Fin Banner */

/* Radio button*/
.radio-button-on {
  background-image: url('../assets/icons/radio-button-on.png');
  height: 20px;
  width: 20px;
  margin-right: 1em;
}

.radio-button-off {
  background-image: url('../assets/icons/radio-button-off.png');
  height: 20px;
  width: 20px;
  margin-right: 1em;
}

/* Generic button */
.btn-generic {
  margin: 4em auto 2em auto;
  background: #000000;
  border: 1px solid #000000;
  box-sizing: border-box;
  padding: 0.75em 1em;
  font-size: 15px;
  line-height: 22px;
  text-align: center;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #ffffff;
  cursor: pointer;
}

/* Checkbox */
.checkbox {
  display: inline-block;
  width: 14px;
  height: 14px;
  background-image: url('../assets/icons/rectangle.svg');
  background-size: 100%;
  margin-right: 5px;
  cursor: pointer;
}

.checkbox.checked {
  background-image: url('../assets/icons/rectangle-cheked.svg');
}

.text-left {
  text-align: left !important;
}
