@charset "UTF-8";

@font-face {
  font-family: Inter;
  font-display: swap;
  src: url("../fonts/Inter-ExtraBold.woff2") format("woff2"), url("../fonts/Inter-ExtraBold.woff") format("woff");
  font-weight: 900;
  font-style: normal;
}

@font-face {
  font-family: Inter;
  font-display: swap;
  src: url("../fonts/Inter-Bold.woff2") format("woff2"), url("../fonts/Inter-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: Grotesque;
  font-display: swap;
  src: url("../fonts/Grotesque.woff2") format("woff2"), url("../fonts/Grotesque.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: Inter;
  font-display: swap;
  src: url("../fonts/Inter-Medium.woff2") format("woff2"), url("../fonts/Inter-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: Inter;
  font-display: swap;
  src: url("../fonts/Inter-Regular.woff2") format("woff2"), url("../fonts/Inter-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: Inter;
  font-display: swap;
  src: url("../fonts/Inter-SemiBold.woff2") format("woff2"), url("../fonts/Inter-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
}

/* Указываем box sizing */

html {
  height: 100%;
  scroll-behavior: smooth;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

ul,
ol {
  padding: 0;
}

body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
}

input:focus-visible {
  outline: none;
}

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

body {
  min-height: 100vh;
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  line-height: 1;
  color: #1A1A1A;
  font-size: 16px;
  font-family: Inter;
  font-weight: 400;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #FAFAFA;
}

ul,
ol {
  list-style-position: inside;
}

ul[class],
ol[class] {
  list-style: none;
}

a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

img {
  max-width: 100%;
  display: block;
}

article > * + * {
  margin-top: 1em;
}

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

.container {
  max-width: 1360px;
  padding-left: 16px;
  padding-right: 16px;
  margin: 0 auto;
}

.content {
  padding: 100px 0;
}

.title {
  color: #000;
  font-family: Grotesque;
  font-size: 50px;
  font-weight: 600;
  line-height: 112%;
  margin-bottom: 24px;
}

/*alert*/

.box-size {
  box-sizing: border-box;
}

.alert--fixed {
  position: fixed;
  width: 100%;
  height: 100%;
  display: none;
  align-items: center;
  justify-content: center;
  top: 0px;
  left: 0px;
  z-index: 999;
}

.alert--error,
.alert--warning,
.alert--active {
  display: flex;
}

.alert--width {
  width: 400px;
}

.alert--img__item svg {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
}

.alert--img__item {
  display: none;
  flex-shrink: 0;
}

.alert--active .active {
  display: block;
}

.alert--warning .warning {
  display: block;
}

.alert--error .error {
  display: block;
}

.alert--content {
  position: relative;
  z-index: 12;
  border-radius: 15px;
  display: flex;
  align-items: center;
  flex-direction: column;
  background-color: white;
  padding: 30px;
  color: #333333;
  margin-bottom: 10%;
}

.alert--bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: black;
  opacity: 0.6;
  z-index: 11;
  top: 0px;
  left: 0px;
}

.alert-text {
  margin-top: 15px;
  text-align: center;
}

.alert--active .active path {
  fill: #4ad395;
}

.alert--warning .warning path {
  fill: #e5e75d;
}

.alert--error .error path {
  fill: #f81919;
}

.alert--title {
  font-size: 28px;
  font-weight: 500;
}

.alert--subtitle {
  font-weight: 400;
  font-size: 20px;
  padding-top: 8px;
  margin-top: 8px;
  border-top: 1px solid #ccbbbb;
}

.alert--x {
  position: absolute;
  width: 30px;
  height: 30px;
  padding: 8px;
  right: 10px;
  top: 10px;
  cursor: pointer;
}

.alert--x svg {
  width: 100%;
  height: 100%;
}

.alert--x svg path {
  fill: #968787;
  transition: all 0.3s ease;
}

.alert--x:hover path {
  fill: black;
}

/*alert*/

/*formLoader*/

.form_loader {
  position: fixed;
  display: none;
  z-index: 999;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.3);
}

.form_loader_block {
  position: absolute;
  width: 350px;
  max-width: 90%;
  left: 50%;
  top: 45%;
  padding: 40px;
  border-radius: 10px;
  background-color: #fff;
  transform: translate(-50%, -50%);
}

.form_loader_animate {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
}

.form_loader_animate:after {
  content: "";
  display: block;
  width: 85%;
  height: 85%;
  /*margin: 8px;*/
  border-radius: 50%;
  border: 6px solid #fff;
  border-color: #C53364 transparent #C53364 transparent;
  -webkit-animation: loader-animate 1.2s linear infinite;
          animation: loader-animate 1.2s linear infinite;
}

.form_loader_text {
  font-size: 20px;
  text-align: center;
}

@-webkit-keyframes loader-animate {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes loader-animate {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*formLoader*/

.burger {
  position: relative;
  z-index: 101;
  display: none;
  cursor: pointer;
}

.burger__dot {
  width: 5px;
  height: 5px;
  border-radius: 5px;
  background-color: #CBA05A;
  position: relative;
  transition: background-color 0.3s ease;
  pointer-events: none;
}

.burger__dot--line {
  background-color: transparent;
}

.burger__dot--line::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 5px;
  background-color: #CBA05A;
  border-radius: 5px;
  transition: width 0.3s ease;
  transform-origin: 2.5px 2.5px;
}

.burger__dot--left-top::before {
  transform: rotate(45deg);
}

.burger__dot--right-bottom::before {
  transform: rotate(-135deg);
}

.burger__dot--right-top::before {
  transform: rotate(135deg);
}

.burger__dot--left-bottom::before {
  transform: rotate(-45deg);
}

.burger._opened .burger__dot--line::before {
  width: 18px;
}

.burger._opened .burger__dot--aside {
  background-color: transparent;
}

.header {
  position: fixed;
  top: 10px;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 99;
}

.header__container {
  display: flex;
  align-items: center;
  padding: 10px 15px;
  border-radius: 122px;
  border: 1px solid #F4F4F4;
  background: #FFF;
}

.header__logo {
  display: flex;
  width: 190px;
  height: 44px;
  flex-shrink: 0;
  margin-right: 14px;
}

.header__logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.header__desc {
  padding-left: 14px;
  border-left: 1px solid rgba(18, 18, 18, 0.16);
  max-width: 225px;
  font-size: 12px;
  color: #121212;
  line-height: normal;
}

.header__socials {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}

.header__socials-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px;
  border-radius: 222px;
  border: 1px solid #F4F4F4;
}

.header__socials-item div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  row-gap: 4px;
}

.header__socials-item div a {
  color: #121212;
  font-size: 15px;
  font-weight: 500;
  transition: 0.2s ease-in-out;
}

.header__socials-item div a:hover {
  color: #FF9D08;
}

.header__socials-item div span {
  color: rgba(18, 18, 18, 0.4);
  font-size: 10px;
  font-weight: 500;
}

.header__socials-item img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  -o-object-fit: contain;
     object-fit: contain;
  flex-shrink: 0;
}

.menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100dvh;
  background: #ffffff;
  display: none;
  z-index: 99;
}

