@charset "UTF-8";
@font-face {
  font-family: "Gilroy-Bold";
  src: local("Gilroy-Bold"), url(../fonts/Gilroy-Bold) format("truetype");
}
@font-face {
  font-family: "Gilroy-Medium";
  src: local("Gilroy-Medium"), url(../fonts/Gilroy-Medium.ttf) format("truetype");
}
@font-face {
  font-family: "Gilroy-Regular";
  src: local("Gilroy-Regular"), url(../fonts/Gilroy-Regular.ttf) format("truetype");
}
@font-face {
  font-family: "Gilroy-SemiBold";
  src: local("Gilroy-SemiBold"), url(../fonts/Gilroy-SemiBold.ttf) format("truetype");
}
@font-face {
  font-family: "Gilroy-ExtraBold";
  src: local("Gilroy-ExtraBold"), url(../fonts/Gilroy-ExtraBold.ttf) format("truetype");
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Gilroy-Regular", sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #000;
  background-color: #fff;
  overflow-x: hidden;
}
body.active {
  overflow: hidden;
}

img {
  vertical-align: top;
}

ul,
ol,
li {
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
}

._ibg {
  position: relative;
}
._ibg img {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  object-fit: cover;
}

input,
button {
  border: none;
  font-family: inherit;
  font-size: inherit;
}

input:focus,
button:focus {
  outline: none;
}

a {
  text-decoration: none;
  color: inherit;
}

._container {
  max-width: 1545px;
  margin: 0 auto;
  padding: 0px 15px;
  box-sizing: content-box;
}

.wrap {
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.title {
  display: flex;
  align-items: center;
  gap: 20px;
}

.title__line {
  width: 35px;
  height: 2px;
  background-color: #f80;
}

.title__text {
  font-weight: 400;
  font-size: 34px;
  line-height: 176%;
  color: #000;
}

.bold {
  font-family: "Gilroy-Medium", sans-serif;
  font-weight: 500;
}

.button-white {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 15px;
  border: 3px solid #282828;
  transition: all 0.2s linear;
  padding: 18px 20px;
  color: #000;
  border-radius: 5px;
  width: 100%;
  max-width: 322px;
  justify-content: center;
  text-align: center;
}

.button-white__icon path {
  transition: all 0.2s linear;
}

.button-black__icon path {
  transition: all 0.2s linear;
}

.button-white__text {
  font-weight: 600;
  font-size: 14px;
  line-height: 100%;
  text-transform: uppercase;
  text-align: center;
  font-family: "Gilroy-SemiBold", sans-serif;
  white-space: nowrap;
}

.button-black {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 15px;
  background-color: #282828;
  border: 3px solid #282828;
  padding: 18px 20px;
  border-radius: 5px;
  color: #fff;
  transition: all 0.2s linear;
  width: 100%;
  max-width: 322px;
  justify-content: center;
  text-align: center;
}
@media (max-width: 768px) {
  .button-black {
    background-color: #f80 !important;
    border-color: #f80 !important;
  }
}

.button-black__text {
  font-weight: 600;
  font-size: 14px;
  line-height: 100%;
  text-transform: uppercase;
  text-align: center;
  font-family: "Gilroy-SemiBold", sans-serif;
  white-space: nowrap;
}

@media (hover: hover) {
  .button-black:hover {
    background-color: #f80 !important;
    border-color: #f80;
    color: #fff !important;
  }
  .button-black:hover .button-black__icon path {
    fill: #fff !important;
  }
  .button-white:hover {
    background-color: #7c7c7c;
    border: 3px solid #f80;
    color: #fff;
  }
  .button-white:hover .button-white__icon path {
    fill: #f80;
  }
  .scale:hover {
    transform: scale(120%);
  }
  .social:hover path {
    fill: #f80;
  }
}
@media (max-width: 528px) {
  .button-white {
    gap: 5px;
    padding: 13px 13px;
    border-radius: 5px;
  }
  .button-white__text {
    font-size: 10px;
  }
  .button-black {
    gap: 5px;
    padding: 13px 18px;
    border-radius: 5px;
  }
  .button-black__text {
    font-size: 10px;
  }
}
.big {
  font-family: "Gilroy-ExtraBold", sans-serif;
}

.orange {
  font-family: "Gilroy-Medium", sans-serif !important;
  color: #f80 !important;
}

.bold {
  font-family: "Gilroy-Medium", sans-serif !important;
}

.underline {
  text-decoration: underline;
}

.scale {
  transition: all 0.2s linear;
  transform: scale(100%);
}

.scale-text {
  transition: all 0.2s linear;
  transform: scale(100%);
  cursor: pointer;
}

.bold-text {
  font-weight: 700;
}

.social path {
  transition: all 0.2s linear;
}

.link-header {
  cursor: pointer;
}

.mobile-only-social {
  display: none;
}

@media (max-width: 768px) {
  .mobile-only-social {
    display: inline-flex;
  }
}

@media (max-width: 1250px) {
  .button-white {
    border-width: 2px;
  }
  .button-black {
    border-width: 2px;
  }
  .button-white:hover {
    border-width: 2px;
  }
}
.title-big {
  font-family: "Gilroy-Medium", sans-serif !important;
  font-weight: 500 !important;
}

input:focus {
  border-color: #f80 !important;
}

textarea:focus {
  border-color: #f80 !important;
  outline: none !important;
}

.brands__container {
  padding: 20px 0px;
  display: flex;
  align-items: baseline;
  justify-content: flex-end;
  gap: 50px;
}

.brands {
  border-bottom: 1px solid #ddd;
  border-top: 1px solid #ddd;
}
.brands__content {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 50px;
  animation: scrollLine 13s linear infinite;
}
@media (max-width: 528px) {
  .brands__content {
    animation: scrollLine-mobile 13s linear infinite;
  }
}

@media (max-width: 528px) {
  .brands__container {
    gap: 30px;
  }
}

@keyframes scrollLine {
  to {
    transform: translateX(calc(100% + 50px));
  }
}
@keyframes scrollLine-mobile {
  to {
    transform: translateX(calc(100% + 30px));
  }
}
.steps {
  padding: 70px 0px;
}

.steps__title {
  margin-bottom: 35px;
}

.steps__content {
  display: flex;
  flex-wrap: wrap;
  row-gap: 50px;
  column-gap: 35px;
  justify-content: center;
}

.steps__item {
  cursor: pointer;
  flex: 0 1 100%;
  transition: all 0.2s linear;
  border: 3px solid #ddd;
  border-radius: 15px;
  padding: 20px;
  max-width: 470px;
}

.steps__item:hover {
  border: 3px solid #f80;
}

.active-number {
  background-color: #f80;
}

.steps__info {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 7px;
}

.steps__name {
  font-family: "Gilroy-SemiBold", sans-serif;
  font-size: 20px;
  font-weight: 500;
}

.steps__number-container {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  border-radius: 5px;
  transition: all 0.2s linear;
  background-color: #282828;
  justify-content: center;
}

.steps__number {
  font-family: "Gilroy-Medium", sans-serif;
  font-size: 18px;
  line-height: 156%;
  color: #fff;
}

.steps__text {
  max-width: 371px;
  font-size: 16px;
  line-height: 175%;
}

.active-number {
  background-color: #f80;
}

@media (max-width: 1634px) {
  .mobile-active-number {
    background-color: #f80;
  }
  .mobile-inactive-number {
    background-color: #282828;
  }
}
@media (max-width: 1025px) {
  .steps {
    padding: 30px 0px;
  }
  .steps__title {
    font-size: 24px;
    line-height: 250%;
    margin-bottom: 30px;
  }
  .steps__content {
    row-gap: 40px;
    column-gap: 30px;
  }
  .steps__item {
    position: relative;
    border-radius: 5px;
    border: 1.5px solid #ddd;
    max-width: 418px;
    padding: 10px;
  }
  .steps__number-container {
    position: absolute;
    top: 0px;
    right: 15px;
    transform: translateY(-50%);
    border-radius: 50%;
    width: 37px;
    height: 37px;
  }
  .steps__number {
    font-size: 14px;
  }
  .steps__name {
    font-size: 16px;
    margin-bottom: 10px;
  }
  .steps__text {
    font-size: 14px;
    line-height: 200%;
    max-width: none;
  }
}
@media (max-width: 528px) {
  .steps {
    padding: 20px 0px;
  }
  .steps__title {
    font-size: 20px;
    line-height: 150%;
    margin-bottom: 35px;
  }
  .steps__content {
    gap: 30px;
  }
}
@media (max-width: 1250px) {
  .steps__item {
    border-width: 2px;
  }
  .steps__item:hover {
    border-width: 2px;
  }
}
@media (max-width: 895px) {
  .steps__number-container {
    background-color: #282828;
  }
  .step-small {
    background-color: #f80;
  }
}
.works {
  padding: 30px 0px 50px 0px;
  border-top: 1px solid #ddd;
  position: relative;
}

.works__title {
  font-weight: 400;
  font-size: 28px;
  text-align: center;
  margin-bottom: 30px;
}

.works__content {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
}
.works__content .swiper {
  overflow: visible !important;
}

.works__item {
  border-radius: 30px;
  box-shadow: 10px 10px 45px 0 rgba(0, 0, 0, 0.05);
  background: #fff;
  padding: 25px;
  width: 391px;
}

.works__slides {
  display: flex;
  gap: 20px;
}
.works__slides.swiper {
  overflow: visible !important;
}

.prev-work {
  cursor: pointer;
  position: absolute;
  left: 150px;
  top: 50%;
  transform: translateY(-80%) scale(100%);
  transition: all 0.2s linear;
  z-index: 8;
}
.prev-work.swiper-button-disabled {
  display: none;
}

.next-work {
  cursor: pointer;
  position: absolute;
  right: 50px;
  top: 50%;
  transform: translateY(-80%) scale(100%);
  transition: all 0.2s linear;
  z-index: 8;
}
.next-work.swiper-button-disabled {
  display: none;
}

.prev-work.active {
  animation: buttonScaleWork 0.4s linear 1;
}

.next-work.active {
  animation: buttonScaleWork 0.4s linear 1;
}

@keyframes buttonScaleWork {
  0% {
    transform: translateY(-80%) scale(100%);
  }
  50% {
    transform: translateY(-80%) scale(92%);
  }
  100% {
    transform: translateY(-80%) scale(100%);
  }
}
.works__decor {
  margin-bottom: 20px;
}

.works__name {
  font-family: "Gilroy-SemiBold", sans-serif;
  font-size: 18px;
  line-height: 133%;
  color: #2b2b2b;
  margin-bottom: 15px;
}

.works__subname {
  font-family: "Gilroy-Medium", sans-serif;
  font-size: 14px;
  line-height: 171%;
  color: #868686;
  margin-bottom: 20px;
}

.works__text {
  font-weight: 400;
  font-size: 15px;
  line-height: 160%;
  color: #282828;
}

.works__buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
}

