@font-face {
  font-family: "Primary";
  src: url("../fonts/Inter-Regular.woff2");
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Primary";
  src: url("../fonts/Inter-SemiBold.woff2");
  font-weight: 700;
  font-display: swap;
}


:root,
::before,
::after {
  --color-black: #262626;
  --color-primary: #FF8195;
  --color-background: #404040;
  --color-red-2: #f0435f;
  --color-gray: #585858;
  --color-blue: #C4DFFB;
  --transition-duration: 300ms;
  --aspect-ratio-portrait: 2/2.5;
}

body {
  font-family: "Primary";
}

#tinymce {
  color: #000 !important;
}

footer .social {
    height: 2.5rem;
    width: 2.5rem;
}

.font-secondary {
  font-weight: var(--font-bold);
}

footer .social:hover{
    transform: scale(1.1);
}

.opacity-05 {
  opacity: .5;
}

.text-uppercase {
  text-transform: uppercase;
}

body {
  background: var(--color-white);
  color: var(--color-black);
}

body[data-scrolled].page-secondary .top-bar li.active a {
  text-decoration: underline;
  color: var(--color-white);
}

body[data-scrolled] .top-bar {
  background: var(--color-primary);
}

h1 {
  font-weight: 400;
}

.font-bold {
  font-weight: 700;
}

.color-gray {
  color: var(--color-gray);
}

.line-height-1 {
  line-height: 1;
}

.image-container:not(.no-border-radius) {
  border-radius: .625rem;
}

.swiper-container .swiper-pagination,
.swiper-container .swiper-navigation {
  position: static;
}

.swiper-container .swiper-navigation {
  display: flex;
  gap: 1rem;
  transition: var(--transition);
}

.swiper-container .swiper-navigation .swiper-button-prev,
.swiper-container .swiper-navigation .swiper-button-next {
  position: static;
  display: flex;
  transition: var(--transition);
  align-items: center;
  justify-content: center;
  height: 3rem;
  width: 3rem;
  border: solid 0.0625rem var(--color-white);
  border-radius: 50%;
}

.swiper-container .swiper-navigation .swiper-button-prev svg,
.swiper-container .swiper-navigation .swiper-button-next svg {
  height: 1.125rem;
  width: 1.875rem;
}

.swiper-container .swiper-navigation .swiper-button-prev::after,
.swiper-container .swiper-navigation .swiper-button-next::after {
  display: none;
}

.swiper-container .swiper-slide {
  transition: var(--transition);
}

.swiper-container .swiper-slide:not(.swiper-slide-visible) {
  opacity: 0;
}

.swiper-container .swiper-pagination .swiper-pagination-bullet {
  background: var(--color-white);
  transition: var(--transition);
  height: 0.625rem;
  width: 0.625rem;
}

p {
  line-height: 1.7;
}

.btn {
  font-weight: 700;
  border-radius: .625rem;
  font-size: 1rem;
  padding: 1rem 4.375rem;
  transition: var(--transition);
  border: solid 0.0625rem transparent;
  color: var(--color-white);
  text-transform: uppercase;
  border: 1px solid #fff;
}

.btn svg {
  height: .875rem;
  width: 1.125rem;
}

.btn.btn--type-1 {
  background: var(--color-primary);
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: var(--unit-10);
}

.btn.btn--type-1 svg {
  transform: rotate(-45deg);
}

.gdpr-custom {
    transition: var(--transition);
}

.gdpr-custom[data-invisible] {
    opacity: 0 !important;
    pointer-events: none !important;
}

.btn.btn--type-2 {
  border-color: var(--color-white);
}

.fixed-cta {
  position: fixed;
  z-index: 99;
  bottom: 2.5rem;
  right: 2.5rem;
}

.fixed-cta .actions {
  margin-bottom: 1.25rem;
  opacity: 0;
  pointer-events: none;
}