.menu.active {
  display: flex;
}

.menu__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding-bottom: 50px;
  border-bottom: 10px solid #FF9D08;
}

.menu__logo {
  width: 215px;
  height: 50px;
  flex-shrink: 0;
  margin-bottom: 10px;
  margin-top: auto;
}

.menu__logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.menu__desc {
  margin-bottom: 80px;
  color: #121212;
  font-size: 10px;
  opacity: 0.6;
  max-width: 182px;
  text-align: center;
}

.menu__nav {
  display: flex;
  flex-direction: column;
  row-gap: 30px;
}

.menu__nav li {
  text-align: center;
}

.menu__nav li a {
  color: #121212;
  font-size: 18px;
  font-weight: 600;
  transition: 0.2s ease-in-out;
  text-align: center;
}

.menu__nav li a:hover {
  color: #FF9D08;
}

.menu .header__socials {
  display: flex;
  flex-direction: column;
  margin-left: auto;
  margin-right: auto;
  margin-top: auto;
}

.footer {
  margin-top: auto;
}

.footer__container {
  display: flex;
  flex-direction: column;
  row-gap: 40px;
  padding: 32px;
  border-radius: 32px;
  border: 1px solid #F4F4F4;
  background: #FDFDFD;
  margin-bottom: 10px;
}

