@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500&display=swap");
html {
  font-size: 100%;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  text-align: justify;
  color: rgba(29, 29, 29, 0.7);
  line-height: 30px;
  min-height: 100vh;
  overflow-x: hidden;
}
body.noscroll {
  overflow: hidden;
}

.flex {
  display: flex;
}
.flex-jc-sb {
  justify-content: space-between;
}
.flex-jc-c {
  justify-content: center;
}
.flex-ai-c {
  align-items: center;
}

h1,
h2,
h3 {
  font-weight: 500;
  line-height: 50px;
  margin-top: 0;
}

h1 {
  font-size: 2.31rem;
  margin-bottom: 2.023rem;
}
@media (min-width: 64em) {
  h1 {
    font-size: 1.5rem;
  }
}

p {
  margin-top: 1.375rem;
  margin-bottom: 2.25rem;
}

a,
a:visited,
a:hover {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

ul {
  list-style-type: none;
  padding-left: 0;
}

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

.container {
  max-width: 80rem;
  margin: 0 auto;
}
.container--my {
  margin-top: 4rem;
  margin-bottom: 4rem;
}
@media (min-width: 64em) {
  .container--my {
    margin-top: 2.375rem;
    margin-bottom: 2.375rem;
  }
}
.container--pall {
  padding-top: 4.375rem;
  padding-right: 1.5rem;
  padding-bottom: 4.375rem;
  padding-left: 1.5rem;
}
@media (min-width: 64em) {
  .container--pall {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}
.container--py {
  padding-top: 4.375rem;
  padding-bottom: 4.375rem;
}
@media (min-width: 64em) {
  .container--py {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}
.container--px {
  padding-right: 1.5rem;
  padding-left: 1.5rem;
}
.container--pt {
  padding-top: 4.375rem;
}
@media (min-width: 64em) {
  .container--pt {
    padding-top: 6rem;
  }
}
.container--pr {
  padding-right: 1.5rem;
}
.container--pb {
  padding-bottom: 4.375rem;
}
@media (min-width: 64em) {
  .container--pb {
    padding-bottom: 6rem;
  }
}
.container--pl {
  padding-left: 1.5rem;
}

@media (max-width: 63.9375em) {
  .hide-for-mobile {
    display: none;
  }
}

@media (min-width: 64em) {
  .hide-for-desktop {
    display: none;
  }
}

header {
  position: relative;
}
@media (min-width: 64em) {
  header {
    background-color: #fff;
    z-index: 4;
  }
}
header .header__logo {
  order: 1;
  display: inline-block;
  width: 100%;
}
@media (min-width: 40em) {
  header .header__logo {
    width: calc(100% - 78vw);
  }
}
@media (min-width: 64em) {
  header .header__logo {
    width: 180px;
  }
}
@media (min-width: 40em) {
  header nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
  header nav .container .nav__links {
    order: 2;
  }
}
header .nav__item {
  font-size: 1.15rem;
  font-weight: 500;
  letter-spacing: 0.1rem;
  padding: 1rem 0;
}
header .nav__item .nav__link {
  display: inline-block;
  transition: 0.2s;
}
header .nav__item .nav__link:hover {
  cursor: pointer;
  opacity: 0.4;
}
header .nav__item:not(:last-child) {
  margin-right: 2rem;
}

@media (max-width: 63.9375em) {
  .menu__toggle {
    order: 2;
    position: relative;
    display: block;
    width: 26px;
    margin-left: auto;
    z-index: 10;
  }
}
.menu__toggle span {
  display: block;
  width: 100%;
  height: 2.5px;
  background-color: #000;
  opacity: 0.5;
  transition: all 300ms ease-in-out;
  transform-origin: 3px 1px;
}
.menu__toggle span:not(:last-child) {
  margin-bottom: 5px;
}
.menu__toggle.open span:first-child {
  transform: rotate(45deg);
}
.menu__toggle.open span:nth-child(2) {
  opacity: 0;
}
.menu__toggle.open span:last-child {
  transform: rotate(-45deg);
}

.spacer {
  height: 4rem;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
  height: 0;
  max-height: 150px;
  overflow-x: hidden;
  overflow-y: hidden;
  padding: 0 1rem;
  background-color: #fff;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
  transition: 0.8s;
  z-index: 5;
}
.mobile-menu .menu__list {
  margin: 0;
  padding: 2rem 0;
}
.mobile-menu .menu__list .menu__item {
  padding: 0.2rem 0.4rem;
  width: max-content;
}

footer {
  padding: 1rem;
  padding-top: 2rem;
}
footer .container {
  justify-self: center;
}
footer .container .social-icons {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.8;
}
footer .container .social-icons:hover {
  opacity: 0.7;
}
footer .container .social-icons span {
  display: inline-block;
  max-width: 1.875rem;
}
footer .container .social-icons span:not(:last-child) {
  margin-right: 1rem;
}
footer .container .social-icons span:hover {
  opacity: 0.6;
}

.form__wrapper {
  margin-top: 3rem;
  margin-bottom: 4rem;
}
@media (min-width: 40em) {
  .form__wrapper {
    width: 60%;
    max-width: 600px;
    margin-right: auto;
    margin-top: 6rem;
  }
}
.form__wrapper .title {
  font-size: 2rem;
  font-weight: 550;
}
.form__wrapper .form {
  margin-top: 1rem;
}
.form__wrapper .form-group {
  margin-top: 1rem;
}
.form__wrapper .form-group label {
  display: block;
}
.form__wrapper .form-group input {
  display: block;
  width: 100%;
  height: 3rem;
  font-size: 1rem;
  margin-top: 0.5rem;
  padding: 0 1rem;
  background-color: #eee;
  border: none;
  opacity: 0.8;
}
.form__wrapper .form-group input:focus {
  outline: 1px solid #132F82;
}
.form__wrapper .form-group textarea {
  display: block;
  width: 100%;
  font-size: 1rem;
  margin-top: 0.5rem;
  padding: 1rem;
  background-color: #eee;
  border: none;
  opacity: 0.8;
}
.form__wrapper .form-group textarea:focus {
  outline: 1px solid #132F82;
}
.form__wrapper .form-group small {
  color: red;
  font-weight: 500;
  display: inline-block;
  visibility: hidden;
}
.form__wrapper .form-group.error small {
  visibility: visible;
}
.form__wrapper .form-group.success input {
  outline: 1px solid transparent;
}
.form__wrapper button {
  font-size: 1rem;
  text-align: center;
  color: #132F82;
  margin-top: 1rem;
  padding: 0.8rem 3rem;
  border: 1px solid #132F82;
  border-radius: 5px;
  background-color: transparent;
}
.form__wrapper button:hover {
  background-color: #132F82;
  color: #fff;
}
.form__wrapper button:focus {
  outline: none;
}
.form__wrapper #loader {
  display: none;
  font-size: 1.3rem;
  opacity: 0.8;
  margin-left: 0.5rem;
}
.form__wrapper #loader i {
  animation: spin 2s linear infinite;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.form__wrapper .submit-status {
  display: none;
  border: 1px solid #eee;
  border-radius: 5px;
  padding: 0.5rem;
  margin-top: 2rem;
}
.form__wrapper .submit-status.success {
  border: 2px solid #2ecc71;
}
.form__wrapper .submit-status.error {
  border: 2px solid red;
}
.form__wrapper .submit-status #submitStatusText {
  margin: 0;
  font-size: 1rem;
  font-weight: 500;
  text-align: center;
}

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