/* importing font open-sans-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 400;
  src: url("/assets/fonts/open-sans-v36-latin-regular.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

html,
body {
  margin: 0;
  padding: 0;
}

* {
  font-family: "Open Sans", system-ui, sans-serif;
}

:root {
  --basic-padding: 20px;
  --padding-x-big: 100px;
  --vertical-button-spacing: 20px;
  --sm-button-border-radius: 9999px;
  --sm-button-gradient: linear-gradient(90deg, #66c2c9, #602483);
  --sm-secondary-button-text-color: #000;
  --sm-secondary-button-background-color: #e7e7e7;
  --sm-text-button-label-text-color: #000;
  --sm-max-width: 1500px;
  --sm-shadow-grey: #00000033;
}

#sm-header {
  border-bottom: 1px solid #000;
}

#sm-content {
  margin: 0 auto;
  padding: var(--basic-padding);
  overflow: hidden;
  position: relative;
  z-index: 0;
  max-width: var(--sm-max-width);
}

@media (min-width: 1500px) {
  #sm-content {
    overflow: visible;
  }
}

/* NAVBAR --------------------- */
#sm-navbar {
  margin: 0 auto;
  padding: var(--basic-padding);
  display: flex;
  justify-content: space-evenly;
  overflow: hidden;
  max-width: var(--sm-max-width);
}

.sm-navbar-image {
  max-height: 40px;
}

#sm-navbar-burger {
  display: none;
}

#sm-navbar-burger-button > img {
  width: 50px;
}

#sm-navbar-burger-menu {
  position: absolute;
  right: 0;
  width: 300px;
  display: none;
  z-index: 1;
  box-shadow: 0 3px 10px rgb(0 0 0 / 0.2);
}

#sm-navbar-burger-menu div {
  background-color: #fff;
  border-top: 1px solid #000;
  border-bottom: 0;
  padding: var(--basic-padding);
}

#sm-navbar-burger-menu div:hover {
  background-color: #f2edf5;
}

#sm-navbar-burger-menu:last-child {
  border-bottom: 1px solid #000;
}

.sm-language-toggle > a,
.sm-language-toggle > a,
.sm-language-toggle > a:focus,
.sm-language-toggle > a:active {
  text-decoration: none;
}

.sm-active-language > button {
  --sm-text-button-label-text-color: #602483;
  --sm-text-button-label-font-weight: 400;
  font-size: 20px;
}

/* Small devices (desktops, 1240px and smaller) */
@media (max-width: 1240px) {
  #sm-navbar {
    display: none;
  }

  #sm-navbar-burger {
    padding: var(--basic-padding);
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  #sm-navbar-burger .sm-button {
    margin-right: 0;
  }
}

/* ---------------------------- */

/* HERO --------------------- */
/* Large devices (desktops, 1400px and up) */
@media (min-width: 1400px) {
  .sm-hero-title {
    font-size: 60px; /*76px;*/
  }

  .sm-hero-content {
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
  }

  .sm-hero-texts {
    max-width: 50%;
  }

  .sm-hero-images {
    max-width: 50%;
    display: flex;
    height: 570px;
  }

  .sm-hero-photo {
    position: relative;
    left: 200px;
  }

  .sm-about-us-buttons,
  .sm-hero-buttons {
    margin: 25px 0 125px var(--padding-x-big);
  }
}

/* Medium devices (tablets, less than 1400px) */
@media (max-width: 1399.98px) {
  .sm-hero-title {
    font-size: 76px;
    text-align: center;
    max-width: 780px;
    margin: 50px auto auto;
  }

  .sm-hero-text {
    max-width: 780px;
    margin: 50px auto;
  }

  .sm-hero-gradient-triangle {
    position: relative;
    left: -0px;
    z-index: -1;
  }

  .sm-hero-images {
    position: relative;
    display: flex;
    max-width: 50%;
    justify-content: center;
    box-sizing: border-box;
    object-fit: contain;
    max-height: 550px;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 50px;
  }

  .sm-hero-gradient-triangle {
    position: relative;
    left: -20%;
  }

  .sm-hero-photo {
    position: relative;
    left: 20%;
  }

  .sm-about-us-buttons,
  .sm-hero-buttons {
    display: flex;
    justify-content: space-between;
    max-width: 800px;
    margin: auto;
  }
}