.fixed-cta .actions .action {
  height: 4.5rem;
  width: 4.5rem;
  background: #F6F2F3;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.fixed-cta .actions .action+.action {
  margin-top: 1.25rem;
}

.fixed-cta .actions .action svg {
  height: 1.875rem;
  width: 1.875rem;
}

.fixed-cta .toggle {
  cursor: pointer;
  height: 4.5rem;
  width: 4.5rem;
  background: var(--color-primary);
  border: solid .0625rem var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  position: relative;
}

.fixed-cta .toggle svg {
  height: 1.875rem;
  width: 1.875rem;
  pointer-events: none;
}

.fixed-cta .toggle .toggle-svg {
  position: absolute;
  pointer-events: none;
}

.fixed-cta .toggle .toggle-svg > svg:first-child {
    width: 2.25rem !important;
    min-width: 2.25rem;
}

.fixed-cta .toggle .toggle-active-svg {
  opacity: 0;
  display: flex;
  align-items: center;
}

.fixed-cta .toggle .toggle-active-svg svg {
  height: 1.25rem;
  width: 1.25rem;
}

.fixed-cta .actions[data-active] {
  opacity: 1;
  pointer-events: all;
}

.fixed-cta .actions[data-active] + .toggle .toggle-active-svg {
  opacity: 1;
}

.fixed-cta .actions[data-active] + .toggle .toggle-inactive-svg {
  opacity: 0;
}

.section:nth-child(2n){
  background: #F0DFE2;
}

.section.section--with-background {
  position: relative;
}

.section.section--with-background .section__background {
  position: absolute;
  left: 0;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  z-index: -1;
}

.section:not(.section--no-padding) {
  padding: 10vh 0;
}

.section__title {
  position: relative;
  z-index: 1;
}

.section .h2 {
  font-weight: var(--font-bold);
  line-height: 1;
  position: relative;
}

.section .h2 img {
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}



.section.section--background--2 {
  background: var(--color-red-2);
  color: var(--color-white);
}

.section.section--background-3 {
  background: var(--color-blue);
  color: var(--color-white);
}

.section.section--full .grid-container {
  max-width: 100%;
  padding: 0;
}

.top-bar {
  padding: 2.5rem 0;
}

.top-bar a {
  color: var(--color-white);
}

.top-bar li.active a {
  text-decoration: underline;
}

.top-bar nav li:last-child a {
  padding: 1.2rem 2.4rem;
  border: solid 0.0625rem var(--color-white);
  border-radius: 2rem;
}

.hero-section {
  height: 100vh;
  position: relative;
}

.hero-section h1 {
  color: var(--color-white);
  font-weight: var(--font-bold);
}


.hero-section .hero-section__background,
.hero-section::after {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
}

.hero-section .hero-section__background {
  -o-object-fit: cover;
  object-fit: cover;
  z-index: 0;
}

.hero-section::after {
  content: "";
  z-index: 1;
  background: rgba(var(--color-black-rgb), 0.3);
}

.hero-section .grid-container * {
  z-index: 2;
}

.section--what-you-get .what-you-get-list ul {
  list-style-type: none;
}

.section--what-you-get .what-you-get-list ul li + li {
  margin-top: 1.875rem;
}

.section--what-you-get .what-you-get-list ul li {
  position: relative;
  padding-left: 2.5rem;
}

.section--what-you-get .what-you-get-list ul li::before {
  content: url("../images/benefit-dec.svg");
  top: -.1rem;
  left: 0;
  position: absolute;
  display: inline-block;
  width: 1rem;
  height: 1rem;
}


.section--why-us .why-us {
  border-radius: .625rem;
  background: var(--color-background);
}

