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);
}

body {
  overflow: visible;
}
body > .wrapper {
  overflow: visible;
}
body > .wrapper > header {
  z-index: 3;
}
body > .wrapper > footer {
  z-index: 3;
}
body > .wrapper > main {
  overflow: visible;
  z-index: 2;
}
body > .wrapper > main > section {
  overflow: visible;
}
@media (max-width: 900px) {
  body {
    overflow: hidden;
  }
  body > .wrapper {
    overflow: hidden;
  }
  body > .wrapper > main {
    overflow: hidden;
  }
  body > .wrapper > main > section {
    overflow: hidden;
  }
}

.single-resource .container .table-menu li:last-of-type .table-menu__index {
  display: none;
}
@media (max-width: 900px) {
  .single-resource .container > .table-menu:not(.table-menu.table-menu-mobile) {
    display: none;
  }
}
.single-resource .container .table-menu-component__content {
  max-width: 85rem;
}
@media (max-width: 1601px) {
  .single-resource .container .table-menu-component__content {
    max-width: 68rem;
  }
}
@media (max-width: 900px) {
  .single-resource .container .table-menu-component__content {
    max-width: 100%;
  }
}
.single-resource .container .table-menu-component__content .table-menu {
  display: none;
  margin: 3rem 0;
}
@media (max-width: 900px) {
  .single-resource .container .table-menu-component__content .table-menu {
    display: block;
  }
}
.single-resource .container .table-menu-component__content h3:last-of-type span {
  display: none;
}

