@font-face {
  font-family: "Roboto Flex";
  src: url("../assets/fonts/RobotoFlex-VariableFont.ttf") format("truetype");
  font-weight: 300 600;
  font-style: normal;
  font-display: block;
}
:root {
  --font-weight-light: 300;
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
}

html {
  font-family: "Roboto Flex", sans-serif;
  font-weight: var(--font-weight-regular);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
body {
  font-family: inherit;
  font-weight: inherit;
}

button,
input,
select,
textarea {
  font-family: inherit;
}

html {
  overflow-x: clip;
}

#page.site {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 100vh;
  overflow-x: clip;
}

body {
  margin: 0;
}

.site-footer {
  margin-top: auto;
}

::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: #e62b34;
  border-radius: 2px;
}

::-webkit-scrollbar-thumb:hover {
  background: #c42329;
}

* {
  scrollbar-width: thin;
  scrollbar-color: #e62b34 transparent;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.5607843137);
  backdrop-filter: blur(4px);
  -webkit-transition: background 0.4s ease;
  transition: background 0.4s ease;
}

.site-header.is-menu-open {
  background: rgba(0, 0, 0, 0.7294117647);
}

.site-header__container {
  position: relative;
  z-index: 1001;
  max-width: 1200px;
  margin: 0 auto;
  padding: 9px 20px;
}

.site-header__inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 24px;
     -moz-column-gap: 24px;
          column-gap: 24px;
}

.site-header__col--logo {
  justify-self: start;
}

.site-header__col--nav {
  justify-self: center;
  min-width: 0;
}

.site-header__col--actions {
  justify-self: end;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 27px;
}

.site-header__logo-link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  line-height: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.site-header__logo {
  display: block;
  width: 250px;
  height: 51px;
  -o-object-fit: contain;
     object-fit: contain;
}

.site-header__nav {
  display: block;
}

.site-header__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 47px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-header__menu a {
  display: inline-block;
  font-size: 16px;
  font-weight: var(--font-weight-regular);
  line-height: 1.2;
  color: rgba(255, 255, 255, 0.5607843137);
  text-decoration: none;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}

.site-header__menu a:hover,
.site-header__menu .current-menu-item > a,
.site-header__menu .current_page_item > a,
.site-header__menu .current-menu-ancestor > a {
  color: #ffffff;
}

.site-header__nav .site-header__menu-row {
  display: contents;
}

.site-header__nav .site-header__menu-toggle,
.site-header__nav .site-header__menu-index--static {
  display: none;
}

.site-header__nav .menu-item-has-children {
  position: relative;
}

.site-header__nav .site-header__submenu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  z-index: 20;
  min-width: 260px;
  margin: 0;
  padding: 14px 0;
  list-style: none;
  background: rgba(0, 0, 0, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.14);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transform: translateX(-50%) translateY(8px);
          transform: translateX(-50%) translateY(8px);
  -webkit-transition: opacity 0.28s ease, visibility 0.28s ease, -webkit-transform 0.28s ease;
  transition: opacity 0.28s ease, visibility 0.28s ease, -webkit-transform 0.28s ease;
  transition: opacity 0.28s ease, visibility 0.28s ease, transform 0.28s ease;
  transition: opacity 0.28s ease, visibility 0.28s ease, transform 0.28s ease, -webkit-transform 0.28s ease;
}
.site-header__nav .site-header__submenu::before {
  content: "";
  position: absolute;
  top: -14px;
  left: 0;
  width: 100%;
  height: 14px;
}

.site-header__nav .menu-item-has-children.is-dropdown-open > .site-header__submenu,
.site-header__nav .menu-item-has-children:focus-within > .site-header__submenu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  -webkit-transform: translateX(-50%) translateY(0);
          transform: translateX(-50%) translateY(0);
}

.site-header__nav .site-header__submenu a {
  display: block;
  padding: 10px 22px;
  font-size: 15px;
  font-weight: var(--font-weight-light);
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.72);
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 6px;
  text-transform: capitalize;
  -webkit-transition: color 0.22s ease, text-decoration-color 0.22s ease, background-color 0.22s ease;
  transition: color 0.22s ease, text-decoration-color 0.22s ease, background-color 0.22s ease;
}

.site-header__nav .site-header__submenu a:hover,
.site-header__nav .site-header__submenu a:focus-visible {
  color: #ffffff;
  text-decoration-color: rgba(255, 255, 255, 0.85);
  background-color: rgba(255, 255, 255, 0.06);
}

.site-header__phone {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.6196078431);
  text-decoration: none;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}

.site-header__phone-icon {
  display: block;
  width: 22px;
  height: 22px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  background-color: currentColor;
  mask: var(--phone-icon-url) center/contain no-repeat;
  -webkit-mask: var(--phone-icon-url) center/contain no-repeat;
}

.site-header__phone--no-icon .site-header__phone-icon {
  display: none;
}

.site-header__phone-text {
  font-size: 16px;
  font-weight: var(--font-weight-regular);
  line-height: 1.2;
  white-space: nowrap;
}

.site-header__phone:hover {
  color: #ffffff;
}

.site-header__button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 156px;
  min-height: 37px;
  padding: 11px 27px;
  border: 1px solid #e62b34;
  background: transparent;
  color: #ffffff;
  font-size: 13px;
  font-weight: var(--font-weight-regular);
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
  -webkit-transition: background-color 0.2s ease;
  transition: background-color 0.2s ease;
}

.site-header__button-text {
  display: inline-block;
}

.site-header__button-icon {
  display: block;
  width: 18px;
  height: 14px;
  margin-left: 10px;
  -webkit-transform: rotate(30deg);
          transform: rotate(30deg);
  -ms-flex-negative: 0;
      flex-shrink: 0;
  background-color: currentColor;
  mask: url("../assets/images/arrow.svg") center/contain no-repeat;
  -webkit-mask: url("../assets/images/arrow.svg") center/contain no-repeat;
}

.site-header__button:hover {
  background: #e62b34;
}

.site-header__burger {
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 32px;
  height: 32px;
  padding: 0;
  border: 1px solid rgba(217, 217, 217, 0.4509803922);
  background: transparent;
  cursor: pointer;
}

.site-header__burger-line {
  display: block;
  width: 16px;
  height: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.6980392157);
  -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease, -webkit-transform 0.3s ease;
}

.site-header.is-menu-open .site-header__burger-line:nth-child(1),
body.is-menu-open .site-header__burger-line:nth-child(1) {
  -webkit-transform: translateY(6px) rotate(45deg);
          transform: translateY(6px) rotate(45deg);
}

.site-header.is-menu-open .site-header__burger-line:nth-child(2),
body.is-menu-open .site-header__burger-line:nth-child(2) {
  opacity: 0;
}

.site-header.is-menu-open .site-header__burger-line:nth-child(3),
body.is-menu-open .site-header__burger-line:nth-child(3) {
  -webkit-transform: translateY(-6px) rotate(-45deg);
          transform: translateY(-6px) rotate(-45deg);
}

.site-header__mobile {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 998;
  background: #ffffff;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transition: opacity 0.4s ease, visibility 0.4s ease;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.is-menu-open .site-header__mobile {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

body.is-mobile-menu-open {
  overflow: hidden;
}

@media (max-width: 1024px) {
  .site-header__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .site-header__col--logo {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
  }
  .site-header__col--nav,
  .site-header__col--actions {
    display: none;
  }
  .site-header__burger {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
  }
  .site-header__logo-link {
    width: 201px;
    height: 43px;
  }
  .site-header__logo {
    width: 201px;
    height: 43px;
  }
  .site-header__mobile-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    min-height: 100vh;
    min-height: 100dvh;
    padding: 170px 20px 40px;
  }
  .site-header__mobile-nav {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
  }
}
@media (max-width: 1024px) and (max-height: 680px) {
  .site-header__mobile-inner {
    padding-top: 97px;
  }
}
@media (max-width: 1024px) {
  .site-header__menu--mobile {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    gap: 0;
    counter-reset: mobile-menu;
  }
  .site-header__menu--mobile > li {
    counter-increment: mobile-menu;
    margin-bottom: 31px;
    border-bottom: 0;
  }
  .site-header__menu--mobile > li:last-child {
    margin-bottom: 0;
  }
  .site-header__menu--mobile > li > .site-header__menu-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 16px;
  }
  .site-header__menu--mobile > .menu-item-has-children > .site-header__menu-row {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    gap: 0;
  }
  .site-header__menu--mobile > .menu-item-has-children .site-header__menu-link {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 auto;
            flex: 0 1 auto;
  }
  .site-header__menu--mobile > .menu-item-has-children .site-header__menu-toggle {
    margin-left: 74px;
  }
  .site-header__menu--mobile > .menu-item-has-children .site-header__menu-index {
    margin-left: auto;
  }
  .site-header__menu--mobile .site-header__menu-link {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    min-width: 0;
    font-size: 52px;
    font-weight: var(--font-weight-regular);
    line-height: 1;
    color: #000000;
    text-decoration: none;
    -webkit-transition: opacity 0.2s ease;
    transition: opacity 0.2s ease;
  }
  .site-header__menu--mobile .site-header__menu-link:hover {
    opacity: 0.6;
  }
  .site-header__menu--mobile .site-header__menu-index {
    font-size: 14px;
    font-weight: var(--font-weight-regular);
    line-height: 1;
    color: #e62b34;
  }
  .site-header__menu--mobile .site-header__menu-index::before {
    content: "/ " counter(mobile-menu, decimal-leading-zero);
  }
  .site-header__menu--mobile .site-header__menu-toggle {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    margin: 0;
    padding: 4px 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    -webkit-transition: opacity 0.2s ease;
    transition: opacity 0.2s ease;
  }
  .site-header__menu--mobile .site-header__menu-toggle:hover,
  .site-header__menu--mobile .site-header__menu-toggle:focus-visible {
    opacity: 0.65;
  }
  .site-header__menu-toggle-icon {
    display: none;
  }
  .site-header__menu--mobile .site-header__menu-toggle-icon {
    display: block;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    width: 20px;
    height: 20px;
    background-color: #000000;
    mask: url("../assets/images/slider-arrow-handle.svg") center/contain no-repeat;
    -webkit-mask: url("../assets/images/slider-arrow-handle.svg") center/contain no-repeat;
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
    -webkit-transition: -webkit-transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    transition: -webkit-transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .site-header__menu--mobile .menu-item-has-children.is-submenu-open > .site-header__menu-row .site-header__menu-toggle-icon {
    -webkit-transform: rotate(270deg);
            transform: rotate(270deg);
  }
  .site-header__menu--mobile > .current-menu-item > .site-header__menu-row .site-header__menu-link,
  .site-header__menu--mobile > .current_page_item > .site-header__menu-row .site-header__menu-link,
  .site-header__menu--mobile > .current-menu-ancestor > .site-header__menu-row .site-header__menu-link {
    opacity: 1;
    color: #000000;
  }
  .site-header__menu--mobile .site-header__submenu {
    margin: 0;
    padding: 0;
    list-style: none;
    max-height: 0;
    overflow: hidden;
    -webkit-transition: max-height 0.45s cubic-bezier(0.33, 0, 0.2, 1);
    transition: max-height 0.45s cubic-bezier(0.33, 0, 0.2, 1);
  }
  .site-header__menu--mobile .menu-item-has-children.is-submenu-open > .site-header__submenu {
    margin-top: 20px;
  }
  .site-header__menu--mobile .site-header__submenu > li {
    margin: 0 0 26px;
    padding: 0 0 9px;
    border: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.5803921569);
  }
  .site-header__menu--mobile .site-header__submenu > li:last-child {
    margin-bottom: 0;
  }
  .site-header__menu--mobile .site-header__submenu a {
    display: block;
    width: 100%;
    font-size: 20px;
    font-weight: var(--font-weight-light);
    line-height: 14px;
    color: rgba(0, 0, 0, 0.5803921569);
    text-decoration: none;
    text-transform: capitalize;
    -webkit-transition: opacity 0.2s ease;
    transition: opacity 0.2s ease;
  }
  .site-header__menu--mobile .site-header__submenu a:hover,
  .site-header__menu--mobile .site-header__submenu a:focus-visible {
    opacity: 0.7;
  }
  .site-header__mobile-contact {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    margin-top: 170px;
    padding-top: 0;
  }
}
@media (max-width: 1024px) and (max-height: 680px) {
  .site-header__mobile-contact {
    margin-top: 60px;
  }
}
@media (max-width: 1024px) {
  .site-header__mobile .site-header__phone {
    font-size: 24px;
    font-weight: var(--font-weight-regular);
    color: #000000;
    line-height: 1.2;
    -webkit-transition: opacity 0.2s ease;
    transition: opacity 0.2s ease;
  }
  .site-header__mobile .site-header__phone:hover {
    color: #000000;
    opacity: 0.6;
  }
  .site-header__mobile .site-header__email {
    display: inline-block;
    font-size: 15px;
    font-weight: var(--font-weight-regular);
    color: #000000;
    text-decoration: none;
    margin-top: 29px;
    line-height: 1.4;
    -webkit-transition: opacity 0.2s ease;
    transition: opacity 0.2s ease;
  }
  .site-header__mobile .site-header__email:hover {
    opacity: 0.6;
  }
  .site-header__mobile-cta {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    margin-top: 31px;
    padding-bottom: 0;
  }
  .site-header__button--mobile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
    padding: 20px;
    border: none;
    background: #e62b34;
    color: #ffffff;
    font-size: 16px;
    font-weight: var(--font-weight-regular);
    text-transform: uppercase;
    text-decoration: none;
    white-space: nowrap;
    -webkit-transition: background 0.2s ease;
    transition: background 0.2s ease;
  }
  .site-header__button--mobile:hover {
    background: #c42329;
  }
  .site-header__button--mobile .site-header__button-icon--rotate {
    -webkit-transform: rotate(30deg);
            transform: rotate(30deg);
    width: 22px;
    height: 22px;
  }
}
.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.screen-reader-text:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto;
  white-space: normal;
}

.site-footer {
  position: relative;
  background: #ffffff;
}
.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.58);
  pointer-events: none;
}

.site-footer__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 50px 20px 130px;
}

.site-footer__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 40px;
}

.site-footer__left {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  max-width: 590px;
  min-width: 0;
}

.site-footer__right {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-item-align: stretch;
      align-self: stretch;
}

.site-footer__logo-link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  line-height: 0;
  margin-bottom: 31px;
}

.site-footer__logo {
  display: block;
  width: 320px;
  height: 73px;
  -o-object-fit: contain;
     object-fit: contain;
}

.site-footer__text-1 {
  margin: 0 0 41px;
  max-height: 113px;
  font-size: 64px;
  font-weight: var(--font-weight-medium);
  line-height: 0.88;
  color: #000000;
  overflow: visible;
}

.site-footer__text-2 {
  font-size: 20px;
  font-weight: var(--font-weight-regular);
  line-height: 1.4;
  color: #000000;
}
.site-footer__text-2 p {
  margin: 0;
}
.site-footer__text-2 strong,
.site-footer__text-2 b {
  font-weight: var(--font-weight-semibold);
}

.site-footer__contact-title {
  margin: 0 0 43px;
  font-size: 16px;
  font-weight: var(--font-weight-regular);
  line-height: 1.2;
  color: #000000;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.site-footer__contact-item {
  display: block;
  margin: 0;
  font-size: 15px;
  font-weight: var(--font-weight-regular);
  line-height: 11px;
  color: #000000;
  text-decoration: none;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}

.site-footer__contact-item + .site-footer__contact-item {
  margin-top: 11px;
}

.site-footer__contact-schedule {
  color: #333333;
}

.site-footer__contact-phone:hover,
.site-footer__contact-email:hover {
  opacity: 0.6;
}

.site-footer__address {
  margin: 20px 0 0;
  max-width: 280px;
  font-size: 15px;
  font-weight: var(--font-weight-regular);
  line-height: 1.4;
  color: #333333;
}

.site-footer__right > .site-footer__address:first-child {
  margin-top: 0;
}

.site-footer__social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 27px;
  margin: 39px 0 0;
  padding: 0;
  list-style: none;
}

.site-footer__social-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 39px;
  height: 39px;
  border: 1px solid #000000;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-decoration: none;
  -webkit-transition: border-color 0.2s ease;
  transition: border-color 0.2s ease;
}

.site-footer__social-icon {
  display: block;
  width: 39px;
  height: 26px;
  background-color: #000000;
  mask: var(--social-icon-url) center/contain no-repeat;
  -webkit-mask: var(--social-icon-url) center/contain no-repeat;
  -webkit-transition: background-color 0.2s ease;
  transition: background-color 0.2s ease;
}

.site-footer__social-link:hover {
  border-color: #e62b34;
}

.site-footer__social-link:hover .site-footer__social-icon {
  background-color: #e62b34;
}

.site-footer__divider {
  margin-top: 57px;
  margin-bottom: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.58);
}

.site-footer__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 24px;
}

.site-footer__bottom-text {
  font-size: 14px;
  font-weight: var(--font-weight-medium);
  line-height: 1.4;
  color: #8e8e8e;
}
.site-footer__bottom-text p {
  margin: 0;
}
.site-footer__bottom-text a {
  color: inherit;
  text-decoration: underline;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}
.site-footer__bottom-text a:hover {
  opacity: 0.7;
}

.site-footer__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 39px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer__menu a {
  font-size: 14px;
  font-weight: var(--font-weight-medium);
  line-height: 1.4;
  color: #8e8e8e;
  text-decoration: none;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}

.site-footer__menu a:hover {
  opacity: 0.7;
}

@media (max-width: 1024px) {
  .site-footer__container {
    padding: 33px 20px 86px;
  }
  .site-footer__top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 0;
  }
  .site-footer__left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    max-width: none;
    width: 100%;
    text-align: center;
  }
  .site-footer__right {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-item-align: auto;
        align-self: auto;
    width: 100%;
    margin-top: 57px;
  }
  .site-footer__logo {
    width: 273px;
    height: 63px;
  }
  .site-footer__logo-link {
    margin-bottom: 41px;
  }
  .site-footer__text-1 {
    -ms-flex-item-align: start;
        align-self: flex-start;
    width: 100%;
    margin-bottom: 41px;
    max-height: none;
    overflow: visible;
    font-size: 36px;
    text-align: left;
  }
  .site-footer__text-2 {
    -ms-flex-item-align: start;
        align-self: flex-start;
    width: 100%;
    font-size: 16px;
    text-align: left;
  }
  .site-footer__text-2 strong,
  .site-footer__text-2 b {
    display: block;
    margin-top: 0;
  }
  .site-footer__contact {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
  }
  .site-footer__contact-title {
    margin-bottom: 26px;
  }
  .site-footer__contact-item + .site-footer__contact-item {
    margin-top: 15px;
  }
  .site-footer__address {
    max-width: none;
    text-align: center;
  }
  .site-footer__social {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 56px;
    margin-top: 56px;
  }
  .site-footer__divider {
    display: none;
  }
  .site-footer__bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 57px;
    text-align: center;
  }
  .site-footer__menu {
    margin-top: 0;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.hero-section {
  position: relative;
  overflow: hidden;
  background-color: #000000;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 150px 20px 96px;
}

.hero-section__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.768627451);
  pointer-events: none;
}

.hero-section__bg-text {
  position: absolute;
  top: 94px;
  right: -40px;
  max-width: none;
  margin: 0;
  padding: 0;
  font-family: "Sometype Mono", monospace;
  font-size: 202px;
  font-weight: 700;
  line-height: 1;
  color: rgba(255, 255, 255, 0.0705882353);
  text-align: right;
  text-transform: uppercase;
  white-space: nowrap;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  opacity: 0;
  -webkit-transition: opacity 0.45s ease;
  transition: opacity 0.45s ease;
}

html.fonts-ready .hero-section__bg-text {
  opacity: 1;
}

.hero-section__container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-section__content {
  position: relative;
  z-index: 2;
  max-width: 100%;
}

.hero-section__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.hero-section__top-line {
  display: block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 53px;
  height: 2px;
  background: #e62b34;
}

.hero-section__top-text {
  font-size: 16px;
  font-weight: var(--font-weight-regular);
  line-height: 1.2;
  color: #ffffff;
  text-transform: uppercase;
}

.hero-section__bg-image {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  pointer-events: none;
}

.hero-section__title-wrap {
  position: relative;
  z-index: 1;
  overflow: hidden;
  margin: 0 0 24px;
  padding: 0.14em 0 1em;
}

