@import url("https://fonts.googleapis.com/css2?family=Lilita+One&family=Noto+Sans:wght@100..900&display=swap");
*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
}

html {
  font-size: 62.5%;
  font-family: "Noto Sans", sans-serif;
  font-display: swap;
  color: black;
  overflow-x: hidden;
}

body {
  box-sizing: border-box;
  min-height: 100vh;
  font-size: 1.6rem;
  /* mobile viewport bug fix */
  min-height: -webkit-fill-available;
  padding-top: 92px !important;
}
body.home {
  padding-top: 0 !important;
}

.no-scroll {
  overflow-y: hidden;
  overflow-x: hidden;
}

header {
  width: 100%;
  display: block;
  position: relative;
}

header a {
  text-decoration: none;
}

a {
  text-decoration: none;
  color: var(--secondary-color);
  transition: all 0.2s ease-in-out 0s;
  font-size: 1.6rem;
}
a:hover {
  color: #121212;
}

hr {
  display: block;
  width: 100px;
  margin: 20px 0px;
  border: 1px solid var(--main-color);
}

em.primary {
  color: var(--main-color);
}
em.block {
  display: block;
}

::-webkit-scrollbar {
  background: #fff;
  width: 10px;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, var(--main-color) 0%, var(--secondary-color) 100%);
  height: 20px;
}

html {
  font-family: "Noto Sans", sans-serif;
  line-height: 1.6;
  font-weight: 300;
  font-display: swap;
}

body {
  font-family: "Noto Sans", sans-serif;
  font-size: 1rem;
}

p {
  line-height: 1.4;
  font-size: 1.6rem;
  font-weight: 300;
  color: #868686;
}

h1, h2, h3, h4, h5 {
  font-family: "Noto Sans";
  font-weight: 600;
  line-height: 1;
}

span {
  font-size: 1.6rem;
}

/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

.hide {
  position: absolute;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  clip: rect(1px 1px 1px 1px);
  width: 1px;
  height: 1px;
}

.section__title {
  margin-bottom: 2rem;
  color: var(--secondary-color);
}

.title--center {
  text-align: center;
}

#header .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 6vh;
}

#header {
  position: relative;
  overflow: hidden;
}
#header:before {
  content: "";
  height: 25vh;
  width: 100%;
  background: var(--main-color);
  position: absolute;
  top: 0;
  left: 0;
  z-index: -2;
}
#header:after {
  content: "";
  height: 20rem;
  width: 100%;
  background: #fff;
  position: absolute;
  top: 22vh;
  left: 0;
  z-index: -1;
  border-radius: 70%;
  transform: scale(1.5);
}

.header__background {
  position: absolute;
  height: 25vh;
  width: 100%;
  background: var(--main-color);
  position: absolute;
  top: 0;
  left: 0;
  z-index: -2;
}
.header__background img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.header__illustration {
  position: relative;
  height: 12rem;
  width: 12rem;
  border-radius: 50%;
  box-shadow: 0px 0px 10px rgba(1, 1, 1, 0.5);
  border: 3px solid #fff;
}
.header__illustration img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: inherit;
}

.header__content {
  text-align: center;
  padding: 2rem 0rem;
  z-index: 3;
}

