h1,
h2 {
  font-size: 6.8rem;
  font-weight: 600;
  line-height: 1.17;
}
@media (max-width: 600px) {
  h1,
  h2 {
    font-size: 4.2rem;
  }
}

@font-face {
  font-family: "Roboto";
  font-display: swap;
  src: url("../fonts/Roboto-Regular.woff") format("woff"), url("../fonts/Roboto-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Roboto";
  font-display: swap;
  src: url("../fonts/Roboto-Medium.woff") format("woff"), url("../fonts/Roboto-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Roboto";
  font-display: swap;
  src: url("../fonts/Roboto-SemiBold.woff") format("woff"), url("../fonts/Roboto-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Roboto";
  font-display: swap;
  src: url("../fonts/Roboto-Bold.woff") format("woff"), url("../fonts/Roboto-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "Zeyada";
  font-display: swap;
  src: url("../fonts/Zeyada-Regular.woff") format("woff"), url("../fonts/Zeyada-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Rokkitt";
  font-display: swap;
  src: url("../fonts/Rokkitt-Regular.woff") format("woff"), url("../fonts/Rokkitt-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
*,
*:before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  outline: none;
  list-style: none;
  -webkit-tap-highlight-color: transparent;
}

*:not(input, button, a) {
  -webkit-touch-callout: text;
  -webkit-user-select: text;
  -moz-user-select: text;
  user-select: text;
}

html {
  overscroll-behavior: none;
  scroll-behavior: smooth;
  text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  font-family: "Roboto", sans-serif;
  position: relative;
  width: 100vw;
  font-size: 10px;
  overflow-y: auto;
  overflow-x: hidden;
}
@media (max-width: 1601px) {
  html {
    font-size: 0.625vw;
  }
}
@media (max-width: 900px) {
  html {
    font-size: 1.3vw;
  }
}
@media (max-width: 600px) {
  html {
    font-size: 2.56vw;
  }
}

body {
  min-height: 100vh;
}

html,
body {
  background-color: #ecedf6;
  color: #232431;
  backface-visibility: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

.wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  width: 100%;
  overflow: hidden;
}

main {
  position: relative;
  overflow: hidden;
  z-index: 1;
  flex-grow: 1;
  width: 100%;
  margin-top: 13rem;
}
main::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
@media (max-width: 600px) {
  main {
    margin-top: 14.3rem;
  }
}

section {
  overflow: hidden;
}

main.about::before {
  background: url(../assets/images/common/blue-rectangle_bg.png) center/164px 164px repeat;
}

main.features::before {
  background: url(../assets/images/common/green-rectangle_bg.png) center/164px 164px repeat;
}

.wrapper:has(main.contact-us) {
  background: url(../assets/images/common/green-rectangle_bg.png) center/164px 164px repeat;
}

.container {
  box-sizing: border-box;
  max-width: 160rem;
  max-width: 164.8rem;
  width: 100%;
  margin: 0 auto;
  padding: 0 2.4rem;
}
@media (max-width: 1601px) {
  .container {
    max-width: 144.8rem;
    padding: 0;
  }
}
@media (max-width: 900px) {
  .container {
    padding: 0 2.4rem;
  }
}

* {
  scrollbar-color: #ecedf6;
}

@supports (-moz-appearance: none) {
  * {
    scrollbar-color: #ecedf6 transparent;
    scrollbar-width: thin;
  }
}
::-webkit-scrollbar {
  height: 10px;
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  background: transparent;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #9698b2;
  border-radius: 5px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #9698b2;
}

::-webkit-scrollbar-thumb:active {
  background: #9698b2;
}

.download-buttons {
  display: flex;
  justify-content: center;
  gap: 1.4rem;
  width: 100%;
}
.download-buttons a {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  width: 22rem;
  height: 5.6rem;
  background-color: #000000;
  color: #ffffff;
  border-radius: 1.6rem;
  text-decoration: none;
  font-size: 1.8rem;
  font-weight: 600;
  transition: color 0.4s ease-in-out;
}
.download-buttons a img {
  transition: filter 0.4s ease-in-out;
  z-index: 1;
}
.download-buttons a span {
  z-index: 1;
}
.download-buttons a::before {
  content: "";
  position: absolute;
  width: 37.3rem;
  height: 37.3rem;
  background-color: #115fed;
  bottom: -40rem;
  left: -22rem;
  transition: bottom 0.5s ease-in-out, left 0.5s ease-in-out;
  border-radius: 50%;
}
@media (hover: hover) and (pointer: fine) {
  .download-buttons a:hover::before {
    bottom: -22rem;
    left: -2rem;
  }
}
@media (max-width: 900px) {
  .download-buttons a {
    max-width: 31.6rem;
    width: 100%;
  }
}
.download-buttons a:nth-of-type(1) img {
  width: 1.7rem;
  height: 2rem;
}
.download-buttons a:nth-of-type(1)::before {
  background-color: #115fed;
}
.download-buttons a:nth-of-type(2) img {
  width: 2rem;
  height: 2rem;
}
.download-buttons a:nth-of-type(2)::before {
  background-color: #37d976;
}
@media (hover: hover) and (pointer: fine) {
  .download-buttons a:nth-of-type(2):hover {
    color: #000000;
  }
  .download-buttons a:nth-of-type(2):hover img {
    filter: invert(1);
  }
}
.download-buttons a:nth-of-type(3) img {
  width: 1.7rem;
  height: 1.9rem;
}
.download-buttons a:nth-of-type(3)::before {
  background-color: #ffaf59;
}
@media (hover: hover) and (pointer: fine) {
  .download-buttons a:nth-of-type(3):hover {
    color: #000000;
  }
  .download-buttons a:nth-of-type(3):hover img {
    filter: invert(1);
  }
}

.button-secondary {
  display: block;
  position: relative;
  max-width: 31.6rem;
  width: 100%;
  font-size: 1.8rem;
  font-weight: 600;
  padding: 1.75rem 0;
  text-align: center;
  background-color: #37d976;
  border-radius: 1.6rem;
  text-decoration: none;
  color: #232431;
  transition: background-color 0.3s ease-in-out;
}
.button-secondary::before {
  content: "";
  position: absolute;
  width: 2rem;
  height: 2rem;
  right: 2.2rem;
  top: 50%;
  transform: translateY(-50%);
  background: url(../assets/images/about/arrow_right.svg) center/cover no-repeat;
}
@media (hover: hover) and (pointer: fine) {
  .button-secondary:hover {
    background-color: #8affb8;
  }
}
@media (max-width: 900px) {
  .button-secondary {
    max-width: 31.6rem;
    width: 100%;
  }
}

.header {
  position: fixed;
  z-index: 2;
  width: 90%;
  left: 50%;
  transform: translate3d(-50%, 2rem, 0);
  border-radius: 1.6rem;
  height: auto;
  padding: 1.4rem 0;
  background-color: transparent;
}
@media (min-width: 2560px) {
  .header {
    width: 164rem;
  }
}
@media (max-width: 900px) {
  .header {
    padding: 1.8rem 1.2rem 0;
    width: calc(100% - 2.4rem);
  }
}
.header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 1.6rem;
  border: 1px solid transparent;
  background-image: linear-gradient(90deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.4) 100%);
  backdrop-filter: blur(0px);
  opacity: 0;
  transition: opacity 0.3s ease-in-out, border-color 0.3s ease-in-out, backdrop-filter 0.3s ease-in-out;
  pointer-events: none;
}
@media (max-width: 900px) {
  .header::before {
    border: none;
  }
}
.header [class*=__link] {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  position: relative;
  width: -moz-max-content;
  width: max-content;
  background-color: transparent;
  color: rgba(35, 36, 49, 0.6);
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 3rem;
  padding: 0 1.2rem;
  border-radius: 0.6rem;
  cursor: pointer;
  transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
}
@media (hover: hover) and (pointer: fine) {
  .header [class*=__link]:not(a.dropdown-menu__link):hover {
    background-color: rgba(255, 255, 255, 0.6);
    color: #232431;
  }
  .header [class*=__link]:not(a.dropdown-menu__link):hover > .header-nav__arrow {
    opacity: 1;
  }
}
.header [class*=__link].current {
  color: #232431;
}
.header [class*=__link] > .header-nav__arrow {
  display: inline-block;
  width: 1.6rem;
  height: 1.6rem;
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
  background: url(../assets/images/common/arrow_down.svg) center/cover no-repeat;
  opacity: 0.6;
}
.header-sign-up {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4rem;
  background-color: rgba(255, 255, 255, 0.2);
  border: 1px solid #bdc0d0;
  border-radius: 1.6rem;
  text-decoration: none;
  transition: background-color 0.3s ease-in-out, border-color 0.3s ease-in-out, color 0.3s ease-in-out;
}
.header-sign-up .text {
  color: #115fed;
  font-size: 1.6rem;
  font-weight: 600;
  white-space: nowrap;
}
.header-sign-up:hover {
  background-color: #115fed;
  border-color: #115fed;
}
.header-sign-up:hover .text {
  color: #ffffff;
}
@media (max-width: 900px) {
  .header-sign-up {
    display: none;
  }
}
.header-sign-up--mobile {
  display: none;
  flex-shrink: 0;
  margin-bottom: 1.8rem;
  height: 5rem;
}
@media (max-width: 900px) {
  .header-sign-up--mobile {
    display: flex;
  }
}
.header.isBlur::before {
  border-color: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(50px);
  opacity: 1;
}
.header-wrapper {
  position: relative;
  height: 5rem;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 900px) {
  .header-wrapper {
    flex-direction: column;
    height: auto;
    align-items: flex-start;
  }
}
.header-container {
  box-sizing: border-box;
  max-width: 160rem;
  width: 100%;
  margin: 0 auto;
  padding: 0 3rem;
}
@media (max-width: 1601px) {
  .header-container {
    max-width: 140rem;
    padding: 0;
  }
}
@media (max-width: 900px) {
  .header-container {
    padding: 0;
  }
}
.header-logo {
  width: auto;
  height: 100%;
  transition: opacity 0.3s ease;
}
@media (max-width: 900px) {
  .header-logo {
    height: 5rem;
  }
}
.header-logo a {
  height: 100%;
}
.header-logo img {
  width: auto;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.header-nav {
  position: relative;
  width: auto;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  flex-direction: row;
  gap: 1.8rem;
  align-items: center;
}
@media (max-width: 900px) {
  .header-nav {
    position: relative;
    height: auto;
    max-height: 0;
    opacity: 0;
    transition: opacity 0.3s ease-in-out, max-height 0.3s ease-in-out;
    justify-content: unset;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
    padding: 0 1.4rem;
    overflow: hidden;
  }
}
.header-nav__item {
  display: flex;
}
@media (max-width: 900px) {
  .header-nav__item:has(.dropdown-menu) {
    flex-direction: column;
  }
}
.header-nav .mobile-logo-item {
  display: none;
}
@media (max-width: 900px) {
  .header-nav .mobile-logo-item {
    display: block;
    width: 3.4rem;
    padding: 0 0.2rem;
    height: 3rem;
    opacity: 1;
  }
}
.header-nav .mobile-logo-item a {
  display: inline-block;
  width: 100%;
  height: 100%;
}
.header-nav .mobile-logo-item img {
  width: 100%;
  height: 100%;
}
.header-nav a {
  text-decoration: none;
}
.header-nav .dropdown-menu {
  position: absolute;
  bottom: -1.3rem;
  left: 50%;
  transform: translateX(-50%) translateY(100%);
  padding: 0 1.4rem;
  transition: opacity 0.3s ease, transform 0.3s ease;
  overflow: hidden;
  pointer-events: none;
}
@media (max-width: 900px) {
  .header-nav .dropdown-menu {
    position: relative;
    left: auto;
    transform: none;
    bottom: auto;
    padding: 0;
    opacity: 1;
    max-height: 0;
    transition: max-height 0.3s ease-in-out;
    pointer-events: all;
    border-bottom-left-radius: 1.6rem;
    border-bottom-right-radius: 1.6rem;
  }
}
.header-nav .dropdown-menu:has(.dropdown-menu__list.show) {
  max-height: 100%;
}
.header-nav .dropdown-menu::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-bottom-left-radius: 1.6rem;
  border-bottom-right-radius: 1.6rem;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-top: none;
  background-image: linear-gradient(90deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.4) 100%);
  opacity: 0;
  backdrop-filter: blur(0px);
  transition: backdrop-filter 0.3s ease-in-out, opacity 0.3s ease-in-out;
  will-change: backdrop-filter, opacity;
}
@media (max-width: 900px) {
  .header-nav .dropdown-menu::before {
    display: none;
  }
}
.header-nav .dropdown-menu__list {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 1.8rem;
  overflow: hidden;
  padding: 1.4rem;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}
@media (max-width: 900px) {
  .header-nav .dropdown-menu__list {
    padding: 0 1.4rem;
    flex-direction: column;
    max-height: 0;
    transition: max-height 0.3s ease-in-out;
    opacity: 1;
  }
}
@media (max-width: 900px) {
  .header-nav .dropdown-menu__item:first-child {
    margin-top: 1.4rem;
  }
}
@media (max-width: 900px) {
  .header-nav .dropdown-menu__item:last-child {
    margin-bottom: 1.4rem;
  }
}
.header-nav .dropdown-menu__link {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0;
  background-color: none;
  color: rgba(35, 36, 49, 0.6);
}
.header-nav .dropdown-menu__link span {
  white-space: nowrap;
  padding: 0 0.8rem;
  border-radius: 0.6rem;
  transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
}
@media (hover: hover) and (pointer: fine) {
  .header-nav .dropdown-menu__link:hover span {
    background-color: rgba(255, 255, 255, 0.6);
    color: #232431;
  }
}
.header-nav .dropdown-menu__image {
  flex-shrink: 0;
  width: 4.2rem;
  height: 4.2rem;
}
.header-nav .dropdown-menu__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 10.5px;
  box-shadow: 0 5px 6px 0 rgba(35, 36, 49, 0.12);
}
.header-nav__item:has(.header-nav__arrow).hover .dropdown-menu {
  pointer-events: all;
}
.header-nav__item:has(.header-nav__arrow).hover .dropdown-menu::before {
  opacity: 1;
  backdrop-filter: blur(50px);
}
.header-nav__item:has(.header-nav__arrow).hover .dropdown-menu__list {
  opacity: 1;
}
.header .line {
  display: none;
}
@media (max-width: 900px) {
  .header .line {
    display: block;
    width: 100%;
    height: 0.1rem;
    margin: 1.4rem 0;
    background-color: #ffffff;
  }
}

.header-toggle,
.header-burger {
  display: none;
}

@media (max-width: 900px) {
  .header-burger {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    position: absolute;
    overflow: visible;
    top: 1rem;
    right: 0;
    width: 3rem;
    height: 3rem;
    z-index: 1;
    cursor: pointer;
  }
  .header-burger span {
    position: absolute;
    display: block;
    width: 2.1rem;
    height: 0.2rem;
    background: rgb(30, 30, 42);
    border-radius: 0.2rem;
    transform: rotate(0deg);
    transition: transform 0.3s ease-in-out, top 0.3s ease-in-out, opacity 0.3s ease-in-out, bottom 0.3s ease-in-out;
  }
  .header-burger span:nth-child(1) {
    top: 0.8rem;
  }
  .header-burger span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
  }
  .header-burger span:nth-child(3) {
    bottom: 0.8rem;
  }
  .header-toggle:checked + .header-burger span:nth-child(1) {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
  }
  .header-toggle:checked + .header-burger span:nth-child(2) {
    opacity: 0;
  }
  .header-toggle:checked + .header-burger span:nth-child(3) {
    bottom: 50%;
    transform: translateY(50%) rotate(-45deg);
  }
  [type=checkbox]:not(:checked),
  [type=checkbox]:checked {
    display: none;
  }
  .header-toggle:checked ~ .header-nav {
    opacity: 1;
  }
}
.footer {
  position: relative;
  z-index: 3;
  width: 100%;
  background-color: #fff;
  color: #232431;
  border-radius: 3rem 3rem 0px 0px;
  overflow: hidden;
  padding: 10rem 0 6rem;
}
@media (max-width: 900px) {
  .footer {
    height: auto;
    padding: 8rem 0 4.6rem;
  }
}

.footer-flex {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 4rem;
}
@media (max-width: 900px) {
  .footer-flex {
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-bottom: 2.2rem;
  }
}

.footer-column {
  display: flex;
  flex-direction: column;
}

@media (max-width: 900px) {
  .menu-left {
    order: 0;
    margin-bottom: 6rem;
  }
}
.menu-left-description {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.17;
  margin-bottom: 3rem;
}
@media (max-width: 900px) {
  .menu-left-description {
    margin-bottom: 2rem;
    text-align: center;
  }
}
.menu-left-contact {
  padding: 1.2rem 2rem;
  margin-bottom: 5rem;
  display: flex;
  flex: 0 0 auto;
  width: auto;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  border-radius: 1.2rem;
  border: 1px solid #404040;
  background-color: transparent;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.33;
  color: #232431;
  text-decoration: none;
  transition: background-color 0.4s ease-in-out, border-color 0.4s ease-in-out;
}
@media (max-width: 900px) {
  .menu-left-contact {
    margin: 0 auto 3rem;
  }
}
@media (hover: hover) and (pointer: fine) {
  .menu-left-contact:hover {
    background-color: #37d976;
    border-color: transparent;
  }
}
.menu-left-contact img {
  width: 2.4rem;
  height: 2.4rem;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  margin-right: 0.8rem;
}
.menu-left ul {
  display: flex;
  gap: 1.8rem;
}
.menu-left li {
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 0.4rem;
  background-color: transparent;
  transition: background-color 0.4s ease-in-out;
}
@media (hover: hover) and (pointer: fine) {
  .menu-left li:hover {
    background-color: #37d976;
  }
}
.menu-left li img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}