.hero-section__title {
  margin: 0;
  max-width: 100%;
  font-size: 128px;
  font-weight: 700;
  line-height: 0.88;
  color: #ffffff;
}

.hero-section__bottom-text {
  position: relative;
  z-index: 2;
  max-width: 544px;
  margin: 0;
  font-size: 16px;
  font-weight: var(--font-weight-regular);
  line-height: 1.4;
  color: #ffffff;
}
.hero-section__bottom-text p {
  margin: 0;
}

.hero-section__button {
  position: relative;
  z-index: 2;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 310px;
  min-height: 60px;
  margin-top: 66px;
  padding: 17px 24px;
  border: 1px solid #e62b34;
  background: #e62b34;
  color: #ffffff;
  font-size: 16px;
  font-weight: var(--font-weight-semibold);
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
  -webkit-transition: background-color 0.45s cubic-bezier(0.33, 0, 0.2, 1), color 0.45s cubic-bezier(0.33, 0, 0.2, 1), border-color 0.45s cubic-bezier(0.33, 0, 0.2, 1);
  transition: background-color 0.45s cubic-bezier(0.33, 0, 0.2, 1), color 0.45s cubic-bezier(0.33, 0, 0.2, 1), border-color 0.45s cubic-bezier(0.33, 0, 0.2, 1);
}

.hero-section__button-text {
  display: inline-block;
}

.hero-section__button-icon {
  display: block;
  width: 20px;
  height: 20px;
  margin-left: 8px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  background-color: currentColor;
  mask: url("../assets/images/arrow.svg") center/contain no-repeat;
  -webkit-mask: url("../assets/images/arrow.svg") center/contain no-repeat;
  -webkit-transform: rotate(30deg);
          transform: rotate(30deg);
}

.hero-section__button:hover {
  background: transparent;
  color: #ffffff;
  border-color: #e62b34;
}

