@keyframes fade {
  0% {
    opacity: 0;
    transform: translateY(-2rem); }
  100% {
    opacity: 1;
    transform: translateY(0rem); } }

@keyframes typing {
  from {
    width: 0; } }

@keyframes blink {
  50% {
    border-color: transparent; } }

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

html {
  font-size: 62.5%; }
  @media only screen and (max-width: 75em) {
    html {
      font-size: 56.25%; } }
  @media only screen and (max-width: 56.25em) {
    html {
      font-size: 50%; } }
  @media only screen and (min-width: 112.5em) {
    html {
      font-size: 75%; } }

body {
  box-sizing: border-box; }
  @media only screen and (max-width: 18.75em) {
    body {
      overflow-x: hidden; } }

body {
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.7; }

.heading__sec {
  max-width: 110rem;
  margin: 5rem auto 3rem auto; }
  .heading__sec--text {
    text-align: center;
    font-size: 3rem; }
  @media only screen and (max-width: 56.25em) {
    .heading__sec {
      font-size: 4rem; } }

.heading__ter {
  max-width: 60rem;
  margin: 0 auto 4rem auto; }
  .heading__ter--text {
    text-align: center;
    font-size: 3.2rem;
    line-height: 1.4; }
  @media only screen and (max-width: 56.25em) {
    .heading__ter {
      max-width: 75rem; }
      .heading__ter--text {
        width: calc(100% - 4rem);
        margin: 0 2rem;
        font-size: 3.8rem; } }
  @media only screen and (max-width: 37.5em) {
    .heading__ter {
      max-width: 100%; }
      .heading__ter--text {
        font-size: 3.6rem; } }

@media only screen and (max-width: 56.25em) {
  .priority__heading--text {
    font-size: 3.5rem; } }

