@font-face {
  font-family: "YouthAndBeauty";
  src: url("/assets/font/YouthAndBeauty.ttf");
  font-display: swap;
}
.font_title {
  font-weight: lighter;
  font-family: "YouthAndBeauty";
}

@font-face {
  font-family: "Icons";
  src: url("/assets/font/material-icon.woff2");
  font-display: swap;
}
.icon {
  font-family: "Icons";
  font-weight: normal;
  font-style: normal;
  line-height: 1;
  -moz-font-feature-settings: "liga";
  -moz-osx-font-smoothing: grayscale;
}

.badge {
  vertical-align: middle;
  border-radius: 10px 10px 10px 10px;
  font-size: 1.5em;
}

.hidden {
  display: none;
}

body {
  margin: 0;
  font-family: "Noto Sans", "Noto Sans Symbols 2", sans-serif;
}
body .top_bar {
  box-sizing: border-box;
  background-color: rgb(241, 242, 241);
  padding: 1rem;
}
body .top_bar h1 {
  width: 100%;
  margin: 0px;
  text-align: center;
  font-size: 2rem;
  line-height: 2.5rem;
  height: 2.5rem;
}
body header {
  width: 100%;
  position: sticky;
  top: 0px;
  z-index: 10;
  height: fit-content;
}
body header nav {
  width: 100%;
  background-color: rgb(241, 242, 241);
}
body header nav div {
  display: inline-block;
  height: auto;
}
body header nav .left a {
  background-color: rgb(0, 146, 70);
  color: white;
}
body header nav .right a {
  background-color: red;
  color: white;
}
body header nav a {
  font-size: 1.5rem;
  line-height: 2rem;
  width: 8rem;
  box-sizing: border-box;
  padding: 1rem;
  display: inline-block;
  text-align: center;
  color: black;
  text-decoration: none;
}
body header nav a i {
  font-size: 1em;
}
body header nav a:hover {
  background-color: white;
  color: black;
}
body main {
  min-height: calc(100vh - 16.5rem);
  box-sizing: border-box;
  width: 100%;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
}
body main section {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body main section .title {
  box-sizing: border-box;
  width: 100%;
  padding: 15px;
  font-size: 2em;
  margin: 0px;
}
body footer {
  width: 100%;
  background-color: red;
  display: inline-block;
  text-align: center;
}
body footer .social {
  padding: 1rem;
}
body footer .social .media_logo {
  display: inline-block;
  height: 3rem;
}
body footer .social .media_logo img {
  box-sizing: border-box;
  height: 3rem;
  width: 3rem;
}
body footer .info * {
  color: white;
  height: 1.5rem;
  line-height: 1.5rem;
  font-size: 1em;
}
body #popup {
  position: fixed;
  z-index: 999;
  height: 100vh;
  width: 100vw;
  top: 0px;
  left: 0px;
  justify-content: center;
  backdrop-filter: blur(5px);
  align-items: center;
  display: flex;
}
body #popup img {
  max-width: 80%;
  max-height: 80%;
}

@media only screen and (max-width: 991px) {
  header nav div {
    width: 100%;
  }
  header nav div a {
    width: 100%;
    color: white;
  }
  header nav .mobile {
    background-color: rgb(0, 146, 70);
  }
}
@media only screen and (min-width: 992px) {
  header nav div a {
    width: 8em;
  }
  header nav .mobile {
    display: none;
  }
  header nav .left {
    width: 83%;
  }
  header nav .right {
    width: 17%;
    text-align: right;
  }
}
fieldset {
  box-sizing: border-box;
  margin: 15px;
  padding: 10px;
  border: 0;
  border-radius: 5px;
  background-color: rgb(241, 242, 241);
  display: flex;
  justify-content: space-evenly;
}
fieldset legend {
  font-size: 1rem;
}
fieldset * {
  box-sizing: border-box;
  width: 100%;
  border: none;
  margin: 0;
}
fieldset * > * {
  width: fit-content;
}
fieldset textarea {
  resize: vertical;
  height: 4em;
}
fieldset input:disabled {
  color: black;
  background-color: white;
}
fieldset button {
  font-size: 1rem;
  line-height: 1rem;
  padding: 1rem;
  box-sizing: border-box;
  background-color: rgb(0, 146, 70);
  border: none;
  color: white;
  text-decoration: none;
  cursor: pointer;
}
fieldset .radio {
  display: flex;
  flex-direction: row;
}
fieldset .radio input {
  height: 2em;
  width: 2.5rem;
}
fieldset .radio label {
  width: calc(100% - 2.5rem);
  line-height: 2em;
}

fieldset.list {
  flex-direction: column;
}

@media only screen and (max-width: 991px) {
  fieldset {
    width: calc(100% - 30px);
  }
}
@media only screen and (min-width: 992px) {
  fieldset.small {
    width: calc(33% - 30px);
  }
  fieldset.medium {
    width: calc(50% - 30px);
  }
  fieldset.large {
    width: calc(100% - 30px);
  }
  fieldset.fit {
    width: fit-content;
    height: fit-content;
  }
}
.hidden {
  display: none;
}

#form p {
  width: 100%;
  box-sizing: border-box;
  padding-left: 3em;
  padding-right: 3em;
}
#form .error {
  color: red;
}
#form form {
  box-sizing: border-box;
  padding: 10px;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-between;
}

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