@-webkit-keyframes hero-reveal-fade-up {
  from {
    opacity: 0;
    -webkit-transform: translateY(24px);
            transform: translateY(24px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes hero-reveal-fade-up {
  from {
    opacity: 0;
    -webkit-transform: translateY(24px);
            transform: translateY(24px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes hero-reveal-title-up {
  from {
    opacity: 0;
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes hero-reveal-title-up {
  from {
    opacity: 0;
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.hero-section--play-on-load .hero-section__reveal {
  -webkit-animation: hero-reveal-fade-up 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.15s both;
          animation: hero-reveal-fade-up 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.15s both;
}

.hero-section--play-on-load .hero-section__top.hero-section__reveal {
  -webkit-animation-delay: 0.1s;
          animation-delay: 0.1s;
}

.hero-section--play-on-load .hero-section__bottom-text.hero-section__reveal {
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}

.hero-section--play-on-load .hero-section__button.hero-section__reveal {
  -webkit-animation-delay: 0.45s;
          animation-delay: 0.45s;
}

.hero-section--play-on-load .hero-section__reveal--title .hero-section__title {
  -webkit-animation: hero-reveal-title-up 2.4s cubic-bezier(0.33, 0, 0.2, 1) 0.5s both;
          animation: hero-reveal-title-up 2.4s cubic-bezier(0.33, 0, 0.2, 1) 0.5s both;
}

.hero-section--await-reveal:not(.is-visible) .hero-section__reveal {
  opacity: 0;
  -webkit-transform: translateY(24px);
          transform: translateY(24px);
  -webkit-transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  -webkit-transition-delay: 0.15s;
          transition-delay: 0.15s;
}

.hero-section--await-reveal:not(.is-visible) .hero-section__top.hero-section__reveal {
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
}

.hero-section--await-reveal:not(.is-visible) .hero-section__bottom-text.hero-section__reveal {
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}

.hero-section--await-reveal:not(.is-visible) .hero-section__button.hero-section__reveal {
  -webkit-transition-delay: 0.45s;
          transition-delay: 0.45s;
}

.hero-section--await-reveal:not(.is-visible) .hero-section__reveal--title .hero-section__title {
  opacity: 0;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  -webkit-transition: opacity 2.4s cubic-bezier(0.33, 0, 0.2, 1), -webkit-transform 2.4s cubic-bezier(0.33, 0, 0.2, 1);
  transition: opacity 2.4s cubic-bezier(0.33, 0, 0.2, 1), -webkit-transform 2.4s cubic-bezier(0.33, 0, 0.2, 1);
  transition: opacity 2.4s cubic-bezier(0.33, 0, 0.2, 1), transform 2.4s cubic-bezier(0.33, 0, 0.2, 1);
  transition: opacity 2.4s cubic-bezier(0.33, 0, 0.2, 1), transform 2.4s cubic-bezier(0.33, 0, 0.2, 1), -webkit-transform 2.4s cubic-bezier(0.33, 0, 0.2, 1);
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}

.hero-section--await-reveal.is-visible .hero-section__reveal {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.hero-section--await-reveal.is-visible .hero-section__reveal--title .hero-section__title {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .hero-section--play-on-load .hero-section__reveal,
  .hero-section--play-on-load .hero-section__reveal--title .hero-section__title,
  .hero-section--await-reveal .hero-section__reveal,
  .hero-section--await-reveal .hero-section__reveal--title .hero-section__title {
    -webkit-animation: none;
            animation: none;
    opacity: 1;
    -webkit-transform: none;
            transform: none;
    -webkit-transition: none;
    transition: none;
  }
  .hero-section__bg-text,
  html.fonts-ready .hero-section__bg-text {
    opacity: 1;
    -webkit-transition: none;
    transition: none;
  }
}
@media (max-width: 1024px) {
  .hero-section {
    padding: 245px 20px 170px;
  }
  .hero-section__bg-image {
    -o-object-position: calc(50% - 100px) center;
       object-position: calc(50% - 100px) center;
  }
  .hero-section__bg-text {
    top: 80px;
    right: -75px;
    font-size: 131px;
    line-height: 118px;
  }
  .hero-section__top {
    margin-bottom: 24px;
    gap: 11px;
  }
  .hero-section__top-line {
    width: 21px;
  }
  .hero-section__top-text {
    font-size: 11px;
  }
  .hero-section__title-wrap {
    width: calc(100% + 15px);
    margin-right: -15px;
  }
  .hero-section__title {
    font-size: 48px;
    line-height: 0.94;
  }
  .hero-section__bottom-text {
    font-size: 16px;
  }
  .hero-section__button {
    width: 100%;
    margin-top: 88px;
  }
}
.rhino-page-services .hero-section__top-line,
.rhino-page-portfolio .hero-section__top-line,
.rhino-page-about .hero-section__top-line {
  display: none;
}
.rhino-page-services .hero-section__top-text,
.rhino-page-portfolio .hero-section__top-text,
.rhino-page-about .hero-section__top-text {
  color: rgba(255, 255, 255, 0.7215686275);
}

.rhino-page-services .hero-section__bg-text {
  top: 110px;
}
.rhino-page-services .hero-section__title {
  font-weight: var(--font-weight-medium);
}
.rhino-page-services .hero-section__bottom-text {
  max-width: 610px;
}
@media (min-width: 1025px) {
  .rhino-page-services .hero-section {
    padding: 200px 20px 210px;
  }
}
@media (max-width: 1024px) {
  .rhino-page-services .hero-section {
    padding: 280px 20px 285px;
  }
  .rhino-page-services .hero-section__bg-image {
    -o-object-position: center;
       object-position: center;
  }
  .rhino-page-services .hero-section__title {
    font-size: 52px;
  }
}

.rhino-page-portfolio .hero-section__bg-text {
  top: 0;
}
.rhino-page-portfolio .hero-section__content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-areas: "top top" "title button" "text .";
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  -webkit-column-gap: 24px;
     -moz-column-gap: 24px;
          column-gap: 24px;
  row-gap: 24px;
}
.rhino-page-portfolio .hero-section__top {
  grid-area: top;
  width: 100%;
  margin-bottom: 0;
}
.rhino-page-portfolio .hero-section__title-wrap {
  grid-area: title;
  min-width: 0;
  max-width: 665px;
  margin-bottom: 0;
  padding: 0;
}
.rhino-page-portfolio .hero-section__title {
  font-weight: 500;
}
.rhino-page-portfolio .hero-section__bottom-text {
  grid-area: text;
  width: 100%;
  max-width: 665px;
  margin-top: 0;
}
.rhino-page-portfolio .hero-section__button {
  grid-area: button;
  align-self: end;
  justify-self: end;
  margin-top: 0;
}
@media (min-width: 1025px) {
  .rhino-page-portfolio .hero-section {
    padding: 148px 20px 80px;
  }
}
@media (max-width: 1024px) {
  .rhino-page-portfolio .hero-section {
    padding: 270px 20px 115px;
  }
  .rhino-page-portfolio .hero-section__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    gap: 0;
  }
  .rhino-page-portfolio .hero-section__title-wrap,
  .rhino-page-portfolio .hero-section__bottom-text,
  .rhino-page-portfolio .hero-section__button {
    max-width: none;
  }
  .rhino-page-portfolio .hero-section__title {
    font-size: 52px;
  }
  .rhino-page-portfolio .hero-section__bg-text {
    top: 80px;
  }
  .rhino-page-portfolio .hero-section__button {
    width: 100%;
    margin-top: 88px;
  }
}

.rhino-category-page .hero-section,
.rhino-tax-service-category .hero-section {
  padding: 160px 20px 136px;
}
.rhino-category-page .hero-section__bg-text,
.rhino-tax-service-category .hero-section__bg-text {
  top: 110px;
}
.rhino-category-page .hero-section__content,
.rhino-tax-service-category .hero-section__content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-areas: "back back" "title ." "text .";
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -webkit-column-gap: 24px;
     -moz-column-gap: 24px;
          column-gap: 24px;
  row-gap: 24px;
}
.rhino-category-page .hero-section__back,
.rhino-tax-service-category .hero-section__back {
  grid-area: back;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  width: 100%;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.7215686275);
  font-size: 16px;
  font-weight: var(--font-weight-regular);
  line-height: 1.2;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  transition: color 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.rhino-category-page .hero-section__back:hover,
.rhino-category-page .hero-section__back:focus-visible,
.rhino-tax-service-category .hero-section__back:hover,
.rhino-tax-service-category .hero-section__back:focus-visible {
  color: #ffffff;
}
.rhino-category-page .hero-section__back-icon,
.rhino-tax-service-category .hero-section__back-icon {
  display: inline-block;
  font-size: 18px;
  line-height: 1;
}
.rhino-category-page .hero-section__title-wrap,
.rhino-tax-service-category .hero-section__title-wrap {
  grid-area: title;
  min-width: 0;
  max-width: 665px;
  margin-bottom: 0;
  padding: 0.14em 0 1em;
  overflow: hidden;
}
.rhino-category-page .hero-section__title,
.rhino-tax-service-category .hero-section__title {
  display: block;
  max-width: 665px;
  font-weight: var(--font-weight-medium);
  line-height: 115px;
}
.rhino-category-page .hero-section__bottom-text,
.rhino-tax-service-category .hero-section__bottom-text {
  grid-area: text;
  width: 100%;
  max-width: 665px;
  margin-top: 0;
}
.rhino-category-page .hero-section__button,
.rhino-tax-service-category .hero-section__button {
  grid-column: 2;
  grid-row: 2/4;
  align-self: end;
  justify-self: end;
  margin-top: 0;
}
.rhino-category-page .hero-section__button-icon,
.rhino-tax-service-category .hero-section__button-icon {
  -webkit-transform: none;
          transform: none;
}
.rhino-category-page .hero-section__button:hover .hero-section__button-icon,
.rhino-category-page .hero-section__button:focus-visible .hero-section__button-icon,
.rhino-tax-service-category .hero-section__button:hover .hero-section__button-icon,
.rhino-tax-service-category .hero-section__button:focus-visible .hero-section__button-icon {
  -webkit-transform: none;
          transform: none;
}
@media (max-width: 1024px) {
  .rhino-category-page .hero-section,
  .rhino-tax-service-category .hero-section {
    padding: 270px 20px 190px;
  }
  .rhino-category-page .hero-section__bg-image,
  .rhino-tax-service-category .hero-section__bg-image {
    -o-object-position: center center;
       object-position: center center;
  }
  .rhino-category-page .hero-section__content,
  .rhino-tax-service-category .hero-section__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    gap: 0;
  }
  .rhino-category-page .hero-section__title-wrap,
  .rhino-category-page .hero-section__bottom-text,
  .rhino-category-page .hero-section__button,
  .rhino-tax-service-category .hero-section__title-wrap,
  .rhino-tax-service-category .hero-section__bottom-text,
  .rhino-tax-service-category .hero-section__button {
    max-width: none;
  }
  .rhino-category-page .hero-section__title-wrap,
  .rhino-tax-service-category .hero-section__title-wrap {
    padding-bottom: 0.2em;
  }
  .rhino-category-page .hero-section__title,
  .rhino-tax-service-category .hero-section__title {
    max-width: 500px;
    font-size: 52px;
    line-height: 0.94;
  }
  .rhino-category-page .hero-section__bottom-text,
  .rhino-tax-service-category .hero-section__bottom-text {
    max-width: 500px;
    margin-top: 24px;
  }
  .rhino-category-page .hero-section__bg-text,
  .rhino-tax-service-category .hero-section__bg-text {
    top: 110px;
  }
  .rhino-category-page .hero-section__button,
  .rhino-tax-service-category .hero-section__button {
    grid-column: auto;
    grid-row: auto;
    width: 100%;
    margin-top: 88px;
  }
}

.rhino-page-about .hero-section__bg-image {
  -o-object-position: center;
     object-position: center;
}
.rhino-page-about .hero-section__bg-text {
  top: 75px;
}
.rhino-page-about .hero-section__title-wrap {
  margin-bottom: 12px;
}
.rhino-page-about .hero-section__title {
  font-weight: var(--font-weight-medium);
}
.rhino-page-about .hero-section__bottom-text {
  max-width: 648px;
}
@media (min-width: 1025px) {
  .rhino-page-about .hero-section {
    padding: 180px 20px 137px;
  }
}
@media (max-width: 1024px) {
  .rhino-page-about .hero-section {
    padding: 300px 20px 220px;
  }
  .rhino-page-about .hero-section__title {
    font-size: 52px;
  }
}

.stats-section {
  border-top: 1px solid rgba(0, 0, 0, 0.5803921569);
  border-bottom: 1px solid rgba(0, 0, 0, 0.5803921569);
  opacity: 0;
  -webkit-transform: translateY(24px);
          transform: translateY(24px);
  -webkit-transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.stats-section.is-visible {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.stats-section__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.stats-section__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0;
  padding: 0;
  list-style: none;
}

.stats-section__item {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 0px;
          flex: 1 1 0;
  min-width: 0;
  padding: 65px 26px 37px;
  border-left: 1px solid rgba(0, 0, 0, 0.5803921569);
}
.stats-section__item:first-child {
  border-left: none;
}

.stats-section__item-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding: 0 12px;
  text-align: left;
}

.stats-section__value {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  line-height: 43px;
  color: #000000;
}

.stats-section__number,
.stats-section__prefix {
  font-size: 60px;
  font-weight: var(--font-weight-semibold);
  line-height: 43px;
  color: inherit;
}

.stats-section__prefix-image {
  display: block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 45px;
  height: 45px;
  margin-left: 5px;
  -o-object-fit: contain;
     object-fit: contain;
}

.stats-section__label {
  margin: 17px 0 0;
  font-size: 16px;
  font-weight: var(--font-weight-regular);
  line-height: 1.2;
  color: rgba(0, 0, 0, 0.5803921569);
  text-transform: uppercase;
}

.stats-section__item--accent .stats-section__value {
  color: #e62b34;
}

@media (max-width: 768px) {
  .stats-section {
    padding: 0;
  }
  .stats-section__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .stats-section__item {
    padding: 28px 0 26px;
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    max-width: none;
    border-left: none;
    border-right: 1px solid rgba(0, 0, 0, 0.5803921569);
    border-bottom: 1px solid rgba(0, 0, 0, 0.5803921569);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .stats-section__item:nth-child(2n) {
    border-right: none;
  }
  .stats-section__item:nth-child(n+3) {
    border-bottom: none;
  }
  .stats-section__item:only-child {
    border-right: none;
    border-bottom: none;
  }
  .stats-section__item:first-child:nth-last-child(2), .stats-section__item:first-child:nth-last-child(2) ~ .stats-section__item {
    border-bottom: none;
  }
  .stats-section__item-inner {
    max-width: 150px;
    width: 100%;
    padding: 0;
  }
  .stats-section__value {
    line-height: 28px;
  }
  .stats-section__number,
  .stats-section__prefix {
    font-size: 40px;
    line-height: 28px;
  }
  .stats-section__prefix-image {
    width: 28px;
    height: 28px;
    margin-left: 10px;
  }
  .stats-section__label {
    margin-top: 10px;
    font-size: 14px;
  }
}
.run-line-section {
  border-bottom: 1px solid rgba(0, 0, 0, 0.5803921569);
  padding: 30px 0;
  overflow: hidden;
  opacity: 0;
  -webkit-transform: translateY(16px);
          transform: translateY(16px);
  -webkit-transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.run-line-section.is-visible {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.run-line-section__inner {
  max-width: 1920px;
  margin: 0 auto;
}

.run-line-section__viewport {
  overflow: hidden;
}

.run-line-section__track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  will-change: transform;
  -webkit-animation: run-line-marquee var(--run-line-duration, 40s) linear infinite;
          animation: run-line-marquee var(--run-line-duration, 40s) linear infinite;
}

.run-line-section__group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.run-line-section__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.run-line-section__label {
  font-size: 16px;
  font-weight: var(--font-weight-regular);
  line-height: 1.2;
  color: #000000;
  text-transform: uppercase;
  white-space: nowrap;
}

.run-line-section__separator {
  display: block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 7px;
  height: 7px;
  margin: 0 33px;
  background: #e62b34;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

@-webkit-keyframes run-line-marquee {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

@keyframes run-line-marquee {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
@media (max-width: 768px) {
  .run-line-section {
    padding: 23px 0;
  }
}
@media (prefers-reduced-motion: reduce) {
  .run-line-section__track {
    -webkit-animation: none;
            animation: none;
    -webkit-transform: none;
            transform: none;
  }
}
.why-choose-section {
  border-top: 1px solid rgba(0, 0, 0, 0.5803921569);
  border-bottom: 1px solid rgba(0, 0, 0, 0.5803921569);
  padding: 68px 20px;
  opacity: 0;
  -webkit-transform: translateY(24px);
          transform: translateY(24px);
  -webkit-transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.why-choose-section.is-visible {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.why-choose-section__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.why-choose-section__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  margin-bottom: 22px;
}

.why-choose-section__top-line {
  display: block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 19px;
  height: 2px;
  background: #000000;
}

.why-choose-section__top-text {
  font-size: 16px;
  font-weight: var(--font-weight-regular);
  line-height: 1.2;
  color: #000000;
  text-transform: uppercase;
}

.why-choose-section__title {
  margin: 0 0 50px;
  max-width: 868px;
  font-size: 96px;
  font-weight: var(--font-weight-medium);
  line-height: 91px;
  color: #000000;
}

.why-choose-section__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 47px 62px;
  margin: 0;
  padding: 0;
  list-style: none;
}

@media (min-width: 1148px) {
  .why-choose-section__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 549px) {
  .why-choose-section__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.why-choose-section__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  min-width: 0;
  min-height: 213px;
  height: 100%;
  padding: 28px 34px;
  border: 1px solid rgba(0, 0, 0, 0.4117647059);
}

.why-choose-section__icon-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 56px;
  height: 56px;
  margin-bottom: 20px;
  border-radius: 56px;
  background: #ffeef0;
}

.why-choose-section__icon {
  display: block;
  width: 35px;
  height: 35px;
  -o-object-fit: contain;
     object-fit: contain;
}

.why-choose-section__item-title {
  margin: 0 0 18px;
  font-size: 24px;
  font-weight: var(--font-weight-regular);
  line-height: 17px;
  color: #000000;
}

.why-choose-section__item-text {
  margin: 0;
  font-size: 15px;
  font-weight: var(--font-weight-light);
  line-height: 25px;
  color: #333333;
}
.why-choose-section__item-text p {
  margin: 0;
}

.why-choose-section__reveal {
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1), transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1), transform 0.6s cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.why-choose-section.is-visible .why-choose-section__reveal {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.why-choose-section.is-visible .why-choose-section__reveal:nth-child(1) {
  -webkit-transition-delay: 0.15s;
          transition-delay: 0.15s;
}

.why-choose-section.is-visible .why-choose-section__reveal:nth-child(2) {
  -webkit-transition-delay: 0.22s;
          transition-delay: 0.22s;
}

.why-choose-section.is-visible .why-choose-section__reveal:nth-child(3) {
  -webkit-transition-delay: 0.29s;
          transition-delay: 0.29s;
}

.why-choose-section.is-visible .why-choose-section__reveal:nth-child(4) {
  -webkit-transition-delay: 0.36s;
          transition-delay: 0.36s;
}

.why-choose-section.is-visible .why-choose-section__reveal:nth-child(5) {
  -webkit-transition-delay: 0.43s;
          transition-delay: 0.43s;
}

.why-choose-section.is-visible .why-choose-section__reveal:nth-child(6) {
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}

.why-choose-section.is-visible .why-choose-section__reveal:nth-child(7) {
  -webkit-transition-delay: 0.57s;
          transition-delay: 0.57s;
}

.why-choose-section.is-visible .why-choose-section__reveal:nth-child(8) {
  -webkit-transition-delay: 0.64s;
          transition-delay: 0.64s;
}

.why-choose-section.is-visible .why-choose-section__reveal:nth-child(9) {
  -webkit-transition-delay: 0.71s;
          transition-delay: 0.71s;
}

.why-choose-section.is-visible .why-choose-section__reveal:nth-child(10) {
  -webkit-transition-delay: 0.78s;
          transition-delay: 0.78s;
}

.why-choose-section.is-visible .why-choose-section__reveal:nth-child(11) {
  -webkit-transition-delay: 0.85s;
          transition-delay: 0.85s;
}

.why-choose-section.is-visible .why-choose-section__reveal:nth-child(12) {
  -webkit-transition-delay: 0.92s;
          transition-delay: 0.92s;
}

@media (min-width: 500px) and (max-width: 800px) {
  .why-choose-section__item-title {
    line-height: 1;
  }
}
@media (max-width: 380px) {
  .why-choose-section__item-title {
    line-height: 24px;
  }
}
@media (max-width: 1024px) {
  .why-choose-section {
    padding: 40px 20px;
  }
  .why-choose-section__top {
    gap: 11px;
    padding-left: 0;
  }
  .why-choose-section__top-text {
    font-size: 14px;
  }
  .why-choose-section__title {
    margin-bottom: 50px;
    font-size: 40px;
    line-height: 43px;
  }
  .why-choose-section__item {
    min-height: 213px;
  }
  .why-choose-section__icon-wrap {
    width: 49px;
    height: 49px;
    border-radius: 49px;
  }
  .why-choose-section__icon {
    width: 29px;
    height: 29px;
  }
}
body.rhino-page-about .why-choose-section {
  padding: 87px 20px;
}
@media (max-width: 1024px) {
  body.rhino-page-about .why-choose-section {
    padding: 40px 20px;
  }
}
@media (max-width: 1024px) {
  body.rhino-page-about .why-choose-section__title {
    margin-bottom: 40px;
  }
}
body.rhino-page-about .why-choose-section__grid {
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 560px) {
  body.rhino-page-about .why-choose-section__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 21px;
  }
}
@media (min-width: 1100px) {
  body.rhino-page-about .why-choose-section__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
body.rhino-page-about .why-choose-section__item {
  min-width: 0;
  min-height: auto;
  height: auto;
  padding: 24px;
}
body.rhino-page-about .why-choose-section__item-title {
  line-height: 1.2;
}
body.rhino-page-about .why-choose-section__item-text {
  overflow-wrap: anywhere;
}

.reviews-section {
  padding: 110px 20px;
  overflow: visible;
  opacity: 0;
  -webkit-transform: translateY(24px);
          transform: translateY(24px);
  -webkit-transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.reviews-section.is-visible {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.reviews-section__inner {
  max-width: 1200px;
  margin: 0 auto;
  overflow: visible;
}

.reviews-section__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 40px;
}

.reviews-section__header-left {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
}

.reviews-section__header-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.reviews-section__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  margin-bottom: 22px;
}

.reviews-section__top-line {
  display: block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 19px;
  height: 2px;
  background: #000000;
}

.reviews-section__top-text {
  font-size: 16px;
  font-weight: var(--font-weight-regular);
  line-height: 1.2;
  color: #000000;
  text-transform: uppercase;
}

.reviews-section__title {
  margin: 0;
  max-width: 580px;
  font-size: 96px;
  font-weight: var(--font-weight-medium);
  line-height: 91px;
  color: #000000;
}

.reviews-section__button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #000000;
  font-size: 24px;
  font-weight: var(--font-weight-light);
  line-height: 1.2;
  text-decoration: none;
  -webkit-transition: opacity 0.35s cubic-bezier(0.33, 0, 0.2, 1);
  transition: opacity 0.35s cubic-bezier(0.33, 0, 0.2, 1);
}

.reviews-section__button-text {
  display: inline-block;
}

.reviews-section__button-icon {
  display: block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-left: 2px;
  background-color: #000000;
  mask: url("../assets/images/arrow.svg") center/contain no-repeat;
  -webkit-mask: url("../assets/images/arrow.svg") center/contain no-repeat;
  -webkit-transition: opacity 0.35s cubic-bezier(0.33, 0, 0.2, 1);
  transition: opacity 0.35s cubic-bezier(0.33, 0, 0.2, 1);
}

.reviews-section__button:hover,
.reviews-section__button:hover .reviews-section__button-icon {
  opacity: 0.7;
}

.reviews-section__rating-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.reviews-section__rating {
  margin: 0 0 5px;
  font-size: 66px;
  font-weight: var(--font-weight-semibold);
  line-height: 47px;
  color: #000000;
}

.reviews-section__stars {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
  margin-bottom: 10px;
}

.reviews-section__star {
  display: block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 24px;
  height: 24px;
  -o-object-fit: contain;
     object-fit: contain;
}

.reviews-section__rating-text {
  margin: 0;
  font-size: 12px;
  font-weight: var(--font-weight-regular);
  line-height: 1.2;
  color: #000000;
}

.reviews-section__slider-area {
  position: relative;
  margin-top: 70px;
  width: 100%;
}

.reviews-section__slider-wrap {
  overflow: hidden;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  max-width: 100%;
  padding-inline: 2px;
}

.reviews-section__slider {
  overflow: hidden;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  max-width: 100%;
}

.reviews-section__slider .swiper-slide {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  height: auto;
  padding-inline: 1px;
}

.reviews-section__slider .swiper-wrapper {
  -webkit-transition-timing-function: cubic-bezier(0.33, 0, 0.2, 1);
          transition-timing-function: cubic-bezier(0.33, 0, 0.2, 1);
}

.reviews-section__card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  min-height: 228px;
  height: 100%;
  padding: 19px 28px;
  border: 1px solid rgba(0, 0, 0, 0.4117647059);
}

.reviews-section__card-stars {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
  margin-bottom: 23px;
}

.reviews-section__card-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 0;
}

.reviews-section__card-text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-bottom: 25px;
  font-size: 15px;
  font-weight: var(--font-weight-regular);
  line-height: 25px;
  color: #333333;
}
.reviews-section__card-text p {
  margin: 0;
}

.reviews-section__card-footer {
  margin-top: auto;
}

.reviews-section__card-divider {
  display: block;
  width: 100%;
  height: 1px;
  margin-bottom: 25px;
  background: rgba(0, 0, 0, 0.5803921569);
}

.reviews-section__card-name {
  margin: 0 0 10px;
  font-size: 15px;
  font-weight: var(--font-weight-regular);
  line-height: 11px;
  color: #000000;
}

.reviews-section__card-city {
  margin: 0;
  font-size: 15px;
  font-weight: var(--font-weight-light);
  line-height: 11px;
  color: #333333;
}

.reviews-section__nav-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 50px;
  margin-top: 36px;
  pointer-events: auto;
}

.reviews-section__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  -webkit-transition: opacity 0.35s cubic-bezier(0.33, 0, 0.2, 1);
  transition: opacity 0.35s cubic-bezier(0.33, 0, 0.2, 1);
}

.reviews-section__nav-icon {
  display: block;
  width: 62px;
  height: 34px;
  background: url("../assets/images/slider-arrow.svg") center/contain no-repeat;
}

.reviews-section__nav--prev .reviews-section__nav-icon {
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
}

.reviews-section__nav:hover {
  opacity: 0.65;
}

@media (min-width: 1400px) {
  .reviews-section__nav-row {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: block;
    margin-top: 0;
    pointer-events: none;
  }
  .reviews-section__nav {
    position: absolute;
    top: 50%;
    pointer-events: auto;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  .reviews-section__nav--prev {
    left: -109px;
  }
  .reviews-section__nav--next {
    right: -109px;
  }
}
@media (max-width: 1024px) {
  .reviews-section {
    padding: 80px 20px;
  }
  .reviews-section__header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 0;
  }
  .reviews-section__header-right {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    width: 100%;
  }
  .reviews-section__top {
    gap: 11px;
    padding-left: 0;
    margin-bottom: 22px;
  }
  .reviews-section__top-text {
    font-size: 14px;
  }
  .reviews-section__title {
    font-size: 40px;
    line-height: 43px;
  }
  .reviews-section__button {
    margin-top: 31px;
    text-decoration: underline;
    text-decoration-color: #e62b34;
    text-underline-offset: 7px;
  }
  .reviews-section__rating-block {
    display: none;
  }
  .reviews-section__slider-area {
    margin-top: 30px;
  }
  .reviews-section__card {
    min-width: 0;
    width: 100%;
    padding: 14px 19px;
  }
  .reviews-section__card-text {
    margin-bottom: 14px;
  }
  .reviews-section__card-divider {
    margin-bottom: 25px;
  }
}
.process-section {
  border-top: 1px solid rgba(0, 0, 0, 0.5803921569);
  border-bottom: 1px solid rgba(0, 0, 0, 0.5803921569);
  padding: 87px 20px;
  opacity: 0;
  -webkit-transform: translateY(24px);
          transform: translateY(24px);
  -webkit-transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.process-section.is-visible {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.process-section__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.process-section__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  margin-bottom: 22px;
}

.process-section__top-line {
  display: block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 19px;
  height: 2px;
  background: #000000;
}

.process-section__top-text {
  font-size: 16px;
  font-weight: var(--font-weight-regular);
  line-height: 1.2;
  color: #000000;
  text-transform: uppercase;
}

.process-section__intro {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 40px;
}

.process-section__title {
  margin: 0;
  max-width: 700px;
  font-size: 96px;
  font-weight: var(--font-weight-medium);
  line-height: 68px;
  color: #000000;
}

.process-section__text {
  max-width: 416px;
  margin: 0;
  font-size: 16px;
  font-weight: var(--font-weight-light);
  line-height: 20px;
  color: #000000;
}
.process-section__text p {
  margin: 0;
}

.process-section__grid {
  display: grid;
  grid-template-columns: 1fr;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  gap: 21px;
  width: 100%;
  margin: 49px 0 0;
  padding: 0;
  list-style: none;
}

.process-section__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-item-align: start;
      align-self: start;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  min-width: 0;
  height: auto;
  padding: 33px 22px;
  border: 1px solid rgba(0, 0, 0, 0.5803921569);
}

@media (min-width: 600px) {
  .process-section__grid {
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
  .process-section__item {
    -ms-flex-item-align: stretch;
        align-self: stretch;
    height: 100%;
  }
}
@media (min-width: 1240px) {
  .process-section__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 36px;
  }
  .process-section__item:nth-child(4):nth-last-child(1) {
    grid-column: auto;
  }
}
@media (min-width: 600px) and (max-width: 1239px) {
  .process-section__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 36px;
  }
  .process-section__item:nth-child(4):nth-last-child(1) {
    grid-column: 2;
  }
}
.process-section__number {
  display: block;
  margin-bottom: 16px;
  font-size: 32px;
  font-weight: var(--font-weight-semibold);
  line-height: 23px;
  color: #e62b34;
}

.process-section__item-title {
  margin: 0 0 18px;
  font-size: 24px;
  font-weight: var(--font-weight-regular);
  line-height: 17px;
  color: #000000;
  text-transform: capitalize;
}

.process-section__item-text {
  margin: 0;
  font-size: 15px;
  font-weight: var(--font-weight-light);
  line-height: 21px;
  color: #333333;
}
.process-section__item-text p {
  margin: 0;
}

.process-section__reveal {
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1), transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1), transform 0.6s cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.process-section.is-visible .process-section__reveal {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.process-section.is-visible .process-section__reveal:nth-child(1) {
  -webkit-transition-delay: 0.15s;
          transition-delay: 0.15s;
}

.process-section.is-visible .process-section__reveal:nth-child(2) {
  -webkit-transition-delay: 0.22s;
          transition-delay: 0.22s;
}

.process-section.is-visible .process-section__reveal:nth-child(3) {
  -webkit-transition-delay: 0.29s;
          transition-delay: 0.29s;
}

.process-section.is-visible .process-section__reveal:nth-child(4) {
  -webkit-transition-delay: 0.36s;
          transition-delay: 0.36s;
}

.process-section.is-visible .process-section__reveal:nth-child(5) {
  -webkit-transition-delay: 0.43s;
          transition-delay: 0.43s;
}

.process-section.is-visible .process-section__reveal:nth-child(6) {
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}

.process-section.is-visible .process-section__reveal:nth-child(7) {
  -webkit-transition-delay: 0.57s;
          transition-delay: 0.57s;
}

.process-section.is-visible .process-section__reveal:nth-child(8) {
  -webkit-transition-delay: 0.64s;
          transition-delay: 0.64s;
}

.process-section.is-visible .process-section__reveal:nth-child(9) {
  -webkit-transition-delay: 0.71s;
          transition-delay: 0.71s;
}

.process-section.is-visible .process-section__reveal:nth-child(10) {
  -webkit-transition-delay: 0.78s;
          transition-delay: 0.78s;
}

.process-section.is-visible .process-section__reveal:nth-child(11) {
  -webkit-transition-delay: 0.85s;
          transition-delay: 0.85s;
}

.process-section.is-visible .process-section__reveal:nth-child(12) {
  -webkit-transition-delay: 0.92s;
          transition-delay: 0.92s;
}

@media (max-width: 1024px) {
  .process-section {
    padding: 63px 20px;
  }
  .process-section__top {
    gap: 11px;
    padding-left: 0;
    margin-bottom: 22px;
  }
  .process-section__top-text {
    font-size: 14px;
  }
  .process-section__intro {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 0;
  }
  .process-section__title {
    max-width: none;
    margin-bottom: 31px;
    font-size: 40px;
    line-height: 28px;
  }
  .process-section__text {
    max-width: none;
    font-size: 16px;
  }
  .process-section__grid {
    margin-top: 40px;
    gap: 21px;
  }
  .process-section__item {
    padding: 22px 20px;
  }
  .process-section__item-title {
    line-height: 22px;
  }
}
@media (max-width: 599px) {
  .process-section__grid {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }
  .process-section__item {
    -ms-flex-item-align: start;
        align-self: start;
    height: auto;
  }
  .process-section__item:nth-child(4):nth-last-child(1) {
    grid-column: auto;
  }
}
body.rhino-category-page .process-section__title {
  line-height: 91px;
}
@media (max-width: 1024px) {
  body.rhino-category-page .process-section__title {
    line-height: 40px;
    margin: 0;
  }
}

.contact-section {
  padding: 110px 20px;
  scroll-margin-top: 90px;
  opacity: 0;
  -webkit-transform: translateY(24px);
          transform: translateY(24px);
  -webkit-transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.contact-section.is-visible {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.contact-section__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.contact-section__layout {
  display: grid;
  grid-template-columns: minmax(0, 588px) minmax(0, 1fr);
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  gap: 40px;
}

.contact-section__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  max-width: 588px;
  min-height: 100%;
}

.contact-section__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  margin-bottom: 22px;
}

.contact-section__top-line {
  display: block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 19px;
  height: 2px;
  background: #000000;
}

.contact-section__top-text {
  font-size: 16px;
  font-weight: var(--font-weight-regular);
  line-height: 1.2;
  color: #000000;
  text-transform: uppercase;
}

.contact-section__title {
  margin: 0 0 44px;
  letter-spacing: -1px;
  font-size: 96px;
  font-weight: var(--font-weight-medium);
  line-height: 88px;
  color: #000000;
}

.contact-section__text {
  max-width: 570px;
  margin: 0;
  font-size: 16px;
  font-weight: var(--font-weight-light);
  line-height: 21px;
  color: #333333;
}
.contact-section__text p {
  margin: 0;
}

.contact-section__items-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 0;
  margin-top: 24px;
}

.contact-section__items {
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}

.contact-section__item + .contact-section__item {
  margin-top: 46px;
}

.contact-section__item-label {
  display: block;
  margin-bottom: 16px;
  font-size: 16px;
  font-weight: var(--font-weight-regular);
  line-height: 19px;
  color: rgba(0, 0, 0, 0.5803921569);
  text-transform: uppercase;
}

.contact-section__item-link {
  display: inline-block;
  font-size: 32px;
  font-weight: var(--font-weight-semibold);
  line-height: 23px;
  color: #000000;
  text-decoration: none;
  -webkit-transition: color 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  transition: color 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.contact-section__item-link:hover,
.contact-section__item-link:focus-visible {
  color: #e62b34;
}

.contact-section__form-wrap {
  min-width: 0;
}

.contact-section__form {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 51px 23px;
  border: 1px solid rgba(0, 0, 0, 0.5803921569);
}

.contact-section .wpcf7 {
  margin: 0;
}

.contact-section .wpcf7-form {
  margin: 0;
}

.contact-section .rhino-cf7-form p,
.contact-section .wpcf7-form p {
  margin: 0;
  padding: 0;
}

.contact-section .rhino-cf7-form br,
.contact-section .wpcf7-form br {
  display: none;
}

.contact-section .rhino-cf7-form label,
.contact-section .wpcf7-form label {
  display: block;
}

.contact-section .wpcf7-response-output {
  display: none;
}

.rhino-cf7-form__row + .rhino-cf7-form__row {
  margin-top: 50px;
}

.rhino-cf7-form__row--2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  -webkit-column-gap: 19px;
     -moz-column-gap: 19px;
          column-gap: 19px;
}

.rhino-cf7-form__label {
  display: block;
  margin: 0;
  cursor: text;
}

.rhino-cf7-form__label-text {
  display: block;
  font-size: 14px;
  font-weight: var(--font-weight-regular);
  line-height: 16px;
  color: #000000;
  text-transform: uppercase;
  -webkit-transition: color 0.25s ease;
  transition: color 0.25s ease;
}

.rhino-cf7-form__field .wpcf7-form-control-wrap {
  display: block;
}

.contact-section .rhino-cf7-form__control,
.contact-section .wpcf7-form-control {
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  height: 26px;
  margin: 0;
  padding: 10px 0 10px;
  border: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2784313725);
  border-radius: 0;
  background: transparent;
  font-size: 14px;
  font-weight: var(--font-weight-semibold);
  line-height: 1.2;
  color: #000000;
  outline: none;
  -webkit-transition: border-color 0.25s ease, color 0.25s ease;
  transition: border-color 0.25s ease, color 0.25s ease;
}

.contact-section .rhino-cf7-form__control::-webkit-input-placeholder, .contact-section .wpcf7-form-control::-webkit-input-placeholder {
  color: transparent;
}

.contact-section .rhino-cf7-form__control::-moz-placeholder, .contact-section .wpcf7-form-control::-moz-placeholder {
  color: transparent;
}

.contact-section .rhino-cf7-form__control:-ms-input-placeholder, .contact-section .wpcf7-form-control:-ms-input-placeholder {
  color: transparent;
}

.contact-section .rhino-cf7-form__control::-ms-input-placeholder, .contact-section .wpcf7-form-control::-ms-input-placeholder {
  color: transparent;
}

.contact-section .rhino-cf7-form__control::placeholder,
.contact-section .wpcf7-form-control::placeholder {
  color: transparent;
}

.contact-section textarea.rhino-cf7-form__control,
.contact-section textarea.wpcf7-form-control {
  min-height: 102px;
  height: 102px;
  resize: vertical;
}

.contact-section .rhino-cf7-form__control:hover,
.contact-section .wpcf7-form-control:hover {
  border-bottom-color: rgba(0, 0, 0, 0.55);
}

.contact-section .rhino-cf7-form__control:focus,
.contact-section .wpcf7-form-control:focus {
  border-bottom-color: #e62b34;
}

.rhino-cf7-form__field:has(.wpcf7-not-valid) .rhino-cf7-form__label-text,
.rhino-cf7-form__field:has(.wpcf7-not-valid) .wpcf7-not-valid-tip {
  color: #e62b34;
}

.rhino-cf7-form__field:has(.wpcf7-not-valid) .rhino-cf7-form__control,
.rhino-cf7-form__field:has(.wpcf7-not-valid) .wpcf7-form-control {
  border-bottom-color: #e62b34;
}

.contact-section .wpcf7-not-valid-tip {
  display: block;
  margin-top: 8px;
  font-size: 12px;
  font-weight: var(--font-weight-regular);
  line-height: 1.3;
  color: #e62b34;
}

.rhino-cf7-form__submit-wrap {
  margin-top: 54px;
}

.contact-section .rhino-cf7-form__submit,
.contact-section .wpcf7-submit {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 233px;
  min-height: 48px;
  margin: 0;
  padding: 12px;
  border: 1px solid #e62b34;
  border-radius: 0;
  background: #e62b34;
  color: #ffffff;
  font-size: 15px;
  font-weight: var(--font-weight-regular);
  line-height: 1;
  text-transform: uppercase;
  cursor: pointer;
  -webkit-transition: background-color 0.35s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.35s cubic-bezier(0.22, 1, 0.36, 1), color 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  transition: background-color 0.35s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.35s cubic-bezier(0.22, 1, 0.36, 1), color 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.contact-section .rhino-cf7-form__submit-text {
  display: inline-block;
}

.contact-section .rhino-cf7-form__submit-icon {
  display: block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-left: 3px;
  background-color: currentColor;
  mask: url("../assets/images/arrow.svg") center/contain no-repeat;
  -webkit-mask: url("../assets/images/arrow.svg") center/contain no-repeat;
  -webkit-transition: background-color 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  transition: background-color 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.contact-section .rhino-cf7-form__submit:hover,
.contact-section .rhino-cf7-form__submit:focus-visible,
.contact-section .wpcf7-submit:hover,
.contact-section .wpcf7-submit:focus-visible {
  background: transparent;
  border-color: #e62b34;
  color: #000000;
}

.contact-section .wpcf7-spinner {
  display: none;
}

.contact-section__modal {
  position: fixed;
  inset: 0;
  z-index: 100000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 20px;
  pointer-events: none;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: visibility 0s linear 0.35s, opacity 0.35s ease;
  transition: visibility 0s linear 0.35s, opacity 0.35s ease;
}

.contact-section__modal.is-open {
  pointer-events: auto;
  visibility: visible;
  opacity: 1;
  -webkit-transition: visibility 0s, opacity 0.35s ease;
  transition: visibility 0s, opacity 0.35s ease;
}

.contact-section__modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 0;
  background: rgba(0, 0, 0, 0.3490196078);
  backdrop-filter: blur(8.3px);
  -webkit-backdrop-filter: blur(8.3px);
}

.contact-section__modal-dialog {
  position: relative;
  z-index: 1;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  max-width: 900px;
  min-height: 408px;
  padding: 70px 107px;
  border-radius: 23px;
  background: #ffffff;
  text-align: center;
  opacity: 0;
  -webkit-transform: translateY(16px) scale(0.98);
          transform: translateY(16px) scale(0.98);
  -webkit-transition: opacity 0.4s cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  transition: opacity 0.4s cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  transition: opacity 0.4s cubic-bezier(0.22, 1, 0.36, 1), transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  transition: opacity 0.4s cubic-bezier(0.22, 1, 0.36, 1), transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.contact-section__modal.is-open .contact-section__modal-dialog {
  opacity: 1;
  -webkit-transform: translateY(0) scale(1);
          transform: translateY(0) scale(1);
}

.contact-section__modal-close {
  position: absolute;
  top: 27px;
  right: 38px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 36px;
  height: 36px;
  margin: 0;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  -webkit-transition: opacity 0.25s ease;
  transition: opacity 0.25s ease;
}

.contact-section__modal-close:hover,
.contact-section__modal-close:focus-visible {
  opacity: 0.65;
}

.contact-section__modal-close img {
  display: block;
  width: 36px;
  height: 36px;
}

.contact-section__modal-icon-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 109px;
  height: 109px;
  margin: 0 auto 34px;
  border-radius: 50%;
  background: #ffeef0;
}

.contact-section__modal-icon {
  display: block;
  width: 68px;
  height: 68px;
}

.contact-section__modal-title {
  margin: 0 0 34px;
  font-size: 64px;
  font-weight: var(--font-weight-medium);
  line-height: 46px;
  letter-spacing: -1px;
  color: #000000;
}

.contact-section__modal-text {
  font-size: 16px;
  font-weight: var(--font-weight-light);
  line-height: 1.4;
  color: #333333;
}

.contact-section__reveal {
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1), transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1), transform 0.6s cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.contact-section.is-visible .contact-section__reveal {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.contact-section.is-visible .contact-section__content > .contact-section__reveal:nth-child(1) {
  -webkit-transition-delay: 0.15s;
          transition-delay: 0.15s;
}

.contact-section.is-visible .contact-section__item.contact-section__reveal:nth-child(1) {
  -webkit-transition-delay: 0.35s;
          transition-delay: 0.35s;
}

.contact-section.is-visible .contact-section__content > .contact-section__reveal:nth-child(2) {
  -webkit-transition-delay: 0.22s;
          transition-delay: 0.22s;
}

.contact-section.is-visible .contact-section__item.contact-section__reveal:nth-child(2) {
  -webkit-transition-delay: 0.42s;
          transition-delay: 0.42s;
}

.contact-section.is-visible .contact-section__content > .contact-section__reveal:nth-child(3) {
  -webkit-transition-delay: 0.29s;
          transition-delay: 0.29s;
}

.contact-section.is-visible .contact-section__item.contact-section__reveal:nth-child(3) {
  -webkit-transition-delay: 0.49s;
          transition-delay: 0.49s;
}

.contact-section.is-visible .contact-section__content > .contact-section__reveal:nth-child(4) {
  -webkit-transition-delay: 0.36s;
          transition-delay: 0.36s;
}

.contact-section.is-visible .contact-section__item.contact-section__reveal:nth-child(4) {
  -webkit-transition-delay: 0.56s;
          transition-delay: 0.56s;
}

.contact-section.is-visible .contact-section__content > .contact-section__reveal:nth-child(5) {
  -webkit-transition-delay: 0.43s;
          transition-delay: 0.43s;
}

.contact-section.is-visible .contact-section__item.contact-section__reveal:nth-child(5) {
  -webkit-transition-delay: 0.63s;
          transition-delay: 0.63s;
}

.contact-section.is-visible .contact-section__content > .contact-section__reveal:nth-child(6) {
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}

.contact-section.is-visible .contact-section__item.contact-section__reveal:nth-child(6) {
  -webkit-transition-delay: 0.7s;
          transition-delay: 0.7s;
}

.contact-section.is-visible .contact-section__content > .contact-section__reveal:nth-child(7) {
  -webkit-transition-delay: 0.57s;
          transition-delay: 0.57s;
}

.contact-section.is-visible .contact-section__item.contact-section__reveal:nth-child(7) {
  -webkit-transition-delay: 0.77s;
          transition-delay: 0.77s;
}

.contact-section.is-visible .contact-section__content > .contact-section__reveal:nth-child(8) {
  -webkit-transition-delay: 0.64s;
          transition-delay: 0.64s;
}

.contact-section.is-visible .contact-section__item.contact-section__reveal:nth-child(8) {
  -webkit-transition-delay: 0.84s;
          transition-delay: 0.84s;
}

.contact-section.is-visible .contact-section__content > .contact-section__reveal:nth-child(9) {
  -webkit-transition-delay: 0.71s;
          transition-delay: 0.71s;
}

.contact-section.is-visible .contact-section__item.contact-section__reveal:nth-child(9) {
  -webkit-transition-delay: 0.91s;
          transition-delay: 0.91s;
}

.contact-section.is-visible .contact-section__content > .contact-section__reveal:nth-child(10) {
  -webkit-transition-delay: 0.78s;
          transition-delay: 0.78s;
}

.contact-section.is-visible .contact-section__item.contact-section__reveal:nth-child(10) {
  -webkit-transition-delay: 0.98s;
          transition-delay: 0.98s;
}

body.is-contact-modal-open {
  overflow: hidden;
}

@media (max-width: 1024px) {
  .contact-section {
    padding: 80px 20px;
  }
  .contact-section__layout {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .contact-section__content {
    max-width: none;
  }
  .contact-section__top {
    gap: 11px;
    margin-bottom: 22px;
  }
  .contact-section__top-text {
    font-size: 14px;
  }
  .contact-section__title {
    margin-bottom: 44px;
    font-size: 40px;
    line-height: 40px;
  }
  .contact-section__text {
    font-size: 16px;
    line-height: 21px;
  }
  .contact-section__items-wrap {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin-top: 47px;
  }
  .contact-section__item + .contact-section__item {
    margin-top: 41px;
  }
  .contact-section__item-link {
    font-size: 24px;
    line-height: 17px;
  }
  .contact-section__form-wrap {
    margin-top: 43px;
  }
  .contact-section__form {
    padding: 30px 14px;
  }
  .contact-section .rhino-cf7-form__submit,
  .contact-section .wpcf7-submit {
    width: 100%;
  }
  .rhino-cf7-form__row--2 {
    grid-template-columns: 1fr;
    row-gap: 50px;
  }
  .contact-section__modal-dialog {
    min-height: 0;
    padding: 56px 24px 48px;
    border-radius: 20px;
  }
  .contact-section__modal-close {
    top: 20px;
    right: 20px;
  }
  .contact-section__modal-title {
    font-size: 32px;
    line-height: 1.15;
    margin-bottom: 24px;
  }
  .contact-section__modal-icon-wrap {
    width: 88px;
    height: 88px;
    margin-bottom: 24px;
  }
  .contact-section__modal-icon {
    width: 54px;
    height: 54px;
  }
  .contact-section__modal-text {
    font-size: 15px;
  }
}
.our-services-section {
  padding: 110px 20px;
  opacity: 0;
  -webkit-transform: translateY(24px);
          transform: translateY(24px);
  -webkit-transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.our-services-section.is-visible {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.our-services-section__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.our-services-section__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 40px;
}

.our-services-section__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  margin-bottom: 22px;
  padding-left: 0;
}

.our-services-section__top-line {
  display: block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 19px;
  height: 2px;
  background: #000000;
}

.our-services-section__top-text {
  font-size: 16px;
  font-weight: var(--font-weight-regular);
  line-height: 1.2;
  color: #000000;
  text-transform: uppercase;
}

.our-services-section__title {
  margin: 0;
  max-width: 700px;
  font-size: 96px;
  font-weight: var(--font-weight-medium);
  line-height: 68px;
  color: #000000;
}

.our-services-section__text {
  max-width: 416px;
  margin: 0;
  font-size: 16px;
  font-weight: var(--font-weight-light);
  line-height: 1.31;
  color: #333333;
}
.our-services-section__text p {
  margin: 0;
}

.our-services-section__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 54px;
  margin: 58px 0 0;
  padding: 0;
  list-style: none;
}

.our-services-section__item {
  min-width: 0;
}

.our-services-section__card {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  max-width: 573px;
  min-height: 487px;
  margin: 0 auto;
  padding: 38px 45px 38px 33px;
  border: 1px solid rgba(255, 255, 255, 0.2117647059);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
}

.our-services-section__card--link {
  cursor: pointer;
}

.our-services-section__card-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.our-services-section__card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: -webkit-gradient(linear, left bottom, left top, from(#000000), to(rgba(0, 0, 0, 0)));
  background: linear-gradient(360deg, #000000 0%, rgba(0, 0, 0, 0) 100%);
}

.our-services-section__card-image {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.our-services-section__card-action {
  position: absolute;
  top: 21px;
  right: 22px;
  z-index: 2;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 59px;
  height: 37px;
  border: 1px solid #E62B34;
  border-radius: 58px;
  background: transparent;
  pointer-events: none;
  -webkit-transition: background-color 0.35s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.35s cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  transition: background-color 0.35s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.35s cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  transition: background-color 0.35s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.35s cubic-bezier(0.22, 1, 0.36, 1), transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  transition: background-color 0.35s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.35s cubic-bezier(0.22, 1, 0.36, 1), transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.our-services-section__card-action-icon {
  display: block;
  width: 28px;
  height: 19px;
  background: url("../assets/images/cat-arrow.svg") center/contain no-repeat;
}

.our-services-section__card--link:hover .our-services-section__card-action,
.our-services-section__card--link:focus-visible .our-services-section__card-action {
  background: #E62B34;
  border-color: #E62B34;
  -webkit-transform: scale(1.04);
          transform: scale(1.04);
}

.our-services-section__card-content {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  min-height: 0;
}

.our-services-section__card-subtitle {
  display: block;
  margin-bottom: 20px;
  font-size: 16px;
  font-weight: var(--font-weight-regular);
  line-height: 1.2;
  color: #FFFFFF;
  text-transform: uppercase;
  border-bottom: 1px solid #E62B34;
  padding-bottom: 12px;
}

.our-services-section__card-title {
  margin: 0 0 29px;
  font-size: 48px;
  font-weight: var(--font-weight-medium);
  line-height: 34px;
  color: #ffffff;
  text-transform: capitalize;
  -webkit-transition: color 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  transition: color 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.our-services-section__card--link:hover .our-services-section__card-title,
.our-services-section__card--link:focus-visible .our-services-section__card-title {
  color: #E62B34;
}

.our-services-section__card-text {
  font-size: 16px;
  font-weight: var(--font-weight-light);
  line-height: 22px;
  color: #ffffff;
}
.our-services-section__card-text p {
  margin: 0;
}
.our-services-section__card-text p + p {
  margin-top: 0.5em;
}

.our-services-section__footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 46px;
}

.our-services-section__button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 333px;
  min-height: 57px;
  padding: 17px;
  border: 1px solid #E62B34;
  background: #ffffff;
  color: #000000;
  font-size: 20px;
  font-weight: var(--font-weight-regular);
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  -webkit-transition: background-color 0.35s cubic-bezier(0.22, 1, 0.36, 1), color 0.35s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  transition: background-color 0.35s cubic-bezier(0.22, 1, 0.36, 1), color 0.35s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.our-services-section__button-text {
  display: inline-block;
}

.our-services-section__button-icon {
  display: block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-left: 10px;
  background-color: currentColor;
  mask: url("../assets/images/arrow.svg") center/contain no-repeat;
  -webkit-mask: url("../assets/images/arrow.svg") center/contain no-repeat;
  -webkit-transition: background-color 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  transition: background-color 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.our-services-section__button:hover,
.our-services-section__button:focus-visible {
  background: #E62B34;
  border-color: #E62B34;
  color: #ffffff;
}

.our-services-section__button:hover .our-services-section__button-icon,
.our-services-section__button:focus-visible .our-services-section__button-icon {
  background-color: #ffffff;
}

.our-services-section__reveal {
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1), transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1), transform 0.6s cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.our-services-section.is-visible .our-services-section__reveal {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.our-services-section.is-visible .our-services-section__header.our-services-section__reveal {
  -webkit-transition-delay: 0.08s;
          transition-delay: 0.08s;
}

.our-services-section.is-visible .our-services-section__item:nth-child(1) {
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}

.our-services-section.is-visible .our-services-section__item:nth-child(2) {
  -webkit-transition-delay: 0.38s;
          transition-delay: 0.38s;
}

.our-services-section.is-visible .our-services-section__item:nth-child(3) {
  -webkit-transition-delay: 0.46s;
          transition-delay: 0.46s;
}

.our-services-section.is-visible .our-services-section__item:nth-child(4) {
  -webkit-transition-delay: 0.54s;
          transition-delay: 0.54s;
}

.our-services-section.is-visible .our-services-section__footer.our-services-section__reveal {
  -webkit-transition-delay: 0.58s;
          transition-delay: 0.58s;
}

@media (max-width: 1024px) {
  .our-services-section {
    padding: 80px 20px;
  }
  .our-services-section__header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 0;
  }
  .our-services-section__top {
    gap: 11px;
    margin-bottom: 22px;
  }
  .our-services-section__top-text {
    font-size: 14px;
  }
  .our-services-section__title {
    margin-bottom: 33px;
    font-size: 40px;
    line-height: 28px;
  }
  .our-services-section__text {
    max-width: none;
    font-size: 16px;
  }
  .our-services-section__grid {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-top: 40px;
  }
  .our-services-section__card {
    max-width: none;
    min-height: 309px;
    padding: 30px 20px;
  }
  .our-services-section__card-action {
    top: 21px;
    right: 12px;
    width: 33px;
    height: 21px;
  }
  .our-services-section__card-action-icon {
    width: 18px;
    height: 12px;
  }
  .our-services-section__card-subtitle {
    font-size: 12px;
    margin-bottom: 12px;
  }
  .our-services-section__card-title {
    margin-bottom: 21px;
    font-size: 24px;
    line-height: 17px;
  }
  .our-services-section__card-text {
    font-size: 16px;
    line-height: 22px;
  }
  .our-services-section__footer {
    margin-top: 46px;
  }
  .our-services-section__button {
    width: 100%;
    max-width: 333px;
  }
}
.recent-work-section {
  padding: 110px 20px 0;
  overflow: hidden;
  opacity: 0;
  -webkit-transform: translateY(24px);
          transform: translateY(24px);
  -webkit-transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.recent-work-section.is-visible {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.recent-work-section__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.recent-work-section__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 40px;
  margin-bottom: 66px;
}

.recent-work-section__header-left {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
}

.recent-work-section__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  margin-bottom: 22px;
}

.recent-work-section__top-line {
  display: block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 19px;
  height: 2px;
  background: #000000;
}

.recent-work-section__top-text {
  font-size: 16px;
  font-weight: var(--font-weight-regular);
  line-height: 1.2;
  color: #000000;
  text-transform: uppercase;
}

.recent-work-section__title {
  margin: 0;
  max-width: 700px;
  font-size: 96px;
  font-weight: var(--font-weight-medium);
  line-height: 68px;
  color: #000000;
}

.recent-work-section__button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #000000;
  font-size: 24px;
  font-weight: var(--font-weight-light);
  line-height: 17px;
  text-decoration: none;
  -webkit-transition: opacity 0.35s cubic-bezier(0.33, 0, 0.2, 1);
  transition: opacity 0.35s cubic-bezier(0.33, 0, 0.2, 1);
}

.recent-work-section__button-text {
  display: inline-block;
}

.recent-work-section__button-icon {
  display: block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 23px;
  height: 23px;
  margin-left: 8px;
  background-color: #000000;
  mask: url("../assets/images/arrow.svg") center/contain no-repeat;
  -webkit-mask: url("../assets/images/arrow.svg") center/contain no-repeat;
  -webkit-transition: opacity 0.35s cubic-bezier(0.33, 0, 0.2, 1);
  transition: opacity 0.35s cubic-bezier(0.33, 0, 0.2, 1);
}

.recent-work-section__button:hover,
.recent-work-section__button:focus-visible {
  opacity: 0.7;
}

.recent-work-section__button:hover .recent-work-section__button-icon,
.recent-work-section__button:focus-visible .recent-work-section__button-icon {
  opacity: 0.7;
}

.recent-work-section__button--footer {
  display: none;
}

.recent-work-section__slider-area {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.recent-work-section__slider {
  width: 100%;
  overflow: hidden;
  -ms-touch-action: pan-x pan-y;
      touch-action: pan-x pan-y;
}

.recent-work-section__slider .swiper-wrapper {
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

.recent-work-section__slider .swiper-slide {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 364px;
  height: auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.recent-work-section__card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  min-height: 484px;
  height: 100%;
  border: 1px solid rgba(0, 0, 0, 0.5803921569);
}

.recent-work-section__card--clickable {
  cursor: default;
}

.recent-work-section__compare-media {
  position: relative;
  width: 100%;
  max-height: 352px;
  height: 352px;
  overflow: hidden;
  cursor: pointer;
  -ms-touch-action: none;
      touch-action: none;
}

.recent-work-section__compare-media:focus-visible {
  outline: 2px solid #e62b34;
  outline-offset: 4px;
}

.recent-work-section__compare {
  --compare-position: 50%;
  -ms-touch-action: none;
      touch-action: none;
}

.recent-work-section__compare-labels {
  position: absolute;
  top: 16px;
  right: 16px;
  left: 16px;
  z-index: 4;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  pointer-events: none;
}

.recent-work-section__compare-label {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 73px;
  height: 22px;
  font-size: 11px;
  font-weight: var(--font-weight-semibold);
  line-height: 13px;
  text-transform: uppercase;
}

.recent-work-section__compare-label--before {
  color: #000000;
  background: #ffffff;
}

.recent-work-section__compare-label--after {
  color: #ffffff;
  background: #e62b34;
}

.recent-work-section__compare-image {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.recent-work-section__compare-image--after {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.recent-work-section__compare-before-clip {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: var(--compare-position);
  height: 100%;
  overflow: hidden;
}

.recent-work-section__compare-image--before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  max-width: none;
  height: 100%;
}

.recent-work-section__compare-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--compare-position);
  z-index: 3;
  width: 1px;
  background: #e62b34;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  pointer-events: none;
}

.recent-work-section__compare-handle {
  position: absolute;
  top: 185px;
  left: 50%;
  z-index: 5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 42px;
  height: 35px;
  padding: 0;
  border: 0;
  border-radius: 24px;
  background: #e62b34;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  cursor: ew-resize;
  pointer-events: auto;
  -ms-touch-action: none;
      touch-action: none;
  -webkit-transition: opacity 0.25s ease;
  transition: opacity 0.25s ease;
}

.recent-work-section__compare-handle-arrows {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
}

.recent-work-section__compare-handle-arrow {
  display: block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 12px;
  height: 12px;
  background-color: #ffffff;
  mask: url("../assets/images/slider-arrow-handle.svg") center/contain no-repeat;
  -webkit-mask: url("../assets/images/slider-arrow-handle.svg") center/contain no-repeat;
}

.recent-work-section__compare-handle-arrow--left {
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
}

.recent-work-section__card-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 23px;
  -ms-touch-action: pan-x pan-y;
      touch-action: pan-x pan-y;
}

.recent-work-section__card-text {
  margin: 0;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  color: #000000;
  font-size: 16px;
  font-weight: var(--font-weight-light);
  line-height: 21px;
  overflow-wrap: anywhere;
}

.recent-work-section__card-num {
  display: block;
  margin: 0 0 12px;
  color: #e62b34;
  font-size: 16px;
  font-weight: var(--font-weight-light);
  line-height: 11px;
}

.recent-work-section__progress {
  margin-top: 53px;
}

.recent-work-section__progress-track {
  position: relative;
  width: 100%;
  height: 10px;
  overflow: hidden;
  background: rgba(30, 31, 34, 0.1607843137);
  cursor: pointer;
  -ms-touch-action: none;
      touch-action: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.recent-work-section__progress-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: #e62b34;
  -webkit-transition: width 0.45s cubic-bezier(0.33, 0, 0.2, 1), left 0.45s cubic-bezier(0.33, 0, 0.2, 1);
  transition: width 0.45s cubic-bezier(0.33, 0, 0.2, 1), left 0.45s cubic-bezier(0.33, 0, 0.2, 1);
  will-change: width, left;
}

.recent-work-section__reveal {
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
  transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
  transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1), transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
  transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1), transform 0.65s cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.recent-work-section.is-visible .recent-work-section__reveal {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.recent-work-section.is-visible .recent-work-section__header.recent-work-section__reveal {
  -webkit-transition-delay: 0.05s;
          transition-delay: 0.05s;
}

.recent-work-section.is-visible .recent-work-section__slider-area.recent-work-section__reveal {
  -webkit-transition-delay: 0.15s;
          transition-delay: 0.15s;
}

@media (max-width: 1024px) {
  .recent-work-section {
    padding: 80px 20px 0;
  }
  .recent-work-section__header {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 42px;
  }
  .recent-work-section__title {
    font-size: 64px;
    line-height: 1;
  }
  .recent-work-section__button--header {
    display: none;
  }
  .recent-work-section__button--footer {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    margin: 52px auto 0;
    font-size: 20px;
    line-height: 14px;
    text-decoration: none;
    border-bottom: 1px solid #e62b34;
  }
  .recent-work-section__button--footer .recent-work-section__button-icon {
    margin-left: 12px;
  }
  .recent-work-section__slider-area {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    width: 100%;
  }
  .recent-work-section__slider {
    width: 100%;
    overflow: hidden;
  }
  .recent-work-section__slider .swiper-slide {
    width: 100% !important;
    max-width: 100%;
    height: auto !important;
  }
  .recent-work-section__card {
    width: 100%;
    max-width: 100%;
    min-height: 0;
    height: 100%;
  }
  .recent-work-section__compare {
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
  .recent-work-section__compare-media {
    width: 100%;
    height: clamp(200px, (100vw - 40px) * 352px / 364px, 352px);
    max-height: 352px;
  }
  .recent-work-section__compare-handle {
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  .recent-work-section__compare-labels {
    top: 12px;
    right: 12px;
    left: 12px;
  }
  .recent-work-section__compare-label {
    width: auto;
    min-width: 0;
    max-width: calc(50% - 8px);
    padding: 4px 10px;
    font-size: 10px;
    line-height: 1.1;
  }
  .recent-work-section__progress {
    margin-top: 27px;
  }
}
.recent-work-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  cursor: pointer;
  -webkit-transition: opacity 0.35s cubic-bezier(0.33, 0, 0.2, 1), visibility 0.35s cubic-bezier(0.33, 0, 0.2, 1);
  transition: opacity 0.35s cubic-bezier(0.33, 0, 0.2, 1), visibility 0.35s cubic-bezier(0.33, 0, 0.2, 1);
}

.recent-work-lightbox.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

body.is-recent-work-lightbox-open {
  overflow: hidden;
}

.recent-work-lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.8117647059);
  backdrop-filter: blur(8.3px);
  -webkit-backdrop-filter: blur(8.3px);
}

.recent-work-lightbox__dialog {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  max-width: none;
  pointer-events: none;
}

.recent-work-lightbox__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 26px;
  pointer-events: none;
}

.recent-work-lightbox__viewport {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: min(1212px, 100vw - 40px - 134px - 52px);
  height: min(578px, 100vh - 120px);
  max-width: 1212px;
  max-height: 578px;
  pointer-events: auto;
  cursor: pointer;
}

.recent-work-lightbox__figure {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 100%;
  margin: 0;
  pointer-events: none;
}

.recent-work-lightbox__image {
  display: block;
  width: auto;
  height: 578px;
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  pointer-events: auto;
  cursor: default;
}

.recent-work-lightbox__nav {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 67px;
  height: 67px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #e62b34;
  pointer-events: auto;
  cursor: pointer;
  -webkit-transition: background-color 0.25s ease, opacity 0.25s ease, -webkit-transform 0.25s ease;
  transition: background-color 0.25s ease, opacity 0.25s ease, -webkit-transform 0.25s ease;
  transition: background-color 0.25s ease, transform 0.25s ease, opacity 0.25s ease;
  transition: background-color 0.25s ease, transform 0.25s ease, opacity 0.25s ease, -webkit-transform 0.25s ease;
}
.recent-work-lightbox__nav:hover, .recent-work-lightbox__nav:focus-visible {
  background-color: #c42329;
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.recent-work-lightbox__nav:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  -webkit-transform: none;
          transform: none;
}

.recent-work-lightbox__nav-icon {
  display: block;
  width: 20px;
  height: 20px;
  background-color: #ffffff;
  mask: url("../assets/images/slider-arrow-handle.svg") center/contain no-repeat;
  -webkit-mask: url("../assets/images/slider-arrow-handle.svg") center/contain no-repeat;
}

.recent-work-lightbox__nav--prev .recent-work-lightbox__nav-icon {
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
}

@media (max-width: 1024px) {
  .recent-work-lightbox {
    padding: 16px;
  }
  .recent-work-lightbox__dialog {
    max-width: 100%;
  }
  .recent-work-lightbox__row {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 26px;
  }
  .recent-work-lightbox__viewport {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    width: min(1212px, 100vw - 32px);
    height: min(578px, 100vh - 200px);
    max-width: calc(100vw - 32px);
    max-height: min(578px, 100vh - 200px);
  }
  .recent-work-lightbox__figure {
    width: 100%;
    height: 100%;
  }
  .recent-work-lightbox__image {
    width: 100%;
    height: auto;
    max-width: 100%;
    max-height: min(min(578px, 100vh - 168px), (100vw - 32px) * 0.72);
    -o-object-fit: contain;
       object-fit: contain;
  }
  .recent-work-lightbox__nav--prev,
  .recent-work-lightbox__nav--next {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
.recent-category-work-section {
  padding: 0 20px 110px;
  overflow: hidden;
  opacity: 0;
  -webkit-transform: translateY(24px);
          transform: translateY(24px);
  -webkit-transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.recent-category-work-section.is-visible {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.recent-category-work-section__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.recent-category-work-section__header {
  position: relative;
  margin-bottom: 66px;
}

.recent-category-work-section__header-left {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
}

.recent-category-work-section__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  margin-bottom: 22px;
}

.recent-category-work-section__top-line {
  display: block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 19px;
  height: 2px;
  background: #000000;
}

.recent-category-work-section__top-text {
  font-size: 16px;
  font-weight: var(--font-weight-regular);
  line-height: 1.2;
  color: #000000;
  text-transform: uppercase;
}

.recent-category-work-section__title {
  margin: 0;
  max-width: 700px;
  font-size: 96px;
  font-weight: var(--font-weight-medium);
  line-height: 68px;
  color: #000000;
}

.recent-category-work-section__button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #000000;
  font-size: 24px;
  font-weight: var(--font-weight-light);
  line-height: 17px;
  text-decoration: none;
  -webkit-transition: opacity 0.35s cubic-bezier(0.33, 0, 0.2, 1);
  transition: opacity 0.35s cubic-bezier(0.33, 0, 0.2, 1);
}

.recent-category-work-section__button-text {
  display: inline-block;
}

.recent-category-work-section__button-icon {
  display: block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 23px;
  height: 23px;
  margin-left: 8px;
  background-color: #000000;
  mask: url("../assets/images/arrow.svg") center/contain no-repeat;
  -webkit-mask: url("../assets/images/arrow.svg") center/contain no-repeat;
  -webkit-transition: opacity 0.35s cubic-bezier(0.33, 0, 0.2, 1);
  transition: opacity 0.35s cubic-bezier(0.33, 0, 0.2, 1);
}

.recent-category-work-section__button:hover,
.recent-category-work-section__button:focus-visible {
  opacity: 0.7;
}

.recent-category-work-section__button:hover .recent-category-work-section__button-icon,
.recent-category-work-section__button:focus-visible .recent-category-work-section__button-icon {
  opacity: 0.7;
}

@media (min-width: 1025px) {
  .recent-category-work-section__header-left .recent-category-work-section__button--header {
    position: absolute;
    right: 0;
    bottom: 0;
  }
}

.recent-category-work-section__button--footer {
  display: none;
}

.recent-category-work-section__slider-area {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.recent-category-work-section__slider {
  width: 100%;
  overflow: hidden;
  -ms-touch-action: pan-y;
      touch-action: pan-y;
}

.recent-category-work-section__slider--desktop {
  display: block;
}
.recent-category-work-section__slider--desktop .swiper-slide {
  width: 100%;
  height: auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.recent-category-work-section__slider--mobile {
  display: none;
}
.recent-category-work-section__slider--mobile .swiper-wrapper {
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.recent-category-work-section__slider--mobile .swiper-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 100%;
  max-width: 364px;
  height: auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.recent-category-work-section__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 30px 55px;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

.recent-category-work-section__card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  min-height: 484px;
  height: 100%;
  border: 1px solid rgba(0, 0, 0, 0.5803921569);
}

.recent-category-work-section__card--clickable {
  cursor: pointer;
}

.recent-category-work-section__card--clickable:focus-visible {
  outline: 2px solid #e62b34;
  outline-offset: 4px;
}

.recent-category-work-section__compare {
  --compare-position: 50%;
}

.recent-category-work-section__compare-media {
  position: relative;
  width: 100%;
  max-height: 352px;
  height: 352px;
  overflow: hidden;
  -ms-touch-action: none;
      touch-action: none;
}

.recent-category-work-section__compare-labels {
  position: absolute;
  top: 16px;
  right: 16px;
  left: 16px;
  z-index: 4;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  pointer-events: none;
}

.recent-category-work-section__compare-label {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 73px;
  height: 22px;
  font-size: 11px;
  font-weight: var(--font-weight-semibold);
  line-height: 13px;
  text-transform: uppercase;
}

.recent-category-work-section__compare-label--before {
  color: #000000;
  background: #ffffff;
}

.recent-category-work-section__compare-label--after {
  color: #ffffff;
  background: #e62b34;
}

.recent-category-work-section__compare-image {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.recent-category-work-section__compare-image--after {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.recent-category-work-section__compare-before-clip {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: var(--compare-position);
  height: 100%;
  overflow: hidden;
}

.recent-category-work-section__compare-image--before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  max-width: none;
  height: 100%;
}

.recent-category-work-section__compare-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--compare-position);
  z-index: 3;
  width: 1px;
  background: #e62b34;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  pointer-events: none;
}

.recent-category-work-section__compare-handle {
  position: absolute;
  top: 185px;
  left: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 42px;
  height: 35px;
  padding: 0;
  border: 0;
  border-radius: 24px;
  background: #e62b34;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  cursor: ew-resize;
  pointer-events: auto;
  -webkit-transition: opacity 0.25s ease;
  transition: opacity 0.25s ease;
}

.recent-category-work-section__compare-handle-arrows {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
}

.recent-category-work-section__compare-handle-arrow {
  display: block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 12px;
  height: 12px;
  background-color: #ffffff;
  mask: url("../assets/images/slider-arrow-handle.svg") center/contain no-repeat;
  -webkit-mask: url("../assets/images/slider-arrow-handle.svg") center/contain no-repeat;
}

.recent-category-work-section__compare-handle-arrow--left {
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
}

.recent-category-work-section__card-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 23px;
}

.recent-category-work-section__card-num {
  display: block;
  margin: 0 0 12px;
  color: #e62b34;
  font-size: 16px;
  font-weight: var(--font-weight-light);
  line-height: 11px;
}

.recent-category-work-section__card-text {
  margin: 0;
  color: #000000;
  font-size: 16px;
  font-weight: var(--font-weight-light);
  line-height: 21px;
  overflow-wrap: anywhere;
}

.recent-category-work-section__progress {
  margin-top: 53px;
}

.recent-category-work-section__progress-track {
  position: relative;
  width: 100%;
  height: 10px;
  overflow: hidden;
  background: rgba(30, 31, 34, 0.1607843137);
  cursor: pointer;
  -ms-touch-action: none;
      touch-action: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.recent-category-work-section__progress-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: #e62b34;
  -webkit-transition: width 0.45s cubic-bezier(0.33, 0, 0.2, 1), left 0.45s cubic-bezier(0.33, 0, 0.2, 1);
  transition: width 0.45s cubic-bezier(0.33, 0, 0.2, 1), left 0.45s cubic-bezier(0.33, 0, 0.2, 1);
  will-change: width, left;
}

.recent-category-work-section__nav-row {
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 40px;
  margin-top: 27px;
  pointer-events: auto;
}

.recent-category-work-section__nav {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 62px;
  height: 34px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  -webkit-transition: opacity 0.3s cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  transition: opacity 0.3s cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  transition: opacity 0.3s cubic-bezier(0.22, 1, 0.36, 1), transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  transition: opacity 0.3s cubic-bezier(0.22, 1, 0.36, 1), transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.recent-category-work-section__nav-icon {
  display: block;
  width: 62px;
  height: 34px;
  background: url("../assets/images/slider-arrow-handle.svg") center/contain no-repeat;
}

.recent-category-work-section__nav--prev .recent-category-work-section__nav-icon {
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
}

.recent-category-work-section__nav:hover,
.recent-category-work-section__nav:focus-visible {
  opacity: 0.65;
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
}

.recent-category-work-section__nav:disabled,
.recent-category-work-section__nav.swiper-button-disabled {
  opacity: 0.35;
  cursor: not-allowed;
  -webkit-transform: none;
          transform: none;
}

@media (min-width: 1025px) {
  .recent-category-work-section__progress {
    display: none;
  }
  .recent-category-work-section__nav-row {
    margin-top: 53px;
  }
}
.recent-category-work-section__reveal {
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
  transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
  transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1), transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
  transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1), transform 0.65s cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.recent-category-work-section.is-visible .recent-category-work-section__reveal {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.recent-category-work-section.is-visible .recent-category-work-section__header.recent-category-work-section__reveal {
  -webkit-transition-delay: 0.05s;
          transition-delay: 0.05s;
}

.recent-category-work-section.is-visible .recent-category-work-section__slider-area.recent-category-work-section__reveal {
  -webkit-transition-delay: 0.15s;
          transition-delay: 0.15s;
}

@media (max-width: 1024px) {
  .recent-category-work-section {
    padding: 0 20px 80px;
  }
  .recent-category-work-section__header {
    margin-bottom: 35px;
  }
  .recent-category-work-section__title {
    font-size: 40px;
    line-height: 28px;
  }
  .recent-category-work-section__header-left .recent-category-work-section__button--header {
    position: static;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    margin-top: 38px;
    font-size: 20px;
    line-height: 14px;
    text-decoration: none;
    border-bottom: 1px solid #e62b34;
  }
  .recent-category-work-section__header-left .recent-category-work-section__button--header .recent-category-work-section__button-icon {
    margin-left: 12px;
  }
  .recent-category-work-section__button--footer {
    display: none;
  }
  .recent-category-work-section__progress {
    display: none;
  }
  .recent-category-work-section__slider-area {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    width: 100%;
  }
  .recent-category-work-section__slider--desktop {
    display: none;
  }
  .recent-category-work-section__slider--mobile {
    display: block;
    width: 100%;
    max-width: 100%;
    overflow: visible;
  }
  .recent-category-work-section__slider--mobile .swiper-slide {
    width: 100% !important;
    max-width: 100%;
  }
  .recent-category-work-section__card {
    width: 100%;
    max-width: 100%;
    min-height: 0;
  }
  .recent-category-work-section__compare {
    width: 100%;
    min-width: 0;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
  .recent-category-work-section__compare-media {
    width: 100%;
    height: clamp(200px, (100vw - 40px) * 352px / 364px, 352px);
    max-height: 352px;
  }
  .recent-category-work-section__compare-labels {
    top: 12px;
    right: 12px;
    left: 12px;
  }
  .recent-category-work-section__compare-label {
    width: auto;
    min-width: 0;
    max-width: calc(50% - 8px);
    padding: 4px 10px;
    font-size: 10px;
    line-height: 1.1;
  }
  .recent-category-work-section__compare-handle {
    top: 50%;
    left: var(--compare-position);
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  .recent-category-work-section__nav-row {
    margin-top: 30px;
  }
}
.category-list-section {
  padding: 0 20px 100px;
}

.category-list-section__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.category-list-section__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.category-list-section__item {
  padding: 71px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.5803921569);
  background: #ffffff;
}
.category-list-section__item:last-child {
  border-bottom: 0;
}

.category-list-section--stack-enabled {
  --cl-stack-base: 70px;
  --cl-stack-peek: 48px;
  --cl-stack-layer-pad: 30px;
}

.category-list-section--stack-enabled .category-list-section__item {
  --cl-stack-pad-top: 70px;
  position: sticky;
  isolation: isolate;
  padding: var(--cl-stack-pad-top) 0 71px;
  border-bottom: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.5803921569);
}

.category-list-section--stack-enabled .category-list-section__item:not(:first-child) {
  --cl-stack-pad-top: var(--cl-stack-layer-pad);
}

.category-list-section--stack-enabled .category-list-section__item:nth-child(1) {
  top: calc(var(--cl-stack-base) + 0 * var(--cl-stack-peek));
  z-index: 1;
}

.category-list-section--stack-enabled .category-list-section__item:nth-child(2) {
  top: calc(var(--cl-stack-base) + 1 * var(--cl-stack-peek));
  z-index: 2;
}

.category-list-section--stack-enabled .category-list-section__item:nth-child(3) {
  top: calc(var(--cl-stack-base) + 2 * var(--cl-stack-peek));
  z-index: 3;
}

.category-list-section--stack-enabled .category-list-section__item:nth-child(4) {
  top: calc(var(--cl-stack-base) + 3 * var(--cl-stack-peek));
  z-index: 4;
}

.category-list-section--stack-enabled .category-list-section__item:nth-child(5) {
  top: calc(var(--cl-stack-base) + 4 * var(--cl-stack-peek));
  z-index: 5;
}

.category-list-section--stack-enabled .category-list-section__item:nth-child(6) {
  top: calc(var(--cl-stack-base) + 5 * var(--cl-stack-peek));
  z-index: 6;
}

.category-list-section--stack-enabled .category-list-section__item:nth-child(7) {
  top: calc(var(--cl-stack-base) + 6 * var(--cl-stack-peek));
  z-index: 7;
}

.category-list-section--stack-enabled .category-list-section__item:nth-child(8) {
  top: calc(var(--cl-stack-base) + 7 * var(--cl-stack-peek));
  z-index: 8;
}

.category-list-section--stack-enabled .category-list-section__item:nth-child(9) {
  top: calc(var(--cl-stack-base) + 8 * var(--cl-stack-peek));
  z-index: 9;
}

.category-list-section--stack-enabled .category-list-section__item:nth-child(10) {
  top: calc(var(--cl-stack-base) + 9 * var(--cl-stack-peek));
  z-index: 10;
}

.category-list-section--stack-enabled .category-list-section__item:nth-child(11) {
  top: calc(var(--cl-stack-base) + 10 * var(--cl-stack-peek));
  z-index: 11;
}

.category-list-section--stack-enabled .category-list-section__item:nth-child(12) {
  top: calc(var(--cl-stack-base) + 11 * var(--cl-stack-peek));
  z-index: 12;
}

.category-list-section--stack-enabled .category-list-section__item:nth-child(13) {
  top: calc(var(--cl-stack-base) + 12 * var(--cl-stack-peek));
  z-index: 13;
}

.category-list-section--stack-enabled .category-list-section__item:nth-child(14) {
  top: calc(var(--cl-stack-base) + 13 * var(--cl-stack-peek));
  z-index: 14;
}

.category-list-section--stack-enabled .category-list-section__item:nth-child(15) {
  top: calc(var(--cl-stack-base) + 14 * var(--cl-stack-peek));
  z-index: 15;
}

.category-list-section--stack-enabled .category-list-section__item:nth-child(16) {
  top: calc(var(--cl-stack-base) + 15 * var(--cl-stack-peek));
  z-index: 16;
}

.category-list-section--stack-enabled .category-list-section__item:nth-child(17) {
  top: calc(var(--cl-stack-base) + 16 * var(--cl-stack-peek));
  z-index: 17;
}

.category-list-section--stack-enabled .category-list-section__item:nth-child(18) {
  top: calc(var(--cl-stack-base) + 17 * var(--cl-stack-peek));
  z-index: 18;
}

.category-list-section--stack-enabled .category-list-section__item:nth-child(19) {
  top: calc(var(--cl-stack-base) + 18 * var(--cl-stack-peek));
  z-index: 19;
}

.category-list-section--stack-enabled .category-list-section__item:nth-child(20) {
  top: calc(var(--cl-stack-base) + 19 * var(--cl-stack-peek));
  z-index: 20;
}

.category-list-section--stack-enabled .category-list-section__item:first-child {
  border-top: 0;
}

.category-list-section--stack-enabled .category-list-section__item:last-child {
  border-bottom: 1px solid rgba(0, 0, 0, 0.5803921569);
}

.category-list-section--stack-enabled .category-list-section__list {
  padding-bottom: calc(var(--cl-stack-peek) * 2);
}

.category-list-section__card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  grid-template-areas: "index head aside";
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 0;
     -moz-column-gap: 0;
          column-gap: 0;
}

.category-list-section__card-top {
  display: contents;
}

.category-list-section__index {
  grid-area: index;
  align-self: center;
  font-size: 16px;
  font-weight: var(--font-weight-light);
  line-height: 1;
  color: #e62b34;
  white-space: nowrap;
  padding-left: 1px;
}

.category-list-section__read-more {
  display: none;
}

.category-list-section__head {
  grid-area: head;
  align-self: center;
  min-width: 0;
  margin-left: 42px;
}

.category-list-section__title {
  margin: 0;
  font-size: 50px;
  font-weight: var(--font-weight-medium);
  line-height: 42px;
  color: #000000;
  text-transform: capitalize;
}

.category-list-section__title-link {
  color: inherit;
  text-decoration: none;
  -webkit-transition: color 0.25s ease;
  transition: color 0.25s ease;
}
.category-list-section__title-link:hover, .category-list-section__title-link:focus-visible {
  color: #e62b34;
}

.category-list-section__subtitles {
  margin: 25px 0 0;
  font-size: 15px;
  font-weight: var(--font-weight-regular);
  line-height: 1.2;
  color: rgba(0, 0, 0, 0.5803921569);
  text-transform: uppercase;
}

.category-list-section__aside {
  grid-area: aside;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 42px;
  margin-left: 33px;
  align-self: center;
}

.category-list-section__description {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 401px;
          flex: 0 1 401px;
  max-width: 401px;
  font-size: 16px;
  font-weight: var(--font-weight-light);
  line-height: 1.31;
  color: #333333;
}
.category-list-section__description p {
  margin: 0;
}
.category-list-section__description p + p {
  margin-top: 0.75em;
}

.category-list-section__media {
  position: relative;
  display: block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 200px;
  height: 153px;
  overflow: hidden;
  text-decoration: none;
}
.category-list-section__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(230, 43, 52, 0);
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
  pointer-events: none;
}

.category-list-section__media:hover::after,
.category-list-section__media:focus-visible::after {
  background: rgba(230, 43, 52, 0.12);
}

.category-list-section__media:hover .category-list-section__image,
.category-list-section__media:focus-visible .category-list-section__image {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.category-list-section__image {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  transition: -webkit-transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.category-list-section__card-reveal {
  opacity: 0;
  -webkit-transform: translateY(36px);
          transform: translateY(36px);
  -webkit-transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1), transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1), transform 0.6s cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.category-list-section__item.is-item-visible .category-list-section__card-reveal {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .category-list-section__card-reveal {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
    -webkit-transition: none;
    transition: none;
  }
}
@media (max-width: 1024px) {
  .category-list-section {
    padding: 0 20px 80px;
  }
  .category-list-section--stack-enabled {
    --cl-stack-base: 61px;
    --cl-stack-peek: 0px;
  }
  .category-list-section__item {
    padding: 53px 0;
  }
  .category-list-section--stack-enabled .category-list-section__item {
    --cl-stack-pad-top: 30px;
    padding-bottom: 53px;
  }
  .category-list-section__card {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    gap: 0;
  }
  .category-list-section__card-top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 16px;
    margin-bottom: 45px;
    overflow: hidden;
  }
  .category-list-section__index {
    -ms-flex-item-align: auto;
        align-self: auto;
    font-size: 40px;
    font-weight: var(--font-weight-semibold);
    line-height: 0.72;
    letter-spacing: -0.04em;
  }
  .category-list-section__read-more {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 2px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    margin-bottom: 0.15em;
    font-size: 20px;
    font-weight: var(--font-weight-light);
    line-height: 1.2;
    color: #000000;
    text-decoration: none;
    border-bottom: 1px solid #e62b34;
    -webkit-transition: color 0.25s ease;
    transition: color 0.25s ease;
  }
  .category-list-section__read-more:hover, .category-list-section__read-more:focus-visible {
    color: #e62b34;
  }
  .category-list-section__read-more-icon {
    display: block;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    width: 20px;
    height: 20px;
    background-color: #000000;
    mask: url("../assets/images/arrow.svg") center/contain no-repeat;
    -webkit-mask: url("../assets/images/arrow.svg") center/contain no-repeat;
    -webkit-transition: background-color 0.25s ease;
    transition: background-color 0.25s ease;
  }
  .category-list-section__read-more:hover .category-list-section__read-more-icon,
  .category-list-section__read-more:focus-visible .category-list-section__read-more-icon {
    background-color: #e62b34;
  }
  .category-list-section__head {
    -ms-flex-item-align: auto;
        align-self: auto;
    margin-left: 0;
  }
  .category-list-section__title {
    font-size: 40px;
    line-height: 1.1;
  }
  .category-list-section__subtitles {
    margin-top: 25px;
  }
  .category-list-section__aside {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    -ms-flex-item-align: auto;
        align-self: auto;
    gap: 42px;
    margin-top: 28px;
    margin-left: 0;
  }
  .category-list-section__description {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
    max-width: 360px;
  }
  .category-list-section__media {
    width: 100%;
    max-width: none;
    height: 275px;
  }
}
.what-we-do-section {
  padding: 110px 20px;
  opacity: 0;
  -webkit-transform: translateY(24px);
          transform: translateY(24px);
  -webkit-transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.what-we-do-section.is-visible {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.what-we-do-section__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.what-we-do-section__layout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 73px;
}

.what-we-do-section__content {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 365px;
          flex: 0 1 365px;
  max-width: 365px;
  min-width: 0;
}

.what-we-do-section__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  margin-bottom: 42px;
}

.what-we-do-section__top-line {
  display: block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 19px;
  height: 2px;
  background: #000000;
}

.what-we-do-section__top-text {
  font-size: 16px;
  font-weight: var(--font-weight-regular);
  line-height: 18px;
  color: #000000;
  text-transform: uppercase;
}

.what-we-do-section__title {
  margin: 0 0 44px;
  font-size: 64px;
  font-weight: var(--font-weight-medium);
  line-height: 46px;
  color: #000000;
}

.what-we-do-section__text {
  font-size: 16px;
  font-weight: var(--font-weight-light);
  line-height: 1.31;
  color: #333333;
}
.what-we-do-section__text p {
  margin: 0;
}
.what-we-do-section__text p + p {
  margin-top: 0.75em;
}

.what-we-do-section__list {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  -webkit-column-gap: 40px;
     -moz-column-gap: 40px;
          column-gap: 40px;
  row-gap: 21px;
  min-width: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.what-we-do-section__item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.5803921569);
}

.what-we-do-section__item-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-bottom: 10px;
}

.what-we-do-section__index {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-size: 16px;
  font-weight: var(--font-weight-light);
  line-height: 11px;
  color: #e62b34;
  white-space: nowrap;
}

.what-we-do-section__icon {
  display: block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 24px;
  height: 24px;
  margin-left: 11px;
  -o-object-fit: contain;
     object-fit: contain;
}

.what-we-do-section__label {
  margin-left: 11px;
  min-width: 0;
  font-size: 20px;
  font-weight: var(--font-weight-regular);
  line-height: 18px;
  color: #000000;
  text-transform: capitalize;
}

.what-we-do-section__reveal {
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1), transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1), transform 0.6s cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.what-we-do-section.is-visible .what-we-do-section__reveal {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.what-we-do-section.is-visible .what-we-do-section__reveal:nth-child(1) {
  -webkit-transition-delay: 0.15s;
          transition-delay: 0.15s;
}

.what-we-do-section.is-visible .what-we-do-section__reveal:nth-child(2) {
  -webkit-transition-delay: 0.22s;
          transition-delay: 0.22s;
}

.what-we-do-section.is-visible .what-we-do-section__reveal:nth-child(3) {
  -webkit-transition-delay: 0.29s;
          transition-delay: 0.29s;
}

.what-we-do-section.is-visible .what-we-do-section__reveal:nth-child(4) {
  -webkit-transition-delay: 0.36s;
          transition-delay: 0.36s;
}

.what-we-do-section.is-visible .what-we-do-section__reveal:nth-child(5) {
  -webkit-transition-delay: 0.43s;
          transition-delay: 0.43s;
}

.what-we-do-section.is-visible .what-we-do-section__reveal:nth-child(6) {
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}

.what-we-do-section.is-visible .what-we-do-section__reveal:nth-child(7) {
  -webkit-transition-delay: 0.57s;
          transition-delay: 0.57s;
}

.what-we-do-section.is-visible .what-we-do-section__reveal:nth-child(8) {
  -webkit-transition-delay: 0.64s;
          transition-delay: 0.64s;
}

.what-we-do-section.is-visible .what-we-do-section__reveal:nth-child(9) {
  -webkit-transition-delay: 0.71s;
          transition-delay: 0.71s;
}

.what-we-do-section.is-visible .what-we-do-section__reveal:nth-child(10) {
  -webkit-transition-delay: 0.78s;
          transition-delay: 0.78s;
}

.what-we-do-section.is-visible .what-we-do-section__reveal:nth-child(11) {
  -webkit-transition-delay: 0.85s;
          transition-delay: 0.85s;
}

.what-we-do-section.is-visible .what-we-do-section__reveal:nth-child(12) {
  -webkit-transition-delay: 0.92s;
          transition-delay: 0.92s;
}

.what-we-do-section.is-visible .what-we-do-section__reveal:nth-child(13) {
  -webkit-transition-delay: 0.99s;
          transition-delay: 0.99s;
}

.what-we-do-section.is-visible .what-we-do-section__reveal:nth-child(14) {
  -webkit-transition-delay: 1.06s;
          transition-delay: 1.06s;
}

.what-we-do-section.is-visible .what-we-do-section__reveal:nth-child(15) {
  -webkit-transition-delay: 1.13s;
          transition-delay: 1.13s;
}

.what-we-do-section.is-visible .what-we-do-section__reveal:nth-child(16) {
  -webkit-transition-delay: 1.2s;
          transition-delay: 1.2s;
}

@media (prefers-reduced-motion: reduce) {
  .what-we-do-section,
  .what-we-do-section__reveal {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
    -webkit-transition: none;
    transition: none;
  }
}
@media (max-width: 1024px) {
  .what-we-do-section {
    padding: 80px 20px;
  }
  .what-we-do-section__layout {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    gap: 0;
  }
  .what-we-do-section__content {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
    max-width: 365px;
    margin-bottom: 47px;
  }
  .what-we-do-section__top {
    margin-bottom: 22px;
  }
  .what-we-do-section__top-text {
    font-size: 14px;
    line-height: 16px;
  }
  .what-we-do-section__title {
    margin-bottom: 22px;
    font-size: 40px;
    line-height: 28px;
  }
  .what-we-do-section__text {
    max-width: 365px;
  }
  .what-we-do-section__list {
    grid-template-columns: 1fr;
    row-gap: 21px;
    -webkit-column-gap: 0;
       -moz-column-gap: 0;
            column-gap: 0;
  }
}
.portfolio-baner-section {
  padding: 52px 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.5803921569);
  border-bottom: 1px solid rgba(0, 0, 0, 0.5803921569);
  opacity: 0;
  -webkit-transform: translateY(24px);
          transform: translateY(24px);
  -webkit-transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.portfolio-baner-section.is-visible {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.portfolio-baner-section__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.portfolio-baner-section__top-text {
  margin: 0 0 21px;
  font-size: 16px;
  font-weight: var(--font-weight-regular);
  line-height: 19px;
  color: #000000;
  text-transform: uppercase;
}

.portfolio-baner-section__title {
  margin: 0 0 40px;
  font-size: 70px;
  font-weight: var(--font-weight-semibold);
  line-height: 50px;
  color: #000000;
}

.portfolio-baner-section__button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 310px;
  min-height: 60px;
  padding: 18px;
  border: 0;
  background: #e62b34;
  color: #ffffff;
  font-size: 16px;
  font-weight: var(--font-weight-semibold);
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  -webkit-transition: background-color 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  transition: background-color 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.portfolio-baner-section__button-text {
  display: inline-block;
}

.portfolio-baner-section__button-icon {
  display: block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-left: 7px;
  background-color: currentColor;
  mask: url("../assets/images/arrow.svg") center/contain no-repeat;
  -webkit-mask: url("../assets/images/arrow.svg") center/contain no-repeat;
}

.portfolio-baner-section__button:hover,
.portfolio-baner-section__button:focus-visible {
  background: #971e24;
  color: #ffffff;
}

@media (prefers-reduced-motion: reduce) {
  .portfolio-baner-section {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
    -webkit-transition: none;
    transition: none;
  }
}
@media (max-width: 1024px) {
  .portfolio-baner-section {
    padding: 34px 20px;
  }
  .portfolio-baner-section__top-text {
    margin-bottom: 27px;
  }
  .portfolio-baner-section__title {
    margin-bottom: 40px;
    font-size: 48px;
    line-height: 48px;
  }
}
@media (max-width: 499px) {
  .portfolio-baner-section__title {
    max-width: 300px;
  }
}
.our-story-section {
  padding: 110px 20px;
  opacity: 0;
  -webkit-transform: translateY(24px);
          transform: translateY(24px);
  -webkit-transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.our-story-section.is-visible {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.our-story-section__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.our-story-section__layout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 142px;
}

.our-story-section__head {
  max-width: 315px;
  width: 100%;
  min-width: 0;
}

.our-story-section__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  margin-bottom: 22px;
}

.our-story-section__top-line {
  display: block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 19px;
  height: 2px;
  background: #000000;
}

.our-story-section__top-text {
  font-size: 16px;
  font-weight: var(--font-weight-regular);
  line-height: 1.2;
  color: #000000;
  text-transform: uppercase;
}

.our-story-section__title {
  margin: 0;
  font-size: 64px;
  font-weight: var(--font-weight-regular);
  line-height: 58px;
  color: #000000;
}

.our-story-section__text {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  min-width: 0;
  font-size: 16px;
  font-weight: var(--font-weight-regular);
  line-height: 25px;
  color: #333333;
}
.our-story-section__text p {
  margin: 0;
}
.our-story-section__text p + p {
  margin-top: 25px;
}

@media (prefers-reduced-motion: reduce) {
  .our-story-section {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
    -webkit-transition: none;
    transition: none;
  }
}
@media (max-width: 1024px) {
  .our-story-section {
    padding: 80px 20px;
  }
  .our-story-section__layout {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
  }
  .our-story-section__head {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
    max-width: none;
    margin-bottom: 45px;
  }
  .our-story-section__title {
    font-size: 40px;
    line-height: 36px;
  }
  .our-story-section__text {
    line-height: 22px;
  }
  .our-story-section__text p + p {
    margin-top: 22px;
  }
}
.team-section {
  padding: 0 20px 110px;
  opacity: 0;
  -webkit-transform: translateY(24px);
          transform: translateY(24px);
  -webkit-transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.team-section.is-visible {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.team-section__inner {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
}

.team-section__header {
  max-width: 1200px;
  margin: 0 auto;
}

.team-section__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  margin-bottom: 22px;
}

.team-section__top-line {
  display: block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 19px;
  height: 2px;
  background: #000000;
}

.team-section__top-text {
  font-size: 16px;
  font-weight: var(--font-weight-regular);
  line-height: 1.2;
  color: #000000;
  text-transform: uppercase;
}

.team-section__title {
  margin: 0;
  font-size: 96px;
  font-weight: var(--font-weight-medium);
  line-height: 0.95;
  color: #000000;
}

.team-section__slider-area {
  margin-top: 62px;
  width: 100%;
  max-width: 1440px;
  margin-right: auto;
  margin-left: auto;
  overflow: hidden;
}

.team-section__slider {
  overflow: hidden;
  --team-left-inset: clamp(0px, calc((100% - 1200px) / 2), 120px);
  width: calc(100% - var(--team-left-inset));
  margin-left: var(--team-left-inset);
}

.team-section__slider .swiper-wrapper {
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

.team-section__slide {
  width: 364px;
  min-width: 364px;
  height: auto;
}

.team-section__card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  min-width: 364px;
  min-height: 510px;
  height: 100%;
  border: 1px solid rgba(0, 0, 0, 0.3019607843);
  background: #ffffff;
}

.team-section__media {
  width: 100%;
  height: 375px;
}

.team-section__image {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}

.team-section__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 15px 23px 20px;
}

.team-section__position {
  margin: 0 0 10px;
  font-size: 13px;
  font-weight: var(--font-weight-regular);
  line-height: 15px;
  color: #e62b34;
  text-transform: uppercase;
}

.team-section__name {
  margin: 0 0 20px;
  font-size: 24px;
  font-weight: var(--font-weight-semibold);
  line-height: 17px;
  color: #000000;
  text-transform: capitalize;
}

.team-section__text {
  margin: 0;
  font-size: 16px;
  font-weight: var(--font-weight-light);
  line-height: 1.35;
  color: #333333;
}
.team-section__text p {
  margin: 0;
}

.team-section__nav-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 40px;
  margin-top: 30px;
}

.team-section__nav {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 62px;
  height: 34px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  -webkit-transition: opacity 0.3s cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  transition: opacity 0.3s cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  transition: opacity 0.3s cubic-bezier(0.22, 1, 0.36, 1), transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  transition: opacity 0.3s cubic-bezier(0.22, 1, 0.36, 1), transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.team-section__nav-icon {
  display: block;
  width: 62px;
  height: 34px;
  background: url("../assets/images/slider-arrow-handle.svg") center/contain no-repeat;
}

.team-section__nav--prev .team-section__nav-icon {
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
}

.team-section__nav:hover,
.team-section__nav:focus-visible {
  opacity: 0.65;
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
}

.team-section__reveal {
  opacity: 0;
  -webkit-transform: translateY(18px);
          transform: translateY(18px);
  -webkit-transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1), transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1), transform 0.6s cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.team-section.is-visible .team-section__reveal {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.team-section.is-visible .team-section__header.team-section__reveal {
  -webkit-transition-delay: 0.06s;
          transition-delay: 0.06s;
}

.team-section.is-visible .team-section__slide:nth-child(1) {
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}

.team-section.is-visible .team-section__slide:nth-child(2) {
  -webkit-transition-delay: 0.26s;
          transition-delay: 0.26s;
}

.team-section.is-visible .team-section__slide:nth-child(3) {
  -webkit-transition-delay: 0.32s;
          transition-delay: 0.32s;
}

.team-section.is-visible .team-section__slide:nth-child(4) {
  -webkit-transition-delay: 0.38s;
          transition-delay: 0.38s;
}

.team-section.is-visible .team-section__slide:nth-child(5) {
  -webkit-transition-delay: 0.44s;
          transition-delay: 0.44s;
}

.team-section.is-visible .team-section__slide:nth-child(6) {
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}

.team-section.is-visible .team-section__slide:nth-child(7) {
  -webkit-transition-delay: 0.56s;
          transition-delay: 0.56s;
}

.team-section.is-visible .team-section__slide:nth-child(8) {
  -webkit-transition-delay: 0.62s;
          transition-delay: 0.62s;
}

.team-section.is-visible .team-section__slide:nth-child(9) {
  -webkit-transition-delay: 0.68s;
          transition-delay: 0.68s;
}

.team-section.is-visible .team-section__slide:nth-child(10) {
  -webkit-transition-delay: 0.74s;
          transition-delay: 0.74s;
}

@media (max-width: 1024px) {
  .team-section {
    padding: 0 20px 80px;
  }
  .team-section__top {
    gap: 11px;
    margin-bottom: 22px;
  }
  .team-section__top-text {
    font-size: 14px;
  }
  .team-section__title {
    font-size: 56px;
  }
  .team-section__slider-area {
    margin-top: 36px;
  }
  .team-section__slide {
    width: min(364px, 100vw - 40px);
    min-width: min(364px, 100vw - 40px);
  }
  .team-section__card {
    min-width: 0;
  }
  .team-section__media {
    height: 375px;
  }
  .team-section__content {
    margin-top: 0;
  }
  .team-section__name {
    font-size: 24px;
  }
  .team-section__nav-row {
    margin-top: 36px;
  }
}
@media (max-width: 500px) {
  .team-section__slider {
    --team-left-inset: 0px;
    width: 100%;
    margin-left: 0;
  }
  .team-section__slide {
    width: 100%;
    min-width: 100%;
  }
  .team-section__card {
    width: 100%;
    min-width: 0;
  }
}
.where-we-work-section {
  margin-top: 110px;
  padding: 0 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.5803921569);
  border-bottom: 1px solid rgba(0, 0, 0, 0.5803921569);
  opacity: 0;
  -webkit-transform: translateY(24px);
          transform: translateY(24px);
  -webkit-transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.where-we-work-section.is-visible {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

body.rhino-page-about .where-we-work-section {
  border-top: none;
  border-bottom: none;
}

.where-we-work-section__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 53px 0;
}

.where-we-work-section__layout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  gap: 66px;
}

.where-we-work-section__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 400px;
          flex: 0 0 400px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 400px;
  max-width: 400px;
  min-width: 400px;
}

.where-we-work-section__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  min-height: 18px;
  margin-bottom: 22px;
}

.where-we-work-section__top--empty {
  min-height: 18px;
}

.where-we-work-section__top-line {
  display: block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 19px;
  height: 2px;
  background: #000000;
}

.where-we-work-section__top-text {
  font-size: 16px;
  font-weight: var(--font-weight-regular);
  line-height: 1.2;
  color: #000000;
  text-transform: uppercase;
}

.where-we-work-section__title {
  margin: 0 0 27px;
  font-size: 64px;
  font-weight: var(--font-weight-medium);
  line-height: 46px;
  color: #000000;
}

.where-we-work-section__text {
  max-width: 365px;
  margin: 0 0 33px;
  font-size: 16px;
  font-weight: var(--font-weight-light);
  line-height: 1.35;
  color: #000000;
}
.where-we-work-section__text p {
  margin: 0;
}
.where-we-work-section__text p + p {
  margin-top: 0.75em;
}
.where-we-work-section__text strong,
.where-we-work-section__text b {
  font-weight: var(--font-weight-semibold);
}

.where-we-work-section__items {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  -webkit-column-gap: 116px;
     -moz-column-gap: 116px;
          column-gap: 116px;
  row-gap: 15px;
  margin: 0 0 auto;
  padding: 0;
  list-style: none;
}

.where-we-work-section__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-width: 0;
}