.footer__top {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.footer__logo {
  display: flex;
  width: 190px;
  height: 44px;
  flex-shrink: 0;
  margin-right: 14px;
}

.footer__logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.footer__desc {
  padding-left: 14px;
  border-left: 1px solid rgba(18, 18, 18, 0.16);
  max-width: 225px;
  font-size: 12px;
  color: #121212;
  line-height: normal;
}

.footer__inst {
  margin-left: auto;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
}

.footer__inst img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.footer__bot {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  position: relative;
  flex-wrap: wrap;
  -moz-column-gap: 15px;
       column-gap: 15px;
  row-gap: 20px;
}

.footer__nav {
  display: flex;
  flex-direction: column;
  row-gap: 12px;
}

.footer__nav-item {
  display: flex;
  align-items: flex-start;
  max-width: 245px;
  color: #121212;
  font-size: 14px;
  line-height: 140%;
}

.footer__nav-link {
  display: flex;
  align-items: center;
  gap: 12px;
  transition: 0.2s ease-in-out;
}

.footer__nav-link:hover {
  color: #FF9D08;
}

.footer__nav-link svg {
  flex-shrink: 0;
}

.footer__nav-adress {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer__nav-adress svg {
  flex-shrink: 0;
}

.footer__politics {
  position: absolute;
  bottom: 0;
  left: 0;
  color: rgba(18, 18, 18, 0.34);
  font-size: 12px;
  line-height: 140%;
  /* 16.8px */
}

.breadcrumbs__container {
  padding: 50px 0;
}

.breadcrumbs__list {
  display: flex;
  align-items: center;
  overflow: auto;
}

.breadcrumbs__list::-webkit-scrollbar {
  width: 0;
  height: 0;
}

.breadcrumbs__list-item {
  position: relative;
}

.breadcrumbs__list-item:not(:last-child) {
  margin-right: 28px;
}

.breadcrumbs__list-item:not(:last-child)::before {
  position: absolute;
  content: "/";
  top: 50%;
  transform: translateY(-50%);
  right: -18px;
}

.breadcrumbs__list-link {
  white-space: nowrap;
  font-size: 14px;
  color: #01171E;
  transition: 0.2s ease-in-out;
  opacity: 0.5;
}

.breadcrumbs__list-link:hover {
  color: #FF9D08;
}

.breadcrumbs__list-link.active {
  pointer-events: none;
  color: #01171E;
  opacity: 1;
}

.hero {
  position: relative;
}

.hero .bg-hero {
  display: none;
}

.hero__container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding-top: 115px;
  padding-bottom: 45px;
}

.hero__left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 48%;
  padding-top: 76px;
}

.hero__title {
  color: #000;
  font-family: Grotesque;
  font-size: 50px;
  font-style: normal;
  font-weight: 400;
  line-height: 112%;
  margin-bottom: 28px;
}

.hero__title span {
  color: #FF9D08;
}

.hero__list {
  display: flex;
  flex-direction: column;
  row-gap: 12px;
  margin-bottom: 40px;
}

.hero__list-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 18px;
}

.hero__list-item svg {
  flex-shrink: 0;
}

.hero__pagination {
  display: none;
}

.hero__pagination .swiper-pagination-bullet {
  background: #ffffff;
  opacity: 0.5;
}

.hero__pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  opacity: 1;
}

.hero__benefits {
  margin: 0;
  width: 100%;
}

.hero__benefits .swiper-slide.hidden {
  display: none;
}

.hero__benefit {
  position: relative;
  border-radius: 26px;
  border: 1px solid #ECECEC;
  padding: 20px;
  display: flex;
  flex-direction: column;
  row-gap: 8px;
}