/* Small devices (landscape phones, less than 768px) */
@media (max-width: 767.98px) {
  :root {
    --padding-x-big: var(--basic-padding);
  }
  .sm-hero-title {
    font-size: 50px;
    text-align: left;
  }

  .sm-hero-images {
    width: 100%;
    max-width: 100%;
  }

  .sm-about-us-buttons,
  .sm-hero-buttons {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .sm-about-us-buttons > a,
  .sm-hero-buttons > a {
    align-self: unset;
  }

  .sm-hero-button.sm-gradient-button:first-child {
    margin-bottom: var(--vertical-button-spacing);
  }

  #sm-content {
    padding: 0;
  }
}

/* All devices */
.sm-hero-title {
  letter-spacing: 1px;
  line-height: 1.3em;
  font-weight: 100;
}

.sm-hero-text {
  line-height: 32px;
  letter-spacing: 0.5px;
  font-size: 26px;
}

.sm-hero-social-media-buttons {
  margin: 50px auto auto;
  text-align: center;
}

.sm-hero-social-media-buttons img {
  height: 50px;
}

/* ---------------------------- */

/* RECOMMENDATIONS --------------------- */
/* All devices */
.sm-recommendations {
  margin: 100px auto 100px 100px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.sm-side-gradient-triangle {
  position: absolute;
  width: 150px;
  left: calc(-1 * 172px);
}

.sm-recommendations-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 5px;
  width: 80%;
  border: solid black;
  border-width: 1px 0;
  padding: 10px 0;
}

.sm-recommendations-text {
  width: 260px;
  min-width: 260px;
}

/* Medium devices (less than 1400px) */
@media (max-width: 1399.98px) {
  .sm-recommendations {
    margin-bottom: 0;
  }

  .sm-side-gradient-triangle {
    display: none;
  }
}