@keyframes scrollRev {
  0% {
    transform: translateX(0%);
  }
  50% {
    transform: translateX(calc(-100% + 100vw - 150px));
  }
  100% {
    transform: translateX(0%);
  }
}
@media (max-width: 1250px) {
  .works__title {
    margin-bottom: 20px;
    font-size: 24px;
  }
  .next-work {
    display: none;
  }
  .prev-work {
    display: none;
  }
  .works__content {
    margin-bottom: 20px;
  }
  .works__item {
    border-radius: 30px;
    padding: 15px;
    min-width: 279px;
  }
  .works__name {
    font-size: 14px;
    margin-bottom: 2px;
  }
  .works__subname {
    font-size: 12px;
    margin-bottom: 8px;
  }
  .works__text {
    font-size: 12px;
    line-height: 200%;
  }
}
@media (max-width: 528px) {
  .works {
    padding: 30px 0px;
  }
  .works__title {
    font-size: 20px;
    max-width: 312px;
    margin: 0px auto 20px auto;
  }
  .works__item {
    border-radius: 10px;
    padding: 10px;
    min-width: 279px;
  }
  .works__buttons {
    gap: 5px;
  }
}
@media (hover: hover) {
  .next-work:hover {
    transform: translateY(-80%) scale(110%);
  }
  .prev-work:hover {
    transform: translateY(-80%) scale(110%);
  }
}
.goods {
  position: relative;
  padding: 25px 0px;
  border-top: 1px solid #ddd;
  overflow: hidden;
  --goods-nav-top: 50%;
}

.goods__container {
  position: relative;
  overflow: hidden;
}

.goods__title {
  margin-bottom: 20px;
}

.goods__tabs {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 27px;
  flex-wrap: wrap;
}

.goods__tab-content {
  display: none;
  align-items: center;
  gap: 8px;
  margin-bottom: 27px;
  flex-wrap: wrap;
  width: 100%;
}
.goods__tab-content.active {
  display: flex;
}

.goods__tab {
  cursor: pointer;
  font-family: "Gilroy-Medium", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 115%;
  text-align: center;
  color: #fff;
  border: 3px solid #3f3f3f;
  border-radius: 3px;
  padding: 12px 13px;
  color: #282828;
  padding: 12px 31px;
  transition: all 0.2s linear;
  font-family: "Gilroy-SemiBold", sans-serif;
  font-weight: 500;
}

.active-title {
  border-radius: 3px;
  border: 3px solid #f80;
  color: #fff;
  background-color: #f80 !important;
}

.goods__slider {
  display: none;
}

.goods__content {
  margin-bottom: 35px;
}

.goods__row {
  display: flex;
  gap: 25px;
  flex-wrap: nowrap;
  overflow: visible;
}
.goods__row:not(:last-child) {
  margin-bottom: 25px;
}
.goods__row.is-filter-hidden {
  display: none !important;
}

.active-tab {
  display: block;
}

.prev-good.swiper-button-disabled ~ .goods__buttons {
  padding-left: 0px;
}

.goods__item {
  max-width: 356px;
  flex: 0 1 25%;
  position: relative;
  z-index: 1;
}
.goods__item.is-filter-hidden {
  display: none !important;
}

.goods__image {
  margin-bottom: 15px;
}
.goods__image img {
  width: 100%;
}

.goods__content.is-filter-hidden {
  display: none !important;
}

.goods__name {
  font-family: "Gilroy-Medium", sans-serif;
  font-size: 18px;
  text-decoration: underline;
  text-decoration-skip-ink: none;
  color: #282828;
  transition: color 0.2s linear;
}

.goods__text {
  font-weight: 400;
  font-size: 14px;
  color: #000;
}

.goods__buttons {
  display: flex;
  align-items: center;
  gap: 25px;
  padding-left: 70px;
}

.prev-good {
  cursor: pointer;
  position: absolute;
  left: 10px;
  top: var(--goods-nav-top, 50%);
  z-index: 8;
  transform: translateY(-50%) scale(1);
  transition: transform 0.2s ease;
}
@media (max-width: 1750px) {
  .prev-good {
    left: 133px;
  }
}

.next-good {
  cursor: pointer;
  position: absolute;
  right: 0px;
  top: var(--goods-nav-top, 50%);
  margin-top: 0;
  z-index: 8;
  transform: translateY(-50%) scale(1);
  transition: transform 0.2s ease;
}

.prev-good.swiper-button-disabled {
  display: none;
}

.next-good.swiper-button-disabled {
  display: none;
}

.prev-good.active,
.next-good.active {
  transform: translateY(-50%) scale(1.08);
}

@media (max-width: 1500px) {
  .next-good {
    display: none;
  }
  .prev-good {
    display: none;
  }
}
@media (max-width: 1025px) {
  .goods {
    padding: 16px 0px 40px;
  }
  .goods__title {
    font-size: 24px;
    line-height: 250%;
    margin-bottom: 15px;
  }
  .goods__content {
    margin-bottom: 0px;
  }
  .goods__row {
    gap: 20px;
  }
  .goods__row:not(:last-child) {
    margin-bottom: 20px;
  }
  .goods__image {
    margin-bottom: 10px;
  }
  .goods__name {
    font-family: "Gilroy-Medium", sans-serif;
    font-size: 18px;
    text-decoration: underline;
    text-decoration-skip-ink: none;
    color: #282828;
  }
  .goods__buttons {
    display: none;
  }
}
@media (max-width: 528px) {
  .goods {
    padding: 30px 0px;
  }
  .goods__title {
    font-size: 20px;
    line-height: 105%;
    margin-bottom: 20px;
  }
  .goods__tabs {
    gap: 5px;
    margin-bottom: 20px;
  }
  .goods__tab {
    font-size: 12px;
    line-height: 134%;
    padding: 8px 21px;
  }
  .goods__row {
    gap: 5px;
  }
  .goods__row:not(:last-child) {
    margin-bottom: 15px;
  }
  .goods__image {
    margin-bottom: 5px;
  }
  .goods__name {
    font-size: 12px;
  }
}
@media (max-width: 1250px) {
  .goods__tab {
    border-width: 2px;
  }
  .goods__tab:hover {
    border-width: 2px;
  }
  .active-tab {
    border-width: 2px;
  }
}
@media (hover: hover) {
  .next-good:hover {
    transform: translateY(-50%) scale(1.05);
  }
  .prev-good:hover {
    transform: translateY(-50%) scale(1.05);
  }
  .goods__tab:hover {
    border-radius: 3px;
    background-color: #282828 !important;
    border: 3px solid #f80;
    color: #fff;
  }
  .goods__item {
    transition: transform 0.2s ease;
  }
  .goods__item:hover {
    transform: scale(1.02);
  }
  .goods__item:hover .goods__name {
    color: #f80;
  }
}
.who {
  padding: 45px 0px 75px 0px;
  border-top: 1px solid #ddd;
}

.who__container {
  display: flex;
  position: relative;
  align-items: stretch;
  gap: 45px;
}

.who-slider {
  flex: 1 1 50%;
  align-self: stretch;
  display: flex;
  max-height: 540px;
  position: relative;
}

.who-wrapper {
  height: 100%;
}

.who__image {
  height: 100%;
}
.who__image picture {
  display: block;
  height: 100%;
}
.who__image img {
  width: 100%;
  height: 100%;
  object-position: center;
  object-fit: cover;
}

.who__decor {
  position: absolute;
  width: 160px;
  height: 160px;
  bottom: -30px;
  right: -150px;
}

.who__content {
  align-items: center;
  max-width: 710px;
}

.who__title {
  margin-bottom: 30px;
}

.who__text {
  font-weight: 400;
  font-size: 20px;
  line-height: 160%;
  color: #000;
  margin-bottom: 20px;
}

.who__blocks {
  display: flex;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
  margin-bottom: 37px;
}

.who__block {
  flex: 1 1 40%;
}

.who__number {
  font-family: "Gilroy-SemiBold", sans-serif;
  font-size: 32px;
  color: #000;
  opacity: 0.78;
}

.orange {
  color: #f80;
}

.who__subtext {
  font-weight: 400;
  font-size: 20px;
  text-transform: capitalize;
  color: #646464;
  opacity: 0.78;
}

.who__buttons {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 670px;
  gap: 25px;
}

.who__buttons .button-white {
  width: 100%;
  text-align: center;
  justify-content: center;
}

.who__buttons .button-black {
  width: 100%;
  text-align: center;
  justify-content: center;
}

.who__text-mobile {
  display: none;
}

.who-pagination {
  position: absolute;
  top: auto !important;
  left: 0;
  right: 0;
  bottom: 10px;
  z-index: 110;
  display: flex;
  justify-content: center;
  pointer-events: none;
}

.who-pagination.swiper-pagination {
  top: auto;
  bottom: 10px;
}

.who-pagination .swiper-pagination-bullet {
  pointer-events: auto;
}