.hero__benefit::before {
  position: absolute;
  content: "";
  top: 12px;
  right: 12px;
  width: 18px;
  height: 18px;
  z-index: 1;
  background: url("../img/hero-icon.svg") center/contain no-repeat;
}

.hero__benefit-num {
  font-size: 28px;
  font-weight: 600;
}

.hero__benefit-desc {
  font-size: 14px;
}

.hero__link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 24px;
  border-radius: 20px;
  background: #FF9D08;
  color: #FFF;
  font-size: 18px;
  font-weight: 500;
  margin-top: 28px;
  transition: 0.2s ease-in-out;
}

.hero__link:hover {
  background: #ab291b;
}

.hero__link svg {
  flex-shrink: 0;
}

.hero__right {
  position: relative;
  width: 48%;
  height: auto;
}

.hero__right img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.hero__block {
  position: absolute;
  left: 20px;
  bottom: 20px;
  width: 350px;
  padding: 20px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.12);
  -webkit-backdrop-filter: blur(19px);
          backdrop-filter: blur(19px);
  color: #ffffff;
}

.hero__block-header {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 20px;
}

.hero__block-num {
  font-size: 28px;
  font-weight: 600;
}

.hero__block-subtitle {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 16px;
}

.hero__block-text {
  font-size: 14px;
  line-height: normal;
}

.service {
  border-radius: 44px 44px 0 0;
  background: #262626;
}

.service__container {
  padding: 65px 0;
  color: #ffffff;
}

.service__title {
  color: #ffffff;
}

.service__block {
  display: flex;
  align-items: flex-start;
  gap: 32px;
}

.service__left {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.service__items {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 16px;
}

.service__item {
  padding: 30px;
  border-radius: 32px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(239deg, rgba(255, 255, 255, 0) -41.81%, rgba(255, 255, 255, 0.04) 29.13%, rgba(255, 255, 255, 0) 107.25%);
  box-shadow: 4px 4px 26px 0 rgba(255, 255, 255, 0.08) inset;
  display: flex;
  align-items: center;
  gap: 20px;
}

.service__item-img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  flex-shrink: 0;
  border-radius: 16px;
  background: #FF9D08;
}

.service__item-img img {
  width: 24px;
  height: 24px;
  -o-object-fit: contain;
     object-fit: contain;
}

.service__item-title {
  font-size: 24px;
  font-weight: 600;
  line-height: normal;
}

.service__desc {
  margin-top: 30px;
  padding-left: 16px;
  border-left: 2px solid #FF9D08;
  font-size: 18px;
  line-height: normal;
}

.service__desc > *:not(:first-child) {
  display: none;
}

.service__desc.expanded > * {
  display: block !important;
}

.service__right {
  width: 460px;
  flex-shrink: 0;
}

.service__more {
  display: inline-flex;
  align-items: center;
  align-self: flex-end;
  gap: 5px;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  font-weight: 400;
  line-height: normal;
  transition: 0.2s ease-in-out;
}

.service__more:hover {
  color: #FF9D08;
}

.service__more svg {
  transition: 0.2s ease-in-out;
  flex-shrink: 0;
}

.service__more.active svg {
  transform: rotate(180deg);
}

.office__title {
  display: none;
}

.office-slider {
  width: 100%;
  height: 550px;
  margin: 0 auto;
  background: #1c1c1c;
  border-radius: 24px;
  padding: 0 30px;
  overflow: hidden;
}

.office-slider .swiper-pagination {
  display: none;
}

.office-slider .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  opacity: 1;
}

.office-slider .swiper-pagination .swiper-pagination-bullet {
  background: #ffffff;
  opacity: 0.5;
}

.office-swiper {
  height: 100%;
}

.office-slider .swiper-slide {
  position: relative;
  height: 200px;
  display: flex;
  justify-content: center;
  transition: transform 0.45s ease, filter 0.45s ease, opacity 0.45s ease;
  will-change: transform;
}

.office-slider .swiper-slide::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
  transition: 0.45s ease;
  pointer-events: none;
}