.menu-center {
  width: 36.8rem;
}
@media (max-width: 900px) {
  .menu-center {
    width: 100%;
    order: 2;
  }
}
.menu-center a {
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.33;
  color: #232431;
  text-decoration: none;
  flex: auto 0 0;
}
.menu-center a span {
  text-decoration: none;
  color: #232431;
}
@media (hover: hover) and (pointer: fine) {
  .menu-center a span:hover {
    text-decoration: underline;
  }
}
.menu-center-top {
  position: relative;
  width: 100%;
  padding-bottom: 3rem;
  margin-bottom: 3rem;
  display: grid;
  grid-template-columns: 1fr max-content;
  justify-content: end;
  gap: 1.4rem 2rem;
}
@media (max-width: 900px) {
  .menu-center-top {
    padding-bottom: 2.2rem;
    margin-bottom: 2.2rem;
  }
}
.menu-center-top a span {
  display: block;
  text-align: left;
}
.menu-center-top a:nth-of-type(even) {
  order: 1;
}
.menu-center-top a:nth-of-type(odd) {
  order: 2;
}
.menu-center-top a:nth-of-type(3),
.menu-center-top a:nth-of-type(4) {
  justify-self: start;
}
@media (max-width: 900px) {
  .menu-center-top a:nth-of-type(3),
  .menu-center-top a:nth-of-type(4) {
    justify-self: end;
  }
}
.menu-center-top a:nth-of-type(1),
.menu-center-top a:nth-of-type(2) {
  justify-self: start;
}
.menu-center-top::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: rgba(64, 64, 64, 0.6);
}
.menu-center-bottom {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
}
.menu-center-bottom a:not(:last-child) {
  margin-bottom: 1.4rem;
}