.who-pagination .swiper-pagination-bullet {
  height: 11px;
  width: 11px;
  border: none;
  background-color: rgba(255, 255, 255, 0.8);
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.15);
  opacity: 1 !important;
  margin: 0px 5px !important;
  transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.who-pagination .swiper-pagination-bullet-active {
  background-color: #f80;
  box-shadow: 0px 4px 15px rgba(255, 136, 0, 0.45);
  transform: scale(1.25);
}

.who__title-mobile {
  display: none;
}

@media (max-width: 1250px) {
  .who__container {
    gap: 28px;
  }
  .who-slider {
    max-height: none;
    position: relative;
    margin-bottom: 24px;
  }
  .title__text {
    font-size: 24px;
  }
  .who__title {
    margin-bottom: 20px;
  }
  .who__text {
    display: none;
  }
  .who__text-mobile {
    display: block;
    font-size: 16px;
    line-height: 200%;
    margin-bottom: 20px;
  }
  .who__blocks {
    gap: 20px;
  }
  .who__number {
    font-size: 24px;
    margin-bottom: 10px;
  }
  .who__subtext {
    font-size: 14px;
  }
  .who__image {
    height: auto;
  }
  .who__image picture {
    height: auto;
  }
  .who__image img {
    width: 100%;
    height: auto;
  }
  .who-pagination .swiper-pagination-bullet {
    height: 9px;
    width: 9px;
    margin: 0px 5px !important;
    box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.15);
  }
  .who__decor {
    display: none;
  }
}
@media (max-width: 915px) {
  .who__container {
    display: block;
  }
  .who__title {
    display: none;
  }
  .who__title-mobile {
    display: flex;
  }
  .who__container {
    gap: 28px;
  }
  .who-slider {
    max-height: none;
    position: relative;
  }
  .title__text {
    font-size: 24px;
  }
  .who__title {
    margin-bottom: 20px;
  }
  .who__text {
    display: none;
  }
  .who__text-mobile {
    display: block;
    font-size: 16px;
    line-height: 200%;
    margin-bottom: 20px;
  }
  .who__blocks {
    gap: 20px;
  }
  .who__number {
    font-size: 24px;
    margin-bottom: 10px;
  }
  .who__subtext {
    font-size: 14px;
  }
  .who__image {
    height: auto;
  }
  .who__image picture {
    height: auto;
  }
  .who__image img {
    width: 100%;
    height: auto;
  }
  .who-pagination .swiper-pagination-bullet {
    height: 9px;
    width: 9px;
    margin: 0px 5px !important;
    box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.15);
  }
}
@media (max-width: 528px) {
  .who {
    padding: 20px 0px;
  }
  .who__container {
    gap: 20px;
  }
  .title__text {
    font-size: 20px;
  }
  .title__line {
    width: 20px;
  }
  .who__text-mobile {
    font-size: 14px;
  }
  .who__buttons {
    gap: 5px;
  }
  .who__number {
    font-size: 20px;
    margin-bottom: 5px;
  }
  .who__subtext {
    font-size: 12px;
  }
}
.who-prev.swiper-button-prev,
.who-next.swiper-button-next {
  width: 64px;
  height: 64px;
  transform: scale(1);
  transform-origin: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  transition: transform 0.2s ease-in-out;
}
.who-prev.swiper-button-prev::after,
.who-next.swiper-button-next::after {
  display: none;
}
.who-prev.swiper-button-prev:hover,
.who-next.swiper-button-next:hover {
  transform: scale(1.12);
}

.who-prev.swiper-button-prev {
  background-image: url("../images/icons/who-arrow-prev.svg") !important;
  top: auto;
  bottom: 10px;
  z-index: 10;
}

.who-next.swiper-button-next {
  background-image: url("../images/icons/who-arrow-next.svg") !important;
  top: auto;
  bottom: 10px;
  z-index: 102;
}

.who-prev.swiper-button-prev.active,
.who-next.swiper-button-next.active {
  animation: buttonScaleWho 0.3s ease 1;
}

@keyframes buttonScaleWho {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.92);
  }
  100% {
    transform: scale(1);
  }
}
.footer {
  padding: 59px 0px 25px 0px;
  border-top: 1px solid #ddd;
}
.footer__rights-mobile {
  display: none;
}

.up-footer {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding-bottom: 50px;
  border-bottom: 1px solid #ddd;
}

.info-footer__logo {
  margin-bottom: 28px;
}
.info-footer__text {
  font-family: "Gilroy-Medium", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 106%;
  letter-spacing: 0em;
  color: #282828;
  margin-bottom: 20px;
}
.info-footer__socials {
  display: flex;
  align-items: center;
  gap: 20px;
}
.info-footer__social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.info-footer__social.mobile-only-social {
  display: none;
}
.info-footer__social svg {
  display: block;
}
.info-footer__name {
  font-family: "Gilroy-SemiBold", sans-serif;
  font-weight: 500;
}

.about-footer {
  margin-top: 40px;
}
.about-footer__title {
  font-family: "Gilroy-SemiBold", sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: #000;
  margin-bottom: 8px;
  line-height: 214%;
  margin-left: 20px;
  cursor: pointer;
  transition: color 0.2s linear, transform 0.2s linear;
}
.about-footer__title:focus-visible {
  outline: 2px solid #f80;
  outline-offset: 3px;
}
.about-footer__text {
  font-family: "Gilroy-SemiBold", sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: #000;
  display: flex;
  align-items: center;
  margin-left: 20px;
  cursor: pointer;
  transition: color 0.2s linear, transform 0.2s linear;
}
.about-footer__text:not(:last-child) {
  margin-bottom: 15px;
}
.about-footer__text:focus-visible {
  outline: 2px solid #f80;
  outline-offset: 3px;
}

.text-plus {
  margin-left: 0px;
}
.text-plus::before {
  content: "";
  display: block;
  width: 9px;
  height: 9px;
  background: url("../images/icons/plus.svg") 0 0 no-repeat;
  margin-right: 12px;
  transition: transform 0.2s linear, filter 0.2s linear;
}

@media (hover: hover) {
  .about-footer__title:hover,
  .about-footer__text:hover {
    color: #ff8800;
    transform: translateX(4px);
  }
  .text-plus:hover::before {
    transform: scale(1.1);
    filter: brightness(0) saturate(100%) invert(52%) sepia(88%) saturate(1528%) hue-rotate(2deg) brightness(101%) contrast(103%);
  }
}
.services-footer {
  margin-top: 45px;
}
.services-footer__item {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}
.services-footer__item:not(:last-child) {
  margin-bottom: 20px;
}
.services-footer__item:focus-visible {
  outline: 2px solid #f80;
  outline-offset: 3px;
}
.services-footer__icon {
  width: 9px;
  height: 9px;
  transition: transform 0.2s linear, filter 0.2s linear;
}
.services-footer__icon img {
  width: 100%;
}
.services-footer__text {
  font-family: "Gilroy-SemiBold", sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: #000;
  transition: color 0.2s linear, transform 0.2s linear;
  display: inline-block;
}

.tags-footer__title {
  font-family: "Gilroy-SemiBold", sans-serif;
  font-weight: 500;
  font-size: 16px;
  font-weight: 500;
  line-height: 150%;
  letter-spacing: -0.02em;
  color: rgba(40, 40, 40, 0.8);
  margin-bottom: 20px;
}
.tags-footer__content {
  display: flex;
  flex-wrap: wrap;
  column-gap: 6px;
  row-gap: 15px;
  max-width: 475px;
}
.tags-footer__item {
  float: 0 1 25%;
  border: 3px solid #424046;
  border-radius: 100px;
  padding: 6px 10px;
  cursor: pointer;
  transition: transform 0.2s linear, border-color 0.2s linear, background-color 0.2s linear;
}
.tags-footer__item:focus-visible {
  outline: 2px solid #f80;
  outline-offset: 3px;
}
.tags-footer__text {
  font-family: "Gilroy-SemiBold", sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: -0.02em;
  color: #282828;
  transition: color 0.2s linear;
}

@media (hover: hover) {
  .services-footer__item:hover .services-footer__text {
    color: #ff8800;
    transform: scale(1.05);
  }
  .tags-footer__item:hover {
    transform: translateY(-3px);
    border-color: #ff8800;
    background-color: rgba(255, 136, 0, 0.08);
  }
  .tags-footer__item:hover .tags-footer__text {
    color: #ff8800;
  }
  .contacts-footer__item:hover .contacts-footer__text {
    color: #ff8800;
    transform: scale(1.03);
  }
}
.contacts-footer {
  max-width: 400px;
}
.contacts-footer__name {
  font-family: "Gilroy-SemiBold", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: -0.02em;
  color: rgba(40, 40, 40, 0.8);
  margin-bottom: 9px;
}
.contacts-footer__name:first-child {
  margin-bottom: 20px;
}
.contacts-footer__icon {
  width: 15px;
  height: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contacts-footer__icon img {
  width: 100%;
  height: auto;
  display: block;
}
.contacts-footer__item {
  display: flex;
  gap: 10px;
  margin-bottom: 17px;
  align-items: flex-start;
}
.contacts-footer__text {
  font-family: "Gilroy-Medium", sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 128%;
  color: #1c1c1c;
  display: inline-flex;
  align-items: center;
  transition: color 0.2s ease, transform 0.2s ease;
}

.down-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 15px;
}
.down-footer__copy {
  font-family: "Gilroy-Medium", sans-serif;
  font-size: 16px;
  line-height: 187%;
  color: #000;
}
.down-footer__list {
  display: flex;
  align-items: center;
}
.down-footer__link {
  text-decoration: underline;
}

