@keyframes rotate {
  from {
    transform: rotate(0deg); }
  to {
    transform: rotate(359deg); } }

@keyframes up {
  0% {
    transform: translateY(0); }
  100% {
    transform: translateY(-8px); } }

@keyframes down {
  0% {
    transform: translateY(-8px); }
  100% {
    transform: translateY(0); } }

@keyframes upDown {
  0%, 100% {
    transform: translateY(0); }
  50% {
    transform: translateY(-8px); } }

@keyframes right {
  0%, 100% {
    transform: translateX(0); }
  50% {
    transform: translateX(12px); } }

@keyframes myAnim {
  0% {
    transform: translateX(0); }
  100% {
    transform: translateX(-100px); } }

@media (prefers-color-scheme: light) {
  :root {
    --background-color: #f0f2f2;
    --background-footer-color: #333333;
    --background-header-color: #feffff;
    --title-color: #303030;
    --grey-1-color: #2e3835;
    --grey-2-color: #c3c3c3;
    --logo-color: invert(1);
    --mobnav-color: #31313166;
    --box-big-background-color: #feffff;
    --box-small-background-color: #feffff;
    --box-border-background-color: 1px solid rgba(0, 0, 0, 0.1);
    --box-gradient-shadow: linear-gradient(
      to bottom,
      rgba(235, 240, 246, 1) 40%,
      rgba(240, 242, 242, 0.3) 60%
    );
    --green-color: #299d65;
    --theme-switcher-bg: #f2f2f2;
    --navigation-link: #303030;
    --post-heading-2: #299d65;
    --search-switch: #d2dbd824; } }

@media (prefers-color-scheme: dark) {
  :root {
    --background-color: #131416;
    --background-footer-color: #101213;
    --background-header-color: #181a1b;
    --title-color: #fff;
    --grey-1-color: #b3bbbb;
    --grey-2-color: #c3c3c3;
    --logo-color: invert(0);
    --mobnav-color: #c1c1c166;
    --box-big-background-color: #1d1f20;
    --box-small-background-color: #1d1f20;
    --box-border-background-color: 1px solid rgba(151, 151, 151, 0.25);
    --box-gradient-shadow: linear-gradient(
      to bottom,
      rgba(235, 240, 246, 0.12) 40%,
      rgba(33, 33, 33, 1) 60%
    );
    --green-color: #3be995;
    --theme-switcher-bg: #1c1c1c;
    --navigation-link: #fff;
    --post-heading-2: #3be995;
    --search-switch: #141515; } }

:root[data-theme='light'] {
  --background-color: #f0f2f2;
  --background-footer-color: #333333;
  --background-header-color: #feffff;
  --title-color: #303030;
  --grey-1-color: #2e3835;
  --grey-2-color: #c3c3c3;
  --logo-color: invert(1);
  --mobnav-color: #31313166;
  --box-big-background-color: #feffff;
  --box-small-background-color: #feffff;
  --box-border-background-color: 1px solid rgba(0, 0, 0, 0.1);
  --box-gradient-shadow: linear-gradient(
    to bottom,
    rgba(235, 240, 246, 1) 40%,
    rgba(240, 242, 242, 0.3) 60%
  );
  --green-color: #299d65;
  --theme-switcher-bg: #f2f2f2;
  --navigation-link: #303030;
  --post-heading-2: #299d65;
  --search-switch: #d2dbd824; }

:root[data-theme='dark'] {
  --background-color: hsl(211 8% 8% / 1);
  --background-footer-color: hsl(210 8% 7% / 1);
  --background-header-color: hsl(210 6% 10% / 1);
  --title-color: #fff;
  --grey-1-color: #b3bbbb;
  --grey-2-color: #c3c3c3;
  --logo-color: invert(0);
  --mobnav-color: #c1c1c166;
  --box-big-background-color: hsl(200 6% 12% / 1);
  --box-small-background-color: hsl(200 6% 12% / 1);
  --box-border-background-color: 1px solid rgba(151, 151, 151, 0.25);
  --box-gradient-shadow: linear-gradient(
    to bottom,
    rgba(235, 240, 246, 0.12) 40%,
    rgba(33, 33, 33, 1) 60%
  );
  --green-color: #3be995;
  --theme-switcher-bg: #1c1c1c;
  --navigation-link: #fff;
  --post-heading-2: #3be995;
  --search-switch: #141515; }

@font-face {
  font-family: 'newgrotesk-light';
  src: url("../css/fonts/newgrotesk-light.otf") format("opentype");
  font-style: normal;
  font-display: block; }

@font-face {
  font-family: 'newgrotesk-medium';
  src: url("../css/fonts/newgrotesk-medium.otf") format("opentype");
  font-style: normal;
  font-display: block;
  font-weight: 600; }

@font-face {
  font-family: 'newgrotesk-semibold';
  src: url("../css/fonts/newgrotesk-semibold.otf") format("opentype");
  font-style: normal;
  font-display: block; }

::-webkit-scrollbar {
  width: 10px; }

::-webkit-scrollbar-track {
  border-radius: 100vw;
  margin-block: 1rem;
  background-color: rgba(27, 28, 30, 0.5); }

::-webkit-scrollbar-thumb {
  background-color: rgba(59, 233, 149, 0.5);
  border-radius: 100vw; }

::-webkit-scrollbar-thumb:hover {
  background-color: #3be995; }

@supports (scrollbar-color: #191919, rgba(25, 25, 25, 0.6)) {
  * {
    scrollbar-color: #191919 #3be995;
    scrollbar-width: thin; } }

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

html,
body {
  height: 100%; }

html {
  font-size: 62.5%; }

body {
  background-color: var(--background-color);
  font-family: 'newgrotesk-medium';
  font-weight: 300;
  line-height: 1.6; }

.wrapp {
  min-height: 100%;
  width: 100%;
  position: relative;
  overflow: hidden;
  -ms-overflow-style: none;
  scrollbar-width: none; }
  .wrapp::-webkit-scrollbar {
    display: none; }

.container,
.container-2,
.footer__box {
  position: relative;
  max-width: 1238px;
  margin: 0 auto;
  padding: 0 22px;
  transition: all 0.3s; }

@media (max-width: 64em) {
  .desk {
    display: none !important; } }

.footer {
  background-color: var(--background-footer-color);
  padding: clamp(28px, 7.8vw, 15rem) 0; }
  .footer.bottom {
    width: 100%;
    position: absolute;
    bottom: 0; }
  .footer__box {
    position: relative;
    display: grid;
    grid-template-columns: repeat(5, auto);
    justify-items: end; }
    @media (max-width: 64em) {
      .footer__box {
        justify-items: start; } }
  .footer .lmc-info {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: start; }
    @media (max-width: 64em) {
      .footer .lmc-info {
        grid-column: 1/-1;
        width: 100%;
        flex-direction: row;
        justify-content: space-between; } }
    @media (max-width: 64em) {
      .footer .lmc-info:last-child {
        display: none; } }
    @media (max-width: 37.5em) {
      .footer .lmc-info {
        margin-bottom: 3.7rem; } }
    @media (max-width: 64em) {
      .footer .lmc-info .copyright {
        text-align: left; } }
    .footer .lmc-info-img {
      max-width: 7rem;
      height: auto; }
  .footer__list {
    list-style: none;
    display: flex;
    width: fit-content;
    flex-direction: column; }
    @media (max-width: 64em) {
      .footer__list {
        margin-bottom: 0;
        width: 100%;
        flex-direction: row;
        justify-content: space-between;
        grid-column: 1/-1; } }
  .footer__list1 {
    list-style: none; }
  @media (max-width: 64em) {
    .footer__list:not(:last-child):not(:nth-last-child(1)) {
      display: none; } }
  .footer__item {
    color: #c3c3c3;
    text-align: right;
    margin-bottom: 1.8rem;
    font-weight: 600;
    font-size: 15px;
    line-height: 1.4;
    font-family: 'newgrotesk-semibold'; }
    @media (max-width: 37.5em) {
      .footer__item {
        font-size: 14px; } }
    @media (max-width: 64em) {
      .footer__item {
        text-align: left; } }
  .footer__link {
    font-family: 'newgrotesk-light';
    line-height: 1.16;
    text-decoration: none;
    font-weight: 300;
    font-size: 15px;
    color: #c3c3c3; }
    @media (max-width: 37.5em) {
      .footer__link {
        font-size: 14px; } }
  .footer .socials {
    display: flex;
    justify-content: space-between;
    text-align: right;
    list-style: none;
    gap: clamp(8px, 0.94vw, 1.8rem); }
    .footer .socials a:first-of-type {
      margin-left: auto; }
  .footer .socials-mobile {
    display: none; }
    @media (max-width: 64em) {
      .footer .socials-mobile {
        margin-top: auto;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 8px; } }
  .footer .btn {
    text-decoration: none;
    cursor: pointer; }
    @media (max-width: 64em) {
      .footer .btn {
        display: none; } }

.header {
  position: relative;
  max-width: 1238px;
  padding: clamp(26px, 3.33vw, 6.5rem) 22px clamp(26px, 3.33vw, 6.5rem);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center; }
  .header-container {
    position: relative;
    width: 100%;
    background-color: var(--background-header-color);
    z-index: 9;
    /* overflow-x: hidden;
    -ms-overflow-style: none;
    scrollbar-width: none;
    &::-webkit-scrollbar {
      display: none;
    }*/ }
    @media (max-width: 64em) {
      .header-container {
        position: fixed;
        transform: translateY(0);
        transition: transform 0.3s;
        top: 0; } }
    .header-container.out {
      transform: translateY(-100%);
      transition: transform .3s ease-in-out; }
    .header-container.in {
      transform: translateX(0);
      transition: transform .3s ease-in-out; }
  .header__logo {
    position: relative;
    z-index: 99; }
    .header__logo.hide {
      display: none; }
    .header__logo-img {
      display: block;
      width: auto;
      height: clamp(40px, 3.18vw, 6rem);
      filter: var(--logo-color); }
  .header__details {
    position: relative;
    color: var(--title-color);
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 2rem;
    overflow: hidden;
    margin-left: auto;
    margin-right: 2rem; }
    .header__details .language {
      display: flex;
      align-items: center;
      gap: 1rem;
      transform: translateY(0);
      transition: all 0.2s 0.2s ease-in-out; }
      @media (max-width: 64em) {
        .header__details .language {
          margin-right: auto; }
          .header__details .language.show {
            transform: translateY(0); }
          .header__details .language.hide {
            transform: translateY(-200%); } }
      .header__details .language svg {
        stroke: var(--green-color);
        height: 16px; }
        @media (max-width: 350px) {
          .header__details .language svg {
            opacity: 0;
            visibility: hidden; } }
      .header__details .language__btn {
        font-size: 1.6rem;
        line-height: 1;
        border: none;
        background-color: transparent;
        color: var(--text-color);
        text-transform: uppercase;
        cursor: pointer;
        font-family: 'newgrotesk-light';
        font-weight: 300; }
        .header__details .language__btn.active {
          font-family: 'newgrotesk-medium'; }
      .header__details .language__english {
        display: flex;
        align-items: center; }
      .header__details .language__serbian {
        display: flex;
        align-items: center; }
    .header__details .lmc__website {
      display: flex;
      align-items: center;
      gap: 1rem; }
      .header__details .lmc__website p {
        line-height: 1; }
      .header__details .lmc__website .website-link {
        color: var(--grey-1-color);
        text-decoration: none;
        font-size: 1.6rem;
        line-height: 1;
        font-family: 'newgrotesk-light'; }
      .header__details .lmc__website svg {
        fill: var(--green-color);
        height: 16px; }
      @media (max-width: 64em) {
        .header__details .lmc__website {
          width: 50%;
          justify-content: center; } }
  .header .search-btn {
    display: flex;
    width: 24px;
    height: 24px;
    cursor: pointer;
    display: none; }
    @media (max-width: 64em) {
      .header .search-btn {
        display: block; } }
    .header .search-btn.show {
      transform: translateX(0);
      opacity: 1;
      transition: all 0.3s 0.1s; }
    .header .search-btn.hide {
      transform: translateX(100%);
      opacity: 0.7;
      transition: all 0.3s; }

.search-form {
  background: rgba(16, 16, 16, 0.95);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 98;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 24px;
  overflow: hidden; }
  .search-form.show {
    opacity: 1;
    visibility: visible; }
    .search-form.show .search-form__form {
      transform: translateY(0);
      transition: transform 0.3s ease-in-out; }
  .search-form.hide {
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    transition-delay: 0.2s; }
    .search-form.hide .search-form__form {
      transform: translateY(500%);
      transition: transform 0.3s;
      transition-timing-function: linear; }
  .search-form__form {
    max-width: 360px;
    width: 100%;
    position: relative; }
    .search-form__form--close {
      position: absolute;
      right: 14px;
      top: 14px;
      cursor: pointer; }
    .search-form__form form {
      display: flex;
      flex-direction: column;
      gap: 20px;
      width: 100%; }
      .search-form__form form input {
        background-color: transparent;
        outline: none;
        border: none;
        border-bottom: 1px solid #c5c7d0;
        padding: 12px;
        padding-right: 48px;
        color: #656565;
        font-family: 'newgrotesk-medium';
        font-size: 16px;
        font-style: normal;
        font-weight: 300;
        line-height: 22px;
        /* 137.5% */ }
        .search-form__form form input.err {
          border-bottom: 1px solid #ee5858; }
      .search-form__form form button {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 14px;
        background-color: var(--green-color);
        padding: 14px;
        border: none;
        outline: none;
        color: #0a0a0a;
        font-family: 'newgrotesk-medium';
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        cursor: pointer; }

#theme-switcher {
  background-color: var(--search-switch);
  border-radius: 20px;
  padding: 0.5rem 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: all 0.2s ease-in-out;
  transform: translateY(0); }
  @media (max-width: 64em) {
    #theme-switcher {
      margin-right: -40px; }
      #theme-switcher.show {
        transform: translateY(0);
        transition-delay: 0.2s; }
      #theme-switcher.hide {
        transform: translateY(-100%); } }

#icon-sun,
#icon-moon {
  width: 2rem;
  height: 2rem;
  cursor: pointer;
  color: #3be995; }
  @media (max-width: 37.5em) {
    #icon-sun,
    #icon-moon {
      width: 1.5rem;
      height: 1.5rem; } }

[data-theme='light'] #icon-sun {
  color: #3be995; }

[data-theme='light'] #icon-moon {
  color: #868686; }

[data-theme='dark'] #icon-sun {
  color: #868686; }

[data-theme='dark'] #icon-moon {
  color: #3be995; }

.navigation {
  text-align: left;
  position: relative;
  z-index: 1;
  background-color: var(--background-header-color);
  width: 100%;
  max-width: 1238px;
  padding: 0 22px 0;
  margin: 0 auto 2.6rem; }
  @media (max-width: 64em) {
    .navigation {
      display: none; } }
  .navigation-container {
    width: 100%;
    position: relative;
    z-index: 9;
    background-color: var(--background-header-color);
    border-bottom: 1px solid var(--background-header-color); }
    .navigation-container.no-sticky {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      animation: translateOut .3s ease-in-out forwards; }
      .navigation-container.no-sticky nav {
        margin: 1rem auto 1rem; }
    .navigation-container.sticky {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      animation: translate .3s ease-in-out forwards; }
      .navigation-container.sticky nav {
        margin: 1rem auto 1rem; }
  .navigation__lists {
    position: absolute;
    top: 100%;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.12);
    border-radius: 2px;
    background-color: var(--background-color);
    overflow: hidden;
    transform: translateY(20px);
    transition: transform 0.2s, opacity 0.2s; }
  .navigation__items {
    position: relative; }
    .navigation__items:last-child {
      margin-left: auto;
      margin-bottom: auto; }
    .navigation__items.home a {
      display: inline-flex;
      margin-bottom: 14px; }
      .navigation__items.home a svg {
        display: inline-block; }
    .navigation__items.search form {
      display: flex;
      gap: 8px; }
      .navigation__items.search form input {
        border: none;
        outline: none;
        background: var(--search-switch);
        color: #fff;
        border-radius: 3px;
        padding-left: 8px; }
        .navigation__items.search form input.err {
          border: 1px solid #ee5858; }
      .navigation__items.search form button {
        background: transparent;
        border: none;
        outline: none;
        cursor: pointer; }
  .navigation__list {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 3.5rem;
    padding-top: 16px; }
    .navigation__list-hover {
      position: relative;
      min-width: 155px;
      width: 100%;
      padding: 1rem 1.2rem;
      transition: all 0.5s;
      list-style: none;
      border-top: 1px solid var(--green-color);
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      white-space: nowrap;
      font-weight: 400;
      font-size: 16px;
      line-height: 1.3; }
  .navigation__item-hover {
    width: 100%;
    border-bottom: var(--box-border-background-color); }
    .navigation__item-hover:not(:first-of-type) {
      padding-top: 0.8rem; }
    .navigation__item-hover:not(:last-of-type) {
      padding-bottom: 0.8rem; }
    .navigation__item-hover:hover .navigation__link-hover {
      color: var(--green-color);
      text-decoration: underline; }
  .navigation__item-hover:last-child {
    border-bottom: none; }
  .navigation__link {
    cursor: pointer;
    display: flex;
    position: relative;
    align-items: center;
    font-size: clamp(16px, 0.94vw, 1.8rem);
    text-decoration: none;
    text-transform: capitalize;
    color: var(--navigation-link);
    font-family: 'newgrotesk-light';
    line-height: 1;
    padding-bottom: 16px; }
    .navigation__link svg {
      fill: var(--green-color); }
    .navigation__link:hover .navigation__lists {
      opacity: 1;
      visibility: visible;
      pointer-events: all;
      transform: translateY(0); }
    .navigation__link-hover {
      display: block;
      width: 100%;
      font-weight: 400;
      font-size: 16px;
      line-height: 18px;
      text-decoration: none;
      color: var(--title-color); }

@keyframes translate {
  0% {
    transform: translateY(-100%); }
  100% {
    transform: translateY(0); } }

@keyframes translateOut {
  0% {
    transform: translateY(0%); }
  100% {
    transform: translateY(-100%); } }

.paragraph {
  font-size: clamp(12px, 0.94vw, 1.8rem);
  font-family: 'newgrotesk-light';
  font-weight: 300;
  line-height: 1.17;
  margin-bottom: clamp(16px, 2.5vw, 4.8rem);
  color: var(--grey-1-color);
  max-width: 100rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical; }

.paragraph-company {
  font-size: clamp(16px, 1.2vw, 2.2rem);
  font-family: 'newgrotesk-light';
  font-weight: 300;
  line-height: 1.18;
  color: var(--grey-1-color); }

.title {
  color: var(--grey-1-color);
  font-size: clamp(14px, 1.2vw, 2.2rem);
  font-weight: 200;
  text-decoration: none;
  text-transform: capitalize; }

.heading-primary {
  color: var(--title-color);
  line-height: 1.2;
  font-size: clamp(21px, 2.71vw, 5.2rem);
  font-weight: 500;
  max-width: 100rem; }

.heading-secondary {
  color: var(--title-color);
  font-weight: 500;
  font-size: clamp(21px, 1.68vw, 3.2rem);
  line-height: 1.2;
  margin-bottom: 5rem;
  margin-bottom: clamp(16px, 2.5vw, 4.8rem); }

.heading-tertirary {
  color: var(--title-color);
  font-weight: 500;
  font-size: clamp(18px, 1.09vw, 2.1rem);
  line-height: 1.17;
  margin-bottom: clamp(16px, 1.04vw, 2rem);
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical; }

.copyright {
  font-family: 'newgrotesk-light';
  font-size: clamp(10px, 0.726vw, 1.4rem);
  line-height: 1.4;
  color: #c3c3c3; }

.bold {
  font-weight: 600;
  font-size: clamp(14px, 1.04vw, 2rem);
  line-height: 1.4;
  font-family: 'newgrotesk-semibold';
  margin-bottom: clamp(14px, 1.88vw, 3.6rem); }

.underlined {
  text-decoration: underline; }

.green-text {
  border-bottom: 1px solid #484848;
  color: var(--green-color);
  font-weight: 500;
  font-size: clamp(16px, 1.2vw, 2.2rem);
  line-height: 1.2;
  padding-bottom: 14px;
  margin-bottom: clamp(30px, 2.1vw, 4rem); }

.paragraph-small {
  font-weight: 300;
  font-size: clamp(12px, 0.726vw, 1.4rem);
  line-height: 1.21;
  font-family: 'newgrotesk-light';
  font-weight: 300;
  color: var(--grey-1-color);
  margin-bottom: clamp(16px, 1.04vw, 2rem);
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical; }

.small-font {
  font-size: clamp(12px, 1.25vw, 2.4rem); }

.semi-small-font {
  font-size: clamp(14px, 1.04vw, 2rem); }

.btn {
  width: 100%;
  padding: clamp(10px, 1.2vw, 2.2rem) clamp(30px, 2.9vw, 5.5rem);
  display: flex;
  justify-content: center;
  gap: 2.2rem;
  font-size: 18px;
  color: #fff;
  align-items: center;
  border: 1px solid var(--green-color);
  background-color: transparent;
  position: relative; }

.mb-sm {
  margin-bottom: 1rem; }
  @media (max-width: 37.5em) {
    .mb-sm {
      margin-bottom: 3.7rem; } }

.mb-md {
  margin-bottom: clamp(12px, 1.25vw, 2.4rem); }

.mb-lg {
  margin-bottom: clamp(19px, 1.68vw, 3.2rem); }

.mb-md-2 {
  margin-bottom: clamp(20px, 2.5vw, 4.8rem); }

.mb-8 {
  margin-bottom: 8rem; }

.mb-xl {
  margin-bottom: clamp(38px, 5.2vw, 10rem); }

.time-p {
  font-weight: 300;
  font-size: clamp(12px, 0.726vw, 1.4rem);
  line-height: 1.2;
  color: var(--title-color);
  font-family: 'newgrotesk-light'; }

.no-post {
  color: var(--title-color);
  display: flex;
  justify-content: center;
  font-size: clamp(16px, 1.2vw, 2.2rem);
  text-transform: uppercase; }

.main-section {
  width: 100%; }

.box__big {
  position: relative;
  text-decoration: none;
  margin-top: 4px;
  margin-bottom: clamp(30px, 3.18vw, 6rem);
  background-color: var(--box-big-background-color);
  display: flex;
  gap: clamp(20px, 2.9vw, 5.5rem);
  padding: clamp(9px, 1.04vw, 2rem);
  border-radius: 7px;
  box-shadow: 0px 0px 12px var(--background-color); }
  .box__big::after {
    position: absolute;
    content: '';
    inset: -1px;
    background: var(--box-gradient-shadow);
    border-radius: 7px;
    z-index: -1; }
  @media (max-width: 64em) {
    .box__big {
      flex-flow: column-reverse; } }
  .box__big-wrapp {
    width: 100%;
    max-width: 1238px;
    margin: 0 auto;
    padding: 0 22px; }
  .box__big-container {
    position: relative;
    width: 100%;
    border-top: 1px solid var(--background-header-color); }
    .box__big-container::after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 50%;
      background-color: var(--background-header-color);
      z-index: -2; }
  .box__big-paragraph {
    margin-bottom: clamp(16px, 1.68vw, 3.2rem); }
  .box__big-features {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: space-between; }
    @media (max-width: 64em) {
      .box__big-features {
        width: 100%; } }
  .box__big-img {
    position: relative;
    width: 50%;
    padding-top: 24%; }
    @media (max-width: 64em) {
      .box__big-img {
        width: 100%;
        padding-top: 47%; } }
    .box__big-img img {
      position: absolute;
      top: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      border-radius: 5px; }
  .box__big__date {
    position: absolute;
    text-decoration: none;
    color: var(--grey-1-color);
    font-family: 'newgrotesk-light';
    font-size: 11px;
    bottom: 10px;
    left: 10px;
    z-index: 1; }

.time {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding-bottom: 10px; }
  .time svg {
    height: clamp(14px, 0.74vw, 1.5rem);
    fill: var(--green-color); }

.box__small {
  position: relative;
  text-decoration: none;
  width: calc((100% - 80px) / 3);
  border-radius: 3px;
  background-color: var(--box-small-background-color);
  min-width: 38rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.9rem 0.9rem 1.1rem 0.9rem;
  border-radius: 7px;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.08); }
  .box__small::after {
    position: absolute;
    content: '';
    inset: -1px;
    background: var(--box-gradient-shadow);
    border-radius: 7px;
    z-index: -1; }
  @media (max-width: 64em) {
    .box__small {
      min-width: 100%; } }
  .box__small .date__img {
    text-decoration: none;
    color: var(--grey-1-color);
    font-family: 'newgrotesk-light';
    font-size: 11px;
    position: absolute;
    bottom: 10px;
    left: 10px;
    position: relative;
    z-index: 1; }
  .box__small .time-p {
    font-weight: 300;
    font-size: clamp(11px, 0.726vw, 1.4rem);
    line-height: 1.21;
    font-family: 'newgrotesk-light'; }
  .box__small-img {
    position: relative;
    margin-bottom: 2.2rem;
    width: 100%;
    padding-top: 54%; }
    .box__small-img::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 100%, rgba(25, 25, 25, 0.5) 100%); }
    .box__small-img img {
      position: absolute;
      top: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      border-radius: 5px; }
  .box__small-features {
    width: 100%;
    height: 50%;
    display: flex;
    flex-direction: column;
    justify-content: space-between; }
    @media (max-width: 37.5em) {
      .box__small-features {
        padding: 0rem 0.8rem; } }

.categoty-name {
  margin-top: 4.2rem; }

.box-three {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 25px; }

.subs-wrap {
  flex-wrap: wrap;
  gap: 32px; }

.back-to-top {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  margin: clamp(40px, 4.7vw, 9rem) auto; }
  .back-to-top-btn {
    font-size: 14px;
    text-decoration: none;
    margin-bottom: 0;
    color: var(--grey-1-color);
    display: inline-flex;
    gap: 8px; }
    .back-to-top-btn svg {
      fill: var(--green-color); }
    .back-to-top-btn:hover svg {
      animation: upDown 0.5s ease-in-out forwards; }

.company {
  width: 100%;
  max-width: 1238px;
  padding: 0 22px;
  margin: 0 auto; }
  .company-container {
    width: 100%;
    position: relative;
    background-color: var(--background-header-color);
    border-bottom: 1px solid var(--background-header-color);
    padding-top: 2.6rem; }
  @media (max-width: 80em) {
    .company {
      max-width: 100%; } }
  .company .company__link {
    margin-bottom: clamp(38px, 4.7vw, 9rem); }
    .company .company__link-a {
      display: flex;
      gap: 1.4rem;
      width: fit-content;
      align-items: center;
      text-decoration: none; }
      .company .company__link-a span {
        color: var(--grey-1-color);
        font-family: 'newgrotesk-light';
        font-style: normal;
        font-size: clamp(16px, 1.2vw, 2.2rem);
        font-weight: 300;
        border-bottom: 1.5px solid var(--title-color);
        padding-bottom: 0.3rem;
        line-height: 1.2; }
      .company .company__link-a svg {
        fill: var(--green-color);
        height: 22px; }
      .company .company__link-a:hover svg {
        animation: right .4s ease-in-out forwards; }

.container-2 {
  padding: 0 clamp(22px, 4.7vw, 9rem); }

.box__post-container {
  position: relative;
  width: 100%; }
  .box__post-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 45%;
    background-color: var(--background-header-color);
    z-index: -1; }

