*,
*::after,
*::before {
  box-sizing: content-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 62.5%;
}

a,
a:active,
a:hover,
a:visited {
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  outline: none;
  text-decoration: inherit;
}

/* SETTINGS */

body {
  background-color: var(--theme-background);
  margin-bottom: 0 !important;
}

.site {
  overflow: hidden;
}

/* STRUCTURE */

.section {
  align-items: center;
  display: flex;
  flex-direction: column;
  position: relative;
  width: 100vw;
}

.section .container {
  width: var(--container-width);
  z-index: var(--container-z-index);
}

.section .container.container-expanded {
  height: var(--container-height);
}

/* MAIN */

/* HEADER */

.header {
  background-color: var(--theme-background-header);
  position: fixed;
  z-index: var(--z-index-header);
}

.container.container-head {
  align-items: center;
  display: flex;
  height: 8.8rem;
  justify-content: space-between;
}

.container.container-head .logo {
  margin: 0 1.6rem;
}

.container.container-head .menu .nav-link {
  color: var(--theme-main);
  font-family: "Poppins", sans-serif;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin: 0 1.6rem;
  position: relative;
}

.container.container-head .menu .nav-link::before {
  background-color: var(--theme-main);
  bottom: -0.5rem;
  content: "";
  height: 0.1rem;
  position: absolute;
  transition: 500ms ease;
  width: 0;
}

.container.container-head .menu .nav-link:hover::before {
  width: 100%;
}

.container.container-head .hamb,
.container.container-head .x,
.container.container-head .hamb.ACTIVE,
.container.container-head .x.ACTIVE {
  cursor: pointer;
  display: none;
  height: 3.2rem;
  margin: 0 1.6rem;
  width: 3.2rem;
}

.section.section-subheader {
  background-color: var(--theme-background-header);
}

.container.container-subheader {
  height: 8.8rem;
}

@media screen and (max-width: 767px) {
  .container.container-head .menu {
    display: none;
  }

  .container.container-head .menu.ACTIVE {
    background-color: var(--theme-background-header);
    display: flex;
    flex-direction: column;
    height: calc(100vh - 8.6rem);
    left: 0;
    position: absolute;
    top: 8.6rem;
    width: 100vw;
  }

  .container.container-head .menu .nav-link {
    font-size: 2.4rem;
    margin: 1.6rem 3.2rem;
  }

  .container.container-head .menu .nav-link::before {
    display: none;
  }

  .container.container-head .hamb.ACTIVE,
  .container.container-head .x.ACTIVE {
    display: block;
  }
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
  .container.container-head .menu {
    display: none;
  }

  .container.container-head .menu.ACTIVE {
    background-color: var(--theme-background-header);
    display: flex;
    flex-direction: column;
    height: calc(100vh - 8.6rem);
    left: 0;
    position: absolute;
    top: 8.6rem;
    width: 100vw;
  }

  .container.container-head .menu .nav-link {
    font-size: 2.4rem;
    margin: 1.6rem calc(((100vw - var(--container-width)) / 2) + 1.6rem);
  }

  .container.container-head .menu .nav-link::before {
    display: none;
  }

  .container.container-head .hamb.ACTIVE,
  .container.container-head .x.ACTIVE {
    display: block;
  }
}

@media screen and (min-width: 1024px) and (max-width: 1439px) {
  .container.container-head .menu {
    display: none;
  }

  .container.container-head .menu.ACTIVE {
    background-color: var(--theme-background-header);
    display: flex;
    flex-direction: column;
    height: calc(100vh - 8.6rem);
    left: 0;
    position: absolute;
    top: 8.6rem;
    width: 100vw;
  }

  .container.container-head .menu .nav-link {
    font-size: 3.2rem;
    margin: 1.6rem calc(((100vw - var(--container-width)) / 2) + 1.6rem);
  }

  .container.container-head .menu .nav-link::before {
    display: none;
  }

  .container.container-head .hamb.ACTIVE,
  .container.container-head .x.ACTIVE {
    display: block;
  }
}

/* HERO */