@media (max-width: 1250px) {
  .tags-footer {
    display: none;
  }
}
@media (max-width: 1025px) {
  .footer {
    padding: 30px 0px 25px 0px;
  }
  .info-footer__text {
    font-size: 14px;
    line-height: 121%;
    margin-bottom: 15px;
  }
  .info-footer__socials {
    gap: 15px;
  }
  .about-footer__title {
    display: none;
  }
  .contacts-footer__name {
    font-size: 14px;
    line-height: 171%;
  }
  .contacts-footer__text {
    font-size: 14px;
    line-height: 100%;
  }
  .down-footer__copy {
    font-size: 14px;
    line-height: 214%;
  }
}
@media (max-width: 768px) {
  .about-footer {
    display: none;
  }
  .services-footer {
    display: none;
  }
  .info-footer__social.mobile-only-social {
    display: inline-flex;
  }
  .contacts-footer__item {
    align-items: flex-start;
    gap: 12px;
  }
  .down-footer {
    flex-direction: column;
    text-align: center;
  }
}
@media (max-width: 528px) {
  .contacts-footer {
    display: none;
  }
  .info-footer {
    text-align: center;
    margin: 0 auto;
  }
  .up-footer {
    padding-bottom: 18px;
  }
  .footer__rights-mobile {
    display: block;
    margin-bottom: 10px;
  }
  .footer__rights {
    display: none;
  }
}
@media (max-width: 1600px) {
  .mobile-tag {
    display: none;
  }
  .tags-footer__content {
    max-width: 400px;
  }
  .tags-footer {
    max-width: 400px;
  }
  .contacts-footer {
    max-width: 300px;
  }
}
@media (max-width: 1250px) {
  .tags-footer__item {
    border-width: 2px;
  }
}
.contacts {
  padding: 56px 0px;
  border-top: 1px solid #ddd;
}
.contacts__title {
  margin-bottom: 30px;
}
.contacts__content {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 48px;
}
.contacts__form {
  max-width: 650px;
}
.contacts__fields {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  column-gap: 40px;
  row-gap: 15px;
  margin-bottom: 15px;
}
.contacts__field {
  flex: 1 1 45%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.contacts__field .iti {
  width: 100%;
}
.contacts__label {
  font-family: "Gilroy-Medium", sans-serif;
  font-size: 16px;
  color: #000;
  font-family: "Gilroy-SemiBold", sans-serif;
  font-weight: 600;
}
.contacts__input {
  border: 1.5px solid #ddd;
  border-radius: 5px;
  padding: 19px 15px;
  width: 100% !important;
  font-weight: 400;
  font-size: 14px;
  color: #777;
}
.contacts__input::placeholder {
  font-family: "Gilroy-Regular", sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #777;
}
.contacts__message {
  margin-bottom: 25px;
}
.contacts__textarea {
  border: 1.5px solid #ddd;
  border-radius: 5px;
  padding: 19px 15px;
  width: 100%;
  font-weight: 400;
  font-size: 14px;
  color: #777;
  height: 240px;
  margin-top: 10px;
}
.contacts__textarea::placeholder {
  font-family: "Gilroy-Regular", sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #777;
}
.contacts__button {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 25px;
  border: 3px solid #282828;
  border-radius: 5px;
  padding: 19px 30px;
  background-color: #282828;
  color: #fff;
  transition: all 0.2s linear;
  width: 100%;
  max-width: 322px;
  justify-content: center;
  text-align: center;
}
@media (max-width: 768px) {
  .contacts__button {
    background-color: #f80 !important;
    border-color: #f80 !important;
  }
}
.contacts__button-arrow {
  transition: all 0.2s linear;
}
.contacts__button-text {
  font-family: "Gilroy-SemiBold", sans-serif;
  font-size: 14px;
  line-height: 100%;
  text-transform: uppercase;
  text-align: center;
}

.info-contacts {
  padding-left: 45px;
  border-left: 1px solid #ddd;
  max-width: 788px;
}
.info-contacts__title {
  font-weight: 400;
  font-size: 20px;
  line-height: 160%;
  margin-bottom: 25px;
  color: #000;
}
.info-contacts__title-mobile {
  display: none;
}
.info-contacts__text {
  font-family: "Gilroy-Medium", sans-serif;
  font-size: 20px;
  line-height: 70%;
  color: #1c1c1c;
  transition: color 0.2s linear;
}
.info-contacts__item {
  padding-bottom: 20px;
  border-bottom: 1px solid #ddd;
}
.info-contacts__item:not(:last-child) {
  margin-bottom: 20px;
}
.info-contacts__name {
  font-family: "Gilroy-SemiBold", sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 144%;
  color: #000;
  margin-bottom: 17px;
}
.info-contacts__block {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  transition: transform 0.2s linear;
  transform-origin: left center;
}
.info-contacts__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.info-contacts__icon img {
  display: block;
  width: 100%;
  height: auto;
}
.info-contacts__socials {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 21px;
}

@media (max-width: 1250px) {
  .contacts {
    padding: 30px 0px;
  }
  .contacts__content {
    gap: 24px;
    align-items: stretch;
  }
  .contacts__form {
    max-width: 566px;
  }
  .contacts__label {
    font-size: 12px;
  }
  .contacts__input {
    padding: 13px 15px;
  }
  .contacts__message {
    margin-bottom: 13px;
  }
  .contacts__textarea {
    height: 167px;
  }
  .contacts__button {
    padding: 17px 30px;
  }
  .contacts__button-text {
    font-size: 12px;
    line-height: 117%;
  }
  .info-contacts {
    padding-left: 10px;
    max-width: 399px;
  }
  .info-contacts__title {
    font-size: 14px;
    margin-bottom: 10px;
    line-height: 171%;
  }
  .info-contacts__text {
    font-size: 14px;
    line-height: 100%;
  }
  .info-contacts__item {
    padding-bottom: 10px;
  }
  .info-contacts__item:not(:last-child) {
    margin-bottom: 10px;
  }
  .info-contacts__name {
    font-size: 14px;
    line-height: 100%;
    margin-bottom: 10px;
  }
  .info-contacts__block {
    display: flex;
    align-items: flex-start;
    gap: 10px;
  }
  .info-contacts__socials {
    margin-top: 14px;
  }
}
@media (max-width: 768px) {
  .contacts__form {
    width: 100%;
    max-width: none;
  }
  .contacts__content {
    flex-direction: column;
  }
  .info-contacts {
    padding-left: 0px;
    border-left: none;
    width: 100%;
    max-width: none;
  }
  .info-contacts__title {
    display: none;
  }
  .info-contacts__title-mobile {
    display: block;
    max-width: 500px;
  }
  .info-contacts__time {
    display: none;
  }
  .info-contacts__block {
    align-items: flex-start;
    gap: 12px;
  }
}
@media (max-width: 528px) {
  .contacts {
    padding: 20px 0px;
  }
  .contacts__title {
    font-size: 20px;
    line-height: 150%;
    margin-bottom: 20px;
  }
  .contacts__content {
    gap: 20px;
  }
  .contacts__fields {
    gap: 20px;
    margin-bottom: 20px;
    display: block;
    width: 100%;
  }
  .contacts__field:not(:last-child) {
    margin-bottom: 20px;
  }
  .contacts__label {
    font-size: 14px;
  }
  .contacts__message {
    margin-bottom: 20px;
  }
  .contacts__button {
    gap: 8px;
    padding: 13px 8px;
  }
  .contacts__button svg {
    height: 11px;
    width: 11px;
  }
  .contacts__button-text {
    font-size: 10px;
    line-height: 140%;
  }
  .info-contacts__title-mobile {
    text-align: center;
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 214%;
  }
  .info-contacts__text {
    font-size: 12px;
    line-height: 100%;
  }
  .info-contacts__name {
    font-size: 14px;
    line-height: 186%;
  }
}
@media (max-width: 1250px) {
  .contacts__button {
    border-width: 2px;
  }
}
@media (hover: hover) {
  .contacts__button:hover {
    background-color: #f80 !important;
    border-color: #f80;
    color: #fff !important;
  }
  .contacts__button:hover .contacts__arrow path {
    fill: #fff !important;
  }
  .info-contacts__block:hover {
    transform: scale(1.04);
  }
  .info-contacts__block:hover .info-contacts__text {
    color: #f80;
  }
}
.home {
  padding: 140px 0px 35px;
  border-bottom: 1px solid #ddd;
}
.home__texts {
  display: flex;
  gap: 31px;
}
.home__main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-left: 70px;
}
.home__content {
  position: relative;
  display: flex;
  align-items: center;
  gap: 34px;
  justify-content: space-between;
  margin-bottom: 27px;
  padding-right: 60px;
  padding-left: 40px;
}
.home__line {
  margin-top: 145px;
  width: 35px;
  height: 3px;
  background-color: #f80;
}
.home__uptext {
  font-weight: 500;
  font-size: 20px;
  line-height: 160%;
  color: #606060;
  margin-bottom: 20px;
  font-family: "Gilroy-Medium", sans-serif;
}
.home__title {
  font-weight: 400;
  font-size: 56px;
  line-height: 107%;
  color: #1c1c1c;
  max-width: 715px;
  margin-bottom: 15px;
}
.home__title .orange {
  text-decoration: underline;
}
.home__subtext {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 35px;
}
.home__big-text {
  font-weight: 500;
  font-size: 56px;
  line-height: 107%;
  color: #1c1c1c;
}
.home__text {
  font-weight: 400;
  font-size: 20px;
  line-height: 160%;
  color: #000;
  max-width: 648px;
  margin-bottom: 45px;
}
.home__clients {
  display: flex;
  align-items: center;
  gap: 25px;
}
.home__buttons {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 20px;
}
.home__main {
  margin-top: 10px;
}

.home__slider {
  position: relative;
  overflow: hidden;
  padding: 0 18px;
  box-sizing: border-box;
}