.box__post-img {
  width: 100%;
  max-width: 1238px;
  margin: 0 auto;
  padding: 0 22px; }

.post-image {
  position: relative;
  width: 100%;
  padding-top: 40%;
  margin-bottom: clamp(16px, 1.46vw, 2.8rem); }
  .post-image img {
    position: absolute;
    top: 0;
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 100%; }

.content-image {
  position: relative;
  width: 100%;
  padding-top: 41%;
  margin-bottom: 5rem; }
  @media (max-width: 37.5em) {
    .content-image {
      padding-top: 57%; } }
  .content-image img {
    position: absolute;
    top: 0;
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 100%; }

.features {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 8px;
  flex-wrap: wrap-reverse;
  margin-bottom: clamp(36px, 3.18vw, 6rem); }
  .features .green-p {
    padding-left: 4px;
    font-family: 'newgrotesk-medium';
    font-weight: 400;
    font-size: clamp(12px, 0.94vw, 1.8rem);
    line-height: 2.19;
    letter-spacing: -0.02em;
    color: var(--green-color); }
  .features .time-date {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 6rem; }
    @media screen and (max-width: 650px) {
      .features .time-date {
        width: 100%; } }
  .features .time,
  .features .date {
    padding: 0; }
    .features .time p,
    .features .date p {
      font-family: 'newgrotesk-light';
      font-weight: 300;
      line-height: 1.17;
      color: var(--grey-1-color);
      font-size: clamp(10px, 0.726vw, 1.4rem);
      padding-right: 3px; }