.section--why-us .why-us .why-us__icon {
  background: var(--color-white);
  border-radius: 50%;
  height: 4.375rem;
  width: 4.375rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.section--why-us .why-us .why-us__icon img {
  max-width: 80%;
}

.section--become-model .contact-mtd svg{
  height: 1.875rem;
  width: 1.875rem;
  min-height: 1.875rem;
  min-width: 1.875rem;
}

.section--adv .adv {
  text-align: center;
}

.section--adv .adv svg {
  height: 6.25rem;
  width: 6.25rem;
  border-radius: 50%;
  box-shadow: 0px 0px 17px 6px rgba(0, 0, 0, 0.08);
}

.section--collab .collab-item {
  background: #fff;
  border-radius: .625rem;
}


.section--expect .expectation .expectation__index{
    font-size: 4rem;
    color: var(--color-primary);
}

.section--faq .faq {
  background: #f7bfc8;
  border-radius: .625rem;
}

.section--faq .faq .faq__toggle {
  cursor: pointer;
  padding: 1rem
}

.section--faq .faq .faq__toggle__btn {
  height: 2.5rem;
  width: 2.5rem;
  min-height: 2.5rem;
  min-width: 2.5rem;
  background: var(--color-primary);
  border-radius: 50%;
  position: relative;
}

.section--faq .faq .faq__toggle__btn::before,
.section--faq .faq .faq__toggle__btn::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: var(--color-white);
  transition: var(--transition);
}

.section--faq .faq .faq__toggle__btn::before {
  height: .0625rem;
  width: .875rem;
}

.section--faq .faq .faq__toggle__btn::after {
  height: .875rem;
  width: .0625rem;
}

.section--faq .faq[data-active] .faq__toggle__btn::after {
  transform: translate(-50%, -50%) rotate(90deg);
} 

.section--faq .faq .faq__content {
  height: 0;
  overflow: hidden;
  transition: var(--transition);
  padding: 0 1rem;
}

.section--faq .faq[data-active] {
  padding-bottom: 1rem;
}

.footer {
  background: var(--color-primary);
  padding: 10vh 0;
}

.footer a {
  color: var(--color-white);
}

.footer a.logo {
  display: block;
}

.footer ul {
  list-style-type: none;
}

body.page-secondary .section:nth-child(2n) {
  background: #F0DFE2;
}

body.page-secondary .section:nth-child(2n+1) {
  background: #fff;
}

body.page-secondary .hero-section {
  height: 50vh;
}

body.page-secondary .hero-section h1 {
  color: var(--color-white);
  font-weight: 700;
}

.modal-partener {
  color: var(--color-black);
}

.modal-partener .modal__content-container {
  padding: 2rem;
  border-radius: 1rem;
}

.share svg {
  height: 3rem;
  width: 3rem;
}

.share svg * {
  stroke: var(--color-white);
}

.copy {
  position: relative;
  cursor: pointer;
}

.copy .tooltip {
  top: 0;
  right: 0;
  -webkit-transform: translateY(-125%);
  transform: translateY(-125%);
  position: absolute;
  font-size: .875rem;
  white-space: nowrap;
  background: #FFF;
  -webkit-box-shadow: 0 4px 14px 0 rgba(0, 0, 0, 0.06);
  box-shadow: 0 4px 14px 0 rgba(0, 0, 0, 0.06);
  border-radius: 1rem 1rem 0 1rem;
  padding: .5rem 0;
  width: 7rem;
  text-align: center;
  pointer-events: none;
  opacity: 0;
}

.copy.copied .tooltip {
  opacity: 1;
  color: #FFF;
  background: var(--color-primary);
}

.article-body-title h1 {
  font-size: 3.5rem;
  line-height: 1.25;
}

.hero-section.article-body-title::after {
  background: rgba(var(--color-black-rgb), 0.5);
}

.share .share__link {
  cursor: pointer;
}

.section--partners .partner {
  aspect-ratio: 16/9;
  border: solid .0625rem var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: .625rem;
  cursor: pointer;
}

.section--partners .partner img {
  max-height: 90%;
  max-width: 90%;
  transition: var(--transition);
}

