:root {
  --color_backgroundDark: #1b1b1b;
  --color_white: #ffffff;
  --color_white_opacity: #ffffff33;
  --color_black_opacity: #00000033;
  --color_gray_opacity: #1b1b1b99;
  --color_gray_opacity2: rgba(255, 255, 255, 0.2);
  --color_black: #000000;
  --color_gray1: #2e2f2e;
  --color_gray2: #9c9d9c;
  --color_gray3: #9c9d9d;
  --color_gray4: #414141;
  --color_gray5: #cbcbcb;
  --color_gray6: #6e6e6e;
  --color_gray7: #f4f4f4;
  --color_gray8: #494949;
  --container_wide: 1240px;
}

/* Mixins */
/* Main */
body,
html {
  min-width: 375px;
}

body {
  overflow-y: auto;
}
body.fixed {
  overflow-y: hidden;
}

a {
  text-decoration: none;
  font-family: "Martian Mono", monospace;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

* {
  transition: 0.3s ease all;
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

/* Sitelogo */
.siteLogo {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  height: 100%;
  width: auto;
  aspect-ratio: 3/2;
}
.siteLogo .elem {
  aspect-ratio: 1/1;
  width: auto;
  border-radius: 0 50% 50% 0;
  transition: 1.2s ease transform, 0.3s ease opacity;
  opacity: 0;
}
.siteLogo .elem.first {
  background-color: var(--color_gray1);
  transform: translateX(250%);
  transition-delay: 0.2s;
}
.siteLogo .elem.second {
  background-color: var(--color_gray5);
  transform: translateX(310%);
  transition-delay: 0.6s;
}
.siteLogo .elem.fourth {
  background-color: var(--color_gray3);
  transform: translateX(220%);
}
.siteLogo .elem.fifth {
  background-color: var(--color_gray1);
  border-radius: 50% 50% 0 0;
  transform: translateX(280%);
  transition-delay: 0.4s;
}
.siteLogo .elem.third {
  background-color: var(--color_gray3);
  border-radius: 50% 50% 0 0;
  transform: translateX(340%);
  transition-delay: 0.8s;
}
.siteLogo .elem.sixth {
  background-color: var(--color_gray3);
  border-radius: 0 0 50% 50%;
  margin-top: -1px;
  transform: translateX(340%);
  transition-delay: 0.8s;
}
.siteLogo.active .elem {
  opacity: 1;
}
.siteLogo.active .elem.first {
  transform: translateX(0);
}
.siteLogo.active .elem.second {
  transform: translateX(0);
}
.siteLogo.active .elem.fourth {
  transform: translateX(0);
}
.siteLogo.active .elem.fifth {
  transform: translateX(0);
}
.siteLogo.active .elem.third {
  transform: translateX(0);
}
.siteLogo.active .elem.sixth {
  transform: translateX(0);
}

/* BreadCrumps */
.breadCrumps {
  display: flex;
  gap: 8px;
}
.breadCrumps .item,
.breadCrumps .hr {
  font-size: 14px;
  font-weight: 400;
  line-height: 120%;
  text-decoration: none;
  font-family: "Martian Mono", monospace;
  font-optical-sizing: auto;
  color: var(--color_gray2);
}
.breadCrumps .item.active,
.breadCrumps .hr.active {
  color: var(--color_white);
}

@media screen and (max-width: 768px) {
  .breadCrumps .item,
  .breadCrumps .hr {
    font-size: 12px;
    font-weight: 400;
    line-height: 120%;
  }
}
/* Portfolio buttons */
.portfolioButtonsContainer {
  display: flex;
  align-items: center;
}
.portfolioButtonsContainer .button {
  width: 50%;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color_white);
  font-size: 14px;
  font-weight: 400;
  line-height: 120%;
  flex-grow: 0;
  cursor: pointer;
}
.portfolioButtonsContainer .button.left {
  background-color: var(--color_gray_opacity2);
  border-radius: 100px 0 0 100px;
  pointer-events: all;
}
.portfolioButtonsContainer .button.left:hover {
  background-color: var(--color_gray1);
}
.portfolioButtonsContainer .button.right {
  background-color: var(--color_gray1);
  border-radius: 0 100px 100px 0;
  pointer-events: all;
}
.portfolioButtonsContainer .button.right:hover {
  background-color: var(--color_gray_opacity2);
}

/* Header */
.header {
  background-color: var(--color_backgroundDark);
  height: 76px;
  display: flex;
  position: fixed;
  width: 100dvw;
  overflow: hidden;
  align-items: center;
  z-index: 1000;
  top: 0;
}
.header .siteLogo {
  position: absolute;
}
.header .siteMenuContainer {
  display: flex;
  align-items: center;
  width: var(--container_wide);
  margin-inline: auto;
  justify-content: end;
  gap: 125px;
}
.header .siteMenuContainer .navigation {
  display: flex;
  align-items: center;
}
.header .siteMenuContainer .navigation li {
  list-style: none;
}
.header .siteMenuContainer .navigation .link {
  padding-inline: 36px;
  color: var(--color_white);
  font-size: 14px;
  font-weight: 400;
  line-height: 120%;
}
.header .siteMenuContainer .additionalMenu {
  display: flex;
  align-items: center;
  gap: 34px;
}
.header .siteMenuContainer .additionalMenu .phone {
  color: var(--color_white);
  font-size: 14px;
  font-weight: 400;
  line-height: 120%;
}
.header .burgerToggler {
  display: none;
}

.mobileMenuWrapper {
  width: 100%;
  overflow: hidden;
}
.mobileMenuWrapper .mobileMenu {
  display: none;
}

@media screen and (max-width: 1240px) {
  .header {
    height: 60px;
    display: flex;
    justify-content: space-between;
    padding-right: 16px;
  }
  .header .siteMenuContainer {
    display: none;
  }
  .header .burgerToggler {
    display: block;
    position: relative;
    outline: none;
    border: none;
    background-color: transparent;
    width: 32px;
    height: 32px;
    padding: 7px 4px;
    cursor: pointer;
  }
  .header .burgerToggler .line {
    width: 100%;
    height: 2px;
    background-color: var(--color_white);
    opacity: 1;
  }
  .header .burgerToggler::before, .header .burgerToggler::after {
    width: calc(100% - 8px);
    height: 2px;
    background-color: var(--color_white);
    content: "";
    position: absolute;
    left: 4px;
    top: 50%;
    transition: transform 0.3s ease;
  }
  .header .burgerToggler::before {
    transform: translateY(calc(-50% - 8px)) rotate(0);
  }
  .header .burgerToggler::after {
    transform: translateY(calc(-50% + 8px)) rotate(0);
  }
  .header .burgerToggler.active .line {
    opacity: 0;
  }
  .header .burgerToggler.active::before {
    transform: translateY(-50%) rotate(45deg);
  }
  .header .burgerToggler.active::after {
    transform: translateY(-50%) rotate(-45deg);
  }
  .header .siteLogo {
    position: static;
  }
  .mobileMenuWrapper .mobileMenu {
    width: 100dvw;
    height: calc(100dvh - 60px);
    top: 60px;
    left: 0;
    transform: translateX(100%);
    background-color: var(--color_backgroundDark);
    position: fixed;
    display: flex;
    padding: 0;
    border: none;
    outline: none;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 32px;
    z-index: 1000;
  }
  .mobileMenuWrapper .mobileMenu.active {
    transform: translateX(0);
  }
  .mobileMenuWrapper .mobileMenu .menuWrapper {
    padding-top: 30%;
    gap: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .mobileMenuWrapper .mobileMenu .mainMenu .navigation {
    display: flex;
    flex-direction: column;
    padding-left: 0;
  }
  .mobileMenuWrapper .mobileMenu .mainMenu .navigation li {
    list-style: none;
  }
  .mobileMenuWrapper .mobileMenu .mainMenu .navigation .link {
    padding-block: 30px;
    font-size: 14px;
    font-weight: 400;
    line-height: 120%;
    color: var(--color_white);
    display: flex;
  }
  .mobileMenuWrapper .mobileMenu .mobileMenuFooter {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }
  .mobileMenuWrapper .mobileMenu .mobileMenuFooter .phone {
    font-size: 14px;
    font-weight: 400;
    line-height: 120%;
    color: var(--color_white);
  }
  .mobileMenuWrapper .mobileMenu .mobileMenuFooter .socials {
    display: flex;
    gap: 32px;
    align-items: center;
  }
}
/* Hero section */
.hero {
  height: calc(100dvh - 76px);
  width: 100%;
  position: relative;
  margin-top: 76px;
  display: flex;
  align-items: end;
  overflow-x: hidden;
}
.hero .scrollerWrapper {
  position: absolute;
  height: 100%;
  display: flex;
  gap: 1px;
  background-color: var(--color_white);
}
.hero .scrollerWrapper .elem {
  height: 100%;
  width: calc(100vw - (100vw - var(--container_wide)) / 2);
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero .scrollerWrapper .elem img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero .heroFooter {
  height: 329px;
  background-color: rgba(27, 27, 27, 0.6);
  width: 100%;
  position: relative;
}
.hero .heroFooter .wrapper {
  display: flex;
  justify-content: space-between;
  padding-block: 46px 32px;
  width: calc(100vw - (100vw - var(--container_wide)));
  margin-inline: auto;
  padding-right: 105px;
}
.hero .heroFooter .wrapper > .left {
  display: flex;
  flex-direction: column;
  align-items: start;
}
.hero .heroFooter .wrapper > .left h2 {
  font-size: 46px;
  font-weight: 400;
  line-height: 120%;
  text-transform: uppercase;
  color: var(--color_white);
  margin-bottom: 16px;
}
.hero .heroFooter .wrapper > .left h3 {
  font-family: "Martian Mono", monospace;
  font-optical-sizing: auto;
  font-weight: 400;
  color: var(--color_white);
}
.hero .heroFooter .wrapper > .left .swiperAltHeader {
  margin-bottom: 32px;
  border-left: 2px solid var(--color_white);
  padding-left: 20px;
  overflow: hidden;
}
.hero .heroFooter .wrapper > .left .swiperAltHeader.visible #heroSwiperTitle,
.hero .heroFooter .wrapper > .left .swiperAltHeader.visible #heroSwiperSubtitle {
  transform: translateX(0);
}
.hero .heroFooter .wrapper > .left .swiperAltHeader #heroSwiperTitle,
.hero .heroFooter .wrapper > .left .swiperAltHeader #heroSwiperSubtitle {
  transform: translateX(-150%);
  transition: all 0.5s ease;
}
.hero .heroFooter .wrapper > .left .portfolioButtonsContainer {
  padding-left: 22px;
}
.hero .heroFooter .wrapper > .right {
  width: 296px;
}
.hero .heroFooter .wrapper > .right .paginationContainer {
  display: flex;
  justify-content: space-between;
  padding-bottom: 16px;
}
.hero .heroFooter .wrapper > .right .paginationContainer .paginationElem {
  color: var(--color_white);
  opacity: 0.5;
  font-size: 16px;
  font-weight: 400;
  line-height: 120%;
  text-decoration: none;
  font-family: "Martian Mono", monospace;
  font-optical-sizing: auto;
  cursor: pointer;
}
.hero .heroFooter .wrapper > .right .paginationContainer .paginationElem.active, .hero .heroFooter .wrapper > .right .paginationContainer .paginationElem:hover {
  opacity: 1;
}
.hero .heroFooter .wrapper > .right .paginationScroller {
  width: 100%;
  height: 3px;
  position: relative;
  background-color: var(--color_white_opacity);
  opacity: 0.5;
  margin-bottom: 16px;
}
.hero .heroFooter .wrapper > .right .paginationScroller #heroPaginationScroller {
  width: 0;
  height: 100%;
  background-color: var(--color_white);
  left: 0;
  top: 0;
  position: absolute;
}
.hero .heroFooter .wrapper > .right h4 {
  font-size: 24px;
  font-weight: 300;
  line-height: 130%;
  text-transform: uppercase;
  color: var(--color_white);
}
.hero .nextSlide {
  margin-left: calc(100vw - (100vw - var(--container_wide)) / 2);
  width: 46px;
  height: 46px;
  background-color: var(--color_white);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: none;
  outline: none;
  position: absolute;
  top: 30%;
  transform: translateX(-50%) rotate(0deg) scale(1);
  cursor: pointer;
}
.hero .nextSlide:hover {
  transform: translateX(-50%) rotate(35deg) scale(1.2);
}