.menu-right {
  max-width: 45.4rem;
}
@media (max-width: 900px) {
  .menu-right {
    order: 1;
    margin-bottom: 6rem;
    width: 100%;
  }
}
.menu-right-description {
  color: #232431;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.17;
  margin-bottom: 3rem;
}
@media (max-width: 900px) {
  .menu-right-description {
    margin-bottom: 2rem;
    text-align: center;
  }
}
.menu-right-buttons {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  width: 100%;
  gap: 1.4rem;
}
@media (max-width: 900px) {
  .menu-right-buttons {
    justify-content: center;
  }
}
.menu-right-buttons a {
  display: flex;
  width: 22rem;
  height: 5.6rem;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  border-radius: 1.6rem;
  background-color: #000;
  color: #fff;
  text-decoration: none;
  transition: background-color 0.4s ease-in-out, color 0.4s ease-in-out;
}
@media (max-width: 900px) {
  .menu-right-buttons a {
    width: 100%;
  }
}
.menu-right-buttons img {
  width: 2rem;
  height: 2rem;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  filter: invert(0);
  transition: filter 0.4s ease-in-out;
}
.menu-right-buttons span {
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 2rem;
}

.footer-bottom {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.15;
  padding-top: 2rem;
}
@media (max-width: 900px) {
  .footer-bottom {
    flex-direction: column;
    gap: 1.2rem;
    align-items: flex-start;
    justify-content: flex-start;
    padding-top: 2.2rem;
  }
}
.footer-bottom::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: rgba(64, 64, 64, 0.6);
}