.table-menu-component .container {
  position: relative;
  display: flex;
  gap: 4rem;
}
@media (max-width: 900px) {
  .table-menu-component .container {
    flex-direction: column;
    gap: 3rem;
  }
}
.table-menu-component .summary {
  background-color: #115fed;
  padding: 4rem;
  border-radius: 3rem;
  color: #ffffff;
}
.table-menu-component .summary__info {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  font-size: 1.4rem;
  font-weight: 400;
}
@media (max-width: 600px) {
  .table-menu-component .summary__info {
    flex-direction: column;
    align-items: flex-start;
  }
}
.table-menu-component .summary__info .people {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  text-decoration: underline;
  font-weight: 600;
}
.table-menu-component .summary__info .people__avatar {
  display: flex;
  align-items: center;
}
.table-menu-component .summary__info .date {
  display: flex;
  gap: 0.6rem;
  align-items: center;
  opacity: 0.7;
}
.table-menu-component .summary__info .date__icon {
  width: 1.8rem;
  height: 1.8rem;
  filter: brightness(0) saturate(100%) invert(100%) sepia(99%) saturate(0%) hue-rotate(111deg) brightness(101%) contrast(103%);
}
.table-menu-component .summary__info .date__icon::before {
  display: block;
  content: "";
  background: url(../assets/images/common/calendar.svg) center/cover no-repeat;
  width: 100%;
  height: 100%;
}
.table-menu-component .summary__text {
  margin-top: 2rem;
  font-family: "Rokkitt", sans-serif;
  font-size: 2.4rem;
  font-weight: 400;
}
.table-menu-component .tags {
  margin: 4rem 0;
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
  font-size: 1.2rem;
}
@media (max-width: 600px) {
  .table-menu-component .tags {
    margin: 3rem 0;
  }
}
.table-menu-component .tags span {
  padding: 0.6rem 1.4rem;
  color: #ffffff;
  background-color: #232431;
  border-radius: 10rem;
}
.table-menu-component .table-menu {
  position: sticky;
  top: 13rem;
  max-width: 32rem;
  padding: 2rem 1rem;
  width: 100%;
  height: -moz-min-content;
  height: min-content;
  overflow: hidden;
  flex-shrink: 0;
  background-color: #ffffff;
  border-radius: 3rem;
  box-shadow: 8px 10px 10px 0px rgba(0, 24, 148, 0.05);
  z-index: 1;
}
@media (max-width: 900px) {
  .table-menu-component .table-menu {
    position: static;
    max-height: none;
    max-width: 100%;
  }
}
.table-menu-component .table-menu__inner {
  padding: 1rem 1rem;
  width: 100%;
  height: auto;
  box-sizing: border-box;
  max-height: calc(100vh - 18rem);
  overflow-y: auto;
}
@media (max-width: 900px) {
  .table-menu-component .table-menu__inner {
    overflow-y: hidden;
    max-width: 100%;
    padding-bottom: 0.8rem;
  }
}
.table-menu-component .table-menu__close {
  position: absolute;
  top: 3.6rem;
  right: 2rem;
  width: 1.6rem;
  height: 1.6rem;
  background: url(../assets/images/common/tableMenu_close.svg) center/cover no-repeat;
}
.table-menu-component .table-menu__heading {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
}
.table-menu-component .table-menu__list {
  font-size: 1.4rem;
  font-weight: 400;
}
.table-menu-component .table-menu__item {
  position: relative;
  width: 100%;
  min-height: 5.2rem;
  display: flex;
  flex-direction: column;
  padding: 1.8rem 0;
}
.table-menu-component .table-menu__item:has(.table-menu__sublist.show) .table-menu__link {
  text-shadow: 1px 0 0 #115fed;
  color: #115fed;
  animation: bounceOpenTitle 0.6s ease-in-out forwards;
}
.table-menu-component .table-menu__item:has(.table-menu__sublist.show) {
  animation: bounceOpen 0.7s ease-in-out forwards;
}
.table-menu-component .table-menu__item:has(.table-menu__sublist.hide) .table-menu__link {
  animation: bounceCloseTitle 0.6s ease-in-out none;
}
.table-menu-component .table-menu__item:has(.table-menu__sublist.hide) {
  animation: bounceClose 0.7s ease-in-out forwards;
}
.table-menu-component .table-menu__link, .table-menu-component .table-menu__sublink {
  text-decoration: none;
  color: inherit;
  display: flex;
  gap: 0.4rem;
}
.table-menu-component .table-menu__link {
  width: 90%;
  position: relative;
  font-weight: 400;
  text-shadow: 0 0 0 #000000;
  transition: text-shadow 0.3s ease-in-out, color 0.3s ease-in-out;
}
.table-menu-component .table-menu__sublink {
  position: relative;
  transition: color 0.25s ease-in-out;
}
.table-menu-component .table-menu__sublink::before {
  content: "";
  position: absolute;
  width: 0.6rem;
  height: 0.6rem;
  background-color: #232431;
  border-radius: 50%;
  left: -1.3rem;
  top: 50%;
  transform: translateY(-50%);
  transition: background-color 0.25s ease-in-out;
}
@media (hover: hover) and (pointer: fine) {
  .table-menu-component .table-menu__sublink:hover {
    color: #115fed;
  }
  .table-menu-component .table-menu__sublink:hover::before {
    background-color: #115fed;
  }
}
.table-menu-component .table-menu__link.animate-enter {
  animation: bounceOpenTitle 0.6s ease-in-out forwards !important;
  text-shadow: 1px 0 0 #115fed;
  color: #115fed;
}
@media (max-width: 900px) {
  .table-menu-component .table-menu__link.animate-enter {
    animation: none !important;
  }
}
.table-menu-component .table-menu__link.animate-leave {
  animation: bounceCloseTitle 0.6s ease-in-out forwards;
}
@media (max-width: 900px) {
  .table-menu-component .table-menu__link.animate-leave {
    animation: none !important;
  }
}
.table-menu-component .table-menu__item:not(:last-child)::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0.4rem;
  background-image: linear-gradient(90deg, rgba(41, 115, 250, 0.28), rgba(17, 95, 237, 0.04));
}
.table-menu-component .table-menu__sublist {
  padding-right: 1.8rem;
  padding-left: 3.4rem;
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
  max-height: 0;
  opacity: 0.2;
  overflow: hidden;
  transition: max-height 0.25s ease-out, opacity 0.25s ease-out;
}
.table-menu-component .table-menu__sublist.show {
  opacity: 1;
  animation: bounceOpen 0.7s ease-in-out forwards;
}
.table-menu-component .table-menu__subitem {
  position: relative;
}
.table-menu-component .table-menu__subitem:first-child {
  margin-top: 1.8rem;
}
.table-menu-component .table-menu__title {
  position: relative;
  overflow: hidden;
}
.table-menu-component .table-menu__arrow {
  position: absolute;
  width: 10%;
  height: 5rem;
  top: 0;
  right: 0;
}
.table-menu-component .table-menu__arrow .background {
  display: block;
  height: 100%;
  width: 100%;
  background-color: #fff;
}
.table-menu-component .table-menu__arrow .icon {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  transition: transform 0.4s ease-in-out;
  width: 1.6rem;
  height: 1.6rem;
  background: url(../assets/images/common/tableMenu_arrow.svg) center/contain no-repeat;
  cursor: pointer;
  z-index: 1;
}
.table-menu-component .table-menu.table-menu-mobile .table-menu__arrow .background {
  background-color: #232431;
}
.table-menu-component .table-menu-mobile {
  max-height: 39rem;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  top: unset;
  left: 0;
  bottom: 0;
  z-index: 2;
  width: 100vw;
  background-color: #232431;
  color: #ffffff;
  border-radius: 3rem 3rem 0 0;
  transition: all 0.3s ease-in-out;
  padding: 3rem 2rem;
}
.table-menu-component .table-menu-mobile.show {
  opacity: 1;
  pointer-events: all;
}
.table-menu-component .table-menu-mobile .table-menu__sublink::before {
  background-color: #ffffff;
}
.table-menu-component .table-menu-mobile .table-menu__list {
  position: relative;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  touch-action: pan-y;
  max-height: 32rem;
}
.table-menu-component .table-menu-burger {
  display: none;
  position: fixed;
  bottom: -3rem;
  left: -1.9rem;
  width: 6rem;
  height: 6rem;
  background-color: #232431;
  border-radius: 50%;
  z-index: 2;
  scale: 0;
  opacity: 0;
  pointer-events: none;
  transition: scale 0.4s ease-in-out, opacity 0.4s ease-in-out, bottom 0.4s ease-in-out, left 0.4s ease-in-out;
}
@media (max-width: 900px) {
  .table-menu-component .table-menu-burger {
    display: block;
  }
}
.table-menu-component .table-menu-burger.show {
  bottom: 3.4rem;
  left: 2.3rem;
  scale: 1;
  opacity: 1;
  pointer-events: all;
}
.table-menu-component .table-menu-burger::before, .table-menu-component .table-menu-burger::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 2.1rem;
  height: 0.2rem;
  background-color: #ffffff;
}
.table-menu-component .table-menu-burger::before {
  top: 2.5rem;
}
.table-menu-component .table-menu-burger::after {
  bottom: 2.5rem;
}
@keyframes bounceOpen {
  50% {
    margin-bottom: 1rem;
  }
  100% {
    margin-bottom: 0;
  }
}
@keyframes bounceClose {
  50% {
    min-height: 4rem;
    padding-bottom: 1.2rem;
  }
  100% {
    min-height: 5.2rem;
    padding-bottom: 1.8rem;
  }
}
@keyframes bounceOpenTitle {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(2.3rem);
  }
  100% {
    transform: translateX(2.1rem);
  }
}
@keyframes bounceCloseTitle {
  0% {
    transform: translateX(2.1rem);
  }
  50% {
    margin-left: -0.2rem;
    transform: translateX(0);
  }
  100% {
    margin-left: 0;
    transform: translateX(0);
  }
}
.table-menu-component__title-mobile {
  display: none;
  font-size: 3.8rem;
  font-weight: 600;
}
@media (max-width: 900px) {
  .table-menu-component__title-mobile {
    display: block;
  }
}
.table-menu-component__subtitle-mobile {
  display: none;
  font-size: 1.6rem;
  font-weight: 400;
  color: rgba(64, 64, 64, 0.6);
}
@media (max-width: 900px) {
  .table-menu-component__subtitle-mobile {
    display: block;
  }
}
.table-menu-component__content {
  max-width: 85rem;
  width: 100%;
}
@media (max-width: 1601px) {
  .table-menu-component__content {
    max-width: 69.8rem;
  }
}
@media (max-width: 900px) {
  .table-menu-component__content {
    max-width: 100%;
  }
}
.table-menu-component__content h1 {
  font-size: 3.8rem;
  font-weight: 600;
}
@media (max-width: 900px) {
  .table-menu-component__content h1:not(.single-title) {
    display: none;
  }
}
.table-menu-component__content h3:not(.table-menu__heading) {
  display: flex;
  align-items: center;
  font-size: 2.4rem;
  font-weight: 600;
  margin: 3rem 0;
}
.table-menu-component__content h3:not(.table-menu__heading) span {
  width: 3.6rem;
  height: 3.6rem;
  margin-right: 0.8rem;
  border-radius: 50%;
  background-color: rgb(35, 36, 49);
  font-size: 1.4rem;
  font-weight: 600;
  color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}