@keyframes heroScrollerPagination {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}
@media screen and (max-width: 1240px) {
  .hero {
    margin-top: 60px;
    height: calc(100dvh - 60px);
  }
  .hero .scrollerWrapper .elem {
    width: calc(100% - 22px);
  }
  .hero .heroFooter {
    padding-inline: 16px;
  }
  .hero .heroFooter .wrapper {
    width: 100%;
  }
  .hero .heroFooter .wrapper > .right {
    width: 296px;
  }
  .hero .nextSlide {
    margin-left: calc(100% - 22px);
  }
}
@media screen and (max-width: 768px) {
  .hero .scrollerWrapper {
    height: calc(100% - 214px);
    top: auto;
    bottom: 0;
  }
  .hero .heroFooter {
    height: 100%;
    background-color: transparent;
    pointer-events: none;
    padding-inline: 0;
  }
  .hero .heroFooter .wrapper {
    flex-direction: column;
    height: 100%;
    padding-block: 0;
    padding-right: 0;
  }
  .hero .heroFooter .wrapper > .left {
    padding: 24px 16px 46px;
    background-color: var(--color_backgroundDark);
  }
  .hero .heroFooter .wrapper > .left h2 {
    font-size: 32px;
    font-weight: 400;
    line-height: 120%;
    text-transform: uppercase;
  }
  .hero .heroFooter .wrapper > .left h3 {
    font-size: 14px;
    font-weight: 400;
    line-height: 120%;
  }
  .hero .heroFooter .wrapper > .left .swiperAltHeader {
    margin-bottom: 24px;
  }
  .hero .heroFooter .wrapper > .left .portfolioButtonsContainer {
    padding-left: 0;
  }
  .hero .heroFooter .wrapper > .right {
    width: 100%;
    background-color: rgba(27, 27, 27, 0.6);
    padding: 24px 16px;
    padding-right: 90px;
  }
  .hero .heroFooter .wrapper > .right .paginationContainer {
    padding-bottom: 8px;
  }
  .hero .heroFooter .wrapper > .right .paginationContainer .paginationElem {
    font-size: 14px;
    font-weight: 400;
    line-height: 120%;
  }
  .hero .heroFooter .wrapper > .right h4 {
    font-size: 18px;
    font-weight: 300;
    line-height: 130%;
    text-transform: uppercase;
  }
  .hero .nextSlide {
    top: 60%;
  }
}
/* About us */
.about-us {
  background-color: var(--color_backgroundDark);
}
.about-us * {
  color: var(--color_white);
}
.about-us .container {
  width: var(--container_wide);
  display: flex;
  gap: 80px;
  padding-block: 140px 128px;
  margin-inline: auto;
}
.about-us .container .left {
  width: 49.19%;
  display: flex;
  flex-direction: column;
  gap: 98px;
  flex-grow: 0;
  flex-shrink: 0;
}
.about-us .container .left h2 {
  font-size: 14px;
  font-weight: 400;
  line-height: 120%;
}
.about-us .container .left .about-usFooter h3 {
  font-size: 46px;
  font-weight: 400;
  line-height: 120%;
  text-transform: uppercase;
  margin-bottom: 46px;
  width: 400px;
}
.about-us .container .left .about-usFooter .textContent {
  display: flex;
  gap: 24px;
}
.about-us .container .left .about-usFooter .textContent p {
  width: calc(50% - 12px);
  flex-shrink: 0;
  flex-grow: 0;
  text-decoration: none;
  font-family: "Martian Mono", monospace;
  font-optical-sizing: auto;
  font-size: 16px;
  font-weight: 200;
  line-height: 150%;
}
.about-us .container .right {
  width: 39.92%;
  flex-grow: 0;
  flex-shrink: 0;
}
.about-us .container .right .imageContainer {
  position: relative;
  width: 100%;
  height: 100%;
}
.about-us .container .right .imageContainer.active .animatedBlock.headerAnimatedBlock {
  opacity: 1;
  transform: translateX(0);
}
.about-us .container .right .imageContainer.active .animatedBlock.footerAnimatedBlock {
  opacity: 1;
  transform: translateX(0);
}
.about-us .container .right .imageContainer .animatedBlock {
  position: absolute;
  left: 0;
  width: 100%;
  background: url("../img/aboutUs/main.webp") no-repeat center top;
  background-size: cover;
  overflow: hidden;
}
.about-us .container .right .imageContainer .animatedBlock.headerAnimatedBlock {
  top: 0;
  height: 34.73%;
  border-radius: 87px;
  background-position: center top;
  transform: translateX(-120%);
  opacity: 0;
  transition: 0.7s ease all;
}
.about-us .container .right .imageContainer .animatedBlock.footerAnimatedBlock {
  bottom: 1px;
  height: 65.27%;
  border-radius: 76px;
  background-position: center 65.27%;
  transform: translateX(120%);
  opacity: 0;
  transition: 1.2s ease all;
}