.prev-home,
.next-home {
  position: absolute;
  top: 43%;
  transform: translateY(-50%) scale(100%);
  z-index: 5;
  cursor: pointer;
  transition: transform 0.2s linear;
  width: 53px;
  height: 53px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.prev-home img,
.next-home img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.prev-home {
  left: 15px;
}

.next-home {
  right: 15px;
}

.prev-home.active,
.next-home.active {
  animation: buttonScale 0.4s linear 1;
}

@media (max-width: 1350px) {
  .prev-home,
  .next-home {
    width: 45px;
    height: 45px;
  }
}

@keyframes buttonScale {
  0% {
    transform: translateY(-50%) scale(100%);
  }
  50% {
    transform: translateY(-50%) scale(92%);
  }
  100% {
    transform: translateY(-50%) scale(100%);
  }
}
.clients-home__number {
  font-weight: 500;
  font-size: 28px;
  color: #000;
  font-family: "Gilroy-Medium", sans-serif;
  opacity: 0.78;
}
.clients-home__text {
  font-weight: 400;
  font-size: 16px;
  color: #202020;
  opacity: 0.78;
}

.home-pagination .swiper-pagination-bullet {
  height: 3px;
  width: 85px;
  background-color: #c7c6c6;
  border-radius: 0px;
  opacity: 100 !important;
  margin: 0px 14px !important;
  cursor: pointer;
}

.home-pagination .swiper-pagination-bullet-active {
  height: 3px;
  width: 85px;
  background-color: #f80;
  border-radius: 0px;
  opacity: 100 !important;
}

@media (max-width: 1250px) {
  .home {
    overflow: hidden;
  }
  .home__slider {
    padding: 0;
  }
  .home__main {
    margin-left: 0px;
  }
  .home__image img {
    width: 100%;
    min-width: 449px;
  }
  .home__content {
    gap: 27px;
    margin-bottom: 0px;
    padding-right: 0px;
    padding-left: 0px;
  }
  .home__line {
    display: none;
  }
  .home__uptext {
    font-size: 18px;
    margin-bottom: 10px;
  }
  .home__title {
    font-size: 40px;
    line-height: 150%;
    margin-bottom: 10px;
  }
  .home__text {
    font-size: 18px;
    line-height: 178%;
    margin-bottom: 30px;
  }
  .home__clients {
    gap: 35px;
  }
  .home__buttons {
    gap: 25px;
  }
  .clients-home {
    margin-top: 34px;
  }
  .clients-home__number {
    font-size: 26px;
  }
  .clients-home__text {
    font-size: 14px;
  }
  .home-pagination .swiper-pagination-bullet {
    width: 68px;
    margin: 0px 10px !important;
  }
  .home-pagination .swiper-pagination-bullet-active {
    width: 68px;
  }
  .prev-home,
  .next-home {
    display: none;
  }
}
@media (max-width: 955px) {
  .home__image {
    display: none;
  }
  .home__content {
    gap: 0px;
  }
  .home__buttons {
    gap: 10px;
  }
  .home__slider {
    padding: 0;
  }
  .home__main {
    margin-top: 15px;
    flex-direction: column;
    align-items: flex-start;
    gap: 26px;
  }
  .clients-home {
    margin-top: 0px;
  }
  .clients-home__number {
    font-size: 22px;
  }
  .clients-home__text {
    font-size: 12px;
  }
}
@media (max-width: 528px) {
  .home {
    padding: 95px 0px 25px;
  }
  .home__image {
    display: none;
  }
  .home__content {
    gap: 0px;
  }
  .home__uptext {
    font-size: 13px;
    line-height: 246%;
    margin-bottom: 0px;
  }
  .home__title {
    font-size: 28px;
    line-height: 125%;
    margin-bottom: 10px;
  }
  .home__text {
    font-size: 14px;
    line-height: 171%;
    margin-bottom: 30px;
  }
  .home__buttons {
    gap: 10px;
  }
  .home__main {
    margin-top: 15px;
    flex-direction: column;
    align-items: flex-start;
    gap: 26px;
  }
  .clients-home {
    margin-top: 0px;
  }
  .clients-home__number {
    font-size: 22px;
  }
  .clients-home__text {
    font-size: 12px;
  }
  .home-pagination {
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 0 15px;
    flex-wrap: nowrap;
    box-sizing: border-box;
  }
  .home-pagination .swiper-pagination-bullet {
    height: 2px;
    flex: 1;
    width: auto !important;
    min-width: 0;
    margin: 0px 2px !important;
  }
  .home-pagination .swiper-pagination-bullet-active {
    height: 2px;
    flex: 1;
    width: auto !important;
  }
}
@media (max-width: 430px) {
  .home-pagination {
    display: flex !important;
    flex-wrap: nowrap !important;
    justify-content: center !important;
    width: 100% !important;
    max-width: 250px !important;
    margin: 0 auto !important;
    padding: 0 10px !important;
    gap: 6px !important;
    box-sizing: border-box !important;
    left: 0 !important;
    right: 0 !important;
  }
  .home-pagination .swiper-pagination-bullet {
    display: block !important;
    flex: 1 1 0px !important;
    width: auto !important;
    min-width: 0 !important;
    max-width: none !important;
    margin: 0 !important;
    height: 2px !important;
    border-radius: 0 !important;
  }
}
@media (max-width: 364px) {
  .home__title {
    font-size: 24px;
  }
  .home__buttons {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    gap: 10px;
  }
  .home__button-black {
    text-align: center;
    justify-content: center;
    width: 100%;
  }
  .home__button-white {
    text-align: center;
    justify-content: center;
    width: 100%;
  }
  .home-pagination {
    display: flex !important;
    flex-wrap: nowrap !important;
    justify-content: center !important;
    width: 100% !important;
    max-width: 250px !important;
    margin: 0 auto !important;
    padding: 0 10px !important;
    gap: 6px !important;
    box-sizing: border-box !important;
    left: 0 !important;
    right: 0 !important;
  }
  .home-pagination .swiper-pagination-bullet {
    display: block !important;
    flex: 1 1 0px !important;
    width: auto !important;
    min-width: 0 !important;
    max-width: none !important;
    margin: 0 !important;
    height: 2px !important;
    border-radius: 0 !important;
  }
  .home-pagination .swiper-pagination-bullet-active {
    height: 2px;
  }
}
.home .button-black {
  background: #3f3f3f;
  padding: 18px 22px;
  color: #fff;
  width: 100%;
  max-width: 322px;
  justify-content: center;
  text-align: center;
}
.home .button-black__text {
  font-weight: 600;
  font-size: 14px;
  line-height: 100%;
  text-transform: uppercase;
  text-align: center;
}

.home .button-white {
  gap: 33px;
  padding: 17px 22px 17px 40px;
}
.home .button-white__text {
  font-weight: 600;
  font-size: 14px;
  line-height: 100%;
  text-transform: uppercase;
  text-align: center;
}

@media (max-width: 528px) {
  .home__buttons {
    gap: 10px;
  }
  .home .button-black {
    padding: 14px 8px;
    gap: 8px;
  }
  .home .button-black__text {
    font-size: 12px;
    line-height: 117%;
  }
  .home .button-white {
    gap: 8px;
    padding: 14px 10px;
  }
  .home .button-white__text {
    font-size: 12px;
    line-height: 117%;
  }
}
@media (hover: hover) {
  .home .button-black:hover {
    background-color: #fff;
    color: #282828;
  }
  .home .button-black:hover .button-black__icon path {
    fill: #282828;
  }
  .next-home:hover,
  .prev-home:hover {
    transform: translateY(-50%) scale(110%);
  }
}
.sidebar {
  position: fixed;
  top: 82px;
  left: 0;
  border-right: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  padding: 109px 40px 141px 40px;
  background-color: #fff;
  width: 106px;
  height: 100%;
  z-index: 9;
}
.sidebar__content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.sidebar__links {
  display: flex;
  flex-direction: column;
  gap: 106px;
}
.sidebar__link {
  font-family: "Gilroy-SemiBold", sans-serif;
  font-weight: 600;
  transform: rotate(-90deg) scale(100%);
  font-size: 18px;
  line-height: 144%;
  color: #282828;
  transition: all 0.2s linear;
}
.sidebar__socials {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.notfound-sidebar {
  border-top: 1px solid #ddd;
  top: 150px;
  padding-bottom: 90px;
}
.notfound-sidebar__links {
  margin-bottom: 350px;
}

@media (max-width: 1250px) {
  .sidebar {
    display: none;
  }
  section ._container {
    padding-left: 15px !important;
  }
  .footer ._container {
    padding-left: 15px !important;
  }
}
@media (max-width: 1750px) {
  section ._container {
    padding-left: 140px;
  }
  .footer ._container {
    padding-left: 140px;
  }
}
@media (hover: hover) {
  .sidebar__link:hover {
    transform: rotate(-90deg) scale(105%);
    color: #f80;
    text-decoration: underline;
  }
}
.header {
  position: fixed;
  padding: 21px 0px;
  width: 100%;
  border-bottom: 1px solid #ddd;
  z-index: 12;
  height: 82px;
  background-color: #fff;
}
.header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header__content {
  display: flex;
  align-items: center;
  gap: 80px;
  margin-left: -150px;
}
.header__logo {
  background-color: #fff;
  display: inline-flex;
  align-items: center;
  transition: transform 0.2s ease;
}
.header__logo img {
  width: 100%;
}
.header__list {
  display: flex;
  align-items: center;
  gap: 56px;
}
.header__link {
  font-size: 16px;
  line-height: 162%;
  color: #1c1c1c;
  font-family: "Gilroy-SemiBold", sans-serif;
  font-weight: 500;
  transition: all 0.2s linear;
}
.header__info {
  display: flex;
  align-items: center;
  gap: 20px;
}
.header__phone {
  display: flex;
  align-items: center;
  gap: 7px;
  cursor: pointer;
}
.header__number {
  display: inline-flex;
  font-weight: 600;
  font-size: 15px;
  line-height: 93%;
  text-transform: uppercase;
  text-align: center;
  color: #1c1c1c;
  font-family: "Gilroy-Medium", sans-serif;
  font-family: "Gilroy-SemiBold", sans-serif;
  transition: color 0.2s ease, transform 0.2s ease;
}
.header__phone:hover .header__number {
  color: #ff8800;
  transform: scale(1.05);
}
.header__close-burger {
  display: none;
  width: 23px;
}
.header__button {
  cursor: pointer;
  border: 3px solid #1c1c1c;
  border-radius: 5px;
  padding: 13px 18px;
  gap: 15px;
  display: flex;
  align-items: center;
  color: #1c1c1c;
  background-color: #fff;
  transition: all 0.2s linear;
  font-family: "Gilroy-SemiBold", sans-serif;
  font-weight: 600;
}
.header__button-link {
  font-family: "Gilroy-SemiBold", sans-serif !important;
  font-weight: 600 !important;
  font-size: 14px;
  line-height: 100%;
  text-transform: uppercase;
  text-align: center;
}
.header__button-arrow path {
  transition: all 0.2s linear;
}
.header__burger {
  display: none;
  width: 23px;
  flex-direction: column;
  gap: 7px;
}
.header__burger span {
  display: block;
  width: 31px;
  border: 1px solid #282828;
  border-radius: 2px;
}

.link-products {
  display: flex;
  align-items: center;
  gap: 5px;
  transition: color 0.2s ease, transform 0.2s ease;
}
.link-products::after {
  content: "";
  display: block;
  width: 7px;
  height: 7px;
  background: url("../images/icons/link-plis.svg") 0 0 no-repeat;
}
.link-products.active {
  text-decoration: underline;
}

.link-sub-menu.active::after {
  height: 2px;
  width: 7px;
  background: url("../images/icons/link-minus.svg") 0 0 no-repeat;
}

.header.active .header__close-burger {
  display: block;
}

.header.active .header__open-burger {
  display: none;
}

@media (max-width: 1850px) {
  .header__content {
    margin-left: -70px;
  }
}
@media (max-width: 1750px) {
  .header__content {
    margin-left: 0px;
    gap: 50px;
  }
  .header__list {
    gap: 30px;
  }
}
@media (max-width: 1350px) {
  .header__container {
    gap: 30px;
  }
  .header__logo img {
    width: 100%;
  }
  .header__nav {
    display: none;
  }
  .header__burger {
    display: flex;
  }
}
@media (max-width: 600px) {
  .header__phone {
    display: none;
  }
  .header {
    height: auto;
  }
  .header__logo {
    width: 100px;
    height: 11px;
  }
  .header__button {
    padding: 7px 17px;
    gap: 6px;
    margin-right: 15px;
  }
  .header__button-link {
    font-size: 10px;
    line-height: 140%;
  }
  .header__burger {
    margin-top: 0px;
  }
}
@media (max-width: 365px) {
  .header__button {
    display: none;
  }
}
@media (max-width: 1250px) {
  .header__button {
    border-width: 2px;
  }
  .header__button:hover {
    border-width: 2px;
  }
}
@media (hover: hover) {
  .header__button:hover {
    background-color: #7c7c7c;
    border: 3px solid #f80;
    color: #fff;
  }
  .header__button:hover .header__button-arrow path {
    fill: #f80;
  }
  .header__link:hover {
    text-decoration: underline;
    color: #f80;
  }
  .link-products:hover,
  .link-products.active:hover {
    color: #f80;
    transform: scale(1.04);
  }
  .header__logo:hover {
    transform: scale(1.06);
  }
}
.good-popup {
  position: fixed;
  z-index: 1000;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 20px 10px;
  overflow-y: auto;
}
.good-popup__content {
  position: relative;
  display: flex;
  align-items: stretch;
  justify-content: center;
  max-width: 1078px;
  width: 100%;
  margin: auto 10px;
  max-height: calc(100vh - 40px);
}
.good-popup__cross {
  position: absolute;
  width: 15px;
  height: 15px;
  top: 10px;
  right: 10px;
  cursor: pointer;
}
.good-popup__image {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.good-popup__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.good-popup__info {
  padding: 24px;
  background-color: #fff;
  max-width: 313px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}
.good-popup__title {
  font-family: "Gilroy-SemiBold", sans-serif;
  font-size: 16px;
  line-height: 150%;
  text-transform: uppercase;
  text-align: center;
  color: #000;
}
.good-popup__title-mobile {
  display: none;
}
.good-popup__line {
  margin: 20px 0px;
  width: 100%;
  height: 1px;
  background-color: #d4d2d2;
}
.good-popup__desc {
  font-family: "Gilroy-SemiBold", sans-serif;
  font-size: 16px;
  line-height: 150%;
  text-transform: uppercase;
  text-align: center;
  color: #000;
}
.good-popup__text {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  text-align: center;
  color: #000;
}
.good-popup__text:not(:last-child) {
  margin-bottom: 20px;
}
.good-popup__price {
  font-family: "Gilroy-Medium", sans-serif;
  font-size: 20px;
  line-height: 100%;
  color: #000;
  text-align: center;
}
.good-popup__subtext {
  font-family: "Gilroy-Medium", sans-serif;
  font-size: 16px;
  line-height: 125%;
  text-align: center;
  color: #959595;
}
.good-popup__button {
  border-radius: 5px;
  padding: 19px 15px;
  background-color: #f80;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 20px;
  justify-content: center;
}
.good-popup__line-mobile {
  display: none;
}
.good-popup__button-text {
  font-family: "Gilroy-SemiBold", sans-serif;
  font-size: 14px;
  line-height: 100%;
  text-transform: uppercase;
  text-align: center;
  color: #fff;
}
.good-popup__share {
  display: flex;
  align-items: center;
  gap: 12px;
}

.popup-slider {
  flex: 1 1 0;
  min-width: 0;
  height: 100%;
  max-height: calc(100vh - 40px);
  display: flex;
}

.popup-slider-wrapper {
  height: 100%;
  max-height: calc(100vh - 40px);
}

.share-good__text {
  font-family: "Gilroy-Medium", sans-serif;
  font-size: 14px;
  line-height: 143%;
  color: #475156;
}
.share-good__icons {
  display: flex;
  align-items: center;
  gap: 12px;
}
.share-good__icon {
  cursor: pointer;
  transition: transform 0.2s linear, filter 0.2s linear;
}
.share-good__icon img {
  transition: inherit;
}
.share-good__copy {
  position: relative;
}
.share-good__copy--success img {
  filter: brightness(0) saturate(100%) invert(52%) sepia(88%) saturate(1528%) hue-rotate(2deg) brightness(101%) contrast(103%);
}
.share-good__copy[data-copied=true]::after {
  content: "Скопійовано";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%, 8px);
  background-color: rgba(40, 40, 40, 0.9);
  color: #fff;
  font-family: "Gilroy-Medium", sans-serif;
  font-size: 11px;
  line-height: 120%;
  padding: 4px 8px;
  border-radius: 4px;
  white-space: nowrap;
}

.good-popup.show {
  display: flex;
}

.pagination-popup .swiper-pagination-bullet {
  height: 10px;
  width: 10px;
  background: #fff;
  opacity: 0.8 !important;
  margin: 0px 4px !important;
}

.pagination-popup .swiper-pagination-bullet-active {
  background-color: #f80;
  opacity: 100 !important;
}

.swiper-button-prev {
  background-image: url(/images/prev-button.svg) !important;
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: center;
  width: 53px;
  height: 53px;
}

.swiper-button-next {
  background-image: url(/images/next-button.svg) !important;
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: center;
  width: 53px;
  height: 53px;
}

.swiper-button-next::after {
  display: none;
}

.swiper-button-prev::after {
  display: none;
}

@media (max-width: 1400px) {
  .good-popup {
    padding: 15px 10px;
  }
  .good-popup__content {
    max-height: calc(100vh - 30px);
  }
  .good-popup__info {
    padding: 20px;
    max-width: 280px;
  }
  .good-popup__title {
    font-size: 14px;
  }
  .good-popup__desc {
    font-size: 14px;
  }
  .good-popup__text {
    font-size: 14px;
  }
  .good-popup__price {
    font-size: 18px;
  }
  .good-popup__subtext {
    font-size: 14px;
  }
  .good-popup__line {
    margin: 15px 0px;
  }
  .popup-slider,
  .popup-slider-wrapper {
    max-height: calc(100vh - 30px);
  }
  .swiper-button-prev,
  .swiper-button-next {
    width: 40px;
    height: 40px;
  }
}
@media (max-width: 1250px) {
  .good-popup__content {
    max-width: 1078px;
    width: 100%;
  }
  .good-popup__info {
    padding: 16px;
    max-width: 260px;
  }
  .good-popup__line {
    margin: 15px 0px;
  }
  .good-popup__text {
    font-size: 13px;
    line-height: 150%;
  }
  .good-popup__text:not(:last-child) {
    margin-bottom: 5px;
  }
  .good-popup__title {
    font-size: 14px;
  }
  .good-popup__desc {
    font-size: 14px;
  }
  .good-popup__price {
    font-size: 16px;
    line-height: 111%;
  }
  .good-popup__subtext {
    font-size: 13px;
    line-height: 133%;
  }
  .good-popup__button {
    padding: 15px 12px;
  }
  .good-popup__button-text {
    font-size: 12px;
  }
  .swiper-button-prev {
    width: 38px;
    height: 38px;
  }
  .swiper-button-next {
    width: 38px;
    height: 38px;
  }
}
@media (max-width: 1010px) {
  .good-popup {
    align-items: flex-start;
    overflow-y: auto;
    padding: 30px 10px;
  }
  .good-popup__content {
    display: block;
    overflow-y: scroll;
    background-color: #fff;
    max-width: 600px;
    padding: 30px;
  }
  .good-popup .popup-slider {
    height: auto;
    display: block;
  }
  .good-popup .popup-slider-wrapper {
    height: auto;
  }
  .good-popup__title {
    display: none;
  }
  .good-popup__title-mobile {
    display: block;
    margin-bottom: 15px;
  }
  .good-popup__info {
    padding: 0px;
    width: 100%;
    max-width: none;
    margin-top: 30px;
    background-color: transparent;
  }
  .good-popup__image {
    height: auto;
  }
  .good-popup__image img {
    height: auto;
    object-fit: contain;
  }
  .good-popup__line-mobile {
    display: block;
  }
}
@media (max-width: 568px) {
  .good-popup__title {
    font-size: 14px;
    line-height: 171%;
    margin-bottom: 15px;
  }
  .good-popup__desc {
    font-size: 14px;
    line-height: 171%;
    margin-bottom: 15px;
  }
  .good-popup__text {
    font-size: 14px;
    line-height: 171%;
  }
  .good-popup__text:not(:last-child) {
    margin-bottom: 20px;
  }
  .good-popup__price {
    font-size: 18px;
    line-height: 111%;
  }
  .good-popup__subtext {
    font-size: 15px;
    line-height: 133%;
    max-width: 250px;
  }
  .good-popup__button {
    padding: 12px 32px;
    gap: 6px;
    margin-bottom: 15px;
  }
  .good-popup__button-text {
    font-size: 12px;
    line-height: 117%;
  }
  .share-good__text {
    font-size: 12px;
    line-height: 167%;
  }
  .pagination-popup .swiper-pagination-bullet {
    height: 7px;
    width: 7px;
  }
  .swiper-button-prev {
    display: none;
  }
  .swiper-button-next {
    display: none;
  }
}
.feedback-popup {
  position: fixed;
  z-index: 1000;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.5);
}
.feedback-popup__content {
  position: relative;
  max-width: 522px;
  padding: 25px 38px;
  background-color: #fff;
  border-radius: 8px;
  margin: 0px 10px;
}
.feedback-popup__cross {
  position: absolute;
  width: 15px;
  height: 15px;
  top: 10px;
  right: 10px;
  cursor: pointer;
}
.feedback-popup__title {
  font-weight: 400;
  font-size: 30px;
  line-height: 200%;
  text-transform: capitalize;
  text-align: center;
  color: #000;
}
.feedback-popup__title span {
  font-family: "Gilroy-SemiBold", sans-serif;
  font-weight: 600;
}
.feedback-popup__text {
  margin-bottom: 13px;
  font-weight: 400;
  font-size: 16px;
  line-height: 200%;
  text-align: center;
  color: #000;
}
.feedback-popup__text span {
  font-family: "Gilroy-Bold", sans-serif;
}

.form-popup__fields {
  margin-bottom: 25px;
}
.form-popup__field {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.form-popup__field:not(:last-child) {
  margin-bottom: 15px;
}
.form-popup__field .iti {
  width: 100%;
}
.form-popup__label {
  font-family: "Gilroy-Medium", sans-serif;
  font-size: 14px;
  color: #000;
}
.form-popup__input {
  border: 1.5px solid #ddd;
  border-radius: 5px;
  padding: 19px 15px;
  width: 100%;
  font-weight: 400;
  font-size: 14px;
  color: #777;
}
.form-popup__input::placeholder {
  font-weight: 400;
  font-size: 14px;
  color: #777;
  font-family: "Gilroy-Regular", sans-serif;
}
.form-popup__textarea {
  border: 1.5px solid #ddd;
  border-radius: 5px;
  padding: 19px 15px;
  width: 100%;
  font-weight: 400;
  font-size: 14px;
  color: #777;
  height: 176px;
}
.form-popup__textarea::placeholder {
  font-family: "Gilroy-Regular", sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #777;
}
.form-popup__button {
  cursor: pointer;
  border-radius: 5px;
  padding: 19px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
  text-transform: uppercase;
  font-family: "Gilroy-SemiBold", sans-serif;
  font-size: 14px;
  line-height: 100%;
  text-transform: uppercase;
  text-align: center;
  color: #fff;
  background-color: #282828;
  transition: all 0.2s linear;
  border: 3px solid #282828;
}
@media (max-width: 768px) {
  .form-popup__button {
    background-color: #f80 !important;
    border-color: #f80 !important;
  }
}
.form-popup__button-icon {
  transition: all 0.2s linear;
}

.feedback-popup.show {
  display: flex;
}

@media (max-width: 528px) {
  .feedback-popup {
    align-items: flex-start;
    overflow-y: auto;
    padding: 30px 10px;
  }
  .feedback-popup__content {
    padding: 20px 15px;
    border-radius: 8px;
  }
  .feedback-popup__cross {
    width: 12px;
    height: 12px;
    top: 15px;
    right: 15px;
  }
  .feedback-popup__title {
    font-size: 20px;
    line-height: 100%;
    margin-bottom: 20px;
  }
  .feedback-popup__text {
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 174%;
  }
  .form-popup__fields {
    margin-bottom: 25px;
  }
  .form-popup__field:not(:last-child) {
    margin-bottom: 25px;
  }
  .form-popup__input {
    padding: 16px 15px;
  }
  .form-popup__textarea {
    padding: 16px 15px;
    height: 175px;
  }
}
@media (max-width: 1250px) {
  .form-popup__button {
    border-width: 2px;
  }
}
@media (hover: hover) {
  .form-popup__button:hover {
    background-color: #f80 !important;
    border-color: #f80;
    color: #fff !important;
  }
  .form-popup__button:hover .form-popup__buton-icon path {
    fill: #fff !important;
  }
}
.products {
  padding: 25px 0px;
  border-top: 1px solid #ddd;
}

.products__container {
  position: relative;
}

.products__title {
  margin-bottom: 20px;
}

.products__tabs {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 27px;
  flex-wrap: wrap;
}

.products__tab-content {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.products__tab-content:not(:last-child) {
  margin-bottom: 8px;
}

.tab-subtab {
  display: none;
}

.tab-subtab.active-tab {
  display: flex !important;
}

.products__tab {
  cursor: pointer;
  font-family: "Gilroy-Medium", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 115%;
  text-align: center;
  color: #fff;
  border: 3px solid #3f3f3f;
  border-radius: 3px;
  padding: 12px 13px;
  color: #282828;
  padding: 12px 31px;
  transition: all 0.2s linear;
  font-family: "Gilroy-SemiBold", sans-serif;
  font-weight: 500;
}

.active-title {
  border-radius: 3px;
  border: 3px solid #f80;
  color: #fff;
  background-color: #f80 !important;
}

.products__slider {
  display: none;
}

.products__content {
  margin-bottom: 35px;
}

.prev-products.swiper-button-disabled ~ .products__buttons {
  padding-left: 0px;
}

.products__row {
  display: flex;
  gap: 25px;
  flex-wrap: nowrap;
}
.products__row:not(:last-child) {
  margin-bottom: 25px;
}

.active-tab {
  display: block;
}

.products__item {
  max-width: 356px;
  flex: 0 1 25%;
}

.products__image {
  margin-bottom: 15px;
}
.products__image img {
  width: 100%;
}

.products__name {
  font-family: "Gilroy-Medium", sans-serif;
  font-size: 18px;
  text-decoration: underline;
  text-decoration-skip-ink: none;
  color: #282828;
}

.products__text {
  font-weight: 400;
  font-size: 14px;
  color: #000;
}

.products__buttons {
  display: flex;
  align-items: center;
  gap: 25px;
  padding-left: 70px;
}

.prev-products {
  cursor: pointer;
  position: absolute;
  left: 10px;
  top: calc(50% + 34px);
  z-index: 8;
  transform: translateY(-50%) scale(1);
  transition: transform 0.2s ease;
}
@media (max-width: 1750px) {
  .prev-products {
    left: 133px;
  }
}

.next-products {
  cursor: pointer;
  position: absolute;
  right: 0;
  top: calc(50% + 34px);
  margin-top: 0;
  z-index: 8;
  transform: translateY(-50%) scale(1);
  transition: transform 0.2s ease;
}

.prev-products.swiper-button-disabled,
.next-products.swiper-button-disabled {
  display: none;
}

.prev-products.active,
.next-products.active {
  transform: translateY(-50%) scale(1.08);
}

.active-sub-tab-content {
  display: none;
}

.active-sub-tab-content.active {
  display: flex !important;
}

.sub-tab-content {
  display: none;
}
.sub-tab-content.active {
  display: block;
}

@media (max-width: 1500px) {
  .next-products {
    display: none;
  }
  .prev-products {
    display: none;
  }
}
@media (max-width: 1025px) {
  .products {
    padding: 16px 0px 40px;
  }
  .products__title {
    font-size: 24px;
    line-height: 250%;
    margin-bottom: 15px;
  }
  .products__content {
    margin-bottom: 0px;
  }
  .products__row {
    gap: 20px;
  }
  .products__row:not(:last-child) {
    margin-bottom: 20px;
  }
  .products__image {
    margin-bottom: 10px;
  }
  .products__name {
    font-family: "Gilroy-Medium", sans-serif;
    font-size: 18px;
    text-decoration: underline;
    text-decoration-skip-ink: none;
    color: #282828;
  }
  .products__buttons {
    display: none;
  }
}
@media (max-width: 528px) {
  .products {
    padding: 30px 0px;
  }
  .products__title {
    font-size: 20px;
    line-height: 105%;
    margin-bottom: 20px;
  }
  .products__tabs {
    gap: 5px;
    margin-bottom: 20px;
  }
  .products__tab {
    font-size: 12px;
    line-height: 134%;
    padding: 8px 21px;
  }
  .products__row {
    gap: 5px;
  }
  .products__row:not(:last-child) {
    margin-bottom: 15px;
  }
  .products__image {
    margin-bottom: 5px;
  }
  .products__name {
    font-size: 12px;
  }
}
@media (max-width: 1250px) {
  .products__tab {
    border-width: 2px;
  }
  .products__tab:hover {
    border-width: 2px;
  }
  .active-tab {
    border-width: 2px;
  }
}
@media (hover: hover) {
  .next-products:hover {
    transform: translateY(-50%) scale(1.05);
  }
  .prev-products:hover {
    transform: translateY(-50%) scale(1.05);
  }
  .products__tab:hover {
    border-radius: 3px;
    background-color: #282828 !important;
    border: 3px solid #f80;
    color: #fff;
  }
}
.notfound-header {
  padding: 32px 0px;
  border-bottom: 1px solid #ddd;
}
.notfound-header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.notfound-header__phone {
  display: flex;
  align-items: center;
  gap: 7px;
}
.notfound-header__text {
  font-weight: 500;
  font-size: 15px;
  line-height: 93%;
  text-transform: uppercase;
  text-align: center;
  color: #1c1c1c;
}

@media (max-width: 600px) {
  .notfound-header__phone {
    display: none;
  }
}
.notfound {
  padding-top: 50px;
  padding-bottom: 150px;
}
.notfound__container {
  display: flex;
  justify-content: center;
}
.notfound__image {
  margin-top: 164px;
}
.notfound__image img {
  width: 100%;
}
.notfound__texts {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 600px;
  width: 900px;
}
.notfound__texts::before {
  content: "";
  position: absolute;
  background: url("../images/notfound-background.png") 0 0 no-repeat;
  width: 100%;
  height: 100%;
  background-size: contain;
}
.notfound__text {
  max-width: 500px;
  font-weight: 500;
  font-size: 20px;
  line-height: 120%;
  text-align: center;
  color: #000;
}
.notfound__text:not(:last-child) {
  margin-bottom: 20px;
}
.notfound__text:last-child {
  margin-bottom: 70px;
}

@media (max-width: 1250px) {
  .notfound__text {
    font-size: 16px;
    line-height: 112%;
  }
  .notfound__text:not(:last-child) {
    margin-bottom: 10px;
  }
  .notfound__text:last-child {
    margin-bottom: 170px;
  }
}
@media (max-width: 950px) {
  .notfound {
    padding: 40px 0px 100px 0px;
  }
  .notfound__container {
    flex-direction: column;
  }
  .notfound__image {
    max-width: 400px;
    text-align: center;
    margin: 0 auto 30px auto;
  }
  .notfound__texts {
    width: auto;
    height: auto;
  }
  .notfound__texts::before {
    display: none;
  }
  .notfound__text:last-child {
    margin-bottom: 0px;
  }
}
@media (max-width: 568px) {
  .notfound__text {
    font-size: 16px;
    line-height: 112%;
  }
}
.notfound-footer {
  padding: 60px 0px 30px 0px;
  border-top: 1px solid #ddd;
}
.notfound-footer__container {
  text-align: center;
}
.notfound-footer__logo {
  margin-bottom: 20px;
}
.notfound-footer__text {
  font-weight: 500;
  font-size: 16px;
  line-height: 106%;
  letter-spacing: 0em;
  color: #282828;
}
.notfound-footer__text:not(:last-child) {
  margin-bottom: 20px;
}

.menu {
  position: fixed;
  display: none;
  width: 100%;
  top: 52px;
  z-index: 100;
  padding-top: 30px;
  left: 0;
  max-height: calc(100vh - 52px);
  overflow-y: auto;
  overscroll-behavior: contain;
}
.menu__main {
  width: 100%;
  background-color: #f7f7f7;
}
.menu.show {
  display: block;
}
.menu__container {
  padding: 20px 30px 50px 30px;
  margin-left: -12px;
  display: inline-block;
}
.menu__name {
  font-weight: 600;
  font-size: 22px;
  line-height: 118%;
  color: #000;
  margin-bottom: 26px;
  font-family: "Gilroy-SemiBold", sans-serif;
}
.menu__content {
  display: grid;
  grid-template-columns: repeat(5, minmax(190px, 1fr));
  column-gap: 60px;
  row-gap: 40px;
  align-items: flex-start;
}
.menu__item {
  min-width: 0;
}
@media (max-width: 1500px) {
  .menu__content {
    grid-template-columns: repeat(4, minmax(180px, 1fr));
  }
}
@media (max-width: 1100px) {
  .menu__content {
    grid-template-columns: repeat(3, minmax(180px, 1fr));
  }
}
@media (max-width: 900px) {
  .menu__content {
    grid-template-columns: repeat(2, minmax(170px, 1fr));
  }
}

.item-menu__name {
  font-family: "Gilroy-SemiBold", sans-serif;
  font-size: 18px;
  line-height: 144%;
  text-decoration: underline;
  text-decoration-skip-ink: none;
  color: #000;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: color 0.2s ease, transform 0.2s ease;
  transform-origin: left center;
}
.item-menu__name::after {
  content: "";
  background: url("../../images/icons/orange-arrow.svg") 0 0 no-repeat;
  display: block;
  width: 15px;
  height: 15px;
}
.item-menu__links li:not(:last-child) {
  margin-bottom: 5px;
}
.item-menu__link {
  font-family: "Gilroy-Medium", sans-serif;
  font-size: 16px;
  line-height: 162%;
  color: #000;
  display: inline-flex;
  transform-origin: left center;
  transition: color 0.2s ease, transform 0.2s ease;
}

@media (max-width: 1350px) {
  .menu {
    display: none;
  }
}
.menu-mobile {
  position: fixed;
  z-index: 10;
  top: 74px;
  background-color: #fff;
  height: calc(100% - 74px);
  overflow: scroll;
  transform: translateX(-100%);
  padding: 30px 0px;
  border-bottom: 1px solid #ddd;
  transition: all 0.2s linear;
}
.menu-mobile.active-menu {
  transform: translateX(0);
  display: block;
}
.menu-mobile__list {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid #ddd;
}
.menu-mobile__list.hide {
  display: none;
}
.menu-mobile__link {
  font-family: "Gilroy-SemiBold", sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 162%;
  color: #1c1c1c;
}
.menu-mobile__tags {
  padding: 20px 0px;
  border-bottom: 1px solid #ddd;
}
.menu-mobile__title {
  font-family: "Gilroy-Medium", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 171%;
  letter-spacing: -0.02em;
  color: rgba(40, 40, 40, 0.8);
  margin-bottom: 20px;
}
.menu-mobile__tags-content {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.menu-mobile__tag {
  border: 1px solid #424046;
  border-radius: 100px;
  padding: 4px 10px;
  font-family: "Gilroy-Medium", sans-serif;
  font-size: 14px;
  line-height: 171%;
  letter-spacing: -0.02em;
  color: #282828;
}

.contacts-menu {
  padding: 20px 0px;
  border-bottom: 1px solid #ddd;
}
.contacts-menu__item:not(:last-child) {
  margin-bottom: 15px;
}
.contacts-menu__name {
  font-family: "Gilroy-SemiBold", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 171%;
  letter-spacing: -0.02em;
  color: rgba(40, 40, 40, 0.8);
  margin-bottom: 15px;
}
.contacts-menu__info {
  display: flex;
  align-items: center;
  gap: 8px;
}
.contacts-menu__socials {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
  margin-top: 15px;
}
.contacts-menu__social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.contacts-menu__text {
  font-family: "Gilroy-SemiBold", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 100%;
  color: #1c1c1c;
}
.contacts-menu__button {
  border: 1px solid #282828;
  border-radius: 5px;
  background-color: #3f3f3f;
  padding: 17px 25px;
  display: inline-flex;
  align-items: center;
  gap: 25px;
  margin: 20px 0px 0px 0px;
  font-weight: 600;
  font-size: 12px;
  line-height: 117%;
  text-transform: uppercase;
  text-align: center;
  color: #fff;
  transition: all 0.2s linear;
  width: 100%;
  max-width: 322px;
  justify-content: center;
  text-align: center;
}
@media (max-width: 768px) {
  .contacts-menu__button {
    background-color: #f80 !important;
    border-color: #f80 !important;
  }
}
.contacts-menu__button-arrow {
  transition: all 0.2s linear;
}

.link-submenu__content {
  margin-top: 0px;
  opacity: 0;
  height: 0px;
  transition: all 0.2s linear;
  visibility: hidden;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 0px;
}
.link-submenu__content.active {
  height: auto;
  visibility: visible;
  opacity: 100;
  margin-top: 6px;
  padding-top: 6px;
}
.link-submenu__group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.link-submenu__option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  border: none;
  border-radius: 0;
  padding: 2px 0px;
  background-color: transparent;
  font-family: "Gilroy-SemiBold", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 130%;
  color: #1c1c1c;
  cursor: pointer;
  transition: color 0.2s ease, transform 0.2s ease;
  text-align: left;
  transform-origin: left center;
  appearance: none;
  outline: none;
  gap: 6px;
}
.link-submenu__option:not(:last-child) {
  margin-bottom: 6px;
}
.link-submenu__option-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 2px;
}
.link-submenu__option-icon--raised {
  align-self: center;
  margin-top: 0;
}
.link-submenu__option-icon img {
  width: 12px;
  height: 12px;
}

.content-menu {
  padding-bottom: 0px;
  border-bottom: 1px solid #ddd;
  opacity: 0;
  transition: all 0.2s linear;
  height: 0px;
  visibility: hidden;
}
.content-menu.active {
  visibility: visible;
  height: auto;
  opacity: 100;
  padding-bottom: 20px;
}
.content-menu__back {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(221, 221, 221, 0.5);
  margin-bottom: 12px;
}
.content-menu__back-text {
  font-family: "Gilroy-SemiBold", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 162%;
  color: #727171;
}
.content-menu__category {
  font-family: "Gilroy-SemiBold", sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: #fff;
  width: 100%;
  border-radius: 10px;
  background-color: #f80;
  text-align: center;
  padding: 15px 0px;
  margin-bottom: 15px;
}
.content-menu__groups {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.content-menu__group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.content-menu__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.content-menu__link {
  font-family: "Gilroy-SemiBold", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 186%;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 8px;
  transform-origin: left center;
  transition: color 0.2s ease, transform 0.2s ease;
}

@media (hover: hover) {
  .contacts-menu__button:hover {
    background-color: #fff;
    color: #282828;
  }
  .contacts-menu__button:hover .contacts-menu__button-arrow path {
    fill: #282828;
  }
  .item-menu__name:hover,
  .item-menu__link:hover,
  .content-menu__link:hover {
    color: #f80;
    transform: scale(1.04);
  }
  .link-submenu__option:hover {
    color: #f80;
    transform: scale(1.04);
  }
}

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