.office-slider .swiper-slide.swiper-slide-active {
  z-index: 2;
}

.office-slider .swiper-slide.swiper-slide-active::before {
  opacity: 0;
}

.office-slider .swiper-slide.swiper-slide-next,
.office-slider .swiper-slide.swiper-slide-prev {
  z-index: 1;
}

.office-card {
  height: 100%;
  width: 100%;
  background: #fff;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.office-icon {
  width: 44px;
  height: 44px;
  background: #ff9f1a;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.office-icon img {
  width: 32px;
  height: 32px;
  -o-object-fit: contain;
     object-fit: contain;
}

.office-title {
  color: #121212;
  font-weight: 600;
  font-size: 24px;
  margin-bottom: 6px;
}

.office-text {
  font-size: 16px;
  color: rgba(18, 18, 18, 0.8);
  line-height: 132%;
}

.feedback__container {
  padding: 60px 0;
}

.feedback__block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 45px;
  padding: 5px;
  border-radius: 32px;
  background: #FF9D08;
}

.feedback__col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  padding-left: 56px;
  color: #ffffff;
}

.feedback__title {
  color: #ffffff;
  margin-bottom: 0;
}

.feedback__desc {
  margin-bottom: 40px;
}

.feedback__link {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #FF9D08;
  font-size: 18px;
  font-weight: 500;
  background: #ffffff;
  border-radius: 20px;
  padding: 24px;
  transition: 0.2s ease-in-out;
}

.feedback__link:hover {
  transform: scale(1.04);
}

.feedback__link svg {
  flex-shrink: 0;
}

.feedback__image {
  position: relative;
  width: 500px;
  height: 286px;
  flex-shrink: 0;
}

.feedback__image img:nth-child(1) {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 32px;
}

.feedback__image img:nth-child(2) {
  position: absolute;
  top: -90px;
  right: 0;
  width: 700px;
  height: 360px;
  -o-object-fit: contain;
     object-fit: contain;
}

.work__container {
  padding: 30px 0 60px 0;
}

.work__title {
  text-align: center;
  margin-bottom: 24px;
}

.work__subtitle {
  text-align: center;
  color: rgba(0, 0, 0, 0.7);
  margin-bottom: 60px;
  line-height: 120%;
}

.work__block {
  display: flex;
  align-items: flex-start;
  border-radius: 32px;
  border: 1px solid #ECECEC;
  background: #FFF;
  padding: 20px;
  gap: 12px;
}

.work__col {
  display: flex;
  flex-direction: column;
  row-gap: 6px;
  width: 330px;
  height: auto;
  flex-shrink: 0;
}

.work__link {
  display: flex;
  flex-direction: column;
  row-gap: 2px;
  padding: 18px 32px;
  border-radius: 8px;
  background: #F9F9F9;
  line-height: normal;
  transition: 0.2s ease-in-out;
}

.work__link.active {
  background: #FF9D08;
}

.work__link.active .work__link-title {
  color: #FFF;
}

.work__link.active .work__link-desc {
  color: rgba(255, 255, 255, 0.75);
}

.work__link:hover {
  background: #FF9D08;
}

.work__link:hover .work__link-title {
  color: #FFF;
}

.work__link:hover .work__link-desc {
  color: rgba(255, 255, 255, 0.75);
}

.work__link:first-child {
  border-radius: 20px 8px 8px 8px;
}

.work__link:last-child {
  border-radius: 8px 8px 8px 20px;
}

.work__link-title {
  color: rgba(0, 0, 0, 0.7);
  font-weight: 18;
  font-weight: 500;
  transition: 0.2s ease-in-out;
}

.work__link-desc {
  font-size: 14px;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.4);
  transition: 0.2s ease-in-out;
}

.work__tabs {
  width: 100%;
}

.work__tabs .swiper-pagination {
  display: none;
}

.work__tabs .swiper-pagination .swiper-pagination-bullet {
  background: #ffffff;
  opacity: 0.5;
}

.work__tabs .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  opacity: 1;
}