@media screen and (max-width: 1240px) {
  .about-us .container {
    width: 100%;
    gap: 46px;
    padding-block: 120px;
    padding-inline: 16px;
    align-items: start;
  }
  .about-us .container .left {
    gap: 98px;
    width: calc(100% - 98px - 343px);
  }
  .about-us .container .left .about-usFooter h3 {
    font-size: 32px;
    font-weight: 400;
    line-height: 120%;
    text-transform: uppercase;
    margin-bottom: 32px;
    width: 100%;
  }
  .about-us .container .left .about-usFooter .textContent {
    flex-direction: column;
  }
  .about-us .container .left .about-usFooter .textContent p {
    width: 100%;
    font-size: 14px;
    font-weight: 200;
    line-height: 150%;
  }
  .about-us .container .right {
    width: 343px;
    height: auto;
    aspect-ratio: 343/424;
    margin-top: 114px;
  }
  .about-us .container .right .imageContainer .animatedBlock.headerAnimatedBlock {
    height: 34.62%;
    border-radius: 87px;
  }
  .about-us .container .right .imageContainer .animatedBlock.footerAnimatedBlock {
    height: 65.38%;
    border-radius: 76px;
    background-position: center bottom;
  }
}
@media screen and (max-width: 768px) {
  .about-us .container {
    flex-direction: column;
  }
  .about-us .container .left {
    gap: 32px;
    width: 100%;
  }
  .about-us .container .right {
    width: 100%;
    margin-top: 0;
  }
}
/* Steps block */
.stepsSection {
  width: 100%;
  height: 200dvh;
  background: url("../img/steps/main.jpg") no-repeat top/cover;
  position: relative;
  padding-bottom: 10%;
}
.stepsSection .container {
  width: var(--container_wide);
  margin-inline: auto;
  padding-left: 109px;
  position: sticky;
  top: 72px;
  display: block;
}
.stepsSection .container .paralaxBlock {
  background-color: var(--color_backgroundDark);
  border-radius: 0 0 192px 192px;
  width: 384px;
  padding: 32px 24px 233px;
}
.stepsSection .container .paralaxBlock .steps {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.stepsSection .container .paralaxBlock .steps .step {
  display: flex;
  gap: 32px;
  align-items: center;
  color: var(--color_white);
  border-bottom: 1px solid var(--color_gray4);
  padding-bottom: 16px;
  background-color: var(--color_backgroundDark);
  opacity: 0;
  transform: translateY(-150%);
}
.stepsSection .container .paralaxBlock .steps .step span {
  text-decoration: none;
  font-family: "Martian Mono", monospace;
  font-optical-sizing: auto;
  font-size: 16px;
  font-weight: 200;
  line-height: 150%;
}

@media screen and (max-width: 1240px) {
  .stepsSection .container {
    top: 60px;
    width: 100%;
  }
  .stepsSection .container .paralaxBlock {
    width: 263px;
    padding: 32px 13px 80px;
    margin-inline: auto;
  }
  .stepsSection .container .paralaxBlock .steps {
    gap: 16px;
  }
  .stepsSection .container .paralaxBlock .steps .step span {
    font-size: 12px;
    font-weight: 200;
    line-height: 150%;
  }
}
@media screen and (max-width: 768px) {
  .stepsSection .container {
    padding-left: 0;
    width: 100%;
  }
}
/* Portfolio Small */
.portfolioSmall {
  background-color: var(--color_backgroundDark);
  overflow: hidden;
}
.portfolioSmall .wrapper {
  width: var(--container_wide);
  margin-inline: auto;
}
.portfolioSmall .wrapper .portfolioSmall_header {
  padding: 160px 155px 46px 210px;
  width: 100%;
}
.portfolioSmall .wrapper .portfolioSmall_header.active h3.gray,
.portfolioSmall .wrapper .portfolioSmall_header.active h3.white {
  opacity: 1;
  transform: translateX(0);
}
.portfolioSmall .wrapper h2 {
  font-size: 14px;
  font-weight: 400;
  line-height: 120%;
  margin-bottom: 7px;
  width: 100%;
  text-align: end;
  color: var(--color_white);
}
.portfolioSmall .wrapper h3 {
  font-size: 46px;
  font-weight: 400;
  line-height: 120%;
  text-transform: uppercase;
}
.portfolioSmall .wrapper h3.gray {
  color: var(--color_gray6);
  text-align: left;
  width: 610px;
  transform: translateX(-100%);
  opacity: 0;
  transition: 0.5s ease all;
}
.portfolioSmall .wrapper h3.white {
  color: var(--color_white);
  text-align: right;
  width: 498px;
  transform: translateX(100%);
  opacity: 0;
  transition: 0.5s ease all;
  transition-delay: 0.2s;
}
.portfolioSmall .wrapper .textContainer {
  width: 100%;
  display: flex;
  justify-content: end;
}
.portfolioSmall .portfolioCards {
  display: flex;
  flex-wrap: wrap;
  gap: 1px;
  background-color: rgba(255, 255, 255, 0.3);
}
.portfolioSmall .portfolioCards .portfolioCard {
  width: calc(25% - 1px);
  height: auto;
  aspect-ratio: 360/440;
  position: relative;
  cursor: pointer;
}
.portfolioSmall .portfolioCards .portfolioCard.tobecontinued {
  justify-content: center;
  align-items: center;
  background-color: var(--color_backgroundDark);
  font-size: 14px;
  font-weight: 400;
  line-height: 120%;
  display: flex;
  color: var(--color_white);
  display: none;
}
.portfolioSmall .portfolioCards .portfolioCard:hover .imageContainer:after, .portfolioSmall .portfolioCards .portfolioCard.active .imageContainer:after {
  opacity: 0;
}
.portfolioSmall .portfolioCards .portfolioCard:hover .cardFooter .infoContainer, .portfolioSmall .portfolioCards .portfolioCard.active .cardFooter .infoContainer {
  transform: translateX(0);
}
.portfolioSmall .portfolioCards .portfolioCard .imageContainer {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.portfolioSmall .portfolioCards .portfolioCard .imageContainer:after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  background-color: var(--color_backgroundDark);
  opacity: 0.8;
  transition: 0.5s ease all;
}
.portfolioSmall .portfolioCards .portfolioCard .imageContainer img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.portfolioSmall .portfolioCards .portfolioCard .cardFooter {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 100;
  height: 80px;
  width: 100%;
  overflow: hidden;
}
.portfolioSmall .portfolioCards .portfolioCard .cardFooter .infoContainer {
  display: flex;
  width: 100%;
  height: 100%;
  transform: translateX(-100%);
  transition: 0.5s 0.3s ease all;
}
.portfolioSmall .portfolioCards .portfolioCard .cardFooter .infoContainer .titleCard {
  width: 65%;
  height: 100%;
  display: flex;
  align-items: center;
  padding-inline: 13px;
  font-size: 24px;
  font-weight: 300;
  line-height: 130%;
  text-transform: uppercase;
  color: var(--color_white);
  background-color: rgba(0, 0, 0, 0.2);
}
.portfolioSmall .portfolioCards .portfolioCard .cardFooter .infoContainer .showButton {
  height: 100%;
  width: 35%;
  background-color: var(--color_gray1);
  display: flex;
  color: var(--color_white);
  align-items: center;
  justify-content: center;
  border-radius: 0 100px 100px 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 120%;
}

@media screen and (max-width: 1240px) {
  .portfolioSmall .wrapper {
    width: 100%;
    padding-inline: 16px;
  }
  .portfolioSmall .wrapper .portfolioSmall_header {
    padding: 160px 75px 46px 105px;
  }
  .portfolioSmall .wrapper h3 {
    font-size: 32px;
    font-weight: 400;
    line-height: 120%;
    text-transform: uppercase;
  }
  .portfolioSmall .portfolioCards .portfolioCard {
    width: calc(33.33% - 1px);
  }
  .portfolioSmall .portfolioCards .portfolioCard.tobecontinued {
    display: flex;
  }
}
@media screen and (max-width: 768px) {
  .portfolioSmall .wrapper .portfolioSmall_header {
    padding: 120px 0 46px 0;
  }
  .portfolioSmall .wrapper h2 {
    margin-bottom: 32px;
    text-align: start;
  }
  .portfolioSmall .wrapper h3.gray {
    width: 100%;
  }
  .portfolioSmall .wrapper h3.white {
    width: 100%;
  }
  .portfolioSmall .portfolioCards .portfolioCard {
    width: calc(50% - 1px);
    aspect-ratio: 188/270;
  }
  .portfolioSmall .portfolioCards .portfolioCard.tobecontinued {
    display: none !important;
  }
  .portfolioSmall .portfolioCards .portfolioCard .cardFooter {
    height: auto;
  }
  .portfolioSmall .portfolioCards .portfolioCard .cardFooter .infoContainer {
    flex-direction: column;
    transform: translateX(-100%);
    background-color: rgba(0, 0, 0, 0.2);
  }
  .portfolioSmall .portfolioCards .portfolioCard .cardFooter .infoContainer .titleCard {
    width: 100%;
    padding-inline: 4px;
    font-size: 18px;
    font-weight: 300;
    line-height: 130%;
    text-transform: uppercase;
    background-color: transparent;
    padding-top: 16px;
  }
  .portfolioSmall .portfolioCards .portfolioCard .cardFooter .infoContainer .showButton {
    width: 60%;
    padding-block: 16px;
  }
}
/* Furniture production */
.furnitureProduction {
  background-color: var(--color_gray7);
  overflow: hidden;
}
.furnitureProduction .wrapper {
  width: var(--container_wide);
  display: flex;
  margin-inline: auto;
  position: relative;
}
.furnitureProduction .wrapper h3 {
  font-size: 14px;
  font-weight: 400;
  line-height: 120%;
  text-decoration: none;
  font-family: "Martian Mono", monospace;
  font-optical-sizing: auto;
  margin-bottom: 32px;
}
.furnitureProduction .wrapper h2 {
  font-size: 46px;
  font-weight: 400;
  line-height: 120%;
  text-transform: uppercase;
  width: 400px;
}
.furnitureProduction .wrapper .sidebar {
  width: 42%;
  flex-shrink: 0;
  flex-grow: 0;
  padding-top: 107px;
}
.furnitureProduction .wrapper .imagebackgroundContainer {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  width: 693px;
  transform: translateX(-50px) translateY(-120px);
  opacity: 0.2;
}
.furnitureProduction .wrapper .imagebackgroundContainer::after {
  content: "";
  background: linear-gradient(180deg, rgba(244, 244, 244, 0) 0%, #f4f4f4 54.33%);
  width: 100%;
  bottom: 0;
  left: 0;
  height: 316px;
  position: absolute;
}
.furnitureProduction .wrapper .imagebackgroundContainer::before {
  content: "";
  background: linear-gradient(180deg, rgba(244, 244, 244, 0) 0%, #f4f4f4 54.33%);
  width: 100px;
  bottom: 0;
  left: 0;
  height: 100%;
  position: absolute;
}
.furnitureProduction .wrapper .content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 38px;
  max-height: 800px;
  position: relative;
  margin-bottom: 46px;
  overflow: hidden;
}
.furnitureProduction .wrapper .content.active {
  max-height: 4000px;
}
.furnitureProduction .wrapper .content.active .showMoreContainer {
  opacity: 0;
  pointer-events: none;
}
.furnitureProduction .wrapper .content .preStepContainer {
  width: 100%;
  padding-bottom: 16px;
}
.furnitureProduction .wrapper .content .preStepContainer .line {
  width: 1px;
  height: 84px;
  background-color: var(--color_gray2);
  margin-left: 50%;
}
.furnitureProduction .wrapper .content .step {
  display: flex;
}
.furnitureProduction .wrapper .content .step.active .imageContainer .imageInner img {
  opacity: 1;
  transform: translateX(0);
}
.furnitureProduction .wrapper .content .step.active .stepContent h3 {
  transform: translateY(0);
  opacity: 1;
}
.furnitureProduction .wrapper .content .step.active .stepContent h4 {
  transform: translateY(0);
  opacity: 1;
  transition-delay: 0.2s;
}
.furnitureProduction .wrapper .content .step.active .stepContent p {
  transform: translateY(0);
  opacity: 1;
  transition-delay: 0.4s;
}
.furnitureProduction .wrapper .content .step:nth-of-type(2n + 1) .imageContainer {
  order: 3;
}
.furnitureProduction .wrapper .content .step:nth-of-type(2n + 1) .stepContent {
  order: -1;
  padding-right: 0;
  padding-left: 44px;
}
.furnitureProduction .wrapper .content .step .imageContainer {
  width: 45%;
}
.furnitureProduction .wrapper .content .step .imageContainer .imageInner {
  width: 100%;
  height: auto;
  overflow: hidden;
}
.furnitureProduction .wrapper .content .step .imageContainer .imageInner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: translateX(100%);
}
.furnitureProduction .wrapper .content .step .imageContainer .imageInner.type1 {
  border-radius: 100px;
  aspect-ratio: 340/200;
}
.furnitureProduction .wrapper .content .step .imageContainer .imageInner.type2 {
  aspect-ratio: 1/1;
  border-radius: 0 0 1000px 1000px;
}
.furnitureProduction .wrapper .content .step .imageContainer .imageInner.type3 {
  aspect-ratio: 308/340;
  border-radius: 1000px 0 0 0;
}
.furnitureProduction .wrapper .content .step .imageContainer .imageInner.type4 {
  aspect-ratio: 1/1;
  border-radius: 50%;
}
.furnitureProduction .wrapper .content .step .stepContent {
  width: 45%;
  padding-right: 44px;
}
.furnitureProduction .wrapper .content .step .stepContent h3 {
  font-size: 14px;
  font-weight: 400;
  line-height: 120%;
  text-decoration: none;
  font-family: "Martian Mono", monospace;
  font-optical-sizing: auto;
  margin-bottom: 8px;
  transform: translateY(-100%);
  opacity: 0;
}
.furnitureProduction .wrapper .content .step .stepContent h4 {
  font-size: 24px;
  font-weight: 300;
  line-height: 130%;
  text-transform: uppercase;
  margin-bottom: 16px;
  color: var(--color_gray1);
  transform: translateY(-100%);
  opacity: 0;
}
.furnitureProduction .wrapper .content .step .stepContent p {
  text-decoration: none;
  font-family: "Martian Mono", monospace;
  font-optical-sizing: auto;
  font-size: 16px;
  font-weight: 200;
  line-height: 150%;
  color: var(--color_gray1);
  transform: translateY(-100%);
  opacity: 0;
}
.furnitureProduction .wrapper .content .step .lines {
  width: 10%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
.furnitureProduction .wrapper .content .step .lines .point {
  width: 16px;
  height: 16px;
  border-radius: 0 100px 100px 0;
  background-color: var(--color_gray2);
}
.furnitureProduction .wrapper .content .step .lines .line {
  width: 1px;
  background-color: var(--color_gray2);
  flex-grow: 1;
}
.furnitureProduction .wrapper .content .showMoreContainer {
  position: absolute;
  width: 100%;
  height: 316px;
  bottom: 0;
  right: 0;
  background: linear-gradient(180deg, rgba(244, 244, 244, 0) 0%, #f4f4f4 54.33%);
  display: flex;
  align-items: end;
  opacity: 1;
  pointer-events: all;
}
.furnitureProduction .wrapper .content .showMoreContainer .showMoreButton {
  background-color: var(--color_gray1);
  font-size: 14px;
  font-weight: 400;
  line-height: 120%;
  text-decoration: none;
  font-family: "Martian Mono", monospace;
  font-optical-sizing: auto;
  padding: 24px 16px;
  border-radius: 0 100px 100px 0;
  backdrop-filter: blur(2px);
  color: var(--color_white);
  border: none;
  outline: none;
  cursor: pointer;
}

@media screen and (max-width: 1240px) {
  .furnitureProduction .wrapper {
    width: calc(100% - 32px);
    margin-inline: 16px;
    gap: 78px;
  }
  .furnitureProduction .wrapper h3 {
    font-size: 12px;
    font-weight: 400;
    line-height: 120%;
  }
  .furnitureProduction .wrapper h2 {
    font-size: 32px;
    font-weight: 400;
    line-height: 120%;
    text-transform: uppercase;
    width: 255px;
  }
  .furnitureProduction .wrapper .sidebar {
    width: 25%;
  }
  .furnitureProduction .wrapper .content {
    margin-bottom: 32px;
  }
  .furnitureProduction .wrapper .content .preStepContainer .line {
    margin-left: 48%;
  }
  .furnitureProduction .wrapper .content .step {
    gap: 32px;
    padding-right: 16px;
  }
  .furnitureProduction .wrapper .content .step .stepContent h3 {
    font-size: 12px;
    font-weight: 400;
    line-height: 120%;
  }
  .furnitureProduction .wrapper .content .step .stepContent h4 {
    font-size: 18px;
    font-weight: 300;
    line-height: 130%;
    text-transform: uppercase;
  }
  .furnitureProduction .wrapper .content .step .stepContent p {
    font-size: 12px;
    font-weight: 400;
    line-height: 120%;
  }
}
@media screen and (max-width: 768px) {
  .furnitureProduction .wrapper {
    width: calc(100% - 32px);
    margin-inline: 16px;
    flex-direction: column;
    gap: 78px;
    padding-top: 120px;
  }
  .furnitureProduction .wrapper h3 {
    font-size: 12px;
    font-weight: 400;
    line-height: 120%;
  }
  .furnitureProduction .wrapper h2 {
    font-size: 32px;
    font-weight: 400;
    line-height: 120%;
    text-transform: uppercase;
    width: 255px;
  }
  .furnitureProduction .wrapper .sidebar {
    width: 100%;
    padding-top: 0;
  }
  .furnitureProduction .wrapper .imagebackgroundContainer {
    position: absolute;
    left: 0;
    top: 0;
    pointer-events: none;
    width: 693px;
    transform: translateX(-50px) translateY(-120px);
    opacity: 0.2;
  }
  .furnitureProduction .wrapper .imagebackgroundContainer::after {
    content: "";
    background: linear-gradient(180deg, rgba(244, 244, 244, 0) 0%, #f4f4f4 54.33%);
    width: 100%;
    bottom: 0;
    left: 0;
    height: 316px;
    position: absolute;
  }
  .furnitureProduction .wrapper .imagebackgroundContainer::before {
    content: "";
    background: linear-gradient(180deg, rgba(244, 244, 244, 0) 0%, #f4f4f4 54.33%);
    width: 100px;
    bottom: 0;
    left: 0;
    height: 100%;
    position: absolute;
  }
  .furnitureProduction .wrapper .content {
    gap: 16px;
    max-height: 800px;
    margin-bottom: 32px;
  }
  .furnitureProduction .wrapper .content .preStepContainer {
    display: none;
  }
  .furnitureProduction .wrapper .content .step {
    flex-wrap: wrap;
    gap: 32px;
    padding-right: 16px;
  }
  .furnitureProduction .wrapper .content .step .imageContainer {
    width: 100%;
    order: 3;
  }
  .furnitureProduction .wrapper .content .step .imageContainer .imageInner {
    width: 100%;
  }
  .furnitureProduction .wrapper .content .step .stepContent {
    width: 100%;
    padding-left: 44px;
    order: -1;
  }
  .furnitureProduction .wrapper .content .step .stepContent h3 {
    font-size: 12px;
    font-weight: 400;
    line-height: 120%;
  }
  .furnitureProduction .wrapper .content .step .stepContent h4 {
    font-size: 18px;
    font-weight: 300;
    line-height: 130%;
    text-transform: uppercase;
  }
  .furnitureProduction .wrapper .content .step .stepContent p {
    font-size: 12px;
    font-weight: 400;
    line-height: 120%;
  }
  .furnitureProduction .wrapper .content .step .lines {
    position: absolute;
    left: 0;
    align-items: start;
    gap: 16px;
    height: 100%;
  }
  .furnitureProduction .wrapper .content .step .lines .line {
    height: 100%;
  }
  .furnitureProduction .wrapper .content .showMoreContainer {
    justify-content: center;
  }
}
/* ContactSection */
.contactSection {
  background-color: var(--color_backgroundDark);
  padding-top: 160px;
  width: 100%;
  position: relative;
}
.contactSection .contactContent {
  display: flex;
  margin-inline: auto;
  width: var(--container_wide);
}
.contactSection .contactContent .sidebar {
  padding-bottom: 247px;
}
.contactSection .contactContent .sidebar h2 {
  font-size: 14px;
  font-weight: 400;
  line-height: 120%;
  text-decoration: none;
  font-family: "Martian Mono", monospace;
  font-optical-sizing: auto;
  margin-bottom: 137px;
  color: var(--color_white);
}
.contactSection .contactContent .sidebar .title {
  padding-left: 20px;
  border-left: 2px solid var(--color_white);
  overflow: hidden;
}
.contactSection .contactContent .sidebar .title.active h3,
.contactSection .contactContent .sidebar .title.active h4 {
  transform: translateX(0);
  opacity: 1;
}
.contactSection .contactContent .sidebar .title h3 {
  font-size: 46px;
  font-weight: 400;
  line-height: 120%;
  text-transform: uppercase;
  margin-bottom: 16px;
  width: 505px;
  color: var(--color_white);
  transform: translateX(-150%);
  opacity: 0;
  transition: 0.7s ease all;
}
.contactSection .contactContent .sidebar .title h4 {
  font-size: 24px;
  font-weight: 300;
  line-height: 130%;
  text-transform: uppercase;
  color: var(--color_white);
  transform: translateX(-150%);
  opacity: 0;
  transition: 0.7s ease all;
}
.contactSection .contactContent .mainContact {
  background: url(../img/contact/background.webp) no-repeat center center/cover;
  width: 60%;
  position: absolute;
  top: 160px;
  right: 0;
  height: calc(100% - 160px);
  padding-inline: 32px;
  display: flex;
  align-items: start;
}
.contactSection .contactContent .mainContact .formWrapper {
  margin-bottom: 59px;
  background-color: var(--color_backgroundDark);
  border-radius: 0 0 192px 192px;
  padding: 23px 44px 60px;
  width: auto;
  overflow: hidden;
}
.contactSection .contactContent .mainContact .formWrapper.active .formContainer fieldset {
  transform: translateY(0);
  opacity: 1;
}
.contactSection .contactContent .mainContact .formWrapper.active .formContainer .buttonContainer {
  opacity: 1;
}
.contactSection .contactContent .mainContact .formWrapper .formContainer {
  width: 295px;
}
.contactSection .contactContent .mainContact .formWrapper .formContainer label {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  border: 0;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-clip-path: inset(100%);
  clip-path: inset(100%);
  white-space: nowrap;
}
.contactSection .contactContent .mainContact .formWrapper .formContainer fieldset {
  outline: none;
  border: none;
  padding: 0;
  margin: 0;
  width: 295px;
  transform: translateY(-200%);
  opacity: 0;
  transition: 0.5s ease all;
}
.contactSection .contactContent .mainContact .formWrapper .formContainer fieldset:nth-of-type(2) {
  transition-delay: 0.3s;
}
.contactSection .contactContent .mainContact .formWrapper .formContainer fieldset:nth-of-type(3) {
  transition-delay: 0.6s;
}
.contactSection .contactContent .mainContact .formWrapper .formContainer input {
  width: 100%;
  background-color: transparent;
  border: none;
  outline: none;
  padding-block: 8px;
  border-bottom: 1px solid var(--color_white);
  color: var(--color_white);
  margin-bottom: 24px;
}
.contactSection .contactContent .mainContact .formWrapper .formContainer input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0px 1000px transparent inset !important;
  -webkit-text-fill-color: var(--color_white) !important;
  transition: background-color 9999s ease-in-out 0s;
}
.contactSection .contactContent .mainContact .formWrapper .formContainer .buttonContainer {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 140px;
  opacity: 0;
  transition-delay: 0.8s;
}
.contactSection .contactContent .mainContact .formWrapper .formContainer .buttonContainer .submitButton {
  padding: 16px 24px;
  color: var(--color_white);
  border-radius: 0 100px 100px 0;
  background-color: var(--color_gray1);
  border: none;
  outline: none;
  font-size: 14px;
  font-weight: 400;
  line-height: 120%;
  text-decoration: none;
  font-family: "Martian Mono", monospace;
  font-optical-sizing: auto;
  margin-top: 8px;
  cursor: pointer;
}
.contactSection .contactContent .mainContact .formWrapper .socialsContainer {
  display: flex;
  justify-content: center;
  gap: 32px;
  align-items: center;
}

@media screen and (max-width: 1240px) {
  .contactSection .contactContent {
    width: calc(100% - 32px);
  }
  .contactSection .contactContent .sidebar h2 {
    font-size: 12px;
    font-weight: 400;
    line-height: 120%;
  }
  .contactSection .contactContent .sidebar .title h3 {
    font-size: 32px;
    font-weight: 400;
    line-height: 120%;
    text-transform: uppercase;
    width: 321px;
  }
  .contactSection .contactContent .sidebar .title h4 {
    font-size: 18px;
    font-weight: 300;
    line-height: 130%;
    text-transform: uppercase;
  }
}
@media screen and (max-width: 768px) {
  .contactSection {
    padding-top: 120px;
  }
  .contactSection .contactContent {
    flex-direction: column;
  }
  .contactSection .contactContent .sidebar {
    padding-bottom: 80px;
  }
  .contactSection .contactContent .sidebar h2 {
    margin-bottom: 32px;
  }
  .contactSection .contactContent .mainContact {
    position: static;
    width: calc(100% + 32px);
    transform: translateX(-16px);
    height: calc(100% - 160px);
    padding-inline: 56px;
  }
  .contactSection .contactContent .mainContact .formWrapper {
    width: 100%;
    margin-bottom: 206px;
    padding: 24px 24px 32px 24px;
  }
  .contactSection .contactContent .mainContact .formWrapper .formContainer {
    width: 100%;
  }
  .contactSection .contactContent .mainContact .formWrapper .formContainer fieldset {
    width: 100%;
  }
  .contactSection .contactContent .mainContact .formWrapper .formContainer input {
    margin-bottom: 16px;
  }
  .contactSection .contactContent .mainContact .formWrapper .formContainer .buttonContainer {
    margin-bottom: 24px;
  }
  .contactSection .contactContent .mainContact .formWrapper .formContainer .buttonContainer .submitButton {
    padding: 16px 16px;
  }
}
/* Footer */
.footerMain {
  background-color: var(--color_black);
}
.footerMain .flexFooter {
  width: 100%;
  height: 174px;
  display: flex;
  overflow: hidden;
}
.footerMain .flexFooter .contactBlock {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 650px;
  padding: 43px 46px;
  background-color: var(--color_gray1);
  border-radius: 212px;
}
.footerMain .flexFooter .contactBlock .contactBlockWrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 20px 40px;
}
.footerMain .flexFooter .contactBlock .title {
  color: var(--color_white);
  font-size: 14px;
  font-weight: 400;
  line-height: 120%;
  text-decoration: none;
  font-family: "Martian Mono", monospace;
  font-optical-sizing: auto;
  margin-bottom: 16px;
  display: inline;
  white-space: nowrap;
}
.footerMain .flexFooter .contactBlock .phone {
  font-size: 24px;
  font-weight: 300;
  line-height: 130%;
  text-transform: uppercase;
  color: var(--color_white);
  white-space: nowrap;
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
}
.footerMain .flexFooter .contactBlock .name {
  text-decoration: none;
  font-family: "Martian Mono", monospace;
  font-optical-sizing: auto;
  font-size: 16px;
  font-weight: 200;
  line-height: 150%;
  color: var(--color_white);
  white-space: nowrap;
}
.footerMain .flexFooter .imageContainer {
  border-radius: 210px 210px 0 0;
  height: 100%;
  width: auto;
  aspect-ratio: 274/173;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}
.footerMain .flexFooter .imageContainer img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.footerMain .flexFooter .socialsContainer {
  max-width: 600px;
  margin-left: auto;
  background-color: var(--color_gray1);
  border-radius: 210px 0 0 210px;
  display: flex;
  flex-direction: column;
  padding: 17px 102px 17px 71px;
  gap: 20px;
  align-items: center;
  flex-grow: 1;
}
.footerMain .footerFooter {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 16px;
  width: var(--container_wide);
  margin-inline: auto;
}
.footerMain .footerFooter .links {
  display: flex;
  gap: 16px;
  align-items: center;
  height: 0px;
  opacity: 0;
  pointer-events: none;
}
.footerMain .footerFooter .links .link {
  font-size: 14px;
  font-weight: 400;
  line-height: 120%;
  color: var(--color_gray2);
}
.footerMain .footerFooter .vau {
  font-size: 14px;
  font-weight: 400;
  line-height: 120%;
  color: var(--color_gray2);
}

@media screen and (max-width: 1240px) {
  .footerMain .flexFooter .siteLogo {
    display: none;
  }
  .footerMain .flexFooter .imageContainer {
    display: none;
  }
  .footerMain .flexFooter .socialsContainer {
    padding: 17px 10px 17px 30px;
  }
  .footerMain .footerFooter {
    width: calc(100% - 32px);
  }
}
@media screen and (max-width: 768px) {
  .footerMain {
    padding: 32px 24px;
  }
  .footerMain .flexFooter {
    height: auto;
    flex-direction: column;
  }
  .footerMain .flexFooter .siteLogo {
    display: grid;
    margin-bottom: 25px;
  }
  .footerMain .flexFooter .imageContainer {
    display: block;
    margin-bottom: 32px;
  }
  .footerMain .flexFooter .contactBlock {
    padding: 87px 46px;
  }
  .footerMain .flexFooter .imageContainer {
    width: 100%;
    height: auto;
  }
  .footerMain .flexFooter .socialsContainer {
    margin-left: inherit;
    background-color: transparent;
    border-radius: 0;
    flex-direction: row;
    padding: 0;
    gap: 32px;
    justify-content: center;
    margin-bottom: 46px;
  }
  .footerMain .footerFooter {
    flex-direction: column;
  }
  .footerMain .footerFooter .links {
    flex-direction: column;
    margin-bottom: 24px;
  }
  .footerMain .footerFooter .links .link {
    font-size: 14px;
    font-weight: 400;
    line-height: 120%;
    color: var(--color_gray2);
  }
  .footerMain .footerFooter .vau {
    font-size: 14px;
    font-weight: 400;
    line-height: 120%;
    color: var(--color_gray2);
  }
}
/* Portfolio Big */
.portfolioBig {
  background-color: var(--color_backgroundDark);
  padding-block: 32px 160px;
  margin-top: 72px;
  min-height: calc(100dvh - 72px - 222px);
}
.portfolioBig .wrapper {
  width: var(--container_wide);
  margin-inline: auto;
}
.portfolioBig .wrapper .filterBlock {
  margin-top: 24px;
  display: flex;
  justify-content: space-between;
  margin-bottom: 32px;
}
.portfolioBig .wrapper .filterBlock h1 {
  font-size: 46px;
  font-weight: 400;
  line-height: 120%;
  text-transform: uppercase;
  color: var(--color_white);
}
.portfolioBig .wrapper .filterBlock .filterInner {
  display: flex;
  gap: 22px;
  align-items: center;
}
.portfolioBig .wrapper .filterBlock .filterInner .filterButton {
  padding: 13px 24px;
  text-decoration: none;
  font-family: "Martian Mono", monospace;
  font-optical-sizing: auto;
  font-size: 16px;
  font-weight: 200;
  line-height: 150%;
  color: var(--color_white);
  background-color: transparent;
  border-radius: 25.5px;
  border: none;
  outline: none;
  cursor: pointer;
  white-space: nowrap;
}
.portfolioBig .wrapper .filterBlock .filterInner .filterButton.active, .portfolioBig .wrapper .filterBlock .filterInner .filterButton:hover {
  background-color: var(--color_gray8);
}
.portfolioBig .wrapper .portfolioContainer {
  display: flex;
  gap: 21px;
  flex-wrap: wrap;
}
.portfolioBig .wrapper .portfolioContainer .portfolioCard {
  width: calc(33.3% - 14px);
  flex-grow: 0;
  flex-shrink: 0;
  position: relative;
  aspect-ratio: 400/491;
  overflow: hidden;
}
.portfolioBig .wrapper .portfolioContainer .portfolioCard:hover .cardHeader {
  transform: translateY(0);
}
.portfolioBig .wrapper .portfolioContainer .portfolioCard.hidden {
  display: none;
}
.portfolioBig .wrapper .portfolioContainer .portfolioCard .cardHeader {
  width: 100%;
  height: 114px;
  padding-top: 24px;
  padding-inline: 24px;
  background-color: rgba(27, 27, 27, 0.6);
  display: flex;
  justify-content: space-between;
  align-items: start;
  position: relative;
  z-index: 1;
  transform: translateY(-100%);
}
.portfolioBig .wrapper .portfolioContainer .portfolioCard .cardHeader h3 {
  color: var(--color_white);
  font-size: 24px;
  font-weight: 300;
  line-height: 130%;
  text-transform: uppercase;
}
.portfolioBig .wrapper .portfolioContainer .portfolioCard .imageContiner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.portfolioBig .wrapper .portfolioContainer .portfolioCard .imageContiner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.portfolioBig .wrapper .portfolioContainer .noPortfolioBlock {
  opacity: 0;
  pointer-events: all;
}
.portfolioBig .wrapper .portfolioContainer .noPortfolioBlock.hidden {
  opacity: 0;
  pointer-events: none;
}
.portfolioBig .wrapper .portfolioContainer .noPortfolioBlock h2 {
  font-size: 24px;
  font-weight: 300;
  line-height: 130%;
  text-transform: uppercase;
  color: var(--color_white);
}

@media screen and (max-width: 1240px) {
  .portfolioBig {
    padding-block: 32px 120px;
    margin-top: 60px;
    min-height: calc(100dvh - 60px - 222px);
  }
  .portfolioBig .wrapper {
    width: 100%;
    padding-inline: 16px;
  }
  .portfolioBig .wrapper .filterBlock {
    margin-top: 24px;
    gap: 16px;
  }
  .portfolioBig .wrapper .filterBlock h1 {
    font-size: 32px;
    font-weight: 400;
    line-height: 120%;
    text-transform: uppercase;
  }
  .portfolioBig .wrapper .filterBlock .filterInner {
    gap: 24px;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
  }
  .portfolioBig .wrapper .filterBlock .filterInner .filterButton {
    font-size: 12px;
    font-weight: 400;
    line-height: 120%;
  }
  .portfolioBig .wrapper .filterBlock .filterInner::-webkit-scrollbar {
    display: none;
  }
  .portfolioBig .wrapper .portfolioContainer {
    gap: 24px;
  }
  .portfolioBig .wrapper .portfolioContainer .portfolioCard {
    width: calc(50% - 12px);
    aspect-ratio: 342/428;
  }
  .portfolioBig .wrapper .portfolioContainer .portfolioCard .cardHeader {
    transform: translateY(0);
  }
}
@media screen and (max-width: 768px) {
  .portfolioBig {
    padding-block: 32px 120px;
    margin-top: 60px;
    min-height: calc(100dvh - 60px - 1000px);
  }
  .portfolioBig .wrapper .filterBlock {
    flex-direction: column;
  }
  .portfolioBig .wrapper .portfolioContainer .portfolioCard {
    width: 100%;
  }
}
/* caseSection */
.caseSection {
  background-color: var(--color_backgroundDark);
}
.caseSection .wrapper {
  width: var(--container_wide);
  margin-inline: auto;
  padding-block: 32px 160px;
  margin-top: 72px;
}
.caseSection .wrapper .caseSectionHeader {
  margin-bottom: 46px;
}
.caseSection .wrapper .caseSectionHeader h1 {
  font-size: 46px;
  font-weight: 400;
  line-height: 120%;
  text-transform: uppercase;
  color: var(--color_white);
  margin-top: 32px;
}
.caseSection .wrapper .mainContent .images {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 60px;
}
.caseSection .wrapper .mainContent .images .imageContainer {
  width: calc(50% - 10px);
  height: auto;
  aspect-ratio: 610/420;
  cursor: url("../img/loop.svg") 10 10, auto;
}
.caseSection .wrapper .mainContent .images .imageContainer img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.caseSection .wrapper .mainContent .textContent .aboutProject {
  width: 506px;
  margin-bottom: 46px;
}
.caseSection .wrapper .mainContent .textContent .aboutProject h3 {
  font-size: 14px;
  font-weight: 400;
  line-height: 120%;
  color: var(--color_white);
  text-decoration: none;
  font-family: "Martian Mono", monospace;
  font-optical-sizing: auto;
}
.caseSection .wrapper .mainContent .textContent .aboutProject p {
  text-decoration: none;
  font-family: "Martian Mono", monospace;
  font-optical-sizing: auto;
  font-size: 16px;
  font-weight: 200;
  line-height: 150%;
  color: var(--color_white);
}
.caseSection .wrapper .mainContent .textContent .mainTextContent h2 {
  font-size: 14px;
  font-weight: 400;
  line-height: 120%;
  color: var(--color_white);
  margin-bottom: 16px;
}
.caseSection .wrapper .mainContent .textContent .mainTextContent .flexContainer {
  display: flex;
  gap: 65px;
}
.caseSection .wrapper .mainContent .textContent .mainTextContent .flexContainer .textSection {
  flex: 1 1;
}
.caseSection .wrapper .mainContent .textContent .mainTextContent .flexContainer .textSection p {
  text-decoration: none;
  font-family: "Martian Mono", monospace;
  font-optical-sizing: auto;
  font-size: 16px;
  font-weight: 200;
  line-height: 150%;
  color: var(--color_white);
}
.caseSection .wrapper .mainContent .textContent .mainTextContent .flexContainer .textSection p b {
  font-family: "Martian Mono", monospace;
  font-weight: 700;
}

@media screen and (max-width: 1240px) {
  .caseSection .wrapper {
    width: 100%;
    padding-inline: 16px;
    padding-block: 32px 80px;
    margin-top: 60px;
  }
  .caseSection .wrapper .caseSectionHeader {
    margin-bottom: 32px;
  }
  .caseSection .wrapper .caseSectionHeader h1 {
    font-size: 32px;
    font-weight: 400;
    line-height: 120%;
    text-transform: uppercase;
    margin-top: 24px;
  }
  .caseSection .wrapper .mainContent .textContent .aboutProject {
    width: 506px;
    margin-bottom: 60px;
  }
  .caseSection .wrapper .mainContent .textContent .aboutProject p {
    font-size: 14px;
    font-weight: 200;
    line-height: 150%;
  }
  .caseSection .wrapper .mainContent .textContent .mainTextContent h2 {
    font-size: 14px;
    font-weight: 400;
    line-height: 120%;
    color: var(--color_white);
    margin-bottom: 16px;
  }
  .caseSection .wrapper .mainContent .textContent .mainTextContent .flexContainer {
    gap: 32px;
  }
  .caseSection .wrapper .mainContent .textContent .mainTextContent .flexContainer .textSection p {
    font-size: 14px;
    font-weight: 200;
    line-height: 150%;
  }
  .caseSection .wrapper .mainContent .textContent .mainTextContent .flexContainer .textSection p b {
    font-weight: 700;
  }
}
@media screen and (max-width: 768px) and (max-width: 1240px) {
  .caseSection .wrapper .caseSectionHeader {
    margin-bottom: 32px;
  }
  .caseSection .wrapper .caseSectionHeader h1 {
    font-size: 32px;
    font-weight: 400;
    line-height: 120%;
    text-transform: uppercase;
    margin-top: 24px;
  }
  .caseSection .wrapper .mainContent .images .imageContainer {
    width: 100%;
  }
  .caseSection .wrapper .mainContent .textContent .aboutProject {
    width: 100%;
  }
  .caseSection .wrapper .mainContent .textContent .mainTextContent .flexContainer {
    flex-direction: column;
  }
}
/* Popup */
.dialog {
  position: fixed;
  top: 0;
  left: 0;
  width: 100dvw;
  height: 100dvh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 1200;
  pointer-events: none;
  opacity: 0;
  padding: 0;
  margin: 0;
  border: none;
}
.dialog.active {
  opacity: 1;
  pointer-events: all;
}
.dialog .wrapper {
  width: 80%;
  height: 80%;
  position: relative;
}
.dialog .wrapper .popupImageContainer {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.dialog .wrapper .popupImageContainer img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.dialog .wrapper .close {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: var(--color_backgroundDark);
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: none;
  outline: none;
  cursor: pointer;
}
.dialog .wrapper .constolsContinaer {
  display: flex;
  width: 100%;
  position: absolute;
  top: 50%;
  justify-content: space-between;
  transform: translateY(-50%);
  padding-inline: 20px;
}
.dialog .wrapper .constolsContinaer .control {
  background-color: var(--color_backgroundDark);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--color_white);
  transform: scale(1);
  border: none;
  outline: none;
  cursor: pointer;
}
.dialog .wrapper .constolsContinaer .control:hover {
  transform: scale(1.2);
}

@media screen and (max-width: 1240px) {
  .dialog .wrapper {
    width: 100%;
    height: 100%;
    padding: 20px;
  }
}

/*# sourceMappingURL=styles.css.map */
