@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.7.0/font/bootstrap-icons.css");
@import url("https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,wght@0,200;0,300;0,400;0,600;0,700;0,800;0,900;1,200;1,300;1,400;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200;0,300;0,400;0,600;0,700;0,800;0,900;1,200;1,300;1,400;1,600;1,700;1,800;1,900&display=swap");
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, sup, 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;
  font-size: 100%;
  font: inherit;
  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;
}

ol, 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;
}

html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

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

body::-webkit-scrollbar {
  width: 11px;
}

html, body {
  scrollbar-width: thin;
  scrollbar-color: #5AC2D9 #36454f;
}

body::-webkit-scrollbar-track {
  background: #36454f;
}

body::-webkit-scrollbar-thumb {
  background-color: #5AC2D9;
  border-radius: 0px;
  border: 0 solid #36454f;
}

html, body {
  width: 100%;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
}

.site {
  position: relative;
  width: 100%;
  background-color: #f4f0ec;
  font-size: 0.75rem;
  font-family: 'Nunito Sans', sans-serif;
  color: #36454f;
}

.container {
  margin: auto;
  width: 100%;
  max-width: 1280px;
}

.header {
  width: 100%;
}

.header .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header--social {
  background: -webkit-gradient(linear, left top, right top, from(#786FB1), color-stop(#5AC2D9), to(#C1CE00));
  background: linear-gradient(to right, #786FB1, #5AC2D9, #C1CE00);
  padding: 0.75rem 0;
  color: white;
}

.header--social i {
  font-size: 1rem;
  -webkit-filter: drop-shadow(0 2px 2px rgba(0, 0, 0, 0.2));
          filter: drop-shadow(0 2px 2px rgba(0, 0, 0, 0.2));
}

.header--social a {
  color: white;
}

.header .contact, .header .social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
}

.header .contact__item, .header .social__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header--menu {
  position: -webkit-sticky;
  position: sticky;
  top: -1px;
  background-color: #f4f0ec;
  -webkit-filter: drop-shadow(0 1px 20px rgba(54, 69, 79, 0.12));
          filter: drop-shadow(0 1px 20px rgba(54, 69, 79, 0.12));
}

.header .menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  padding: 0.75rem 0;
  font-size: 1rem;
  background-color: #f4f0ec;
}

.header .menu__item {
  display: block;
  padding: 10px;
  text-decoration: none;
  color: #36454f;
  font-weight: 800;
}

.header .menu__item--active {
  color: #5AC2D9;
}

.header .menu__item:hover {
  color: #C1CE00;
}

.header .logo {
  -ms-flex-item-align: stretch;
      -ms-grid-row-align: stretch;
      align-self: stretch;
  position: relative;
}

.header .logo img {
  position: absolute;
  border-radius: 50%;
  background-color: #f4f0ec;
  padding: 0.5rem;
  height: 6rem;
  aspect-ratio: 1/1;
}

.section {
  border-bottom: 5px solid;
  border-image-slice: 1;
  border-bottom-width: 0.4rem;
  border-image-source: linear-gradient(to right, #786FB1, #5AC2D9, #C1CE00);
  line-height: 1.5rem;
  letter-spacing: 0.25px;
}

.section--padded {
  padding: 2rem 0;
}

.section:nth-child(even) {
  background-color: #f4f0ec;
}

.section:nth-child(odd) {
  background-color: #eee9e2;
}

.section--main {
  height: calc(100vh - 6.4rem);
  background: url("/img/bg/header_section-5.jpg") center center/cover;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.section--main h1 {
  color: white;
  font-family: 'Nunito', sans-serif;
  font-size: 6em;
  padding: 4rem;
  border: 0.375rem solid white;
  border-radius: 1rem;
}

.section--about .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.section--work .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.section--invitation {
  background: -webkit-gradient(linear, left top, right top, from(#786FB1), color-stop(#5AC2D9), to(#C1CE00));
  background: linear-gradient(to right, #786FB1, #5AC2D9, #C1CE00);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  padding: 4rem 0;
  font-size: 3rem;
  font-family: 'Nunito', sans-serif;
  font-style: italic;
  letter-spacing: 0.15rem;
  font-weight: 800;
  color: white;
}

.logo--big {
  height: 20rem;
}

.logo--circled {
  background-color: white;
  border-radius: 50%;
  padding: 1rem;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Nunito', sans-serif;
}

h2 {
  font-size: 3rem;
  margin: 2rem 0 4rem;
}

h3 {
  font-size: 2rem;
  margin: 0.75rem 0 1.2rem;
}

.h--italic {
  font-style: italic;
}

.h--semibold {
  font-weight: 600;
}

p {
  font-size: 1.15rem;
  margin-bottom: 1rem;
}

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

.p--left {
  text-align: left;
}

.p--right {
  text-align: right;
}

.p--justify {
  text-align: justify;
}

.bmi_green {
  color: #C1CE00;
}

.bmi_purple {
  color: #786FB1;
}

.bmi_blue {
  color: #5AC2D9;
}

.panels {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 3.5rem;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.panels .panel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 100%;
          flex: 1 1 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #f4f0ec;
  padding: 1rem;
  -webkit-box-shadow: 0px 8px 12px -8px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 8px 12px -8px rgba(0, 0, 0, 0.2);
  border-radius: 0.5rem;
}

.panels .panel img {
  width: 100%;
  margin-bottom: 1.5rem;
}
/*# sourceMappingURL=app.css.map */