.heading-1 {
  color: var(--title-color);
  font-weight: 500;
  font-size: clamp(32px, 2.24vw, 4.2rem);
  line-height: 1.19;
  margin-bottom: clamp(40px, 5.2vw, 10rem); }

.heading-2 {
  color: var(--post-heading-2);
  font-weight: 500;
  font-size: 30px;
  line-height: 1.19;
  margin-bottom: 5rem; }
  @media screen and (max-width: 650px) {
    .heading-2 {
      font-size: 26px; } }

.heading-3 {
  color: var(--title-color);
  font-weight: 500;
  font-size: 24px;
  line-height: 28px;
  margin-bottom: 5rem; }
  @media (max-width: 37.5em) {
    .heading-3 {
      margin-bottom: 3rem; } }
  @media screen and (max-width: 650px) {
    .heading-3 {
      font-size: 20px; } }

.body-text {
  margin-bottom: 5rem;
  font-family: 'newgrotesk-light';
  font-weight: 300;
  font-size: clamp(14px, 0.94vw, 1.8rem);
  line-height: 200%;
  color: var(--grey-1-color);
  text-align: left; }

.blockquote {
  color: var(--title-color);
  font-family: 'PT Serif';
  font-style: italic;
  font-weight: 400;
  font-size: 30px;
  line-height: 1.19;
  margin-bottom: 5rem; }
  @media screen and (max-width: 650px) {
    .blockquote {
      font-size: 20px; } }

