html {
  scroll-behavior: smooth;
}

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

* {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  background: unset;
}

body {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  line-height: 1.3;
  color: #000;
  -webkit-font-smoothing: antialiased;
}
body.overflowHidden {
  overflow: hidden;
}

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

button {
  cursor: pointer;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

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

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

#root,
#__next {
  isolation: isolate;
}

.auto__container {
  flex-grow: 1;
  padding: 0 16px;
  margin: 0 auto;
  max-width: 1380px;
}

.button {
  padding: 12px 26px;
  border-radius: 70px;
  color: #fff;
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: -0.28px;
  cursor: pointer;
  transition: all 0.15s ease-in-out;
}
.button:hover {
  opacity: 0.8;
}
.button svg {
  width: 18px;
  height: 18px;
}
.button.withIcon {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.button.primary {
  background: #ff914d;
}
.button.secondary {
  background: #8c52ff;
}
.button.outlined {
  border: 1px solid #fff;
  background: transparent;
}

.search__form {
  padding: 1px;
  height: 50px;
  border-radius: 50px;
  display: flex;
  background: #fff;
}
.search__form input {
  padding: 15px 20px;
  flex-grow: 1;
  color: rgb(97, 97, 97);
  font-family: "DM Sans", sans-serif;
  font-size: 15px;
  font-weight: 400;
}
.search__form input::placeholder {
  color: rgba(97, 97, 97, 0.5);
}
.search__form button {
  padding: 0;
  width: 85px;
  height: 48px;
  border-radius: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0;
}
.search__form button svg {
  width: 20px;
  height: 20px;
}

h2 {
  margin-bottom: 25px;
  color: #fff;
  font-family: "DM Sans", sans-serif;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -1.44px;
}
h2 span {
  font-weight: 500;
  font-style: italic;
}

h5 {
  color: #0d0d0c;
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.96px;
}

h6 {
  color: #000;
  font-size: 15px;
  font-weight: 700;
}

p {
  font-size: 15px;
}

.text-white {
  color: #fff;
}

.text-purple {
  color: #8c52ff;
}

.text-orange {
  color: #ff914d;
}

.text-blue {
  color: #38b6ff;
}

.bg-blue {
  background-color: #38b6ff;
}

.text-underline {
  text-decoration: underline;
}

.header {
  padding: 20px 0;
  background: #fff;
  border-bottom: 1px solid rgba(160, 160, 160, 0.5);
}
.header__logo {
  display: block;
  width: 130px;
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header__content {
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header__content span {
  display: none;
}
.header .burger {
  position: relative;
  width: 20px;
  height: 15px;
  display: flex;
  align-items: center;
}
.header .burger.active span {
  opacity: 0;
}
.header .burger.active::before {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}
.header .burger.active::after {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
}
.header .burger span {
  width: 100%;
  height: 2px;
  background: #0d0d0c;
  transition: all 0.3s ease-in-out;
}
.header .burger::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: #0d0d0c;
  width: 100%;
  height: 2px;
  transition: all 0.3s ease-in-out;
}
.header .burger::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  background: #0d0d0c;
  width: 100%;
  height: 2px;
  transition: all 0.3s ease-in-out;
}
.header--dark {
  background: #0d0d0c;
}
.header--dark .header__content span {
  color: #fff;
}
.header--dark .burger span, .header--dark .burger::before, .header--dark .burger::after {
  background: #fff;
}

.nav {
  overflow: hidden;
  position: fixed;
  top: 71px;
  left: 0;
  z-index: 1000;
  width: 100%;
  height: calc(100% - 71px);
  pointer-events: none;
  transition: all 0.3s ease-in-out;
}
.nav--dark .nav__inner {
  background: #0d0d0c;
}
.nav--dark .nav__link {
  color: #a0a0a0;
}
.nav--dark .nav__link.active {
  color: #fff;
}
.nav.active {
  pointer-events: auto;
  background: rgba(0, 0, 0, 0.3);
}
.nav.active .nav__inner {
  opacity: 1;
  transform: translateY(0);
}
.nav__inner {
  background: #fff;
  opacity: 0;
  transform: translateY(-100%);
  transition: all 0.3s ease-in-out;
}
.nav__link {
  display: block;
  padding: 10px 15px;
  color: #303030;
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  font-weight: 400;
  border-bottom: 1px solid rgba(48, 48, 48, 0.3);
}
.nav__link.active {
  color: #000;
  font-weight: 700;
}

.hero {
  position: relative;
  overflow: hidden;
  padding-block: 30px;
}
.hero__bg {
  display: flex;
  justify-content: space-between;
}
.hero__bg-item {
  width: 30%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero__bg-item:first-child svg {
  width: 44px;
  height: 44px;
  transform: rotate(100deg);
}
.hero__bg-item:nth-child(2) svg {
  width: 63px;
  height: 63px;
}
.hero__bg-item:nth-child(3) img {
  width: 150px;
}
.hero__bg-item:last-child {
  display: none;
}
.hero__inner {
  margin: 0 auto;
  max-width: 940px;
  text-align: center;
}
.hero__subtitle {
  margin-bottom: 20px;
  color: #a9a9a9;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.2;
  text-align: center;
}
.hero h1 {
  margin-bottom: 20px;
  color: #000;
  font-family: "DM Sans", sans-serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -1.5px;
}
.hero h1 span {
  display: inline-block;
  margin-top: 5px;
  padding: 0 40px;
  font-weight: 700;
  background: rgba(255, 145, 77, 0.5);
  clip-path: polygon(2% 20%, 100% 0%, 98% 80%, 0% 100%);
}
.hero p {
  margin-bottom: 20px;
}
.hero__buttons button {
  margin: 0 0 25px;
  width: 100%;
}
.hero__buttons a {
  color: #6a6a6a;
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: -0.6px;
  text-decoration-line: underline;
}
.hero__buttons-arrow {
  display: none;
}
.hero--dark {
  position: relative;
  z-index: 10;
  padding-block: 100px 50px;
  background: #0d0d0c;
}
.hero--dark .hero__inner {
  max-width: unset;
}
.hero--dark .hero__content {
  margin-bottom: 30px;
}
.hero--dark .hero__bg-item {
  position: absolute;
  display: block;
  width: unset;
}
.hero--dark .hero__bg-item:first-child {
  top: 45px;
  left: 15%;
}
.hero--dark .hero__bg-item:first-child svg {
  width: 35px;
  height: 38px;
}
.hero--dark .hero__bg-item:nth-child(2) {
  top: 60px;
  right: 5%;
}
.hero--dark .hero__bg-item:nth-child(2) svg {
  width: 30px;
  height: 32px;
}
.hero--dark .hero__categories {
  transition: all 0.2s ease-in-out;
}
.hero--dark .hero__categories.sticky {
  padding-block: 10px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #0d0d0c;
}
.hero--dark .hero__categories button {
  margin: 5px;
  font-size: 12px;
  border: 1px solid #fff;
}
.hero--dark .hero__categories button.active {
  background: #8c52ff;
  border-color: #8c52ff;
}

.footer {
  overflow: hidden;
}
.footer--contact {
  border-top: 1px solid #dedede;
}
.footer__top {
  position: relative;
  padding: 25px;
}
.footer__top::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: -1000px;
  width: 5000px;
  height: 1px;
  background: #dedede;
}
.footer__top-inner {
  margin: 0 auto;
  max-width: 1080px;
  color: #000;
  font-size: 12px;
}
.footer__top span {
  margin-bottom: 20px;
  display: block;
}
.footer__top span strong {
  text-decoration: underline;
}
.footer__top ul {
  list-style-position: inside;
}
.footer__main {
  position: relative;
  padding: 30px 0;
}
.footer__main::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: -1000px;
  width: 5000px;
  height: 1px;
  background: #dedede;
}
.footer__main-link {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  color: #000;
  font-size: 20px;
  font-weight: 700;
}
.footer__main-link svg {
  width: 18px;
  height: 18px;
}
.footer__bottom {
  padding: 15px 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__bottom span:first-child {
  font-size: 15px;
}
.footer__bottom span:last-child {
  font-size: 10px;
}
.footer__columns {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__col:first-child, .footer__col:nth-child(2) {
  display: none;
}
.footer__col h6 {
  margin-bottom: 8px;
}
.footer__col-links {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.footer__col-links a {
  color: #000;
  font-size: 15px;
}

.sectionTop {
  padding: 40px 0;
}
.sectionTop__inner {
  margin: 0 auto;
  max-width: 1080px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.sectionTop h2 {
  padding-inline: 40px;
  position: relative;
  color: #0d0d0c;
}
.sectionTop h2 svg {
  position: absolute;
  right: 0;
  top: -18px;
  width: 36px;
  height: 36px;
  pointer-events: none;
}

.features__list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.feature {
  width: 100%;
  padding: 16px 10px;
  border-radius: 8px;
  border: 1px solid #e2e0e5;
  background: #fff;
  box-shadow: 0px 50px 100px -2px rgba(20, 20, 21, 0.06);
}
.feature__top {
  margin-bottom: 16px;
  display: flex;
  gap: 16px;
}
.feature__icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #8c52ff;
  display: flex;
  justify-content: center;
  align-items: center;
}
.feature__icon svg {
  width: 20px;
  height: 20px;
}
.feature__title {
  color: #1e1f4b;
  font-family: "DM Sans", sans-serif;
  font-size: 15px;
  font-weight: 700;
}
.feature__desc {
  color: #64607d;
  font-size: 12px;
  line-height: 1.6;
}

.search {
  position: relative;
  padding: 60px 0;
  background: #0d0d0c;
}
.search__bg {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 100%;
  pointer-events: none;
}
.search__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.search__line:first-child {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 10px;
  background: #8c52ff;
}
.search__line:last-child {
  position: absolute;
  top: 0;
  left: calc(50% - 15px);
  width: calc(50% + 15px);
  height: 10px;
  background: #38b6ff;
  clip-path: polygon(15px 0, 100% 0, 100% 10px, 0 10px);
}
.search__title {
  margin-bottom: 50px;
  color: #fff;
  font-family: "DM Sans", sans-serif;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -1.44px;
  text-align: center;
}
.search__title span {
  font-weight: 400;
  font-style: italic;
}
.search__subtitle {
  margin-bottom: 25px;
  color: #a9a9a9;
  font-size: 15px;
  line-height: 1.2;
  letter-spacing: -0.6px;
  text-align: center;
}

.booking {
  position: relative;
  padding: 60px 0;
  background: #0d0d0c;
}
.booking__bg {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 100%;
  pointer-events: none;
}
.booking__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.booking__inner {
  text-align: center;
}
.booking__inner p {
  margin-bottom: 35px;
}
.booking__buttons {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.booking__buttons svg {
  display: none;
}

.about {
  padding: 60px 0;
  background: #0d0d0c;
}
.about__image {
  display: none;
}
.about h2 {
  margin-bottom: 30px;
}
.about h2 span {
  text-underline-offset: 5px;
  text-decoration-thickness: 2px;
}
.about p {
  margin-bottom: 20px;
  color: #a9a9a9;
}
.about p:last-child {
  margin-bottom: 40px;
}
.about button {
  width: 100%;
}

.stats {
  background: #0d0d0c;
}
.stats__list {
  padding-block: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-around;
  border-block: 1px solid #ff914d;
}

.stat {
  width: 40%;
  font-family: "DM Sans", sans-serif;
  line-height: 1.2;
  text-align: center;
}
.stat h1 {
  color: #f0f0f0;
  font-size: 48px;
  font-weight: 500;
}
.stat span {
  color: #fff;
  font-size: 12px;
  font-weight: 400;
}

.steps {
  position: relative;
  padding-block: 60px;
  background: #0d0d0c;
}
.steps h2 {
  margin-bottom: 60px;
}
.steps__list {
  margin-bottom: 50px;
}
.steps__bottom-title {
  margin-bottom: 30px;
  color: #fff;
  font-family: "DM Sans", sans-serif;
  font-size: 15px;
  font-weight: 500;
  text-align: center;
}
.steps__bottom button {
  width: 100%;
}
.steps__line span:first-child {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 10px;
  background: #ff914d;
}
.steps__line span:last-child {
  position: absolute;
  bottom: 0;
  left: calc(50% - 15px);
  width: calc(50% + 15px);
  height: 10px;
  background: #8c52ff;
  clip-path: polygon(15px 0, 100% 0, 100% 10px, 0 10px);
}

.step {
  display: flex;
  justify-content: space-between;
}
.step:not(:last-child) {
  margin-bottom: 34px;
}
.step:not(:last-child) .step__count::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 100%;
  z-index: -1;
  transform: translateX(-50%) rotate(-90deg);
  width: 125px;
  height: 1px;
  background: url("../assets/images/dashed-line.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.step__count {
  position: relative;
  z-index: 2;
  width: 70px;
  height: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  color: #fff;
  font-family: "Manrope", sans-serif;
  font-size: 46px;
  font-weight: 800;
  box-shadow: inset 0 0 0 5px rgba(255, 145, 77, 0.3), 0 0 0 5px rgba(255, 145, 77, 0.15);
}
.step__count::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: -1;
  transform: translate(-50%, -50%);
  width: calc(100% - 10px);
  height: calc(100% - 10px);
  border-radius: 50%;
  background: #ff914d;
}
.step__content {
  width: calc(100% - 90px);
}
.step__title {
  margin-bottom: 10px;
  color: #ff914d;
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
}
.step__desc {
  color: #aaa;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.6;
}

.consult {
  padding-block: 50px;
}
.consult__inner {
  padding: 40px 16px;
  border-radius: 30px;
  background: #000;
}
.consult__title {
  margin-bottom: 30px;
  color: #fff;
  font-family: "DM Sans", sans-serif;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}
.consult p {
  margin-bottom: 20px;
}
.consult ul {
  margin-bottom: 30px;
  list-style-position: inside;
}
.consult ul li {
  color: #fff;
  font-size: 12px;
  font-weight: 600;
}
.consult ul li:not(:last-child) {
  margin-bottom: 5px;
}
.consult button {
  width: 100%;
}

.projects {
  position: relative;
  padding-block: 30px 60px;
}
.projects__inner {
  position: relative;
}
.projects__categories {
  margin-bottom: 40px;
}
.projects__categories .swiper-slide {
  width: fit-content;
}
.projects__categories .swiper-slide-active button {
  color: #fff;
  background: #8c52ff;
  border-color: #8c52ff;
}
.projects__categories button {
  color: #0d0d0c;
  border: 1px solid #0d0d0c;
}
.projects__images .swiper-slide {
  overflow: hidden;
  border-radius: 10px;
  height: 260px;
}
.projects__images .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.projects .swiper-navigation {
  position: absolute;
  bottom: 0;
  left: 50%;
  z-index: 100;
  transform: translateX(-50%);
  width: 70px;
  height: 30px;
  display: flex;
  justify-content: space-between;
}
.projects .swiper-navigation .swiper-button-prev, .projects .swiper-navigation .swiper-button-next {
  margin: 0;
  position: static;
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background: #0d0d0c;
  color: #fff;
  border: 1px solid transparent;
  transition: all 0.15s ease-in-out;
}
.projects .swiper-navigation .swiper-button-prev:hover, .projects .swiper-navigation .swiper-button-next:hover {
  opacity: 0.8;
}
.projects .swiper-navigation .swiper-button-prev.swiper-button-disabled, .projects .swiper-navigation .swiper-button-next.swiper-button-disabled {
  opacity: 1;
  background: #fff;
  color: #0d0d0c;
  border-color: #0d0d0c;
}
.projects .swiper-navigation .swiper-button-prev svg, .projects .swiper-navigation .swiper-button-next svg {
  width: 15px;
  height: 15px;
}
.projects .swiper-navigation .swiper-button-prev::after, .projects .swiper-navigation .swiper-button-next::after {
  content: none;
}
.projects .swiper-navigation .swiper-button-prev svg {
  transform: rotate(-180deg);
}

.promo {
  position: relative;
  padding-block: 60px 120px;
}
.promo__title {
  margin-bottom: 20px;
  color: #0d0d0c;
  font-family: "DM Sans", sans-serif;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -1.44px;
}
.promo__title span {
  font-style: italic;
  font-weight: 500;
}
.promo__content {
  margin-bottom: 20px;
}
.promo__content button {
  position: absolute;
  left: 50%;
  bottom: 60px;
  transform: translateX(-50%);
  width: 150px;
}
.promo__image svg {
  display: none;
}

.cards {
  padding-block: 30px 50px;
}
.cards__list {
  margin-bottom: 36px;
}
.cards__button button {
  display: block;
  margin: 0 auto;
}

.card {
  overflow: hidden;
  border-radius: 10px;
  border: 1px solid #d6d6d6;
  background: #fff;
  box-shadow: 0px 24px 50px 0px rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(8px);
}
.card:not(:last-child) {
  margin-bottom: 15px;
}
.card:nth-child(n+7) {
  display: none;
}
.card__image img {
  width: 100%;
}
.card__content {
  padding: 20px 15px;
}
.card__content h5 {
  margin-bottom: 10px;
}
.card__content .button {
  padding: 6px 20px;
  border-color: #ff914d;
  color: #ff914d;
  font-size: 12px;
}
.card__price {
  margin-bottom: 10px;
  color: #0d0d0c;
  font-family: "DM Sans", sans-serif;
  font-size: 12px;
  font-weight: 400;
}
.card__price span {
  color: #ff914d;
  font-size: 14px;
  font-weight: 700;
}

.contact {
  padding-block: 50px;
}
.contact__main {
  position: relative;
  margin-bottom: 140px;
}
.contact__main-arrow {
  position: absolute;
  left: 50%;
  top: 100%;
  width: 60px;
  height: 120px;
  transform: translateX(-50%) rotate(120deg);
}
.contact__content {
  margin-bottom: 50px;
}
.contact__content h2 {
  color: #0d0d0c;
  margin-bottom: 30px;
}
.contact__content p {
  margin-bottom: 50px;
  color: #a9a9a9;
  font-family: "DM Sans", sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.2;
}
.contact__image {
  margin-inline: auto;
  max-width: 400px;
}
.contact__image img {
  width: 100%;
}
.contact__social {
  display: flex;
  gap: 20px;
}
.contact__social:not(:last-child) {
  margin-bottom: 30px;
}
.contact__social:first-child .contact__social-icon {
  border: 1px solid #51c85d;
  background: #fff;
}
.contact__social:last-child .contact__social-icon {
  background: #000;
}
.contact__social-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.contact__social-icon img {
  width: 28px;
  height: 28px;
}
.contact__social-icon svg {
  color: #fff;
  width: 24px;
  height: 24px;
}
.contact__social-title {
  margin-bottom: 10px;
  color: #010205;
  font-family: "DM Sans", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
}
.contact__social-text {
  color: #6b6a7e;
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  font-weight: 400;
}
.contact__form {
  padding: 40px 10px 25px;
  border-radius: 10px;
  border: 1px solid #d6d6d6;
  background: #fff;
  box-shadow: 0px 24px 50px 0px rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(8px);
}
.contact__form h3 {
  margin-bottom: 25px;
  color: #0d0d0c;
  text-align: center;
  font-family: "DM Sans", sans-serif;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.96px;
}
.contact__form-inputs {
  margin-bottom: 15px;
}
.contact__form-inputs input,
.contact__form-inputs textarea {
  padding: 12px 20px;
  width: 100%;
  border-radius: 5px;
  border: 1px solid #9ea9a8;
  background: #fff;
  color: #7b7b7b;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.6;
}
.contact__form-inputs input:not(:last-child),
.contact__form-inputs textarea:not(:last-child) {
  margin-bottom: 10px;
}
.contact__form-inputs textarea {
  height: 160px;
  resize: none;
}
.contact__form button {
  width: 100%;
}

@media (min-width: 539px) {
  .hero {
    padding-block: 50px;
  }
  .hero__bg-item:first-child svg {
    width: 64px;
    height: 64px;
  }
  .hero__bg-item:nth-child(2) svg {
    width: 100px;
    height: 100px;
  }
  .hero h1 {
    font-size: 34px;
  }
  .hero h1 span {
    font-size: 130%;
  }
  .hero__buttons {
    position: relative;
    margin: 0 auto;
    max-width: 300px;
  }
  .hero__buttons-arrow {
    display: block;
    position: absolute;
    top: 0;
    right: 105%;
    width: 80px;
    pointer-events: none;
  }
  .hero--dark {
    padding-block: 120px 70px;
  }
  .auto__container {
    padding: 0 30px;
  }
  .search__form {
    margin-inline: auto;
    max-width: 540px;
  }
  .search__form button {
    width: unset;
    height: unset;
    padding: 12px 26px;
    gap: 10px;
    font-size: 16px;
  }
  .search__form button svg {
    width: 15px;
    height: 15px;
  }
  p {
    font-size: 18px;
  }
  .feature {
    width: calc(50% - 8px);
  }
  .booking__buttons {
    margin: 0 auto;
    max-width: 470px;
    gap: 25px;
    flex-direction: row-reverse;
  }
  .booking__buttons button:first-child {
    flex-grow: 2;
  }
  .about__inner button {
    max-width: 280px;
  }
  .stat h1 {
    font-size: 60px;
  }
  .stat span {
    font-size: 14px;
  }
  .steps__bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .steps__bottom button {
    max-width: 280px;
  }
  .consult__inner {
    padding: 30px;
  }
  .consult button {
    display: block;
    margin-inline: auto;
    max-width: 230px;
  }
  .consult p {
    font-size: 16px;
  }
  .consult ul li {
    font-size: 16px;
  }
  .promo__content {
    text-align: center;
  }
  .promo__image {
    margin-inline: auto;
    max-width: 500px;
  }
  .projects__images .swiper-slide {
    height: 340px;
  }
  .footer__main-link {
    display: none;
  }
  .footer__columns {
    flex-direction: row;
    justify-content: space-between;
  }
  .footer__col:first-child, .footer__col:nth-child(2) {
    display: block;
  }
  .contact__form button {
    display: block;
    margin-inline: auto;
    max-width: 260px;
  }
}
@media (min-width: 699px) {
  .search {
    padding: 120px 0;
  }
  .search__line:first-child {
    height: 14px;
  }
  .search__line:last-child {
    height: 14px;
    clip-path: polygon(15px 0, 100% 0, 100% 14px, 0 14px);
  }
  .search__title {
    font-size: 42px;
  }
  .search__subtitle {
    font-size: 20px;
  }
  .stats__list {
    gap: unset;
    justify-content: space-between;
  }
  .stat {
    width: unset;
  }
  .stat h1 {
    font-size: 70px;
  }
  .stat span {
    font-size: 15px;
  }
  .steps {
    padding-block: 80px;
  }
  .steps h2 {
    margin-inline: auto;
    text-align: center;
    max-width: 600px;
  }
  .steps__list {
    margin-bottom: 80px;
  }
  .steps__bottom-title {
    font-size: 20px;
  }
  .steps__line span:first-child {
    height: 14px;
  }
  .steps__line span:last-child {
    height: 14px;
    clip-path: polygon(15px 0, 100% 0, 100% 14px, 0 14px);
  }
  .step:not(:last-child) {
    margin-bottom: 50px;
  }
  .step__count {
    width: 80px;
    height: 80px;
  }
  .step__content {
    width: calc(100% - 100px);
  }
  .step__title {
    font-size: 20px;
  }
  .step__desc {
    font-size: 16px;
  }
  .projects {
    overflow: hidden;
    padding-block: 20px 80px;
  }
  .projects__inner {
    clip-path: inset(-100vw -100vw -100vw 0);
  }
  .projects__categories {
    overflow: visible;
  }
  .projects__images {
    overflow: visible;
  }
  .projects__images .swiper-slide {
    width: 500px;
    height: 330px;
  }
  .projects .swiper-navigation {
    width: 100px;
    height: 40px;
  }
  .projects .swiper-navigation .swiper-button-prev, .projects .swiper-navigation .swiper-button-next {
    width: 40px;
    height: 40px;
  }
  .projects .swiper-navigation .swiper-button-prev svg, .projects .swiper-navigation .swiper-button-next svg {
    width: 20px;
    height: 20px;
  }
  .footer__top-inner {
    font-size: 14px;
  }
  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
  }
  .footer__bottom span {
    font-size: 14px !important;
  }
  h5 {
    font-size: 18px;
  }
  .cards__list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }
  .card {
    width: calc(50% - 10px);
  }
  .card:not(:last-child) {
    margin-bottom: 0;
  }
  .card__price {
    font-size: 14px;
  }
  .card__price span {
    font-size: 16px;
  }
  .card .button {
    font-size: 14px;
    padding: 10px 24px;
  }
  .contact__main {
    display: flex;
    align-items: center;
  }
  .contact__content {
    width: calc(60% - 40px);
  }
  .contact__image {
    width: calc(40% - 40px);
    max-width: 480px;
  }
  .contact__form {
    margin-inline: auto;
    max-width: 790px;
    padding: 40px 20px;
  }
  .contact__form-inputs {
    margin-bottom: 40px;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
  }
  .contact__form-inputs input:nth-child(1), .contact__form-inputs input:nth-child(2) {
    width: calc(50% - 8px);
  }
}
@media (min-width: 839px) {
  .hero {
    padding: 80px 0;
    min-height: calc(100dvh - 80px);
    display: flex;
    align-items: center;
  }
  .hero__bg {
    position: static;
  }
  .hero__bg-item {
    width: auto;
    position: absolute;
    pointer-events: none;
  }
  .hero__bg-item:first-child {
    top: 20%;
    left: 5%;
  }
  .hero__bg-item:first-child svg {
    width: 54px;
    height: 54px;
  }
  .hero__bg-item:nth-child(2) {
    top: 50%;
    left: -45px;
    transform: translateY(-50%);
  }
  .hero__bg-item:nth-child(3) {
    top: 10%;
    right: 0;
  }
  .hero__bg-item:last-child {
    display: block;
    top: 50%;
    right: 0;
  }
  .hero__bg-item:last-child svg {
    width: 45px;
    height: 45px;
  }
  .hero__buttons-arrow {
    width: 100px;
  }
  .hero__subtitle {
    margin-bottom: 30px;
    font-size: 18px;
  }
  .hero h1 {
    font-size: 46px;
  }
  .hero--dark {
    display: block;
    min-height: unset;
    padding-block: 80px 30px;
  }
  .hero--dark .hero__bg-item:first-child {
    top: 35%;
    left: 20%;
  }
  .hero--dark .hero__bg-item:first-child svg {
    width: 50px;
    height: 50px;
  }
  .hero--dark .hero__bg-item:nth-child(2) {
    top: 40%;
    right: 20%;
    left: unset;
    transform: translateX(0);
  }
  .hero--dark .hero__bg-item:nth-child(2) svg {
    width: 60px;
    height: 60px;
  }
  .hero--dark .hero__content {
    margin-inline: auto;
    max-width: 715px;
  }
  .hero--dark .hero__categories button {
    font-size: 14px;
    padding: 12px 34px;
    margin-inline: 7.5px;
  }
  .hero--dark .search__form {
    max-width: unset;
  }
  .header__content span {
    display: inline-block;
  }
  .header__logo {
    margin-right: 15px;
    padding-right: 15px;
    width: 140px;
    border-right: 1px solid rgba(160, 160, 160, 0.5);
  }
  .header .burger {
    display: none;
  }
  .nav {
    width: unset;
    position: static;
    height: unset;
    pointer-events: auto;
    background: inherit;
  }
  .nav__inner {
    display: flex;
    gap: 10px;
    opacity: 1;
    transform: translateY(0);
  }
  .nav__link {
    font-size: 18px;
    border-bottom: 0;
  }
  .button {
    padding: 18px 30px;
  }
  h5 {
    font-size: 20px;
  }
  .sectionTop h2 {
    padding-inline: 45px;
  }
  .sectionTop h2 svg {
    top: -22px;
    width: 44px;
    height: 44px;
  }
  .features__list {
    gap: 36px;
  }
  .feature {
    width: calc(50% - 18px);
  }
  .feature__title {
    font-size: 20px;
  }
  .feature__desc {
    font-size: 14px;
  }
  .feature__icon {
    width: 56px;
    height: 56px;
  }
  .feature__icon svg {
    width: 26px;
    height: 26px;
  }
  .booking {
    padding: 100px 0;
  }
  .booking__buttons {
    position: relative;
  }
  .booking__buttons svg {
    display: block;
    position: absolute;
    top: 50%;
    left: 105%;
    width: 45px;
    height: 47px;
  }
  .about {
    padding: 100px 0;
    position: relative;
  }
  .about__inner {
    width: calc(100% - 280px);
  }
  .about__inner button {
    max-width: 280px;
  }
  .about__image {
    display: block;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 260px;
  }
  .steps__list {
    display: flex;
    gap: 15px;
  }
  .step {
    flex-direction: column;
    align-items: center;
  }
  .step:not(:last-child) {
    margin-bottom: 0;
  }
  .step:not(:last-child) .step__count::after {
    top: 50%;
    left: 100%;
    transform: translateY(-50%) rotate(0deg);
    width: 200px;
    height: 2px;
  }
  .step__count {
    margin-bottom: 20px;
    position: relative;
    width: 60px;
    height: 60px;
    font-size: 36px;
  }
  .step__content {
    width: 100%;
    text-align: center;
  }
  .step__title {
    font-size: 16px;
  }
  .step__desc {
    font-size: 14px;
  }
  .consult__inner {
    display: flex;
    align-items: center;
  }
  .consult__content {
    width: 60%;
  }
  .consult__title {
    text-align: left;
  }
  .promo {
    padding-block: 60px;
  }
  .promo__inner {
    display: flex;
    align-items: center;
  }
  .promo__content {
    width: 70%;
    text-align: left;
  }
  .promo__content p {
    margin-bottom: 30px;
  }
  .promo__content button {
    position: static;
    width: 180px;
    transform: translateX(0);
  }
  .promo__image {
    position: relative;
  }
  .promo__image svg {
    display: block;
    position: absolute;
    right: 100%;
    width: 120px;
    height: 240px;
    bottom: -50px;
  }
  .promo__title {
    font-size: 48px;
  }
  .contact {
    padding-block: 80px;
  }
  .contact__main {
    margin-bottom: 160px;
  }
  .contact__main-arrow {
    width: 75px;
    height: 150px;
  }
  .contact__content p {
    font-size: 18px;
  }
}
@media (min-width: 1023px) {
  .header__logo {
    width: 160px;
  }
  .nav__inner {
    gap: 25px;
  }
  .nav__link {
    font-size: 20px;
  }
  .hero__bg-item:nth-child(2) svg {
    width: 132px;
    height: 132px;
  }
  .hero__bg-item:nth-child(3) img {
    width: 180px;
  }
  .hero h1 {
    font-size: 58px;
  }
  .hero h1 span {
    padding: 0 100px;
  }
  .auto__container {
    padding: 0 60px;
  }
  h2 {
    font-size: 48px;
  }
  h5 {
    font-size: 24px;
  }
  h6 {
    font-size: 18px;
  }
  p {
    font-size: 22px;
  }
  .footer__top-inner {
    font-size: 16px;
  }
  .footer__bottom span {
    font-size: 16px !important;
  }
  .footer__col-links a {
    font-size: 18px;
  }
  .about__image {
    width: 320px;
  }
  .about__inner {
    width: calc(100% - 350px);
  }
  .stat h1 {
    font-size: 82px;
  }
  .stat span {
    font-size: 18px;
  }
  .step:not(:last-child) .step__count::after {
    width: 240px;
  }
  .consult__inner {
    padding: 50px;
  }
  .consult__title {
    font-size: 40px;
  }
  .promo__title {
    font-size: 60px;
  }
  .promo__content button {
    width: 200px;
  }
  .projects {
    padding-block: 20px 100px;
  }
  .projects__images .swiper-slide {
    width: 640px;
    height: 420px;
  }
  .projects .swiper-navigation {
    width: 140px;
    height: 60px;
  }
  .projects .swiper-navigation .swiper-button-prev, .projects .swiper-navigation .swiper-button-next {
    width: 60px;
    height: 60px;
  }
  .projects .swiper-navigation .swiper-button-prev svg, .projects .swiper-navigation .swiper-button-next svg {
    width: 30px;
    height: 30px;
  }
  .cards__list {
    gap: 15px;
  }
  .card {
    width: calc(33.33333% - 15px);
  }
  .card:nth-child(n+7) {
    display: block;
  }
  .contact__socials {
    display: flex;
    gap: 20px;
  }
  .contact__content p {
    font-size: 20px;
  }
}
@media (min-width: 1259px) {
  .header__logo {
    width: 190px;
  }
  .nav__inner {
    gap: 40px;
  }
  .nav__link {
    font-size: 22px;
  }
  .hero {
    padding: 100px 0;
  }
  .hero__bg-item:last-child {
    right: 10%;
  }
  .hero h1 {
    font-size: 70px;
  }
  .hero--dark .hero__categories button {
    font-size: 14px;
  }
  h2 {
    margin-bottom: 35px;
    font-size: 64px;
  }
  h6 {
    font-size: 20px;
  }
  p {
    font-size: 25px;
  }
  .footer__top {
    padding: 50px 0;
  }
  .footer__top-inner {
    font-size: 20px;
  }
  .footer__main {
    padding: 50px 0;
  }
  .footer__bottom {
    padding: 30px 0;
  }
  .footer__bottom span {
    font-size: 20px !important;
  }
  .footer__col h6 {
    margin-bottom: 15px;
  }
  .footer__col-links a {
    font-size: 20px;
  }
  .sectionTop {
    padding: 60px 0;
  }
  .sectionTop h2 {
    padding-inline: 65px;
  }
  .sectionTop h2 svg {
    top: -31px;
    width: 62px;
    height: 62px;
  }
  .feature {
    padding: 44px 26px;
  }
  .feature__title {
    font-size: 30px;
  }
  .feature__icon {
    width: 94px;
    height: 94px;
  }
  .feature__icon svg {
    width: 40px;
    height: 40px;
  }
  .feature__desc {
    font-size: 20px;
  }
  .search__title {
    font-size: 48px;
  }
  .search__subtitle {
    font-size: 25px;
  }
  .about {
    padding: 130px 0;
  }
  .about__image {
    width: 430px;
  }
  .about__inner {
    width: calc(100% - 450px);
  }
  .stat h1 {
    font-size: 96px;
  }
  .stat span {
    font-size: 20px;
  }
  .steps {
    padding-block: 100px;
  }
  .steps h2 {
    margin-bottom: 100px;
  }
  .steps__list {
    margin-bottom: 100px;
  }
  .step:not(:last-child) {
    margin-bottom: 0;
  }
  .step:not(:last-child) .step__count::after {
    width: 280px;
  }
  .step__count {
    margin-bottom: 30px;
    width: 120px;
    height: 120px;
    font-size: 46px;
    box-shadow: inset 0 0 0 10px rgba(255, 145, 77, 0.3), 0 0 0 10px rgba(255, 145, 77, 0.15);
  }
  .step__count::before {
    width: calc(100% - 20px);
    height: calc(100% - 20px);
  }
  .step__title {
    margin-bottom: 20px;
    font-size: 20px;
  }
  .step__desc {
    font-size: 18px;
  }
  .promo__title {
    font-size: 70px;
  }
  .promo__content p {
    margin-bottom: 50px;
  }
  .projects__images .swiper-slide {
    width: 760px;
    height: 500px;
  }
  .cards__list {
    margin-bottom: 60px;
    gap: 30px;
  }
  .card {
    width: calc(33.33333% - 20px);
  }
  .card h5 {
    margin-bottom: 15px;
  }
  .card__price {
    margin-bottom: 15px;
    font-size: 16px;
  }
  .card__price span {
    font-size: 18px;
  }
  .card .button {
    padding: 12px 34px;
    font-size: 16px;
  }
  .contact {
    padding-block: 100px;
  }
  .contact__main {
    margin-bottom: 200px;
  }
  .contact__main-arrow {
    width: 100px;
    height: 200px;
  }
  .contact__content h3 {
    margin-bottom: 20px;
  }
  .contact__content p {
    margin-bottom: 60px;
    font-size: 24px;
  }
  .contact__socials {
    display: flex;
    gap: 50px;
  }
  .contact__social {
    gap: 24px;
  }
  .contact__social:first-child .contact__social-icon img {
    width: 40px;
    height: 40px;
  }
  .contact__social-icon {
    width: 64px;
    height: 64px;
  }
  .contact__social-title {
    font-size: 20px;
  }
  .contact__social-text {
    font-size: 16px;
  }
  .contact__form {
    padding: 40px;
  }
  .contact__form h3 {
    margin-bottom: 40px;
    font-size: 40px;
  }
  .contact__form-inputs input,
  .contact__form-inputs textarea {
    font-size: 14px;
  }
}

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