.table-menu-component__content h4 {
  position: relative;
  font-size: 1.8rem;
  font-weight: 600;
  margin: 2rem 0;
  padding-left: 1.5rem;
}
.table-menu-component__content h4::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background-color: rgb(35, 36, 49);
}
.table-menu-component__content h5 {
  margin: 3rem 0;
  font-size: 1.6rem;
  font-weight: 400;
  color: rgba(64, 64, 64, 0.6);
}
@media (max-width: 900px) {
  .table-menu-component__content h5:nth-of-type(1) {
    display: none;
  }
}
.table-menu-component__content h5:last-child {
  margin-top: 2rem;
  margin-bottom: 0;
  text-align: right;
}
.table-menu-component__content p {
  font-size: 1.6rem;
  font-weight: 400;
}
.table-menu-component__content p:not(:first-child),
.table-menu-component__content p:not(:last-child) {
  margin-top: 2rem;
}
.table-menu-component__content ul:not(.table-menu__sublist, .table-menu__list),
.table-menu-component__content ol:not(.table-menu__sublist, .table-menu__list) {
  list-style: disc;
  font-size: 1.6rem;
  margin-top: 2rem;
  padding-left: 2.5rem;
}
.table-menu-component__content ul:not(.table-menu__sublist, .table-menu__list) li,
.table-menu-component__content ol:not(.table-menu__sublist, .table-menu__list) li {
  list-style: disc;
}
.table-menu-component__content ol:not(.table-menu__sublist, .table-menu__list) {
  list-style: decimal;
}
.table-menu-component__content ol:not(.table-menu__sublist, .table-menu__list) li {
  list-style: decimal;
}
.table-menu-component__content strong {
  font-weight: 600;
}
.table-menu-component__content .example-prompt {
  position: relative;
  margin: 6.2rem 0;
  padding: 2rem 4rem;
  background-color: #ffffff;
}
.table-menu-component__content .example-prompt h6 {
  color: #115fed;
  font-size: 1.2rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.2rem;
}
.table-menu-component__content .example-prompt h6::before {
  content: "";
  display: block;
  width: 2rem;
  height: 2rem;
  background: url(../assets/images/resources/prompt_stars.svg) center/cover no-repeat;
}
.table-menu-component__content .example-prompt p {
  margin-top: 0.6rem;
  font-size: 1.6rem;
  font-weight: 600;
}
.table-menu-component__content .example-prompt::before, .table-menu-component__content .example-prompt::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 3.2rem;
}
.table-menu-component__content .example-prompt::before {
  top: -3.1rem;
  background: url(../assets/images/resources/paper_up.svg) center/cover no-repeat;
}
.table-menu-component__content .example-prompt::after {
  bottom: -3.1rem;
  background: url(../assets/images/resources/paper_down.svg) center/cover no-repeat;
}

