@import url("https://fonts.googleapis.com/css2?family=Inter+Tight:wght@200;300;400;500;600;700&family=Inter:wght@200;300;400;500;600&display=swap");
:root {
  --background-color: #fff9f4;
  --text-color: #000000;
  --heading-color: #555555;
  --third-color: #007bff;
}
* {
  box-sizing: border-box;
}
.spacer {
  height: 1px;
  width: 100%;
  background: linear-gradient(
    to left,
    transparent,
    var(--text-color),
    transparent
  );
  margin: 5px 0;
}
.spacing {
  padding: 2vh 15vw;
}
body {
  padding: 0 0;
  margin: 0;
  background-color: var(--background-color);
  font-family: Arial;
  color: var(--text-color);
}

.heading {
  color: var(--heading-color);
}
.text_basic {
  color: var(--text-color);
}
.link {
  color: var(--third-color);
  text-decoration: none;
}
.button {
  width: 60px;
  display: inline-block;
  padding: 4px 6px;
  font-size: 14px;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid var(--text-color);
  color: var(--text-color);
  background-color: var(--background-color);
  border-radius: 4px;
}
.button2 {
  width: 90px;
  display: inline-block;
  padding: 4px 6px;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid var(--text-color);
  color: var(--text-color);
  background-color: var(--background-color);
  border-radius: 4px;
}
.span1 {
  font-size: 48px;
  line-height: 68.6px;
  font-weight: 700;
  font-style: normal;
  padding: 0.8vh 0;
}
.span2 {
  font-size: 28px;
  line-height: 38px;
  font-weight: 700;
  font-style: normal;
  padding: 0.8vh 0;
}
.span3 {
  font-size: 24px;
  line-height: 34px;
  font-weight: 600;
  font-style: normal;
  padding: 0.8vh 0;
}
.span4 {
  font-size: 20px;
  line-height: 28px;
  font-weight: 600;
  font-style: normal;
  padding: 0.8vh 0;
}
.span5 {
  font-size: 20px;
  line-height: 28px;
  font-weight: 600;
  font-style: normal;
  padding: 0.8vh 0;
}
.span6 {
  font-size: 18px;
  line-height: 24px;
  font-weight: 400;
  font-style: normal;
  padding: 0.8vh 0;
}
.span7 {
  font-size: 18px;
  line-height: 24px;
  font-weight: 400;
  font-style: normal;
  padding: 0.8vh 0;
}
.span8 {
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
  font-style: normal;
  padding: 0.8vh 0;
}
.icon {
  width: 48px;
  height: 48px;
}
.images {
  width: 100%;
  padding: 2vh 20%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.images img {
  width: 100%;
  border: 1px solid var(--text-color);
}
.column_flex {
  display: flex;
  width: 100%;
  align-items: flex-start;
  flex-direction: column;
}
.child_row {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 1vh 0;
}
.child_row > * {
  margin: 0 1vw;
}
.first_element {
  margin-top: 9vh;
}
.header {
  display: flex;
  margin: 0;
  justify-content: center;
  background-color: var(--background-color);
  align-items: center;
  height: 8vh;
  width: 100%;
  padding-top: 1vh;
  padding-bottom: 1vh;
  position: fixed;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.header nav {
  display: flex;
  padding: 0;
  margin: 0;
  justify-content: center;
  align-items: center;
  width: 40%;
}

.header nav ul {
  display: flex;
  padding: 0;
  margin: 0;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.header nav ul li {
  font-weight: 400;
  font-style: normal;
  font-size: 17px;
  display: flex;
  padding: 0.5rem 1rem;
  color: var(--third-color);
  text-decoration: none;
  background-color: transparent;
  cursor: pointer;
}
.mobile_nav {
  display: none;
  width: 100%;
  height: 36vh;
  justify-content: space-between;
  align-items: center;
  padding: 5vh 0;
  top: 8vh;
  background-color: var(--background-color);
  position: fixed;
  z-index: 1000;
  flex-direction: column;
  font-size: 20px;
  color: var(--third-color);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  font-weight: 400;
}
.mobile_nav span {
  cursor: pointer;
}

.header_mobile {
  display: none;
  margin: 0;
  justify-content: center;
  background-color: var(--background-color);
  align-items: center;
  height: 8vh;
  width: 100%;
  padding-top: 1vh;
  padding-bottom: 1vh;
  position: fixed;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.header_mobile nav {
  display: none;
  padding: 0;
  margin: 0;
  justify-content: center;
  align-items: center;
  width: 60%;
}

.header_mobile nav ul {
  display: none;
  padding: 0;
  margin: 0;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.header_mobile nav ul li {
  font-weight: 400;
  font-style: normal;
  font-size: 17px;
  display: none;
  padding: 0.5rem 1rem;
  color: var(--third-color);
  text-decoration: none;
  background-color: transparent;
}

.footer {
  margin-top: 10vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2vh 0;
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
  font-style: normal;
  text-align: center;
  width: 100%;
}
input:where([type="checkbox"][role="switch"]) {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  position: relative;
  color: inherit;
  font-size: inherit;
  width: 2em;
  height: 1em;
  box-sizing: content-box;
  border: 1px solid;
  border-radius: 1em;
  vertical-align: text-bottom;
  margin: auto;
  cursor: pointer;
}

input:where([type="checkbox"][role="switch"])::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
  box-sizing: border-box;
  width: 0.7em;
  height: 0.7em;
  margin: 0 0.15em;
  border: 1px solid;
  border-radius: 50%;
  background: currentcolor;
  cursor: pointer;
}

input:where([type="checkbox"][role="switch"]):checked::before {
  left: 1em;
}

input:where([type="checkbox"][role="switch"]):disabled {
  opacity: 0.4;
}

@media (max-width: 1200px) {
  .header nav ul li {
    font-size: 15px;
    padding: 0.4rem 0.8rem;
  }
  .span1 {
    font-size: 46px;
    line-height: 66.6px;
  }
  .span2 {
    font-size: 26px;
    line-height: 34.5px;
  }
  .span3 {
    font-size: 22px;
    line-height: 32px;
  }
  .span4 {
    font-size: 19px;
    line-height: 26px;
  }
  .span5 {
    font-size: 18px;
    line-height: 26px;
  }
  .span7 {
    font-size: 16px;
    line-height: 22px;
  }
  .span8 {
    font-size: 15px;
    line-height: 19px;
  }
  .icon {
    width: 46px;
    height: 46px;
  }
  .images {
    padding: 2vh 15%;
  }
}
@media (max-width: 900px) {
  #header {
    display: none;
  }
  #header_mobile {
    display: flex;
  }
  .span1 {
    font-size: 44px;
    line-height: 62.6px;
  }
  .span2 {
    font-size: 24px;
    line-height: 33.5px;
  }
  .span3 {
    font-size: 20px;
    line-height: 31px;
  }
  .span4 {
    font-size: 17px;
    line-height: 25px;
  }
  .span5 {
    font-size: 16px;
    line-height: 25px;
  }
  .span7 {
    font-size: 14px;
    line-height: 21px;
  }
  .span8 {
    font-size: 15px;
    line-height: 18px;
  }
  .footer {
    font-size: 15px;
    line-height: 19px;
  }
  .icon {
    width: 42px;
    height: 42px;
  }
  .images {
    padding: 2vh 10%;
  }
  .spacing {
    padding: 2vh 4vw;
  }
  .button {
    width: 55px;
    display: inline-block;
    padding: 3px 5px;
    font-size: 13px;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    border: 1px solid var(--text-color);
    color: var(--text-color);
    background-color: var(--background-color);
    border-radius: 3.5px;
  }
}
@media (max-width: 600px) {
  .span1 {
    font-size: 45px;
    line-height: 60.6px;
  }
  .span2 {
    font-size: 23px;
    line-height: 28px;
  }
  .span3 {
    font-size: 19px;
    line-height: 24px;
  }
  .span4 {
    font-size: 16px;
    line-height: 22px;
  }
  .span5 {
    font-size: 15px;
    line-height: 22px;
  }
  .span7 {
    font-size: 14px;
    line-height: 19px;
  }
  .span8 {
    font-size: 13px;
    line-height: 16px;
  }
  .footer {
    font-size: 14px;
    line-height: 18px;
  }
  .icon {
    width: 38px;
    height: 38px;
  }
  .images {
    padding: 2vh 5%;
  }
  .spacing {
    padding: 2vh 4vw;
  }
  .button {
    width: 50px;
    display: inline-block;
    padding: 3px 5px;
    font-size: 12px;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    border: 1px solid var(--text-color);
    color: var(--text-color);
    background-color: var(--background-color);
    border-radius: 3px;
  }
}
@media (max-width: 400px) {
  .span1 {
    font-size: 42px;
    line-height: 58.6px;
  }
  .span2 {
    font-size: 22px;
    line-height: 27px;
  }
  .span3 {
    font-size: 18px;
    line-height: 23px;
  }
  .span4 {
    font-size: 15px;
    line-height: 21px;
  }
  .span5 {
    font-size: 14px;
    line-height: 21px;
  }
  .span7 {
    font-size: 13px;
    line-height: 18px;
  }
  .span8 {
    font-size: 12px;
    line-height: 15px;
  }
  .footer {
    font-size: 13px;
    line-height: 17px;
  }
  .icon {
    width: 32px;
    height: 32px;
  }
  .images {
    padding: 2vh 2%;
  }
  .spacing {
    padding: 2vh 4vw;
  }
  .button {
    width: 45px;
    display: inline-block;
    padding: 2px 4px;
    font-size: 11px;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    border: 1px solid var(--text-color);
    color: var(--text-color);
    background-color: var(--background-color);
    border-radius: 2.5px;
  }
}