.video-player {
  position: relative;
  margin-bottom: 5rem; }

.mobile__navigation {
  position: fixed;
  max-width: 58rem;
  width: 100%;
  min-height: 100svh;
  transition: all 0.2s;
  background-color: var(--background-header-color);
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 9;
  padding: clamp(26px, 3.33vw, 6.5rem) 22px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: start;
  transform: translateX(100%); }
  .mobile__navigation.open {
    transform: translateX(0); }
  .mobile__navigation-hover {
    display: none;
    transition: all 0.5s;
    margin-left: 2rem;
    margin-top: 1.2rem; }
  .mobile__navigation-hover.open {
    display: block; }
  .mobile__navigation-list {
    width: 100%;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    justify-content: center;
    margin-bottom: 7rem; }
    .mobile__navigation-list-hover {
      width: 100%;
      height: auto;
      gap: 1.2rem;
      display: flex;
      flex-direction: column;
      list-style: none; }
  .mobile__navigation-item {
    border-bottom: 0.5px solid var(--mobnav-color);
    padding-bottom: 1.2rem;
    display: flex;
    justify-content: space-between;
    align-items: center; }
    .mobile__navigation-item.ws svg {
      height: 1.6rem;
      fill: var(--green-color); }
    .mobile__navigation-item.ws .mobile__navigation-link {
      color: var(--title-color);
      margin-right: auto;
      margin-left: 8px; }
    .mobile__navigation-item svg {
      height: 1.8rem;
      fill: var(--title-color); }
  .mobile__navigation-link {
    font-size: 1.6rem;
    color: var(--title-color);
    text-decoration: none;
    font-weight: 500;
    line-height: 1.18; }
    .mobile__navigation-link:hover + .mobile__navigation-hover {
      display: block; }
    .mobile__navigation-link-hover {
      font-size: 1.6rem;
      text-decoration: none;
      font-weight: 400;
      line-height: 118%;
      font-family: 'newgrotesk-light';
      margin-bottom: 1.8rem;
      text-transform: capitalize;
      color: var(--grey-1-color); }
  .mobile__navigation .btn-a {
    text-decoration: none; }
  .mobile__navigation .btn {
    text-decoration: none;
    padding: 1.4rem 3rem;
    display: flex;
    gap: 1.5rem;
    font-size: 1.6rem;
    line-height: 1;
    color: var(--title-color);
    align-items: center;
    border: 1px solid var(--green-color);
    background-color: transparent;
    position: relative;
    font-family: 'newgrotesk-light'; }
    .mobile__navigation .btn svg {
      fill: var(--title-color); }