.btn {
  border-radius: .8rem;
  font-weight: 600;
  color: #ffffff;
  text-decoration: none; }
  .btn:hover {
    color: #ffffff !important; }

.tooltipp {
  position: absolute;
  top: 100%;
  background-color: #ffffff;
  padding: 1rem .5rem;
  border-radius: .5rem;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.3);
  white-space: nowrap;
  display: none;
  list-style-type: none;
  z-index: 1;
  transform: display 3s; }
  .tooltipp__lists {
    height: 3rem;
    line-height: .3rem;
    padding: 2rem; }
    .tooltipp__lists:hover {
      background-color: #f5f5ee; }
  .tooltipp__links {
    text-decoration: none;
    color: black; }
  @media only screen and (max-width: 56.25em) {
    .tooltipp__links {
      font-size: 1.9rem; } }
  @media only screen and (max-width: 37.5em) {
    .tooltipp {
      display: block;
      background-color: transparent;
      box-shadow: none;
      position: static;
      max-height: 0;
      overflow: hidden;
      padding: 0;
      transition: all 1.4s ease; }
      .tooltipp__lists {
        height: 0; } }

@media only screen and (max-width: 37.5em) {
  .navigation__lists.active .tooltipp {
    max-height: 35rem;
    animation: fade 1s ease-in; }
  .navigation__lists.active .navigation__arrow {
    transform: rotate(180deg); } }

.iframe__box {
  max-width: 70rem;
  margin: 0 auto; }
  .iframe__box iframe {
    width: 100%;
    aspect-ratio: 16/9; }
  @media only screen and (max-width: 56.25em) {
    .iframe__box {
      max-width: 80rem; } }
  @media only screen and (max-width: 45em) {
    .iframe__box {
      width: calc(100% - 4rem);
      margin: 0 2rem;
      max-width: 70rem;
      margin: 0 auto; } }

.header {
  background-color: #f5f5ee;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 10rem;
  z-index: 5000; }
  .header__container {
    display: flex;
    justify-content: space-between;
    align-items: center; }
  .header__content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 110rem;
    margin: 0 auto;
    gap: 2.5rem;
    margin-top: 1.8rem; }
    @media only screen and (max-width: 75em) {
      .header__content {
        width: calc(100% - 4rem); } }
  .header__logo {
    height: 6rem; }
    .header__logo--img {
      width: 6rem; }
    @media only screen and (max-width: 37.5em) {
      .header__logo {
        z-index: 2000; } }
  .header__btn {
    margin-left: auto;
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 1.2rem; }
    @media only screen and (max-width: 75em) {
      .header__btn--text {
        display: flex;
      } }
    .header__btn--subText {
      display: none;
      color: #049AE1; }
    .header__btn--apply {
      padding: .5rem 1rem;
      font-size: 1.8rem;
      background-color: #049AE1; }
      .header__btn--apply:hover {
        background-color: #049AE1; }
      @media only screen and (max-width: 56.25em) {
        .header__btn--apply {
          padding: .5rem 1.4rem;
          font-size: 2.2rem; } }
      @media only screen and (max-width: 37.5em) {
        .header__btn--apply {
          display: none; } }
    @media only screen and (max-width: 37.5em) {
      .header__btn {
        display: block;
        text-align: center;
        font-size: 2.2rem;
        z-index: 5000;
        flex-grow: 1;
        width: 100% !important;
        padding: 1rem 0;
        background-color: #f5f5ee; } }

.navigation {
  flex: 1;
  display: flex;
  flex: 1;
  justify-content: space-between;
  }
  .navigation__checkbox {
    display: none; }
  .navigation__button {
    display: none; }
    @media only screen and (max-width: 37.5em) {
      .navigation__button {
        display: block;
        background-color: #ffffff;
        height: 8rem;
        width: 8rem;
        top: 0.7rem;
        right: 0.2rem;
        transform: scale(0.6);
        position: fixed;
        text-align: center;
        z-index: 2000;
        cursor: pointer; } }
  .navigation__nav {
    display: flex;
    justify-content: space-between;
    align-items: center; }
    @media only screen and (max-width: 37.5em) {
      .navigation__nav {
        flex-direction: column;
        position: fixed;
        top: 1rem;
        left: 1.5rem;
        z-index: 1500;
        width: 0;
        opacity: 0;
        background-color: #ffffff;
        box-shadow: 0 0.2rem 0.3rem rgba(0, 0, 0, 0.3);
        transition: all .1s ease-out; } }
  .navigation__items {
    display: flex;
    justify-content: start;
    align-items: center;
    flex-wrap: wrap;
    column-gap: 2rem;
    list-style-type: none; }
    @media only screen and (max-width: 37.5em) {
      .navigation__items {
        display: block;
        flex-grow: 1;
        width: 100%;
        margin: 0 auto;
        margin-top: 10rem;
        gap: 0;
        padding: 0 1.3rem; } }
  .navigation__lists {
    position: relative; }
    @media only screen and (max-width: 37.5em) {
      .navigation__lists {
        display: block;
        width: 100%; }
        .navigation__lists:not(:first-child) {
          margin-top: 1rem; } }
  @media only screen and (max-width: 37.5em) {
    .navigation__heading {
      display: flex;
      justify-content: start;
      align-items: center;
      gap: 1.5rem; } }
  .navigation__links {
    cursor: pointer; }
    @media only screen and (max-width: 56.25em) {
      .navigation__links {
        font-size: 2rem; } }
    @media only screen and (max-width: 37.5em) {
      .navigation__links {
        font-weight: 300;
        line-height: 2.4;
        color: #000;
        text-decoration: none;
        transition: all 0.4s; } }
  .navigation__arrow {
    display: none; }
    .navigation__arrow--pic {
      width: 1.5rem; }
  @media only screen and (min-width: 37.5em) {
    .navigation__lists:hover .navigation__links {
      color: #458ad2; }
    .navigation__lists:hover .navigation__tooltip {
      display: block; } }
  @media only screen and (max-width: 37.5em) {
    .navigation__checkbox:checked ~ .navigation__nav .header__btn .header__btn--subText {
      display: block;
      z-index: 5000; }
    .navigation__checkbox:checked + .navigation__button {
      border: 0.5rem solid #049AE1; }
    .navigation__checkbox:checked + .navigation__button .navigation__icon {
      margin-top: 3.5rem; }
    .navigation__checkbox:checked ~ .navigation__nav {
      width: calc(100% - 2.8rem);
      margin-right: 2.8rem;
      opacity: 1; }
    .navigation__icon {
      position: relative;
      margin-top: 4rem; }
      .navigation__icon, .navigation__icon::before, .navigation__icon::after {
        width: 4rem;
        height: 2.8px;
        background-color: #333;
        display: inline-block; }
      .navigation__icon::before, .navigation__icon::after {
        content: "";
        position: absolute;
        left: 0;
        transition: all 0.1s; }
      .navigation__icon::before {
        top: -1rem; }
      .navigation__icon::after {
        top: 1rem; }
    .navigation__button:hover .navigation__icon::before {
      top: -1.2rem; }
    .navigation__button:hover .navigation__icon::after {
      top: 1.2rem; }
    .navigation__checkbox:checked + .navigation__button .navigation__icon {
      background-color: transparent; }
    .navigation__checkbox:checked + .navigation__button .navigation__icon::before {
      top: 0;
      transform: rotate(135deg); }
    .navigation__checkbox:checked + .navigation__button .navigation__icon::after {
      top: 0;
      transform: rotate(-135deg); }
    .navigation__arrow {
      display: block;
      transition: transform .3s ease-in; } }

.topThree {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
  column-gap: 2rem;
  row-gap: 2rem;
  max-width: 110rem;
  margin: 0 auto; }
  .topThree--box {
    background-color: #ffffff;
    min-height: 15rem;
    padding: 2rem;
    border-radius: 1rem; }
    .topThree--box h3 {
      color: #458ad2; }
      @media only screen and (max-width: 56.25em) {
        .topThree--box h3 {
          font-size: 2.2rem;
          line-height: 1.2; } }
    @media only screen and (max-width: 56.25em) {
      .topThree--box p {
        font-size: 2rem;
        margin-top: 1rem; } }
  @media only screen and (max-width: 56.25em) {
    .topThree {
      width: calc(100% - 4rem);
      margin: 0 2rem; } }
  @media only screen and (max-width: 18.75em) {
    .topThree {
      display: flex;
      flex-direction: column; } }

.companies__more {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(12rem, 1fr));
  column-gap: 1.5rem;
  row-gap: 3rem;
  max-width: 110rem;
  margin: 0 auto; }
  .companies__more--img {
    height: 6rem;
    padding: 1rem 3.5rem;
    border-radius: 0.5rem;
    background-color: white;
    position: relative; }
    .companies__more--img img {
      width: 8rem;
      background-color: white;
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%); }
  .companies__more--add {
    text-align: center;
    font-size: 3rem;
    font-weight: bolder; }
  @media only screen and (max-width: 56.25em) {
    .companies__more {
      width: calc(100% - 4rem);
      margin: 0 2rem; } }

.purpose {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 3rem;
  max-width: 110rem;
  margin: 0 auto; }
  .purpose__one {
    display: grid;
    column-gap: 1rem;
    grid-template-columns: 1fr 1fr; }
    .purpose__one--child {
      position: relative;
      padding: 0.5rem 2rem; }
      .purpose__one--child:nth-child(1) {
        border-left: 0.4rem solid #049AE1;
        font-weight: bolder;
        margin-bottom: 2rem;
        font-size: 1.8rem;
        height: 12rem; }
        @media only screen and (max-width: 56.25em) {
          .purpose__one--child:nth-child(1) {
            font-size: 2.3rem;
            height: 16rem; } }
        @media only screen and (max-width: 31.35em) {
          .purpose__one--child:nth-child(1) {
            height: auto; } }
      .purpose__one--child h4 {
        width: 16rem;
        line-height: 1.5; }
      .purpose__one--child span {
        position: absolute;
        height: 0.8rem;
        width: 0.8rem;
        background-color: #000;
        border-radius: 0.4rem;
        left: 0;
        top: 14%; }
      @media only screen and (max-width: 56.25em) {
        .purpose__one--child h4 {
          font-size: 2.3rem;
          width: 22rem; }
        .purpose__one--child p {
          font-size: 2rem; } }
      @media only screen and (max-width: 31.35em) {
        .purpose__one--child h4 {
          width: 100%; } }
    @media only screen and (max-width: 56.25em) {
      .purpose__one {
        font-size: 1.8rem;
        column-gap: 2.5rem; } }
    @media only screen and (max-width: 31.35em) {
      .purpose__one {
        grid-template-columns: 1fr;
        row-gap: 4rem; } }
  .purpose__two {
    display: grid;
    column-gap: 1rem;
    grid-template-columns: 1fr 1fr; }
    .purpose__two--child {
      position: relative;
      padding: 0.5rem 2rem; }
      .purpose__two--child:nth-child(1) {
        border-left: 0.4rem solid #049AE1;
        font-weight: bolder;
        margin-bottom: 2rem;
        font-size: 1.8rem;
        height: 12rem; }
        @media only screen and (max-width: 56.25em) {
          .purpose__two--child:nth-child(1) {
            font-size: 2.3rem;
            margin-top: 3rem;
            height: 15rem; } }
        @media only screen and (max-width: 31.35em) {
          .purpose__two--child:nth-child(1) {
            height: auto; } }
      .purpose__two--child h4 {
        width: 16rem;
        line-height: 1.5; }
      .purpose__two--child span {
        position: absolute;
        height: 0.8rem;
        width: 0.8rem;
        background-color: black;
        border-radius: 0.4rem;
        left: 0;
        top: 14%; }
      @media only screen and (max-width: 56.25em) {
        .purpose__two--child h4 {
          font-size: 2.3rem;
          width: 22rem; }
        .purpose__two--child p {
          font-size: 2rem; } }
      @media only screen and (max-width: 31.35em) {
        .purpose__two--child h4 {
          width: 100%; } }
    @media only screen and (max-width: 56.25em) {
      .purpose__two {
        font-size: 1.8rem; } }
    @media only screen and (max-width: 31.35em) {
      .purpose__two {
        grid-template-columns: 1fr; } }
  @media only screen and (max-width: 56.25em) {
    .purpose {
      max-width: 58rem;
      grid-template-columns: 1fr; } }
  @media only screen and (max-width: 31.35em) {
    .purpose {
      width: calc(100% - 4rem);
      margin: 0 2rem; } }

.runby__layouts {
  display: grid;
  max-width: 110rem;
  margin: 0 auto;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 3rem;
  row-gap: 3rem; }
  .runby__layouts p {
    margin-top: 1.2rem; }
  .runby__layouts--self {
    padding: 3.5rem;
    background-color: #f5f5ee;
    border-radius: 1rem;
    display: flex;
    flex-direction: column; }
  .runby__layouts--picbox {
    width: 100%; }
  .runby__layouts--pic {
    width: 100%;
    aspect-ratio: 16/7.5;
    object-fit: cover;
    border-radius: 1rem; }
  .runby__layouts--typo {
    margin-top: 2.5rem; }
    .runby__layouts--typo h3 {
      border-left: 0.5rem solid #049AE1;
      padding-left: 0.7rem; }
    @media only screen and (max-width: 56.25em) {
      .runby__layouts--typo h3 {
        font-size: 2rem; }
      .runby__layouts--typo p {
        font-size: 2rem; } }
  @media only screen and (max-width: 56.25em) {
    .runby__layouts {
      width: calc(100% - 4rem);
      margin: 0 2rem; } }
  @media only screen and (max-width: 46.875em) {
    .runby__layouts {
      display: flex;
      flex-direction: column; } }

.priority__lists {
  display: grid;
  max-width: 95rem;
  margin: 0 auto;
  grid-template-columns: repeat(2, 1fr); }
  .priority__lists p {
    line-height: 2.5; }
  .priority__lists span {
    display: inline-block;
    width: 0.8rem;
    height: 0.8rem;
    background-color: #049AE1;
    transform: rotate(45deg);
    margin-right: 1rem; }
  @media only screen and (max-width: 56.25em) {
    .priority__lists {
      max-width: 60rem;
      grid-template-columns: repeat(1, 1fr); }
      .priority__lists p {
        font-size: 2rem;
        line-height: 2.3; }
      .priority__lists span {
        width: 1rem;
        height: 1rem; } }
  @media only screen and (max-width: 37.5em) {
    .priority__lists {
      width: calc(100% - 4rem);
      margin: 0 2rem; } }

.priority__pics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 2.5rem;
  max-width: 110rem;
  margin: 0 auto;
  margin-top: 5rem !important; }
  .priority__pics--img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 1rem; }
  @media only screen and (max-width: 63.75rem) {
    .priority__pics {
      width: calc(100% - 4rem);
      margin: 0 2rem; } }
  @media only screen and (max-width: 37.5em) {
    .priority__pics {
      display: none; } }

.community__coreMs {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  max-width: 110rem;
  margin: 0 auto; }
  @media only screen and (max-width: 75em) {
    .community__coreMs {
      width: calc(100% - 4rem);
      margin: 0 2rem; } }
  .community__coreMs--box {
    display: grid;
    grid-template-columns: 7rem 1fr;
    column-gap: 2rem; }
    .community__coreMs--box__typo--author {
      display: flex;
      align-items: center;
      flex-wrap: wrap; }
      @media only screen and (max-width: 56.25em) {
        .community__coreMs--box__typo--author {
          font-size: 2.2rem; } }
      @media only screen and (max-width: 28.125em) {
        .community__coreMs--box__typo--author {
          font-size: 2.1rem; } }
    .community__coreMs--box p {
      font-size: 1.8rem; }
      @media only screen and (max-width: 56.25em) {
        .community__coreMs--box p {
          font-size: 2.2rem; } }
      @media only screen and (max-width: 28.125em) {
        .community__coreMs--box p {
          font-size: 2.1rem; } }
    .community__coreMs--box__pic {
      border-radius: 1rem; }

.lastest__info {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  column-gap: 2.5rem;
  max-width: 110rem;
  margin: 0 auto;
  margin-top: 3rem; }
  .lastest__info--container {
    display: grid;
    grid-template-columns: 1fr 9rem;
    column-gap: 1rem;
    border-radius: 0.8rem;
    padding: 1rem; }
    .lastest__info--container__pic {
      border-radius: 0.8rem;
      width: 100%;
      object-fit: cover; }
    .lastest__info--container__text {
      align-items: center; }
    .lastest__info--container p {
      line-height: 1.3;
      font-size: 1.3rem; }
  @media only screen and (max-width: 56.25em) {
    .lastest__info {
      grid-template-columns: 1fr;
      width: calc(100% - 4rem);
      margin: 0 2rem;
      row-gap: 2rem; }
      .lastest__info h4 {
        font-size: 2rem; }
      .lastest__info p {
        font-size: 2rem; } }

.interested__info {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  column-gap: 2.5rem;
  row-gap: 2.5rem;
  max-width: 110rem;
  margin: 0 auto; }
  .interested__info--container {
    display: grid;
    grid-template-columns: 1fr 9rem;
    column-gap: 1rem;
    border-radius: 0.8rem;
    background-color: #ffffff;
    padding: 1.5rem; }
    .interested__info--container__pic {
      border-radius: 0.8rem;
      width: 100%;
      object-fit: cover; }
    .interested__info--container__text {
      align-items: center; }
    .interested__info--container p {
      line-height: 1.3;
      font-size: 1.3rem; }
  @media only screen and (max-width: 56.25em) {
    .interested__info {
      grid-template-columns: 1fr;
      width: calc(100% - 4rem);
      margin: 0 2rem;
      row-gap: 2rem; }
      .interested__info h4 {
        font-size: 2rem; }
      .interested__info p {
        font-size: 2rem; } }

.home {
  position: relative; }
  .home__content {
    height: 100%; }
  .home__typography {
    width: 55%;
    max-width: 63rem; }
    @media only screen and (max-width: 75em) {
      .home__typography {
        padding-left: 3.5rem; } }
    @media only screen and (max-width: 48em) {
      .home__typography {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 60%;
        padding-left: 0rem;
        margin-top: -1.5rem; } }
    @media only screen and (max-width: 37.5em) {
      .home__typography {
        width: calc(100% - 4rem);
        margin: 0 2rem;
        margin-top: -1rem; } }
    .home__typography h1 {
      font-size: 5.5rem;
      color: #049AE1; }
      .home__typography h1:first-child {
        margin-bottom: -3rem;
        color: #000;
        font-size: 6rem; }
      @media only screen and (max-width: 48em) {
        .home__typography h1 {
          font-size: 6.5rem; }
          .home__typography h1:first-child {
            font-size: 7rem; } }
      @media only screen and (max-width: 37.5em) {
        .home__typography h1 {
          font-size: 5rem; }
          .home__typography h1:first-child {
            font-size: 6rem; } }
      @media only screen and (max-width: 28.125em) {
        .home__typography h1 {
          font-size: 4.5rem; }
          .home__typography h1:first-child {
            font-size: 5.5rem; } }
      @media only screen and (max-width: 18.75em) {
        .home__typography h1 {
          font-size: 3.5rem; }
          .home__typography h1:first-child {
            margin-bottom: -2rem;
            font-size: 4.5rem; } }
    .home__typography P {
      font-size: 2.6rem;
      line-height: 1.5; }
      .home__typography P span {
        display: block; }
      @media only screen and (max-width: 56.25em) {
        .home__typography P {
          font-size: 3rem; } }
      @media only screen and (max-width: 22em) {
        .home__typography P {
          font-size: 2.5rem; } }
      @media only screen and (max-width: 18.75em) {
        .home__typography P {
          font-size: 2rem; } }
  .home__img {
    width: 45%;
    z-index: -1;
    height: 100%; }
    .home__img img {
      width: 100%;
      height: 100%;
      object-fit: cover; }
  .home__btn {
    display: block;
    font-size: 2rem;
    text-align: center;
    width: 35%;
    padding: 0.6rem 2rem;
    margin-top: 2rem;
    background-color: #049AE1;
    cursor: pointer;
    transition: all 0.3s; }
    .home__btn:hover {
      background-color: #049AE1; }
    @media only screen and (max-width: 48em) {
      .home__btn {
        padding: 0.8rem 2rem;
        width: 40%;
        font-size: 2.5rem; } }
    @media only screen and (max-width: 37.5em) {
      .home__btn {
        width: calc(100% / 2.5); } }
    @media only screen and (max-width: 28.125em) {
      .home__btn {
        width: calc(100% / 2); } }
    @media only screen and (max-width: 20.625em) {
      .home__btn {
        font-size: 1.8rem;
        width: 14rem; } }
  .home__label {
    text-align: center;
    position: absolute;
    top: 53%;
    left: 55%;
    transform: translate(-55%, -55%);
    z-index: -1; }
    .home__label--con {
      background-color: #f5f5ee;
      height: 13rem;
      width: 22rem;
      padding: 2rem 2.5rem;
      box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.2);
      border-radius: 1.2rem; }
      .home__label--con:first-child {
        margin-bottom: 2rem; }
      .home__label--con h1 {
        color: #049AE1;
        font-size: 3.5rem; }
      .home__label--con p {
        margin-top: -0.5rem; }
    @media only screen and (max-width: 48em) {
      .home__label {
        display: none; } }

.footer__content {
  display: flex;
  justify-content: center;
  align-items: start;
  gap: 8rem;
  max-width: 110rem;
  margin: 0 auto; }
  .footer__content--pic {
    width: 6rem; }
  .footer__content--nav {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 3rem; }
    .footer__content--nav__items {
      list-style-type: none;
      overflow: hidden;
      padding-left: 0; }
    .footer__content--nav__heading {
      font-size: 1.6rem;
      font-weight: bold; }
      @media only screen and (max-width: 56.25em) {
        .footer__content--nav__heading {
          font-size: 2rem; } }
    .footer__content--nav__links {
      font-size: 1.4rem;
      color: black; }
      @media only screen and (max-width: 56.25em) {
        .footer__content--nav__links {
          font-size: 1.7rem; } }
  .footer__content--context {
    display: flex;
    align-items: center;
    gap: 1.2rem; }
    .footer__content--context__btn {
      padding: 0.5rem 1rem;
      font-size: 1.8rem;
      background-color: #049AE1; }
      .footer__content--context__btn:hover {
        background-color: #fda942; }
    @media only screen and (max-width: 56.25em) {
      .footer__content--context {
        font-size: 2rem; } }
  @media only screen and (max-width: 56.25em) {
    .footer__content {
      flex-direction: column;
      position: relative;
      gap: 3rem;
      width: calc(100% - 4rem);
      margin: 0 2rem; }
      .footer__content--pic {
        width: 8rem; }
      .footer__content--nav {
        column-gap: 6rem; }
      .footer__content--context {
        justify-content: start;
        position: absolute;
        bottom: -5rem;
        right: 2rem; } }
  @media only screen and (max-width: 37.5em) {
    .footer__content--nav {
      grid-template-columns: 1fr;
      row-gap: 2.5rem; }
    .footer__content--context {
      justify-content: start;
      position: static; } }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 110rem;
  margin: 0 auto;
  margin-top: 5rem; }
  .footer__bottom--links {
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 1.2rem; }
    .footer__bottom--links__svg {
      width: 2rem; }
  @media only screen and (max-width: 56.25em) {
    .footer__bottom {
      width: calc(100% - 4rem);
      margin: 0 2rem;
      margin-top: 8rem; }
      .footer__bottom p {
        font-size: 2rem; }
      .footer__bottom--links__svg {
        width: 2.5rem; } }
  @media only screen and (max-width: 37.5em) {
    .footer__bottom {
      display: block;
      margin-top: 0; }
      .footer__bottom--links {
        margin-top: 1.3rem; } }

.home {
  margin-top: 8rem;
  height: 55rem; }
  @media only screen and (max-width: 46em) {
    .home {
      height: 50rem; } }

.companies {
  padding: 7rem 0;
  margin-top: -1.7rem;
  background-color: #f5f5ee; }

.founders {
  padding: 6rem 0; }

.formula {
  padding: 8rem 0;
  background-color: #f5f5ee; }

.runby {
  padding: 8rem 0; }

.priority {
  padding: 8rem 0;
  background-color: #f5f5ee; }

.worth {
  padding: 8rem 0; }
  .worth__info {
    text-align: center; }
    .worth__info p {
      font-size: 2rem;
      padding-top: 2rem;
      font-weight: 400; }

.community {
  padding: 6rem 0;
  background-color: #f5f5ee; }

.lastest {
  padding: 8rem 0; }

.intersted {
  padding: 8rem 0;
  background-color: #f5f5ee; }

.footer {
  padding: 5rem 0 8rem 0;
  background-color: #f5f5ee; }