.scroll-top-button {
  position: fixed;
  z-index: 2;
  bottom: 5rem;
  right: 10rem;
  width: 5.6rem;
  height: 5.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #115fed;
  cursor: pointer;
  transition: opacity 0.3s ease-in-out;
  opacity: 0;
  pointer-events: none;
}
@media (min-width: 2560px) {
  .scroll-top-button {
    right: 25rem;
  }
}
@media (max-width: 900px) {
  .scroll-top-button {
    bottom: 2.4rem;
    right: 2.4rem;
  }
}
.scroll-top-button svg {
  width: 2.4rem;
  height: 2.4rem;
}
.scroll-top-button.show {
  opacity: 0.3;
  pointer-events: all;
}
@media (hover: hover) and (pointer: fine) {
  .scroll-top-button.show:hover {
    opacity: 1;
  }
}

.favourite {
  padding-top: 5.4rem;
  background: url(../assets/images/resources/favourite_bg.svg) center/cover no-repeat;
}
@media (max-width: 900px) {
  .favourite {
    background-size: 300%;
    background-position-y: 2rem;
  }
}
.favourite .container {
  display: flex;
  gap: 4rem;
}
@media (max-width: 900px) {
  .favourite .container {
    flex-direction: column;
    gap: 6rem;
  }
}
.favourite .card__image {
  display: flex;
  overflow: hidden;
}
.favourite .card__image img {
  transition: transform 0.3s ease-in-out;
}
@media (hover: hover) and (pointer: fine) {
  .favourite .card:hover .card__image img {
    transform: scale(1.05);
  }
}
.favourite .card__title {
  font-weight: 600;
  color: #232431;
}
.favourite .card__subtitle {
  font-weight: 400;
  color: #232431;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.favourite .card__tags {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
  font-size: 1.2rem;
}
.favourite .card__tags span {
  padding: 0.6rem 1.4rem;
  color: #ffffff;
  background-color: #232431;
  border-radius: 10rem;
}
.favourite .card__info {
  display: flex;
  gap: 0.8rem;
  margin-top: 1.8rem;
  font-size: 1.4rem;
  font-weight: 400;
  color: #616161;
}
.favourite .card__info .people {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  text-decoration: underline;
  font-weight: 600;
  color: #115fed;
}
.favourite .card__info .people__avatar {
  display: flex;
  align-items: center;
}
.favourite .card__info .date {
  display: flex;
  gap: 0.6rem;
  align-items: center;
}
.favourite .card__info .date__icon {
  width: 1.8rem;
  height: 1.8rem;
}
.favourite .card__info .date__icon::before {
  display: block;
  content: "";
  background: url(../assets/images/common/calendar.svg) center/cover no-repeat;
  width: 100%;
  height: 100%;
}
.favourite__main {
  max-width: 68rem;
  width: 100%;
}
@media (max-width: 900px) {
  .favourite__main {
    max-width: 100%;
  }
}
.favourite__main .card {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  text-decoration: none;
}
@media (max-width: 900px) {
  .favourite__main .card {
    gap: 2rem;
  }
}
.favourite__main .card__image {
  border-radius: 3rem;
}
.favourite__main .card__image img {
  max-width: 68rem;
  min-height: 48.6rem;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 900px) {
  .favourite__main .card__image img {
    max-width: 100%;
    min-height: 24.4rem;
  }
}
.favourite__main .card__title {
  font-size: 3.8rem;
}
.favourite__main .card__subtitle {
  margin-top: 1.4rem;
  font-size: 2rem;
}
.favourite__main .card__tags {
  margin-top: 3rem;
}
.favourite__secondary {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
@media (max-width: 900px) {
  .favourite__secondary {
    gap: 2rem;
  }
}
.favourite__secondary .card {
  display: flex;
  gap: 2rem;
  height: 34rem;
  padding: 2rem 4rem 2rem 2rem;
  background-color: #ffffff;
  border-radius: 2rem;
  text-decoration: none;
}
@media (max-width: 900px) {
  .favourite__secondary .card {
    flex-direction: column;
    height: 66rem;
    padding: 2rem;
  }
}
.favourite__secondary .card__content {
  display: flex;
  flex-direction: column;
}
@media (max-width: 900px) {
  .favourite__secondary .card__content {
    height: 100%;
  }
}
.favourite__secondary .card__image {
  width: 30rem;
  flex-shrink: 0;
  border-radius: 2rem;
}
@media (max-width: 900px) {
  .favourite__secondary .card__image {
    width: 100%;
    height: 30rem;
  }
}
.favourite__secondary .card__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.favourite__secondary .card__title {
  font-size: 2.8rem;
}
.favourite__secondary .card__subtitle {
  margin-top: 1.2rem;
  font-size: 1.6rem;
}
.favourite__secondary .card__tags {
  margin-top: auto;
}

.all-posts {
  padding-top: 20.8rem;
  padding-bottom: 22rem;
}
@media (max-width: 900px) {
  .all-posts {
    padding: 10rem 0;
  }
}
.all-posts h1 {
  text-align: center;
}
.all-posts h1 span {
  color: #37d976;
}
.all-posts .tags {
  margin-top: 3.8rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}
.all-posts .tags a {
  background: linear-gradient(0deg, rgba(17, 95, 237, 0.08), rgba(17, 95, 237, 0.08)), #ecedf6;
  border-radius: 10rem;
  color: #232431;
  padding: 1.2rem 3rem;
  text-decoration: none;
  font-size: 2rem;
  font-weight: 600;
  transition: background 0.3s ease-in-out, color 0.3s ease-in-out;
}
.all-posts .tags a.active {
  background-color: #232431;
  color: #ffffff;
}
@media (hover: hover) and (pointer: fine) {
  .all-posts .tags a:hover {
    background-color: #232431;
    color: #ffffff;
  }
}
.all-posts .cards {
  margin-top: 8rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(1, 1fr);
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  opacity: 1;
}
@media (max-width: 900px) {
  .all-posts .cards {
    margin-top: 4rem;
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: repeat(1, 1fr);
  }
}
.all-posts .cards.fade-in {
  opacity: 0;
  animation: fadeIn 0.2s forwards;
}
@keyframes fadeIn {
  to {
    opacity: 1;
  }
}
.all-posts .cards.fade-out {
  opacity: 1;
  animation: fadeOut 0.2s forwards;
}
@keyframes fadeOut {
  to {
    opacity: 0;
  }
}
.all-posts .cards .card {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  text-decoration: none;
  color: #232431;
}
@media (hover: hover) and (pointer: fine) {
  .all-posts .cards .card:hover .card__image img {
    transform: scale(1.05);
  }
  .all-posts .cards .card:hover .card__subtitle {
    color: #115fed;
  }
}
.all-posts .cards .card__image {
  position: relative;
  height: 44rem;
  width: 100%;
  display: flex;
  overflow: hidden;
  border-radius: 3rem;
}
@media (max-width: 900px) {
  .all-posts .cards .card__image {
    height: 34.2rem;
  }
}
.all-posts .cards .card__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease-in-out;
}
.all-posts .cards .card__tags {
  position: absolute;
  right: 2rem;
  bottom: 2rem;
  display: flex;
  justify-content: flex-end;
  gap: 0.7rem;
  flex-wrap: wrap-reverse;
  margin-left: 2rem;
  font-size: 1.2rem;
}
.all-posts .cards .card__tags span {
  padding: 0.6rem 1.4rem;
  color: #ffffff;
  background-color: #232431;
  border-radius: 10rem;
}
.all-posts .cards .card__title {
  font-size: 2.4rem;
  font-weight: 600;
}
.all-posts .cards .card__subtitle {
  margin-top: 1.2rem;
  font-size: 1.6rem;
  font-weight: 400;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color 0.3s ease-in-out;
}
.all-posts .cards .card__info {
  margin-top: 2rem;
  font-size: 1.4rem;
  font-weight: 400;
  color: #616161;
}
.all-posts .cards .card__info .date {
  display: flex;
  gap: 0.6rem;
  align-items: center;
}
.all-posts .cards .card__info .date__icon {
  width: 1.8rem;
  height: 1.8rem;
}
.all-posts .cards .card__info .date__icon::before {
  display: block;
  content: "";
  background: url(../assets/images/common/calendar.svg) center/cover no-repeat;
  width: 100%;
  height: 100%;
}
.all-posts .pagination {
  margin-top: 8rem;
  height: 5.6rem;
  font-size: 1.6rem;
  font-weight: 600;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.2rem;
}
@media (max-width: 900px) {
  .all-posts .pagination {
    margin-top: 4rem;
  }
}
.all-posts .pagination .next,
.all-posts .pagination .prev {
  position: relative;
  width: 5.6rem;
  height: 5.6rem;
  background-color: #115fed;
  border-radius: 50%;
  flex-shrink: 0;
  animation: pagFadeIn 0.3s ease-in-out forwards;
}
.all-posts .pagination .next::before,
.all-posts .pagination .prev::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, -50%, 0);
  width: 2.4rem;
  height: 2.4rem;
  background: url(../assets/images/resources/arrow.svg) center/cover no-repeat;
}
.all-posts .pagination .prev::before {
  transform: translate3d(-50%, -50%, 0) rotate(-180deg);
}
.all-posts .pagination .next.disabled,
.all-posts .pagination .prev.disabled {
  background-color: #bdc0d0;
}
.all-posts .pagination .dots {
  color: #bdc0d0;
}
.all-posts .pagination a,
.all-posts .pagination span {
  padding: 0.2rem 0.6rem;
}
.all-posts .pagination a {
  color: #bdc0d0;
  text-decoration: none;
  transition: color 0.3s ease-in-out;
  animation: numbFadeOut 0.3s ease-in-out;
}
@media (hover: hover) and (pointer: fine) {
  .all-posts .pagination a:hover {
    color: #115fed;
  }
}
.all-posts .pagination span {
  transition: color 0.3s ease-in-out;
  color: #115fed;
  animation: numbFadeIn 0.3s ease-in-out;
}