.header__title {
  color: var(--main-color);
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.header__function {
  color: var(--secondary-color);
  margin-bottom: 1rem;
  font-weight: 600;
  font-size: 1.4rem;
}

.header__desc {
  font-size: 1.4rem;
}

.header__contact {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.header__contact i {
  color: #fff;
  font-size: 1rem;
}

.header__contact a {
  background: var(--main-color);
  padding: 1rem;
  border-radius: 50%;
  height: 3rem;
  width: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
}
.header__contact a:hover {
  background: #121212;
}
.header__contact a + a {
  margin-left: 1rem;
}

.header__buttons {
  margin: 1rem 0 2rem;
}
.header__buttons .btn {
  background: var(--main-color);
  color: #fff;
  padding: 1rem 2rem;
  border-radius: 10px;
  font-size: 1.4rem;
  border: 1px solid var(--main-color);
  transition: all 0.3s ease-in-out;
}
.header__buttons .btn:hover {
  background: transparent;
  color: var(--main-color);
}
.header__buttons .btn + .btn {
  margin-left: 1rem;
}
.header__buttons .btn--secondary {
  background: var(--secondary-color);
  border: 1px solid var(--secondary-color);
}
.header__buttons .btn--secondary:hover {
  color: var(--secondary-color);
}
.header__buttons .btn--bordered {
  border: 1px solid var(--secondary-color);
  background: transparent;
  color: var(--main-color);
}
.header__buttons .btn--bordered:hover {
  background: linear-gradient(135deg, var(--main-color) 0%, var(--secondary-color) 100%);
  color: #fff;
}

.social__list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin: 0 auto;
  justify-content: center;
}

.social__item {
  position: relative;
  display: block;
  width: calc(15% - 1rem);
  margin-bottom: 1rem;
}
.social__item::before {
  content: "";
  display: block;
  padding-bottom: 100%;
}
.social__item + .social__item {
  margin-left: 1rem;
}

.social__link {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f9f7f4;
  border-radius: 10px;
}
.social__link:hover {
  transform: scale(1.2);
}

.social__item img {
  height: 1.8rem;
  width: auto;
}

.links__list {
  display: flex;
  flex-direction: column;
}

.links__item {
  display: block;
  width: 100%;
}
.links__item + .links__item {
  margin-top: 1rem;
}

.links__wrapper {
  background-color: #f9f7f4;
  display: block;
  padding: 1.5rem 2rem;
  border-radius: 10px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
}
.links__wrapper:hover {
  opacity: 1;
}
.links__wrapper:after {
  content: "";
}

.links__item .dashicons {
  color: var(--main-color);
}

.links__text {
  color: #121212;
  padding-left: 2rem;
  font-size: 1.4rem;
}

:root {
  --radius: 16px;
  --shadow: 0 10px 30px rgba(0,0,0,.15);
  --transition: 280ms cubic-bezier(.22,1,.36,1);
  --backdrop-bg: rgba(15, 18, 27, .45);
}

.modal-root[hidden] {
  display: none;
}

.modal-root {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  grid-template-rows: 1fr;
  align-items: end;
  /* bottom sheet */
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: var(--backdrop-bg);
  opacity: 0;
  transition: opacity var(--transition);
  backdrop-filter: saturate(120%) blur(4px);
}

.modal-card {
  position: relative;
  margin: 0 auto;
  width: min(92vw, 540px);
  background: white;
  color: #0f172a;
  border-radius: var(--radius) var(--radius) 0 0;
  box-shadow: var(--shadow);
  transform: translateY(110%);
  transition: transform var(--transition);
  will-change: transform;
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem 1.5rem;
  border-bottom: 1px solid #e5e7eb;
}

.gform_heading {
  display: none !important;
}

.modal-title {
  margin: 0;
  font-size: 1.7rem;
  font-weight: 500;
}

.modal-close {
  appearance: none;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-size: 1.6rem;
  line-height: 1;
  padding: 0.25rem;
  border-radius: 8px;
}

.modal-close:focus {
  outline: 2px solid var(--main-color);
  outline-offset: 2px;
}

.modal-content {
  padding: 2rem 1.5rem;
}

.field {
  margin: 0.8rem 0;
}

.label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.input,
.textarea {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  padding: 0.7rem 0.85rem;
  font: inherit;
  background: #fff;
}

.textarea {
  min-height: 110px;
  resize: vertical;
}

.actions {
  display: flex;
  gap: 0.6rem;
  justify-content: flex-end;
  margin-top: 1rem;
}

.btn-secondary {
  border: 1px solid #cbd5e1;
  background: #f8fafc;
  color: #0f172a;
  padding: 0.7rem 1rem;
  border-radius: 10px;
  cursor: pointer;
}

/* ===== Open state ===== */
.modal-root[aria-hidden=false] .modal-backdrop {
  opacity: 1;
}

.modal-root[aria-hidden=false] .modal-card {
  transform: translateY(0);
}

/* ===== Reduce motion ===== */
@media (prefers-reduced-motion: reduce) {
  .modal-backdrop,
  .modal-card {
    transition: none;
  }
}
.section {
  position: relative;
  padding-top: 2rem;
}
.section + .section {
  padding-top: 2rem;
}
.section:last-child {
  padding-bottom: 2rem;
}

.container {
  position: relative;
  margin-right: auto;
  margin-left: auto;
  width: 100%;
  padding-left: 6vw;
  padding-right: 6vw;
}
.container--stretch {
  max-width: 1280px;
}

.gform_heading {
  display: none;
}

.gfield {
  margin: 1rem 0;
}

.gchoice {
  margin: 0.8rem 0;
}

.gform_body input {
  color: #868686;
  border: 1px solid #868686 !important;
  box-shadow: 0px 1px 2px rgba(1, 1, 1, 0.05);
  border-radius: 10px !important;
  padding: 12px 10px !important;
}
.gform_body input::placeholder {
  color: #868686;
  font-size: 1.2rem !important;
}
.gform_body textarea {
  color: #868686;
  border: none;
  border-bottom: 1px solid #868686;
  box-shadow: 0px 1px 2px rgba(1, 1, 1, 0.05);
  border-radius: 0px;
  padding: 12px 0px !important;
  display: block;
}
.gform_body textarea::placeholder {
  font-family: "Noto Sans", sans-serif;
  color: #121212;
  font-size: 1rem !important;
}
.gform_body label {
  font-size: 1rem !important;
  font-weight: 400 !important;
  color: #868686;
  margin-bottom: 8px;
}

.gform_button {
  position: relative;
  background-color: var(--main-color) !important;
  color: #121212 !important;
  border: 1px solid #161615;
  width: 100% !important;
  padding: 15px 0px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 10px !important;
  display: inline-block;
  border-radius: 10px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.gform_button:hover {
  background-color: transparent;
  color: #161615;
}
.gform_button:after {
  position: absolute;
  top: 0;
  right: 0;
  width: 3rem;
  height: 0.8rem;
  content: "";
  display: block;
  background-image: url("../img/arrow-btn.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  margin-left: 1rem;
  transition: all 0.3s ease-in-out;
}
.gform_button:hover:after {
  transform: translateX(10px);
}

.gform_fields {
  gap: 2rem !important;
}

/* WP FORMS */
.wpforms-confirmation-container-full.wpforms-confirmation-scroll {
  background-color: #f9f7f4 !important;
  border: none !important;
  font-size: 2rem;
  padding: 2rem 0 !important;
}

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