.row {
  display: flex;
  flex-direction: row;
}

.column {
  display: flex;
  flex-direction: column;
}

.center {
  display: flex;
  align-items: center;
  justify-content: center;
}

button {
  cursor: pointer;
}

button:hover {
  opacity: 0.8;
}

img {
  max-width: 100%;
  height: auto;
}

.icon {
  width: 24px;
  height: 24px;
}

.noMargin {
  margin: 0px;
}

.gap8 {
  gap: 8px;
}

.padding16 {
  padding: 0 16px;
}

.marginBottom50 {
  margin-bottom: 50px;
}

.hidden {
  display: none;
}

.border {
  border: 1px solid var(--Main-Color-Acent);
  padding: 16px;
  border-radius: 16px;
}

.h1-font {
  font-family: "Mulish", sans-serif;
  font-weight: 800;
  font-style: bold;
  font-size: 60px;
  line-height: 125%;
  letter-spacing: 0%;
  text-transform: uppercase;

  text-align: center;
}

.h2-font {
  font-family: "Mulish", sans-serif;
  font-weight: 700;
  font-style: Bold;
  font-size: 40px;
  line-height: 100%;
  letter-spacing: 0%;
  text-transform: capitalize;
}

.h3-font {
  font-family: "Mulish", sans-serif;
  font-weight: 700;
  font-style: Bold;
  font-size: 24px;
  line-height: 100%;
  letter-spacing: 0%;
  text-transform: capitalize;
}

.h4-font {
  font-family: "Mulish", sans-serif;
  font-weight: 700;
  font-style: Bold;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 0%;
  text-transform: capitalize;
}

.body-font {
  font-family: "Mulish", sans-serif;
  font-weight: 500;
  font-style: Medium;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: 0%;
}

.body-font-bold {
  font-family: "Mulish", sans-serif;
  font-weight: 700;
  font-style: Bold;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: 0%;
}

@media (max-width: 800px) {
  /* mobile styles */
  .h1-font {
    font-family: "Mulish", sans-serif;
    font-weight: 800;
    font-style: bold;
    font-size: 32px;
    line-height: 125%;
    letter-spacing: 0%;
    text-transform: uppercase;
  }

  .h2-font {
    font-family: "Mulish", sans-serif;
    font-weight: 700;
    font-style: Bold;
    font-size: 24px;
    line-height: 100%;
    letter-spacing: 0%;
    text-transform: capitalize;
  }

  .h3-font {
    font-family: "Mulish", sans-serif;
    font-weight: 700;
    font-style: Bold;
    font-size: 17px;
    line-height: 100%;
    letter-spacing: 0%;
  }

  .h4-font {
    font-family: "Mulish", sans-serif;
    font-weight: 700;
    font-style: Bold;
    font-size: 15px;
    line-height: 100%;
    letter-spacing: 0%;
    text-transform: capitalize;
  }

  .body-font {
    font-family: "Mulish", sans-serif;
    font-weight: 500;
    font-style: Medium;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0%;
  }

  .body-font-bold {
    font-family: "Mulish", sans-serif;
    font-weight: 700;
    font-style: Bold;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0%;
  }

  .icon {
    width: 16px;
    height: 16px;
  }
}