.section.section-hero {
  background-color: var(--theme-background-header);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.section.section-hero .hero-image {
  height: 56.25vw;
  object-fit: cover;
  width: 100vw;
}

.section.section-hero .hero-image.hero-image-mobile {
  display: none;
}

@media screen and (max-width: 767px) {
  .section.section-hero .hero-image {
    height: 64vh;
  }

  .section.section-hero .hero-image.hero-image-desktop {
    display: none;
  }

  .section.section-hero .hero-image.hero-image-mobile {
    display: block;
  }
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
}

@media screen and (min-width: 1024px) and (max-width: 1439px) {
}

/* ME */

:root {
  --container-me-padding: 6.6rem;
}

.container.container-me {
  display: grid;
  grid-template-columns: calc(50% + var(--container-me-padding)) calc(50% - var(--container-me-padding));
  height: calc(65vw - 8.6rem);
  padding-top: 8.6rem;
}

.container.container-me .me-image {
  display: flex;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.container.container-me .me-description {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: var(--container-me-padding);
}

.container.container-me .me-description p {
  color: var(--theme-main);
  font-family: "Poppins", sans-serif;
  font-size: 2rem;
  font-weight: 300;
}

.container.container-me .me-description p .span-emphasis {
  color: var(--theme-emphasis);
}

.container.container-me .me-description p .span-strong {
  font-style: italic;
  font-weight: 500;
}

@media screen and (max-width: 767px) {
  :root {
    --container-me-padding: 0;
  }

  .container.container-me {
    grid-template-columns: 100%;
    height: auto;
  }

  .container.container-me .me-image {
    display: none;
  }

  .container.container-me .me-description {
    margin-bottom: 8.6rem;
  }

  .container.container-me .me-description p {
    font-size: 1.6rem;
  }
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
  :root {
    --container-me-padding: 0;
  }

  .container.container-me {
    grid-template-columns: 100%;
    height: auto;
  }

  .container.container-me .me-image {
    display: none;
  }

  .container.container-me .me-description {
    margin-bottom: 8.6rem;
  }
}

@media screen and (min-width: 1024px) and (max-width: 1439px) {
  :root {
    --container-me-padding: 4.4rem;
  }

  .container.container-me {
    grid-template-columns: 50% 50%;
    height: auto;
    margin-bottom: 16rem;
  }
}

/* PHILISOPHY */

.section.section-philosophy {
  background-color: var(--theme-background-header);
}

.container.container-philisophy {
  margin-bottom: 20rem;
  padding-top: 20rem;
}

.container.container-philisophy .span {
  font-family: "PP Editorial New", serif;
  font-size: 6.4rem;
  font-style: normal;
  line-height: 8rem;
  margin-bottom: 3.2rem;
  text-transform: uppercase;
}

.container.container-philisophy .span .emphasis {
  color: var(--theme-emphasis);
}

.container.container-philisophy .span-2 {
  color: #404040;
  font-family: "Poppins", sans-serif;
  font-size: 2rem;
  line-height: normal;
}

@media screen and (max-width: 767px) {
  .container.container-philisophy {
    margin-bottom: 12rem;
    padding-top: 12rem;
  }

  .container.container-philisophy .span {
    font-size: 2.4rem;
    line-height: 3rem;
  }

  .container.container-philisophy .span-2 {
    font-size: 1.6rem;
  }
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
  .container.container-philisophy {
    margin-bottom: 12rem;
    padding-top: 12rem;
  }

  .container.container-philisophy .span {
    font-size: 4rem;
    line-height: 5rem;
  }
}

@media screen and (min-width: 1024px) and (max-width: 1439px) {
  .container.container-philisophy {
    margin-bottom: 16rem;
    padding-top: 16rem;
  }
}

/* ME IMAGE */

.container.container-me-image {
  height: 118.5rem;
}

.container.container-me-image .me-image-2 {
  position: absolute;
  top: -11.5rem;
}

@media screen and (max-width: 767px) {
  .container.container-me-image {
    height: 90vw;
  }

  .container.container-me-image .me-image-2 {
    left: 50%;
    top: -8rem;
    transform: translateX(-50%);
    width: 90vw;
  }
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
  .container.container-me-image {
    height: 90vw;
  }

  .container.container-me-image .me-image-2 {
    left: 50%;
    top: -8.5rem;
    transform: translateX(-50%);
    width: 90vw;
  }
}

@media screen and (min-width: 1024px) and (max-width: 1439px) {
  .container.container-me-image {
    height: 90vw;
  }

  .container.container-me-image .me-image-2 {
    left: 50%;
    transform: translateX(-50%);
    width: 90vw;
  }
}

/* ME 2 */

.container.container-me-2 {
  margin-bottom: 8rem;
}

.container.container-me-2 .header-me-2 {
  color: var(--theme-main);
  font-family: "PP Editorial New", serif;
  font-size: 12rem;
  font-weight: 400;
  margin-bottom: 8rem;
  text-transform: uppercase;
}

.container.container-me-2 .me-2-node {
  border-top: 1px solid #BFBFBF;
  display: grid;
  grid-template-columns: 6rem 1fr;
  margin-bottom: 3.2rem;
  padding-top: 3.2rem;
}

.container.container-me-2 .me-2-node .me-2-node-header {
  color: var(--theme-main);
  font-family: "PP Editorial New", serif;
  font-size: 3.2rem;
  font-weight: 200;
  margin-bottom: 2.6rem;
  text-transform: capitalize;
}

.container.container-me-2 .me-2-node .me-2-node-header.emphasis {
  font-style: italic;
}

.container.container-me-2 .me-2-node-desc {
  color: var(--theme-main);
  font-family: "Poppins", sans-serif;
  font-size: 1.6rem;
}

@media screen and (max-width: 767px) {
  .container.container-me-2 {
    margin-bottom: 1rem;
  }

  .container.container-me-2 .header-me-2 {
    font-size: 4rem;
    margin-bottom: 5.5rem;
  }
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
  .container.container-me-2 .header-me-2 {
    margin-bottom: 4.25rem;
  }
}

/* BIG HEADER */

.big-header {
  bottom: 0;
  color: var(--theme-header-2);
  font-family: "PP Editorial New", serif;
  font-size: 30rem;
  font-weight: 400;
  position: absolute;
  text-transform: uppercase;
  transform: translateY(50%);
  z-index: 500;
}

@media screen and (max-width: 767px) {
  .big-header {
    font-size: 8rem;
  }
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
  .big-header {
    font-size: 15rem;
  }
}

@media screen and (min-width: 1024px) and (max-width: 1439px) {
  .big-header {
    font-size: 20rem;
  }
}

/* SECTION-HEADER */

.section.section-header {
  height: 58rem;
  padding: 10rem 0;
  position: relative;
}

.section.section-header.w-background {
  background-color: var(--theme-background-header);
}

.section.section-header .section-header-image {
  height: 40rem;
  padding-top: 5rem;
}

.section.section-header .section-header-header {
  color: var(--theme-header-2);
  font-family: "PP Editorial New", serif;
  font-size: 19rem;
  font-style: normal;
  font-weight: 400;
  left: 50%;
  line-height: 19.2rem;
  position: absolute;
  text-align: center;
  text-transform: uppercase;
  top: 10rem;
  transform: translateX(-50%);
}

.section.section-header .section-header-header .section-header-header-emphasis {
  color: var(--theme-emphasis);
}

@media screen and (max-width: 767px) {
  .section.section-header {
    align-items: center;
    display: flex;
    height: 25rem;
    justify-content: center;
    padding: 2.5rem 0;
  }

  .section.section-header .section-header-image {
    padding-top: 0;
    height: 21rem;
  }

  .section.section-header .section-header-header {
    font-size: 7rem;
    line-height: 7.2rem;
    top: 50%;
    transform: translate(-50%, -50%);
  }
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
  .section.section-header {
    align-items: center;
    display: flex;
    height: 45rem;
    justify-content: center;
    padding: 2.5rem 0;
  }

  .section.section-header .section-header-image {
    padding-top: 0;
    height: 36rem;
  }

  .section.section-header .section-header-header {
    font-size: 11rem;
    line-height: 11.2rem;
    top: 50%;
    transform: translate(-50%, -50%);
  }
}

@media screen and (min-width: 1024px) and (max-width: 1439px) {
  .section.section-header {
    align-items: center;
    display: flex;
    height: 55rem;
    justify-content: center;
    padding: 5rem 0;
  }

  .section.section-header .section-header-image {
    padding-top: 0;
  }

  .section.section-header .section-header-header {
    font-size: 15rem;
    line-height: 15.2rem;
    top: 50%;
    transform: translate(-50%, -50%);
  }
}

/* PROCEDURE */

.section.section-procedure.w-background {
  background-color: var(--theme-background-header);
}

.container.container-procedure {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10rem;
}

.container.container-procedure.w-reverse {
  flex-direction: row-reverse;
}

.container.container-procedure .procedure-image {
  height: 62rem;
  object-fit: cover;
  width: 46rem;
}

.container.container-procedure .procedure-description {
  width: 59rem;
}

.procedure-item {
  border-top: 1px solid var(--theme-emphasis);
  margin-bottom: 2.4rem;
  padding-top: 2.4rem;
}

.procedure-item .procedure-header {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-bottom: 2.6rem;
}

.procedure-item .procedure-header .procedure-h3 {
  color: var(--theme-main);
  cursor: pointer;
  font-family: "PP Editorial New", serif;
  font-size: 2.4rem;
  font-weight: 200;
  text-transform: uppercase;
}

.procedure-item .procedure-header .procedure-icon {
  cursor: pointer;
  transition: 500ms ease;
}

.procedure-item .procedure-header .procedure-icon.ACTIVE {
  transform: rotate(90deg);
}

.procedure-item .procedure-main {
  display: none;
}

.procedure-item .procedure-main.ACTIVE {
  display: block;
}

.procedure-item .procedure-main .procedure-paragraph {
  color: var(--theme-main);
  font-family: "Poppins", sans-serif;
  font-size: 1.6rem;
  margin-bottom: 3.2rem;
}

.procedure-item .procedure-main .procedure-button {
  align-items: center;
  background-color: transparent;
  border: 0.5px solid var(--theme-main);
  border-radius: 0.8rem 0;
  color: var(--theme-main);
  cursor: pointer;
  display: flex;
  font-family: "Poppins", sans-serif;
  font-size: 1.2rem;
  font-weight: 500;
  justify-content: center;
  line-height: 100%;
  padding: 1.5rem 1.6rem;
}

@media screen and (max-width: 767px) {
  .container.container-procedure,
  .container.container-procedure.w-reverse {
    flex-direction: column;
    margin-bottom: 4rem;
  }

  .container.container-procedure .procedure-image {
    height: 90vw;
    margin-bottom: 4.8rem;
    width: 100%;
  }

  .container.container-procedure .procedure-description {
    width: 100%;
  }
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
  .container.container-procedure,
  .container.container-procedure.w-reverse {
    flex-direction: column;
    margin-bottom: 4rem;
  }

  .container.container-procedure .procedure-image {
    margin-bottom: 6.4rem;
    width: 100%;
  }

  .container.container-procedure .procedure-description {
    width: 100%;
  }
}

@media screen and (min-width: 1024px) and (max-width: 1439px) {
  .container.container-procedure,
  .container.container-procedure.w-reverse {
    flex-direction: column;
  }

  .container.container-procedure .procedure-image {
    margin-bottom: 8rem;
    width: 100%;
  }

  .container.container-procedure .procedure-description {
    width: 100%;
  }
}

/* CONTACT */

.section.section-contact {
  background-color: var(--theme-background-header);
  height: 15rem;
}

.container.container-contact-2 {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10rem;
  padding-top: 25rem;
}

.container.container-contact-2 .contact-description {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 6.4rem;
}

.container.container-contact-2 .contact-description .contact-header {
  color: var(--theme-main);
  font-family: "PP Editorial New", serif;
  font-size: 2.4rem;
  font-style: italic;
  font-weight: 400;
  margin-bottom: 3.2rem;
}

.container.container-contact-2 .contact-description .contact-subheader,
.container.container-contact-2 .contact-description .contact-address {
  color: var(--theme-main);
  font-family: "Poppins", sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 0.8rem;
}

.container.container-contact-2 .contact-description .contact-address {
  color: #817E7E;
  margin-bottom: 3.2rem;
}

.container.container-contact-2 .contact-image {
  height: 44rem;
  object-fit: cover;
  width: 64rem;
}

@media screen and (max-width: 767px) {
  .section.section-contact {
    height: 4rem;
  }

  .container.container-contact-2 {
    flex-direction: column;
    padding-top: 10rem;
  }

  .container.container-contact-2 .contact-description {
    margin-bottom: 5rem;
    padding: 0 3.2rem;
  }

  .container.container-contact-2 .contact-image {
    height: 75vw;
    width: 100%;
  }
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
  .section.section-contact {
    height: 8rem;
  }

  .container.container-contact-2 {
    padding-top: 17.5rem;
  }

  .container.container-contact-2 .contact-description {
    padding: 0 3.2rem;
  }

  .container.container-contact-2 .contact-image {
    height: 30rem;
    width: 36rem;
  }
}

@media screen and (min-width: 1024px) and (max-width: 1439px) {
  .section.section-contact {
    height: 3.75rem;
  }

  .container.container-contact-2 {
    padding-top: 17.5rem;
  }

  .container.container-contact-2 .contact-description {
    padding: 0 9.6rem;
  }

  .container.container-contact-2 .contact-image {
    height: 36rem;
    width: 48rem;
  }
}

/* FOOTER */

.section.section-footer {
  align-items: center;
  display: flex;
  background-color: var(--theme-main);
  padding: 12rem 0 8rem;
}

.section.section-footer .logo-full {
  margin-bottom: 3.2rem;
}

.section.section-footer .some {
  align-items: center;
  display: flex;
  margin-bottom: 3.2rem;
}

.section.section-footer .some .some-icon {
  margin: 0 1.2rem;
}

.section.section-footer .bottom-menu {
  align-items: center;
  display: flex;
  justify-content: center;
  margin-bottom: 5rem;
}

.section.section-footer .bottom-menu .nav-link {
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  margin: 0 2.7rem;
  position: relative;
}

.section.section-footer .bottom-menu .nav-link::before {
  background-color: #fff;
  bottom: -0.5rem;
  content: "";
  height: 0.1rem;
  position: absolute;
  transition: 500ms ease;
  width: 0;
}

.section.section-footer .bottom-menu .nav-link:hover::before {
  width: 100%;
}

@media screen and (max-width: 767px) {
  .section.section-footer .bottom-menu {
    flex-direction: column;
  }

  .section.section-footer .bottom-menu .nav-link {
    margin: 0.6rem;
  }

  .section.section-footer .bottom-menu .nav-link::before {
    display: none;
  }
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
  .section.section-footer .bottom-menu .nav-link::before {
    display: none;
  }
}

@media screen and (min-width: 1024px) and (max-width: 1439px) {
  .section.section-footer .bottom-menu .nav-link::before {
    display: none;
  }
}

/* ANHOR */

.ANHOR {
  position: absolute;
  top: -15rem;
}

.HIGH-ANHOR {
  position: absolute;
  top: -25rem;
}

.LOW-ANHOR {
  position: absolute;
  top: -5rem;
}

@media screen and (max-width: 767px) {
  .ANHOR {
    top: -14rem;
  }

  .HIGH-ANHOR {
    top: -15rem;
  }

  .LOW-ANHOR {
    top: -8rem;
  }
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
  .ANHOR {
    top: -12.5rem;
  }

  .HIGH-ANHOR {
    top: -20.5rem;
  }

  .LOW-ANHOR {
    top: -8rem;
  }
}

@media screen and (min-width: 1024px) and (max-width: 1439px) {
  .ANHOR {
    top: -15rem;
  }

  .HIGH-ANHOR {
    top: -25rem;
  }

  .LOW-ANHOR {
    top: -15rem;
  }
}