.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;
  }
}

.attached-card {
  position: absolute;
  max-width: 33.6rem;
  width: 100%;
  min-height: 41.4rem;
  padding: 2.2rem 3.6rem 6.8rem 2rem;
  border-radius: 3rem;
  border-bottom-right-radius: 0;
  text-decoration: none;
}
@media (max-width: 900px) {
  .attached-card {
    display: none;
  }
}
.attached-card__image {
  position: relative;
  height: 25rem;
}
.attached-card__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.attached-card__tags {
  position: absolute;
  display: flex;
  flex-wrap: wrap;
  top: 1.4rem;
  right: 1.4rem;
  margin-left: 1.4rem;
}
.attached-card__tag {
  padding: 0.6rem 1.4rem;
  color: #ffffff;
  font-size: 1.2rem;
  font-weight: 400;
  background-color: #232431;
  border-radius: 10rem;
}
.attached-card__title {
  font-size: 2.4rem;
  font-weight: 700;
  color: #232431;
  margin-top: 1.8rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.attached-card:nth-of-type(1) {
  right: 0.8rem;
  background: url(../assets/images/resources/attach_card_1.svg) center/cover no-repeat;
}

.attached-card:nth-of-type(2) {
  top: 60rem;
  right: 0.8rem;
  background: url(../assets/images/resources/attach_card_2.svg) center/cover no-repeat;
}

.attached-card:nth-of-type(3) {
  top: 50rem;
  left: 2.4rem;
  background: url(../assets/images/resources/attach_card_3.svg) center/cover no-repeat;
}

.all-posts {
  padding-top: 22rem;
  padding-bottom: 26.5rem;
  background: url(../assets/images/resources/posts_bg.svg) center no-repeat;
  background-size: 4000px 900px;
}
@media (max-width: 1601px) {
  .all-posts {
    background: url(../assets/images/resources/posts_bg.svg) center/cover no-repeat;
  }
}
@media (max-width: 900px) {
  .all-posts {
    padding-top: 20rem;
  }
}
@media (max-width: 600px) {
  .all-posts {
    padding-bottom: 24rem;
    background-position-y: 5rem;
    background-position-x: 76%;
    background-size: 500%;
  }
}
.all-posts .tags {
  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)), rgba(236, 237, 246, 0.5);
  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 .all-posts__content {
  margin-top: 6rem;
}
.all-posts .cards {
  display: flex;
  gap: 4rem;
  opacity: 1;
}
@media (max-width: 900px) {
  .all-posts .cards {
    flex-direction: column;
  }
}
.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 {
  width: 50%;
  display: flex;
  gap: 2rem;
  text-decoration: none;
  color: #232431;
  padding: 2rem;
  background-color: #ffffff;
  border-radius: 3rem;
}
@media (max-width: 900px) {
  .all-posts .cards .card {
    width: 100%;
  }
}
@media (max-width: 600px) {
  .all-posts .cards .card {
    flex-direction: column;
  }
}
.all-posts .cards .card__content {
  display: flex;
  flex-direction: column;
}
@media (max-width: 600px) {
  .all-posts .cards .card__content {
    min-height: 30rem;
  }
}
.all-posts .cards .card__image {
  position: relative;
  height: 30rem;
  width: 30rem;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 2rem;
}
@media (max-width: 600px) {
  .all-posts .cards .card__image {
    border-radius: 3rem;
  }
}
.all-posts .cards .card__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.7s ease;
}
.all-posts .cards .card:hover .card__image {
  border-radius: 2rem;
}
.all-posts .cards .card:hover .card__image img {
  transform: scale(1.07);
}
.all-posts .cards .card__title {
  font-size: 2.8rem;
  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;
}
.all-posts .cards .card__tags {
  margin-top: auto;
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
  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__info {
  display: flex;
  gap: 0.8rem;
  margin-top: 1.8rem;
  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 .read-more {
  width: -moz-max-content;
  width: max-content;
  display: flex;
  gap: 0.4rem;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  margin-top: 4rem;
  font-size: 1.6rem;
  font-weight: 400;
  color: #bdc0d0;
  text-decoration: none;
}
@media (max-width: 600px) {
  .all-posts .read-more {
    color: #115fed;
  }
}
.all-posts .read-more::after {
  content: "";
  width: 1.8rem;
  height: 1.8rem;
  display: block;
  background: url(../assets/images/resources/arrow.svg) center/cover no-repeat;
  filter: brightness(0) saturate(100%) invert(81%) sepia(3%) saturate(812%) hue-rotate(195deg) brightness(93%) contrast(98%);
}
@media (max-width: 600px) {
  .all-posts .read-more::after {
    filter: brightness(0) saturate(100%) invert(28%) sepia(92%) saturate(1604%) hue-rotate(203deg) brightness(97%) contrast(101%);
  }
}

.single-resource {
  background: url(../assets/images/common/dots_bg.png) center/92px 92px repeat;
}