.section--contact-promo .promo-text {
  font-size: 2rem;
  text-transform: uppercase;
}

.section--apply form .form-cnt {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.section--apply form .form-cnt input,
.section--apply form .form-cnt textarea {
  border: solid 0.0625rem #9A9A9A;
  resize: none;
  outline: none;
  padding: 1.125rem 1rem;
  font-size: 1.125rem;
  font-weight: 700;
  background: transparent;
  border-radius: .625rem;
}

.section--apply form .form-cnt input,
.section--apply form .form-cnt textarea,
.section--apply form .form-cnt label {
  width: 100%;
}

.section--apply form .form-cnt textarea {
  height: 10rem;
}

.section--apply form .form-cnt textarea::-webkit-scrollbar {
  display: none;
}

.section--apply form .form-cnt .checkbox-virtual__text {
  margin-top: -0.1rem;
}


.section--apply form .btn-cnt {
  display: flex;
  align-items: center;
  justify-content: center;
}

.section--apply form button {
  background: var(--color-primary);
  font-weight: 700;
  padding: 1rem 1.5rem;
  font-size: 1.375rem;
  color: var(--color-white);
  border-radius: .625rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  outline: none;
}

.section--apply form button svg {
  width: 1rem;
  height: .75rem;
}

.section--apply form img {
  transition: var(--transition);
}

.section--apply .contact-details {
  color: var(--color-white);
}

.snackbar__item::after {
  opacity: .65;
}

.snackbar__message,
.snackbar__remove {
  color: var(--color-white);
}


.swiper-next-prev-container {
  margin-top: 2rem;
}

.swiper-button-next, 
.swiper-rtl .swiper-button-prev {
  right: unset;
  left: unset;
  position: unset;
  width: unset;
  height: unset;
  margin-top: unset;
  display: unset;
  color: unset;
}

.swiper-button-next:after, 
.swiper-rtl .swiper-button-prev:after {
  content: unset;
}

.swiper-button-prev:after, 
.swiper-rtl .swiper-button-next:after {
  content: unset;
}

.swiper-button-next, 
.swiper-button-prev {
  position: unset;
  margin-top: unset;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: 1px solid var(--color-gray);
  transition: var(--transition);
}

.swiper-button-prev svg {
  transform: rotate(180deg);
}

.contact-container-list a {
  aspect-ratio: 1;
  background-color: var(--color-white);
  border-radius: 2rem;
}

.expectation {
    background-color: #F0DFE2;
    border-radius: var(--unit-10);
    padding: 1rem;
}

.partner {
  padding: 1rem;
  background-color: #F0DFE2;
}

.checkbox-virtual__text a {
  font-weight: var(--font-bold);
  text-decoration: underline;
}

.contact-container-list-page a {
  background-color: #FFECEF;
}

@media (min-width: 64em) {

  .section--partners .partner:hover img{
    transform: scale(1.1);
  }

  .share__link:hover {
    transform: scale(1.1);
  }

  .section--apply form button:hover{
    background: var(--color-red-2);
  }

  a:not(.btn):not(.news):not(.contact-cell):hover {
    color: var(--color-red-2);
  }

  .contact-cell {
    transition: var(--transition);
  }

  .contact-cell:hover {
    background-color: #f7bfc8;
  }

  .top-bar nav li:last-child a:hover {
    border-color: var(--color-red-2);
  }

  .btn:hover {
    background-color: var(--color-red-2);
  }

  .fixed-cta .action:hover svg {
    transform: scale(1.2);
  }

  .large-max-width-50 {
    max-width: 50%;
  }

  .large-max-width-75 {
    max-width: 75%;
  }

  .contact-method-cnt:hover .contact-method {
    background: var(--color-primary) !important;
  }

  .contact-method-cnt:hover .contact-method * {
    color: var(--color-white);
  }

  .contact-method-cnt:hover .contact-method .svg-box {
    background: var(--color-white);
  }

  .contact-method-cnt:hover .contact-method .svg-box svg * {
    fill: var(--color-primary);
    stroke: var(--color-primary);
  }

  .section .h2 {
    font-size: 3rem;
  }

  .large-grid-container {
    padding-right: var(--grid-container-padding-x, .9375rem);
    padding-left: var(--grid-container-padding-x, .9375rem);
    max-width: var(--grid-container-max-width, 85rem);
    margin: 0 auto;
  }

  .hero-section h1 {
    font-size: 3.5rem;
    line-height: 1.2;
  }
  
  .hero-custom-type h1,
    .hero-custom-type div {
      color: #fff !important;
      font-size: 3.5rem;
      font-weight: var(--font-bold);
    }

}

@media (max-width: 64em) {


  .hero-section h1 {
    font-size: 1.4rem;
    line-height: 1.2;
  }
  
    .hero-custom-type h1,
    .hero-custom-type div {
      color: #fff !important;
      font-size: 1.5rem;
      font-weight: var(--font-bold);
    }

  .top-bar nav li:last-child {
    margin-top: 1rem;
  }

  .section:not(.section--no-padding) {
    padding: 5vh 0;
  }

  .logo-container {
    margin-top: .5rem;
  }

  .share svg {
    height: 2rem;
    width: 2rem;
  }

  .top-bar {
    padding: 1.25rem 0;
  }

  h1 {
    font-size: 1.5rem;
    line-height: 1.2;
  }

  .section .h2 {
    font-size: 2rem;
  }

  .hamburger-container {
    border: solid 0.0625rem var(--color-white);
    border-radius: 50%;
    height: 3.5rem !important;
    width: 3.5rem !important;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .hamburger-container .hamburger {
    padding: 0;
    position: absolute;
  }

  .hamburger-container .hamburger>div {
    background: var(--color-white);
  }

  .hamburger-container .hamburger[data-active] {
    transform: rotate(180deg) translateY(40%);
  }

  .fixed-cta {
    bottom: 0.9375rem;
    right: 0.9375rem;
  }

  .fixed-cta .actions {
    margin-bottom: 0.9375rem;
  }

  .fixed-cta .actions .action {
    height: 3.5rem;
    width: 3.5rem;
  }

  .fixed-cta .actions .action+.action {
    margin-top: 0.9375rem;
  }

  .fixed-cta .actions .action svg {
    pointer-events: none;
    height: 1.25rem;
    width: 1.25rem;
  }

  .fixed-cta .toggle {
    cursor: pointer;
    height: 3.5rem;
    width: 3.5rem;
  }

  .fixed-cta .toggle svg {
    height: 1.25rem;
    width: 1.25rem;
  }

  .fixed-cta .toggle .toggle-inactive-svg {
    margin-top: -0.25rem;
  }

  nav[data-active] li.active a {
    color: var(--color-white);
    text-decoration: underline;
  }

  body.page-secondary .hero-section h1 {
    font-size: 2.5rem;
  }

  .large-grid-container .image-container {
    border-radius: unset;
  }

  .small-grid-container-padding {
    padding-left: var(--grid-container-padding-x);
    padding-right: var(--grid-container-padding-x);
  }

}

@media all and (min-width: 1023px) and (max-width: 1440px) {
  html {
    font-size: 75%;
  }
}

@media all and (min-width: 1536px) and (-webkit-min-device-pixel-ratio: 1.25) {
  html {
    font-size: 1.7075773746vmin;
  }
}

@media all and (min-width: 1280px) and (-webkit-min-device-pixel-ratio: 1.5) {
  html {
    font-size: 1.7075773746vmin;
  }
}

@media all and (min-width: 1097px) and (-webkit-min-device-pixel-ratio: 1.75) {
  html {
    font-size: 1.7075773746vmin;
  }
}