.work__tab {
  position: relative;
  display: none;
  align-items: center;
  border-radius: 8px 20px 20px 8px;
  overflow: hidden;
  min-height: 630px;
  width: 100%;
  justify-content: flex-start;
}

.work__tab::before {
  display: none;
}

.work__tab-info {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-left: 50px;
  max-width: 500px;
}

.work__tab-title {
  color: #FFF;
  font-family: Grotesque;
  font-size: 40px;
  font-weight: 600;
  line-height: 112%;
  /* 44.8px */
  margin-bottom: 20px;
}

.work__tab-desc {
  color: rgba(255, 255, 255, 0.8);
  font-size: 20px;
  line-height: 132%;
  /* 26.4px */
  margin-bottom: 48px;
}

.work__tab-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #FF9D08;
  font-size: 18px;
  font-weight: 500;
  padding: 24px;
  border-radius: 20px;
  background: #ffffff;
  transition: 0.2s ease-in-out;
}

.work__tab-link:hover {
  transform: scale(1.04);
}

.work__tab-link svg {
  flex-shrink: 0;
}

.work__tab-person {
  position: absolute;
  width: auto;
  height: 100%;
  bottom: 0;
  right: 16px;
  display: flex;
  align-items: flex-end;
}

.work__tab-person img {
  width: 100%;
  height: 90%;
  -o-object-fit: contain;
     object-fit: contain;
}

.work__tab-status {
  position: absolute;
  right: 18px;
  bottom: 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 12px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(24px);
          backdrop-filter: blur(24px);
  row-gap: 10px;
  z-index: 2;
}

.work__tab-name {
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.24);
  color: #FFF;
  font-size: 16px;
  font-weight: 600;
  padding: 10px;
}

.work__tab-job {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  line-height: 132%;
  letter-spacing: 0.56px;
}

.work__tab-job svg {
  flex-shrink: 0;
}

.video__container {
  padding-top: 30px;
  padding-bottom: 60px;
}

.video__title {
  text-align: center;
}

.video__block {
  position: relative;
  width: 100%;
  height: auto;
  border-radius: 32px;
  overflow: hidden;
  padding: 20px;
  border-radius: 32px;
  border: 1px solid #ECECEC;
  background: #FFF;
}

.video__block::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
  cursor: pointer;
}

.video__block::after {
  position: absolute;
  content: "";
  z-index: 2;
  background: url("../img/video-icon.png") center/100px 100px no-repeat;
  width: 100px;
  height: 100px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-animation: rotate 4s linear infinite;
          animation: rotate 4s linear infinite;
  cursor: pointer;
}

@-webkit-keyframes rotate {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes rotate {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.video__block.is-play::before,
.video__block.is-play::after {
  display: none;
}

.video__block video {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  -o-object-fit: cover;
     object-fit: cover;
}

.faq__container {
  padding-bottom: 66px;
}

.faq__title {
  text-align: center;
}

.faq__main-accordeons {
  display: flex;
  flex-direction: column;
  row-gap: 18px;
}

.faq__main-accordeon {
  padding: 12px 12px 12px 30px;
  border-radius: 18px;
  border: 1px solid #EBEBEB;
}

.faq__main-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: #121212;
  font-size: 18px;
  font-weight: 500;
  line-height: 140%;
  transition: 0.2s ease-in-out;
}

.faq__main-title.active svg {
  transform: rotate(45deg);
}

.faq__main-title.active svg circle {
  fill: #FF9D08;
}

.faq__main-title.active svg rect {
  fill: #ffffff;
}

.faq__main-title:hover {
  color: #FF9D08;
}

.faq__main-title svg {
  flex-shrink: 0;
  transition: 0.2s ease-in-out;
}

.faq__main-body {
  color: rgba(18, 18, 18, 0.6);
  font-size: 16px;
  font-weight: 400;
  line-height: 130%;
  padding-top: 18px;
  padding-bottom: 12px;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
}

.modal.active {
  display: block;
}

.modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

.modal__content {
  position: relative;
  max-width: 420px;
  width: calc(100% - 32px);
  margin: 10vh auto;
  background: #fff;
  border-radius: 16px;
  padding: 24px;
}

.modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 24px;
  background: none;
  border: none;
  cursor: pointer;
}