.navigation__track--item__menu {
  position: relative;
  z-index: 88;
  transform: scale(0.9);
  display: none; }
  @media (max-width: 64em) {
    .navigation__track--item__menu {
      display: block; } }
  .navigation__track--item__menu #mobile-nav {
    position: relative;
    width: clamp(46px, 3.33vw, 6.4rem);
    height: clamp(46px, 3.33vw, 6.4rem);
    border: 1px solid var(--title-color);
    border-radius: 50%;
    overflow: hidden;
    cursor: pointer; }
    .navigation__track--item__menu #mobile-nav span {
      position: absolute;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 18px;
      height: 2px;
      background-color: var(--title-color);
      transition: all 0.6s; }
      .navigation__track--item__menu #mobile-nav span:nth-child(1) {
        top: calc(50% - 5px); }
      .navigation__track--item__menu #mobile-nav span:nth-child(2) {
        top: 50%; }
      .navigation__track--item__menu #mobile-nav span:nth-child(3) {
        top: calc(50% + 5px); }
    .navigation__track--item__menu #mobile-nav.open span:nth-child(1) {
      top: 50%;
      transform: translate(-50%, -50%) rotate(45deg) rotateY(180deg); }
    .navigation__track--item__menu #mobile-nav.open span:nth-child(2) {
      left: 200%;
      opacity: 0; }
    .navigation__track--item__menu #mobile-nav.open span:nth-child(3) {
      top: 50%;
      transform: translate(-50%, -50%) rotate(-45deg) rotateY(180deg); }