/* Small devices (landscape phones, less than 768px) */
@media (max-width: 767.98px) {
  .sm-recommendations {
    margin: 100px auto 0px;
  }

  .sm-recommendations-text {
    text-align: center;
  }

  .sm-recommendations-content {
    flex-direction: column;
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
/* ---------------------------- */

/* INFO BOX --------------------- */
/* All devices */
.sm-info-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1140px;
  --info-box-height: 720px;
  --info-box-width: 562px;
  height: var(--info-box-height);
  margin: auto;
}

.sm-info-box-description {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  background-color: #f2edf5;
  width: var(--info-box-width);
  height: var(--info-box-height);
  --content-width: 410px; /*370*/
}

.sm-info-box-description-title {
  text-align: left;
  margin-top: 50px;
  /* margin-bottom: 50px; */
  width: var(--content-width);
}

.sm-info-box-description-text {
  font-size: 18px;
  line-height: 30px;
  text-align: left;
  /* margin-bottom: 50px; */
  width: var(--content-width);
}

.sm-info-box-description-text > p > b {
  font-weight: bold;
}

.sm-info-box-description-text > p > i {
  font-size: 0.8em;
}

.sm-steps-box-description-button,
.sm-info-box-description-button {
  color: #fff;
  align-self: flex-start;
  margin-left: calc((var(--info-box-width) - var(--content-width)) / 2 - 15px);
  letter-spacing: 4%;
}

.sm-steps-box-description-button > button,
.sm-info-box-description-button > button {
  --sm-text-button-label-text-color: #602483;
  letter-spacing: 4%;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: -0.5px;
}

.sm-info-box-image {
  width: var(--info-box-width);
  height: var(--info-box-height);
  overflow: hidden;
}

.sm-info-box-reversed {
  flex-direction: row-reverse;
}

/* Smallish devices (tablets, less than 1000px) */
@media (max-width: 999.98px) {
  .sm-info-box {
    flex-direction: column;
    height: auto;
  }
}

/* Super-small devices (landscape phones, less than 410px) */
@media (max-width: 409.98px) {
  .sm-info-box-description {
    --content-width: 90vw;
  }
}

/* ---------------------------- */

/* STEPS BOX --------------------- */
/* All devices */
.sm-steps-box {
  background-image: url("/assets/images/sm-step-box-background.png");
  color: #fff;
  height: 767px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  --content-alignment: flex-start;
  z-index: -1;
  position: relative;
}

.sm-steps-box-content {
  display: flex;
  flex-direction: column;
  align-items: var(--content-alignment);
  width: 550px;
  max-width: 1140px;
  padding: 100px 0;
}

.sm-steps-box-description-button {
  align-self: var(--content-alignment);
}

.sm-steps-box-description-button {
  --sm-filled-button-container-color: #b34090;
}

.sm-steps-box-list {
  --list-dot-size: 40px;
  --space-between-list-items: calc(var(--list-dot-size) / 2);
}

.sm-steps-box-list li {
  position: relative;
  margin-bottom: var(--space-between-list-items);
  line-height: var(--list-dot-size);
  padding-left: 50px;
}

.sm-steps-box-list li::before {
  position: absolute;
  left: -31px;
  z-index: -1;
  display: inline-block;
  background: #b34090;
  content: "";
  width: var(--list-dot-size);
  height: var(--list-dot-size);
  border-radius: 50%;
}

/* Small devices (landscape phones, less than 768px) */
@media (max-width: 767.98px) {
  .sm-steps-box-content {
    width: 95%;
  }

  .sm-steps-box-list {
    --list-dot-size: 35px;
  }

  .sm-steps-box-list li {
    margin-bottom: 15px;
    padding-left: 20px;
  }

  .sm-steps-box-list li::before {
    margin-right: 5px;
  }
}

/* Super-small devices (landscape phones, less than 410px) */
@media (max-width: 409.98px) {
  .sm-steps-box-content {
    padding-top: 30px;
  }
}
/* ---------------------------- */

/* FAQ --------------------- */
.sm-faq {
  background-color: #f2edf5;
  padding: var(--padding-x-big);
  margin: 25px auto;
}

.sm-outline-box {
  justify-content: left;
}

.sm-outline-box > div {
  min-width: 100%;
}

.sm-faq-list > li {
  padding-bottom: 10px;
  border-bottom: 1px solid var(--sm-shadow-grey);
}

.sm-faq-list li:last-of-type {
  padding-bottom: 0;
  border: none;
}
/* ---------------------------- */

/* ABOUT US --------------------- */
/* All devices */
.sm-about-us-challenges {
  margin-bottom: 0;
}

.sm-about-us-challenges-text {
  font-size: 16px;
}
/* ---------------------------- */

/* SM FORM -------------- */
.sm-form {
  max-width: var(--sm-max-width);
  width: 50%;
  margin-bottom: 100px;
}

.sm-form a {
  color: #602483;
}

.sm-form a:active,
.sm-form a:visited,
.sm-form a:hover {
  color: #520b26;
}

.sm-form .field {
  margin-top: 20px;
}

.sm-form .field.first {
  margin-top: 0;
}

.sm-form input, textarea {
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  padding: 10px 5px;
  width: 100%;
  color: #000;
  background-color: #fff;
}

.sm-form input:active,
.sm-form input:focus,
.sm-form input:focus-visible {
  border-image-source: var(--sm-button-gradient);
  border-width: 1pt;
  border-image-slice: 1;
  border-radius: 4px;
  outline-width: 0;
}

.sm-form label {
  font-family: "Open Sans", system-ui, sans-serif;
  color: rgba(0, 0, 0, 0.7);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.4375em;
  letter-spacing: 0.00938em;
  padding: 0px;
  position: relative;
  display: block;
  transform-origin: left top;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

.sm-form .error {
  color: #d32f2f;
}

.sm-form input:has(+ .error) {
  border-color: #d32f2f;
}

/* Medium devices (tablets, less than 1400px) */
@media (max-width: 1399.98px) {
  .sm-form {
    width: 90%;
    margin: 50px auto 100px;
  }

  .sm-form input {
    width: 90%;
  }
}
/* ---------------------------- */

/* FOOTER --------------------- */
/* All devices */
.sm-footer * {
  text-transform: uppercase;
}
.sm-footer {
  border-top: 10px solid #797979;
  border-bottom: 1px solid #000;
}

.sm-footer-content {
  --padding-x: 20%;
  display: flex;
  justify-content: space-between;
}

.sm-footer-content-section {
  border-bottom: 1px solid #000;
  min-width: 25%;
  box-sizing: border-box;
  overflow: hidden;
}

.sm-footer-content-title-box {
  border-bottom: 1px solid #000;
  min-width: 190px;
}

.sm-footer-content-title,
.sm-footer-content-list {
  padding: 15px 0 15px var(--padding-x);
}

.sm-footer-content-title {
  padding-bottom: 5px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1px;
}

.sm-footer-content-list {
  padding-left: var(--padding-x);
  display: flex;
  flex-direction: column;
  min-width: 200px;
}

.sm-footer-bottom {
  display: flex;
  justify-content: space-between;
  max-width: 95%;
  margin: auto;
}

.sm-footer-content-list a > button {
  color: #000;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: -0.5px;
  position: relative;
  left: -15px;
  min-width: max-content;
}

.sm-footer-content-list a > button:hover {
  background-color: transparent;
  color: #000;
}

#sm-social-media-list {
  flex-direction: row;
  justify-content: flex-start;
}

button > img {
  height: 25px;
}

/* Smallish devices (tablets, less than 1273px) */
@media (max-width: 1272.98px) {
  .sm-footer-content {
    flex-wrap: wrap;
    gap: 0;
  }

  .sm-footer-content-section {
    min-width: 50%;
    border-top: 10px solid #797979;
  }

  .sm-footer {
    border-top: none;
  }
}
/* Small devices (less than 545px) */
@media (max-width: 544.98px) {
  .sm-footer-content-section {
    min-width: 100%;
  }
}
/* Super-small devices (less than 350px) */
@media (max-width: 349.98px) {
  .sm-footer-bottom {
    flex-direction: column;
  }

  .sm-footer-bottom > p {
    text-align: center;
  }
}
/* ---------------------------- */

/* GLOBAL --------------------- */

.sm-h2 {
  font-size: 35px;
  font-weight: 600;
  letter-spacing: 2%;
}

.sm-secondary-button {
  --sm-filled-button-container-color: var(
    --sm-secondary-button-background-color
  );

  background: var(--sm-secondary-button-background-color);
  --sm-filled-button-label-text-color: var(--sm-secondary-button-text-color);
  border-radius: var(--sm-button-border-radius);
}

.sm-button {
  border: 0px;
  padding: 10px 15px;
  border-radius: var(--sm-button-border-radius);
  font-size: 16px;
  letter-spacing: 6%;
  font-weight: 400;
  margin-right: 20px;
}

.sm-button:hover {
  cursor: pointer;
}

.sm-text-button {
  background-color: transparent;
  color: var(--sm-text-button-label-text-color);
}

.sm-text-button:hover {
  background-color: #f2edf5;
  color: #602483;
}

.sm-filled-button {
  color: var(--sm-filled-button-label-text-color);
  background-color: var(--sm-filled-button-container-color);
}

.sm-secodary-button {
  color: var(--sm-secondary-button-text-color);
  background-color: #e7e7e7;
}

.sm-filled-button:hover {
  box-shadow: 0 3px 10px rgb(0 0 0 / 0.2);
}

.sm-gradient-button {
  color: #fff;
  --sm-filled-button-container-color: var(--sm-button-gradient);

  background: var(--sm-button-gradient);
  border-radius: var(--sm-button-border-radius);
}

a {
  text-decoration: none;
}

.sm-text-button {
  --sm-text-button-label-font-weight: 400;
  --sm-text-button-label-text-color: #602483;
  text-decoration: none;
}

.sm-icon-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sm-icon-button > svg {
  margin-left: 10px;
}

.sm-icon-button:hover {
  text-decoration: underline;
}

.sm-content-padding-x {
  padding-left: var(--padding-x-big);
  padding-right: var(--padding-x-big);
}

.sm-navbar-half-button {
  min-height: 100%;
  margin: 0;
  border-radius: 0;
}

.sm-navbar-half-button.sm-navbar-half-button-first {
  border-right: 1px solid black;
}

#sm-navbar-burger-menu .sm-navbar-half-button {
  width: 49%;
}

.outlined-box {
  font-size: 16px;
  margin: 40px 0px 25px;
}