.modal__title {
  margin-bottom: 8px;
  font-size: 22px;
}

.modal__subtitle {
  margin-bottom: 20px;
  color: #666;
  font-size: 14px;
}

.modal__field {
  margin-bottom: 14px;
}

.modal__field input,
.modal__field textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-size: 14px;
}

.modal__field textarea {
  resize: vertical;
  min-height: 90px;
}

.modal__file label {
  display: block;
  cursor: pointer;
}

.modal__file-text {
  display: block;
  padding: 12px 14px;
  border: 1px dashed #ccc;
  border-radius: 8px;
  color: #666;
  font-size: 14px;
}

.modal__submit {
  width: 100%;
  margin-top: 10px;
  padding: 14px;
  border-radius: 10px;
  background: #ff9d08;
  color: #000;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.modal__policy {
  margin-top: 12px;
  font-size: 12px;
  color: #777;
}

.modal__policy a {
  color: #ff9d08;
  text-decoration: underline;
}

section:not(.hero) {
  overflow: hidden;
}

@media (min-width: 992px) {
  .hero__benefits .swiper-slide {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 16px;
  }

  .work__tab.active {
    display: flex;
  }
}

@media (max-width: 1420px) {
  .content {
    padding: 75px 0;
  }
}

@media (max-width: 1360px) {
  .container {
    max-width: 1240px;
  }

  .title {
    font-size: 42px;
  }

  .hero__title {
    font-size: 40px;
  }

  .hero__list-item {
    font-size: 14px;
  }

  .hero__benefit {
    padding: 16px;
  }

  .hero__benefit-num {
    font-size: 24px;
  }

  .hero__block-num {
    font-size: 24px;
  }

  .service__container {
    padding: 50px 0;
  }

  .service__item {
    padding: 20px;
  }

  .service__item-title {
    font-size: 18px;
  }

  .service__desc {
    font-size: 14px;
  }
}

