@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: #2c6f7b;
  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 #104e5d;
}

em.primary {
  color: #104e5d;
}
em.block {
  display: block;
}

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

::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, #104e5d 0%, #2c6f7b 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: #104e5d;
}

.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: linear-gradient(135deg, #104e5d 0%, #2c6f7b 100%);
  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__illustration {
  position: relative;
  height: 10rem;
  width: 10rem;
  border-radius: 50%;
  box-shadow: 0px 0px 10px rgba(1, 1, 1, 0.5);
}
.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: #104e5d;
  font-size: 2.2rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.header__function {
  color: #868686;
  margin-bottom: 1rem;
  font-weight: 400;
  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: linear-gradient(135deg, #104e5d 0%, #2c6f7b 100%);
  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: linear-gradient(135deg, #104e5d 0%, #2c6f7b 100%);
  color: #fff;
  padding: 1rem 2rem;
  border-radius: 10px;
  font-size: 1.4rem;
  border: 1px solid #104e5d;
  transition: all 0.3s ease-in-out;
}
.header__buttons .btn:hover {
  background: transparent;
  color: #104e5d;
}
.header__buttons .btn + .btn {
  margin-left: 1rem;
}
.header__buttons .btn--bordered {
  border: 1px solid #104e5d;
  background: transparent;
  color: #104e5d;
}
.header__buttons .btn--bordered:hover {
  background: linear-gradient(135deg, #104e5d 0%, #2c6f7b 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: #104e5d;
}

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

.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: none;
  border-bottom: 1px solid #868686;
  box-shadow: 0px 1px 2px rgba(1, 1, 1, 0.05);
  border-radius: 0px;
  padding: 12px 0px !important;
}
.gform_body input::placeholder {
  color: #868686;
  font-size: 1rem !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: "Inter", sans-serif;
  color: #868686;
  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: #161615;
  color: white;
  border: 1px solid #161615;
  width: 100%;
  padding: 15px 0px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 1rem;
  font-weight: 700;
  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);
}

/* 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 */