.where-we-work-section__bullet {
  display: block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 6px;
  height: 6px;
  margin-right: 10px;
  background: #e62b34;
}

.where-we-work-section__label {
  font-size: 16px;
  font-weight: var(--font-weight-medium);
  line-height: 11px;
  color: #000000;
}

.where-we-work-section__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 39px;
  margin: 0;
  margin-top: auto;
  padding: 0;
  list-style: none;
}

.where-we-work-section__link {
  font-size: 20px;
  font-weight: var(--font-weight-semibold);
  line-height: 14px;
  color: #000000;
  text-decoration: none;
  -webkit-transition: color 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  transition: color 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.where-we-work-section__link:hover,
.where-we-work-section__link:focus-visible {
  color: #e62b34;
}

.where-we-work-section__media {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 0px;
          flex: 1 1 0;
  min-width: 0;
  min-height: 436px;
  max-width: 738px;
  -ms-flex-item-align: stretch;
      align-self: stretch;
}

.where-we-work-section__image {
  display: block;
  width: 100%;
  max-width: 738px;
  height: 100%;
  min-height: 436px;
  -o-object-fit: cover;
     object-fit: cover;
}

.where-we-work-section__reveal {
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1), transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1), transform 0.6s cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.where-we-work-section.is-visible .where-we-work-section__reveal {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.where-we-work-section.is-visible .where-we-work-section__head.where-we-work-section__reveal {
  -webkit-transition-delay: 0.06s;
          transition-delay: 0.06s;
}

.where-we-work-section.is-visible .where-we-work-section__text.where-we-work-section__reveal {
  -webkit-transition-delay: 0.14s;
          transition-delay: 0.14s;
}

.where-we-work-section.is-visible .where-we-work-section__item:nth-child(1) {
  -webkit-transition-delay: 0.25s;
          transition-delay: 0.25s;
}

.where-we-work-section.is-visible .where-we-work-section__item:nth-child(2) {
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}

.where-we-work-section.is-visible .where-we-work-section__item:nth-child(3) {
  -webkit-transition-delay: 0.35s;
          transition-delay: 0.35s;
}

.where-we-work-section.is-visible .where-we-work-section__item:nth-child(4) {
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}

.where-we-work-section.is-visible .where-we-work-section__item:nth-child(5) {
  -webkit-transition-delay: 0.45s;
          transition-delay: 0.45s;
}

.where-we-work-section.is-visible .where-we-work-section__item:nth-child(6) {
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}

.where-we-work-section.is-visible .where-we-work-section__item:nth-child(7) {
  -webkit-transition-delay: 0.55s;
          transition-delay: 0.55s;
}

.where-we-work-section.is-visible .where-we-work-section__item:nth-child(8) {
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}

.where-we-work-section.is-visible .where-we-work-section__item:nth-child(9) {
  -webkit-transition-delay: 0.65s;
          transition-delay: 0.65s;
}

.where-we-work-section.is-visible .where-we-work-section__item:nth-child(10) {
  -webkit-transition-delay: 0.7s;
          transition-delay: 0.7s;
}

.where-we-work-section.is-visible .where-we-work-section__item:nth-child(11) {
  -webkit-transition-delay: 0.75s;
          transition-delay: 0.75s;
}

.where-we-work-section.is-visible .where-we-work-section__item:nth-child(12) {
  -webkit-transition-delay: 0.8s;
          transition-delay: 0.8s;
}

.where-we-work-section.is-visible .where-we-work-section__link-item:nth-child(1) {
  -webkit-transition-delay: 0.48s;
          transition-delay: 0.48s;
}

.where-we-work-section.is-visible .where-we-work-section__link-item:nth-child(2) {
  -webkit-transition-delay: 0.54s;
          transition-delay: 0.54s;
}

.where-we-work-section.is-visible .where-we-work-section__link-item:nth-child(3) {
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}

.where-we-work-section.is-visible .where-we-work-section__link-item:nth-child(4) {
  -webkit-transition-delay: 0.66s;
          transition-delay: 0.66s;
}

.where-we-work-section.is-visible .where-we-work-section__media.where-we-work-section__reveal {
  -webkit-transition-delay: 0.28s;
          transition-delay: 0.28s;
}

@media (prefers-reduced-motion: reduce) {
  .where-we-work-section,
  .where-we-work-section__reveal {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
    -webkit-transition: none;
    transition: none;
  }
}
@media (max-width: 1024px) {
  .where-we-work-section {
    margin-top: 80px;
    padding: 0 20px;
  }
  .where-we-work-section__inner {
    padding: 53px 0;
  }
  .where-we-work-section__layout {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
  }
  .where-we-work-section__content {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
    width: auto;
    min-width: 0;
    max-width: none;
  }
  .where-we-work-section__top {
    gap: 11px;
    margin-bottom: 22px;
  }
  .where-we-work-section__top-text {
    font-size: 14px;
  }
  .where-we-work-section__title {
    font-size: 40px;
    line-height: 36px;
  }
  .where-we-work-section__text {
    max-width: 365px;
  }
  .where-we-work-section__items {
    grid-template-columns: -webkit-max-content -webkit-max-content;
    grid-template-columns: max-content max-content;
    -webkit-column-gap: 116px;
       -moz-column-gap: 116px;
            column-gap: 116px;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
  }
  .where-we-work-section__links {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin-top: 52px;
  }
  .where-we-work-section__media {
    width: 100%;
    min-height: 436px;
    max-width: none;
    margin: 41px 0 0;
    -ms-flex-item-align: auto;
        align-self: auto;
    overflow: hidden;
  }
  .where-we-work-section__image {
    width: 100%;
    max-width: none;
    height: 100%;
    min-height: 436px;
    aspect-ratio: auto;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.category-review-section {
  padding: 110px 20px 0;
  overflow: hidden;
  opacity: 0;
  -webkit-transform: translateY(24px);
          transform: translateY(24px);
  -webkit-transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.category-review-section.is-visible {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.category-review-section__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.category-review-section__layout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 40px;
}

.category-review-section__aside {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  min-width: 0;
}

.category-review-section__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  margin: 0 0 20px;
}

.category-review-section__top-line {
  display: block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 19px;
  height: 2px;
  background: #000000;
}

.category-review-section__top-text {
  font-size: 16px;
  font-weight: var(--font-weight-regular);
  line-height: 1.2;
  color: #000000;
  text-transform: uppercase;
}

.category-review-section__stars {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.category-review-section__star {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.category-review-section__star-icon {
  display: block;
  width: 24px;
  height: 24px;
}

.category-review-section__content {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 840px;
          flex: 0 1 840px;
  max-width: 840px;
  min-width: 0;
}

.category-review-section__quote {
  margin: 0 0 46px;
  font-size: 36px;
  font-weight: var(--font-weight-regular);
  line-height: 35px;
  color: #000000;
}
.category-review-section__quote p {
  margin: 0;
}
.category-review-section__quote p + p {
  margin-top: 0.5em;
}

.category-review-section__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  gap: 10px;
}

.category-review-section__name {
  font-size: 20px;
  font-weight: var(--font-weight-regular);
  line-height: 14px;
  color: #000000;
}

.category-review-section__description {
  font-size: 20px;
  font-weight: var(--font-weight-light);
  line-height: 14px;
  color: #333333;
}

.category-review-section__reveal {
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
  transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
  transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1), transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
  transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1), transform 0.65s cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.category-review-section.is-visible .category-review-section__reveal {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.category-review-section.is-visible .category-review-section__top.category-review-section__reveal {
  -webkit-transition-delay: 0.05s;
          transition-delay: 0.05s;
}

.category-review-section.is-visible .category-review-section__stars.category-review-section__reveal {
  -webkit-transition-delay: 0.12s;
          transition-delay: 0.12s;
}

.category-review-section.is-visible .category-review-section__quote.category-review-section__reveal {
  -webkit-transition-delay: 0.18s;
          transition-delay: 0.18s;
}

.category-review-section.is-visible .category-review-section__meta.category-review-section__reveal {
  -webkit-transition-delay: 0.26s;
          transition-delay: 0.26s;
}

@media (prefers-reduced-motion: reduce) {
  .category-review-section,
  .category-review-section__reveal {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
    -webkit-transition: none;
    transition: none;
  }
}
@media (max-width: 1024px) {
  .category-review-section {
    padding: 80px 20px 0;
  }
  .category-review-section__layout {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
  }
  .category-review-section__content {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
    max-width: 100%;
  }
  .category-review-section__quote {
    margin: 47px 0 46px;
    font-size: 32px;
  }
  .category-review-section__name,
  .category-review-section__description {
    font-size: 16px;
    line-height: 14px;
  }
}
.shared-review-section {
  padding: 140px 20px;
  scroll-margin-top: 90px;
  overflow: hidden;
  opacity: 0;
  -webkit-transform: translateY(24px);
          transform: translateY(24px);
  -webkit-transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.shared-review-section.is-visible {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.shared-review-section__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.shared-review-section__layout {
  display: grid;
  grid-template-columns: minmax(0, 464px) minmax(0, 1fr);
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  gap: 80px;
}

.shared-review-section__title {
  margin: 0;
  max-width: 464px;
  font-size: 96px;
  font-weight: var(--font-weight-medium);
  line-height: 88px;
  letter-spacing: -1px;
  color: #000000;
}

.shared-review-section__form-area {
  min-width: 0;
}

.shared-review-section__form-box {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 100%;
          flex: 1 1 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  padding: 24px 18px;
  border: 1px solid rgba(0, 0, 0, 0.5803921569);
}

.shared-review-section .rhino-cf7-form p {
  margin: 0;
  padding: 0;
}

.shared-review-section .rhino-cf7-form__row + .rhino-cf7-form__row {
  margin-top: 50px;
}

.shared-review-section .rhino-cf7-form__row--2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  -webkit-column-gap: 19px;
     -moz-column-gap: 19px;
          column-gap: 19px;
}

.shared-review-section .rhino-cf7-form__field {
  position: relative;
  padding-bottom: 22px;
}

.shared-review-section .rhino-cf7-form__label {
  display: block;
  margin: 0;
  cursor: text;
}

.shared-review-section .rhino-cf7-form__label-text {
  display: block;
  font-size: 14px;
  font-weight: var(--font-weight-regular);
  line-height: 16px;
  color: #000000;
  text-transform: uppercase;
}

.shared-review-section .rhino-cf7-form__control {
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  height: 26px;
  margin: 0;
  padding: 10px 0;
  border: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2784313725);
  border-radius: 0;
  background: transparent;
  font-size: 14px;
  font-weight: var(--font-weight-semibold);
  line-height: 1.2;
  color: #000000;
  outline: none;
  -webkit-transition: border-color 0.25s ease, color 0.25s ease;
  transition: border-color 0.25s ease, color 0.25s ease;
}

.shared-review-section .rhino-cf7-form__control::-webkit-input-placeholder {
  color: transparent;
}

.shared-review-section .rhino-cf7-form__control::-moz-placeholder {
  color: transparent;
}

.shared-review-section .rhino-cf7-form__control:-ms-input-placeholder {
  color: transparent;
}

.shared-review-section .rhino-cf7-form__control::-ms-input-placeholder {
  color: transparent;
}

.shared-review-section .rhino-cf7-form__control::placeholder {
  color: transparent;
}

.shared-review-section textarea.rhino-cf7-form__control {
  min-height: 102px;
  height: 102px;
  resize: vertical;
}

.shared-review-section .rhino-cf7-form__control:hover {
  border-bottom-color: rgba(0, 0, 0, 0.55);
}

.shared-review-section .rhino-cf7-form__control:focus {
  border-bottom-color: #e62b34;
}

.shared-review-section .rhino-cf7-form__field:has(.wpcf7-not-valid) .rhino-cf7-form__label-text,
.shared-review-section .rhino-cf7-form__field:has(.wpcf7-not-valid) .wpcf7-not-valid-tip,
.shared-review-section__rating.is-invalid .shared-review-section__rating-label {
  color: #e62b34;
}

.shared-review-section .rhino-cf7-form__field:has(.wpcf7-not-valid) .rhino-cf7-form__control {
  border-bottom-color: #e62b34;
}

.shared-review-section .rhino-cf7-form__field .wpcf7-not-valid-tip {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0;
  font-size: 12px;
  font-weight: var(--font-weight-regular);
  line-height: 1.3;
  color: #e62b34;
}

.shared-review-section__form {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  gap: 38px;
}

.shared-review-section__form-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 24px;
  width: 100%;
}

.shared-review-section__rating {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  gap: 22px;
  min-width: 0;
  margin: 0;
  padding: 0 0 22px;
  border: none;
}

.shared-review-section__rating .wpcf7-not-valid-tip {
  position: absolute;
  left: 0;
  bottom: 0;
  margin: 0;
}

.shared-review-section__star-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
}

.shared-review-section__star-btn:hover,
.shared-review-section__star-btn:focus-visible {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.shared-review-section__star-btn:focus-visible {
  outline: 2px solid #e62b34;
  outline-offset: 4px;
}

.shared-review-section__star-icon {
  display: block;
  width: 44px;
  height: 43px;
  -webkit-transition: opacity 0.2s ease, -webkit-filter 0.2s ease;
  transition: opacity 0.2s ease, -webkit-filter 0.2s ease;
  transition: opacity 0.2s ease, filter 0.2s ease;
  transition: opacity 0.2s ease, filter 0.2s ease, -webkit-filter 0.2s ease;
}

.shared-review-section__star-btn.is-filled .shared-review-section__star-icon,
.shared-review-section__star-btn.is-preview .shared-review-section__star-icon {
  -webkit-filter: none;
          filter: none;
}

.shared-review-section__star-btn:not(.is-filled):not(.is-preview) .shared-review-section__star-icon {
  opacity: 1;
}

.shared-review-section__star-btn.is-preview:not(.is-filled) .shared-review-section__star-icon,
.shared-review-section__star-btn:hover .shared-review-section__star-icon {
  opacity: 0.85;
}

.shared-review-section__submit-wrap {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-left: auto;
}

.shared-review-section__submit {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 233px;
  min-height: 48px;
  margin: 0;
  padding: 12px;
  border: 1px solid #e62b34;
  border-radius: 0;
  background: transparent;
  color: #000000;
  font-size: 15px;
  font-weight: var(--font-weight-regular);
  line-height: 1;
  text-transform: uppercase;
  cursor: pointer;
  -webkit-transition: background-color 0.35s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.35s cubic-bezier(0.22, 1, 0.36, 1), color 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  transition: background-color 0.35s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.35s cubic-bezier(0.22, 1, 0.36, 1), color 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.shared-review-section__submit-text {
  display: inline-block;
}

.shared-review-section__submit-icon {
  display: block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-left: 3px;
  background-color: #000000;
  mask: url("../assets/images/arrow.svg") center/contain no-repeat;
  -webkit-mask: url("../assets/images/arrow.svg") center/contain no-repeat;
  -webkit-transition: background-color 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  transition: background-color 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.shared-review-section__submit:hover,
.shared-review-section__submit:focus-visible {
  background: #e62b34;
  border-color: #e62b34;
  color: #ffffff;
}

.shared-review-section__submit:hover .shared-review-section__submit-icon,
.shared-review-section__submit:focus-visible .shared-review-section__submit-icon {
  background-color: #ffffff;
}

.shared-review-section__submit:disabled {
  opacity: 0.6;
  cursor: wait;
}

.shared-review-section__form-meta {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.shared-review-section__reveal {
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1), transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1), transform 0.6s cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.shared-review-section.is-visible .shared-review-section__reveal {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.shared-review-section.is-visible .shared-review-section__intro.shared-review-section__reveal {
  -webkit-transition-delay: 0.08s;
          transition-delay: 0.08s;
}

.shared-review-section.is-visible .shared-review-section__form.shared-review-section__reveal {
  -webkit-transition-delay: 0.16s;
          transition-delay: 0.16s;
}

.shared-review-section.is-visible .shared-review-section__form-box.shared-review-section__reveal {
  -webkit-transition-delay: 0.24s;
          transition-delay: 0.24s;
}

.shared-review-section.is-visible .shared-review-section__form-footer.shared-review-section__reveal {
  -webkit-transition-delay: 0.32s;
          transition-delay: 0.32s;
}

#shared-review-success-modal .contact-section__modal-dialog {
  padding: 87px 82px;
}

@media (max-width: 1024px) {
  .shared-review-section {
    padding: 120px 20px;
  }
  .shared-review-section__layout {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .shared-review-section__title {
    max-width: 360px;
    margin-bottom: 33px;
    font-size: 40px;
    line-height: 40px;
  }
  .shared-review-section .rhino-cf7-form__row + .rhino-cf7-form__row {
    margin-top: 22px;
  }
  .shared-review-section .rhino-cf7-form__row--2 {
    grid-template-columns: 1fr;
    row-gap: 22px;
  }
  .shared-review-section__form-footer {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
  .shared-review-section__rating {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .shared-review-section__submit-wrap {
    margin-left: 0;
  }
  .shared-review-section__submit {
    width: 100%;
  }
  #shared-review-success-modal .contact-section__modal-dialog {
    padding: 56px 24px 48px;
  }
}
.legal-page {
  padding: 132px 20px 100px;
  background: #ffffff;
  color: #333333;
}

.legal-page__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.legal-page__header,
.legal-page__content {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.legal-page__header {
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  text-align: left;
}

.legal-page__eyebrow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  margin-bottom: 18px;
}

.legal-page__eyebrow-line {
  display: block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 19px;
  height: 2px;
  background: #000000;
}

.legal-page__eyebrow-text {
  font-size: 16px;
  font-weight: var(--font-weight-regular);
  line-height: 1.2;
  color: #000000;
  text-transform: uppercase;
}

.legal-page__title {
  margin: 0;
  font-size: 64px;
  font-weight: var(--font-weight-medium);
  line-height: 58px;
  color: #000000;
}

.legal-page__updated {
  margin: 16px 0 0;
  font-size: 14px;
  font-weight: var(--font-weight-light);
  line-height: 1.4;
  color: #666666;
}

.legal-page__content {
  margin-top: 0;
  font-size: 16px;
  text-align: left;
  font-weight: var(--font-weight-light);
  line-height: 25px;
  color: #333333;
}
.legal-page__content > :first-child {
  margin-top: 0;
}
.legal-page__content > :last-child {
  margin-bottom: 0;
}
.legal-page__content > h2:first-child,
.legal-page__content > .wp-block-heading:first-child h2,
.legal-page__content > .wp-block-heading:first-child {
  margin-top: 0;
  margin-bottom: 20px;
  padding-bottom: 0;
  border-bottom: none;
  font-size: 20px;
  font-weight: var(--font-weight-regular);
  line-height: 1.35;
  color: #333333;
}
.legal-page__content h2,
.legal-page__content .wp-block-heading h2,
.legal-page__content h2.wp-block-heading {
  margin: 28px 0 12px;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  font-size: 24px;
  font-weight: var(--font-weight-medium);
  line-height: 1.2;
  color: #000000;
}
.legal-page__content h2:first-child,
.legal-page__content .wp-block-heading h2:first-child,
.legal-page__content h2.wp-block-heading:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}
.legal-page__content h3,
.legal-page__content .wp-block-heading h3,
.legal-page__content h3.wp-block-heading {
  margin: 20px 0 8px;
  font-size: 18px;
  font-weight: var(--font-weight-medium);
  line-height: 1.25;
  color: #000000;
}
.legal-page__content p,
.legal-page__content .wp-block-paragraph {
  margin: 0 0 16px;
}
.legal-page__content ul,
.legal-page__content ol,
.legal-page__content .wp-block-list {
  margin: 0 0 16px;
  padding-left: 1.25em;
}
.legal-page__content li {
  margin-bottom: 6px;
}
.legal-page__content li::marker {
  color: #e62b34;
}
.legal-page__content li:last-child {
  margin-bottom: 0;
}
.legal-page__content a {
  color: #e62b34;
  text-decoration: underline;
  text-underline-offset: 0.12em;
  -webkit-transition: color 0.25s ease;
  transition: color 0.25s ease;
}
.legal-page__content a:hover, .legal-page__content a:focus-visible {
  color: #c42329;
}
.legal-page__content strong {
  font-weight: var(--font-weight-medium);
  color: #000000;
}
.legal-page__content .alignwide,
.legal-page__content .alignfull,
.legal-page__content .wp-block-group,
.legal-page__content .wp-block-columns {
  max-width: 100%;
}

@media (max-width: 1024px) {
  .legal-page {
    padding: 112px 20px 72px;
  }
  .legal-page__header {
    margin-bottom: 24px;
    padding-bottom: 20px;
  }
  .legal-page__eyebrow {
    gap: 11px;
    margin-bottom: 14px;
  }
  .legal-page__eyebrow-text {
    font-size: 14px;
  }
  .legal-page__title {
    font-size: 40px;
    line-height: 36px;
  }
  .legal-page__updated {
    margin-top: 12px;
    font-size: 13px;
  }
  .legal-page__content {
    line-height: 24px;
  }
  .legal-page__content > h2:first-child,
  .legal-page__content > .wp-block-heading:first-child h2,
  .legal-page__content > .wp-block-heading:first-child {
    margin-bottom: 16px;
    font-size: 18px;
  }
  .legal-page__content h2,
  .legal-page__content .wp-block-heading h2,
  .legal-page__content h2.wp-block-heading {
    margin: 22px 0 10px;
    padding-top: 16px;
    font-size: 22px;
  }
  .legal-page__content h3,
  .legal-page__content .wp-block-heading h3,
  .legal-page__content h3.wp-block-heading {
    margin: 16px 0 6px;
    font-size: 17px;
  }
}
body.error404 .site-main {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 0;
}
body.error404 .site-footer {
  position: relative;
  z-index: 1;
}

.error-404 {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  min-height: calc(100vh - 80px);
  margin: 0;
  padding: 150px 20px 130px;
  overflow: hidden;
  color: #ffffff;
  text-align: center;
}

.error-404__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.error-404__bg-image {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.error-404__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.7803921569);
}

.error-404__inner {
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
}

.error-404__code {
  margin: 0 0 62px;
  font-family: "Montserrat", sans-serif;
  font-size: 300px;
  font-weight: 700;
  line-height: 210px;
  height: 210px;
  color: #e62b34;
  letter-spacing: -0.02em;
}

.error-404__title {
  margin: 0 0 26px;
  font-size: 64px;
  font-weight: 700;
  line-height: 1.05;
  color: #ffffff;
}

.error-404__text {
  margin: 0 0 62px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  color: #ffffff;
}

.error-404__button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 406px;
  height: 60px;
  padding: 0 24px;
  border: none;
  background: #e62b34;
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  gap: 8px;
  -webkit-transition: background-color 0.35s cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), -webkit-box-shadow 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  transition: background-color 0.35s cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), -webkit-box-shadow 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  transition: background-color 0.35s cubic-bezier(0.22, 1, 0.36, 1), transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  transition: background-color 0.35s cubic-bezier(0.22, 1, 0.36, 1), transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), -webkit-box-shadow 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.error-404__button-text {
  display: inline-block;
}

.error-404__button-icon {
  display: block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 20px;
  height: 20px;
  background-color: currentColor;
  mask: url("../assets/images/arrow.svg") center/contain no-repeat;
  -webkit-mask: url("../assets/images/arrow.svg") center/contain no-repeat;
}

.error-404__button:hover,
.error-404__button:focus-visible {
  background: #c42329;
  -webkit-transform: scale(1.03);
          transform: scale(1.03);
  -webkit-box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
          box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
}

@-webkit-keyframes error-404-fade-up {
  from {
    opacity: 0;
    -webkit-transform: translateY(28px);
            transform: translateY(28px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes error-404-fade-up {
  from {
    opacity: 0;
    -webkit-transform: translateY(28px);
            transform: translateY(28px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.error-404__code,
.error-404__title,
.error-404__text,
.error-404__button {
  opacity: 0;
  -webkit-animation: error-404-fade-up 0.75s cubic-bezier(0.22, 1, 0.36, 1) forwards;
          animation: error-404-fade-up 0.75s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.error-404__code {
  -webkit-animation-delay: 0.05s;
          animation-delay: 0.05s;
}

.error-404__title {
  -webkit-animation-delay: 0.18s;
          animation-delay: 0.18s;
}

.error-404__text {
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}

.error-404__button {
  -webkit-animation-delay: 0.42s;
          animation-delay: 0.42s;
}

@media (prefers-reduced-motion: reduce) {
  .error-404__code,
  .error-404__title,
  .error-404__text,
  .error-404__button {
    opacity: 1;
    -webkit-animation: none;
            animation: none;
    -webkit-transform: none;
            transform: none;
  }
}
@media (max-width: 1024px) {
  .error-404 {
    min-height: calc(100vh - 72px);
    padding: 220px 20px 200px;
  }
  .error-404__code {
    margin-bottom: 62px;
    font-size: 150px;
    line-height: 105px;
    height: 105px;
  }
  .error-404__title {
    margin-bottom: 26px;
    font-size: 48px;
  }
  .error-404__text {
    margin-bottom: 62px;
    font-size: 16px;
  }
  .error-404__button {
    width: 100%;
    max-width: none;
  }
}
.all-works-section {
  padding: 0 0 110px;
  overflow: hidden;
}

.all-works-section__filter {
  position: relative;
  z-index: 40;
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  border-bottom: 1px solid rgba(0, 0, 0, 0.5803921569);
}

.all-works-section__filter-bar {
  padding: 18px 20px;
}

.all-works-section__filter-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 14px 14px;
  max-width: 1200px;
  margin: 0 auto;
}

.all-works-section__filter-label {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-right: 59px;
  font-size: 20px;
  font-weight: 400;
  line-height: 14px;
  color: #000000;
  text-transform: uppercase;
}

.all-works-section__filter-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 14px;
  min-width: 0;
}

.all-works-section__filter-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  min-width: 123px;
  height: 35px;
  padding: 12px;
  border: 1px solid rgba(0, 0, 0, 0.5803921569);
  background: #ffffff;
  color: #333333;
  font-family: inherit;
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  cursor: pointer;
  -webkit-transition: background-color 0.3s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.3s cubic-bezier(0.22, 1, 0.36, 1), color 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  transition: background-color 0.3s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.3s cubic-bezier(0.22, 1, 0.36, 1), color 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.all-works-section__filter-btn:hover,
.all-works-section__filter-btn:focus-visible,
.all-works-section__filter-btn.is-active {
  border-color: #e62b34;
  background: #e62b34;
  color: #ffffff;
}

.all-works-section__filter-select {
  display: none;
  position: relative;
  z-index: 41;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 100%;
          flex: 1 1 100%;
  min-width: 0;
}

.all-works-section__filter-select-toggle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  min-height: 35px;
  padding: 12px 16px;
  border: 1px solid rgba(0, 0, 0, 0.5803921569);
  background: #ffffff;
  color: #333333;
  font-family: inherit;
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  text-align: left;
  cursor: pointer;
}

.all-works-section__filter-select-label {
  color: inherit;
}

.all-works-section__filter-select-icon {
  display: block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin-left: 12px;
  background: url("../assets/images/slider-arrow-handle.svg") center/contain no-repeat;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  -webkit-transition: -webkit-transform 0.25s ease;
  transition: -webkit-transform 0.25s ease;
  transition: transform 0.25s ease;
  transition: transform 0.25s ease, -webkit-transform 0.25s ease;
}

.all-works-section__filter-select.is-open .all-works-section__filter-select-icon {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}

.all-works-section__filter-select-menu {
  position: absolute;
  top: calc(100% + 4px);
  right: 0;
  left: 0;
  z-index: 42;
  margin: 0;
  padding: 8px 0;
  border: 1px solid rgba(0, 0, 0, 0.5803921569);
  background: #ffffff;
  list-style: none;
  -webkit-box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
          box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.all-works-section__filter-select-item {
  margin: 0;
  padding: 0;
}

.all-works-section__filter-select-option {
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  padding: 12px 16px;
  border: 0;
  background: transparent;
  color: #333333;
  font-family: inherit;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
  text-align: left;
  cursor: pointer;
  -webkit-transition: color 0.25s ease, background-color 0.25s ease;
  transition: color 0.25s ease, background-color 0.25s ease;
}

.all-works-section__filter-select-option:hover,
.all-works-section__filter-select-option:focus-visible {
  color: #e62b34;
}

.all-works-section__filter-select-option.is-active {
  color: #e62b34;
}

.all-works-section__body {
  position: relative;
  z-index: 1;
  margin-top: 110px;
  padding: 0 20px;
}

.all-works-section__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.all-works-section__panel {
  display: none;
}
.all-works-section__panel.is-active {
  display: block;
}

.all-works-section__slider-area {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.all-works-section__slider {
  width: 100%;
  overflow: hidden;
  -ms-touch-action: pan-x pan-y;
      touch-action: pan-x pan-y;
}

.all-works-section__slider--desktop {
  display: block;
}
.all-works-section__slider--desktop .swiper-slide {
  width: 100%;
  height: auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.all-works-section__slider--mobile {
  display: none;
}
.all-works-section__slider--mobile .swiper-wrapper {
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.all-works-section__slider--mobile .swiper-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 100%;
  max-width: 364px;
  height: auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.all-works-section__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 30px 55px;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

.all-works-section__card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  min-height: 484px;
  height: 100%;
  border: 1px solid rgba(0, 0, 0, 0.5803921569);
}

.all-works-section__media {
  position: relative;
  width: 100%;
  height: 352px;
  max-height: 352px;
  overflow: hidden;
  cursor: pointer;
}

.all-works-section__media:focus-visible {
  outline: 2px solid #e62b34;
  outline-offset: 4px;
}

.all-works-section__image {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.all-works-section__card-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 23px;
}

.all-works-section__card-category {
  display: block;
  margin: 0 0 12px;
  color: #e62b34;
  font-size: 16px;
  font-weight: var(--font-weight-light);
  line-height: 11px;
  text-transform: capitalize;
}

.all-works-section__card-text {
  margin: 0;
  color: #000000;
  font-size: 16px;
  font-weight: var(--font-weight-light);
  line-height: 21px;
  overflow-wrap: anywhere;
}

.all-works-section__progress {
  margin-top: 53px;
}

.all-works-section__progress-track {
  position: relative;
  width: 100%;
  height: 10px;
  overflow: hidden;
  background: rgba(30, 31, 34, 0.1607843137);
  cursor: pointer;
  -ms-touch-action: none;
      touch-action: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.all-works-section__progress-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: #e62b34;
  -webkit-transition: width 0.45s cubic-bezier(0.33, 0, 0.2, 1), left 0.45s cubic-bezier(0.33, 0, 0.2, 1);
  transition: width 0.45s cubic-bezier(0.33, 0, 0.2, 1), left 0.45s cubic-bezier(0.33, 0, 0.2, 1);
  will-change: width, left;
}

.all-works-section__nav-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 40px;
  margin-top: 27px;
}

.all-works-section__nav {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 62px;
  height: 34px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  -webkit-transition: opacity 0.3s cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  transition: opacity 0.3s cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  transition: opacity 0.3s cubic-bezier(0.22, 1, 0.36, 1), transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  transition: opacity 0.3s cubic-bezier(0.22, 1, 0.36, 1), transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.all-works-section__nav-icon {
  display: block;
  width: 62px;
  height: 34px;
  background: url("../assets/images/slider-arrow-handle.svg") center/contain no-repeat;
}

.all-works-section__nav--prev .all-works-section__nav-icon {
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
}

.all-works-section__nav:hover,
.all-works-section__nav:focus-visible {
  opacity: 0.65;
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
}

.all-works-section__nav:disabled,
.all-works-section__nav.swiper-button-disabled {
  opacity: 0.35;
  cursor: not-allowed;
  -webkit-transform: none;
          transform: none;
}

.all-works-section__reveal {
  opacity: 0;
  -webkit-transform: translateY(24px);
          transform: translateY(24px);
  -webkit-transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.all-works-section.is-visible .all-works-section__reveal {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.all-works-section.is-visible .all-works-section__filter.all-works-section__reveal {
  -webkit-transition-delay: 0.05s;
          transition-delay: 0.05s;
}

.all-works-section.is-visible .all-works-section__body.all-works-section__reveal {
  -webkit-transition-delay: 0.12s;
          transition-delay: 0.12s;
}

.all-works-section.is-visible .all-works-section__panel.is-active .all-works-section__slider-area.all-works-section__reveal {
  -webkit-transition-delay: 0.22s;
          transition-delay: 0.22s;
}

@media (prefers-reduced-motion: reduce) {
  .all-works-section__reveal {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
    -webkit-transition: none;
    transition: none;
  }
}
@media (min-width: 1025px) {
  .all-works-section__progress {
    display: none;
  }
  .all-works-section__nav-row {
    margin-top: 53px;
  }
}
@media (max-width: 1024px) {
  .all-works-section {
    padding: 0 0 80px;
    overflow-x: clip;
    overflow-y: visible;
  }
  .all-works-section__filter-label {
    display: block;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    margin: 0 90px 0 0;
  }
  .all-works-section__filter-buttons {
    display: none;
  }
  .all-works-section__filter-select {
    display: block;
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
    min-width: 0;
  }
  .all-works-section.is-filter-open .all-works-section__filter {
    z-index: 100;
  }
  .all-works-section.is-filter-open .all-works-section__filter-select-menu {
    z-index: 101;
  }
  .all-works-section__filter-inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 0;
  }
  .all-works-section__filter-select-label {
    color: #e62b34;
  }
  .all-works-section__body {
    margin-top: 50px;
  }
  .all-works-section__inner,
  .all-works-section__panels,
  .all-works-section__panel.is-active {
    overflow: visible;
  }
  .all-works-section__slider-area {
    overflow: hidden;
  }
  .all-works-section__slider--desktop {
    display: none;
  }
  .all-works-section__slider--mobile {
    display: block;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }
  .all-works-section__slider--mobile.swiper {
    overflow: hidden;
  }
  .all-works-section__slider--mobile .swiper-wrapper {
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
  .all-works-section__slider--mobile .swiper-slide {
    width: 100% !important;
    max-width: 100%;
    height: auto;
    overflow: visible;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .all-works-section__card {
    width: 100%;
    max-width: 100%;
    min-height: 0;
    height: auto;
    overflow: visible;
  }
  .all-works-section__media {
    width: 100%;
    height: clamp(200px, (100vw - 40px) * 352px / 364px, 352px);
    max-height: 352px;
  }
  .all-works-section__progress {
    display: none;
  }
  .all-works-section__nav-row {
    margin-top: 30px;
  }
}