@media (max-width: 1240px) {
  .container {
    max-width: 992px;
  }

  .content {
    padding: 50px 0;
  }

  .title {
    font-size: 30px;
  }

  .burger {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (5px)[3];
    grid-template-columns: repeat(3, 5px);
    justify-content: space-between;
    width: 25px;
    row-gap: 5px;
    -moz-column-gap: 5px;
         column-gap: 5px;
    margin-left: auto;
    margin-right: 0;
  }

  .header {
    top: 0;
  }

  .header .container {
    width: 100%;
    max-width: unset;
    padding: 0;
  }

  .header__container {
    padding: 20px 16px;
    border-radius: 0;
    width: 100%;
  }

  .header__logo {
    width: 150px;
    height: 35px;
  }

  .header__desc {
    display: none;
  }

  .header__socials {
    display: none;
  }

  .footer__politics {
    position: static;
    top: unset;
    left: unset;
    width: 100%;
    text-align: center;
    font-size: 10px;
  }

  .hero__left {
    padding-top: 0;
  }

  .hero__benefits .swiper-slide {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .hero__benefit {
    width: 100%;
  }

  .service__items {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .feedback__col {
    padding: 30px;
  }

  .work__tab-title {
    font-size: 30px;
  }

  .work__tab-desc {
    font-size: 16px;
  }
}

@media (max-width: 1200px) {
  .alert--width {
    width: 370px;
  }

  .alert--content {
    padding: 25px;
  }

  .alert--img__item svg {
    width: 75px;
    height: 75px;
  }

  .alert-text {
    margin-top: 10px;
  }

  .alert--title {
    font-size: 24px;
  }

  .alert--subtitle {
    font-size: 18px;
  }
}

@media (max-width: 992.9px) {
  .container {
    width: 100%;
    max-width: none;
  }
}

@media (max-width: 992px) {
  .footer__container {
    margin-bottom: 0;
  }

  .footer .container {
    padding: 0;
  }

  .footer__top {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer__desc {
    padding-left: 0;
    border-left: none;
    font-size: 10px;
  }

  .footer__inst {
    position: absolute;
    top: 0;
    right: 0;
  }

  .footer__bot {
    flex-direction: column;
  }

  .breadcrumbs__container {
    padding: 30px 0;
  }

  .header-space {
    padding-top: 77px;
  }

  .hero .bg-hero {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: calc(100% + 40px);
    -o-object-fit: cover;
       object-fit: cover;
    display: block;
    z-index: -1;
    -o-object-position: 0 0;
       object-position: 0 0;
  }

  .hero__container {
    padding-top: 30px;
  }

  .hero__left {
    width: 100%;
  }

  .hero__title {
    font-size: 30px;
    margin-bottom: 260px;
    color: #ffffff;
  }

  .hero__list-item {
    color: #ffffff;
  }

  .hero__pagination {
    display: flex;
    justify-content: center;
    bottom: 40px;
  }

  .hero__benefits .swiper-slide.hidden {
    display: flex;
    flex-direction: column;
  }

  .hero__benefit {
    color: #ffffff;
    border-color: #ffffff;
    margin-bottom: 20px;
  }

  .hero__link {
    width: 100%;
    justify-content: center;
    margin-top: 0;
    margin-bottom: 20px;
  }

  .hero__right {
    display: none;
  }

  .service__item-title {
    font-size: 16px;
  }

  .service__right {
    width: 400px;
  }

  .feedback .container {
    padding: 0;
  }

  .feedback__block {
    flex-direction: column-reverse;
    gap: 0;
  }

  .feedback__link {
    width: 100%;
    justify-content: space-between;
  }

  .feedback__image {
    width: 100%;
  }

  .feedback__image img:nth-child(2) {
    right: 0;
    width: 500px;
  }

  .work__container {
    padding-top: 0;
  }

  .work__subtitle {
    margin-bottom: 20px;
  }

  .work__block {
    padding: 0;
  }

  .work__col {
    display: none;
  }

  .work__tabs .swiper-pagination {
    display: flex;
    justify-content: center;
    bottom: 40px;
  }

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

  .work__tab-info {
    max-width: unset;
    width: 100%;
    padding: 50px 30px 0 30px;
  }

  .work__tab-desc {
    margin-bottom: 20px;
  }

  .work__tab-link {
    width: 100%;
    justify-content: space-between;
    gap: 2px;
    padding: 24px 16px;
  }

  .work__tab-person {
    position: static;
    width: 300px;
    height: 350px;
    margin-top: 20px;
  }

  .work__tab-person img {
    height: 100%;
  }

  .work__tab-status {
    bottom: 80px;
    left: 30px;
    right: unset;
  }

  .video__container {
    padding-top: 0;
  }

  .video__block {
    padding: 0;
    border-radius: 12px;
    height: 300px;
  }

  .faq__main-title {
    font-size: 14px;
  }

  .faq__main-body {
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .service__title {
    text-align: center;
  }

  .service__block {
    flex-direction: column;
  }

  .service__right {
    width: 100%;
  }

  .office__title {
    display: block;
    text-align: center;
    color: #ffffff;
  }

  .office-slider .swiper-pagination {
    display: block;
    bottom: unset;
    top: calc(100% + 16px);
  }

  .office-slider {
    position: relative;
    height: auto;
    padding: 0;
    overflow: unset;
  }

  .office-slider .swiper-slide {
    height: 170px;
  }

  .office-card {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 80px 1fr;
    grid-template-columns: 80px 1fr;
    grid-gap: 8px 30px;
    align-content: start;
  }

  .office-icon {
    -ms-grid-row-span: 2;
    grid-row: 2 span;
    width: 80px;
    height: 80px;
  }

  .office-icon img {
    width: 60px;
    height: 60px;
  }
}

@media (max-width: 500px) {
  .alert--content {
    width: 92%;
  }

  .alert--img__item svg {
    width: 60px;
    height: 60px;
  }

  .alert--title {
    font-size: 22px;
  }
}