@charset "UTF-8";
.f-e, .f-s, .f-c, .f-b, .f-a {
  display: flex;
}

.f-a {
  justify-content: space-around;
}

.f-b {
  justify-content: space-between;
}

.f-c {
  justify-content: center;
}

.f-s {
  justify-content: flex-start;
}

.f-e {
  justify-content: flex-end;
}

.f-w {
  flex-wrap: wrap;
}

.f-dr {
  flex-direction: column;
}

.f-ai {
  align-items: center;
}

.gold-text {
  background: linear-gradient(90deg, #ffffff 0%, #e5aa77 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.secondary-prem {
  text-transform: uppercase;
  font-family: "Beaufort";
  font-weight: bold;
  font-size: 24px;
  background: linear-gradient(90deg, #fea144, #ffffff, #fea144);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  text-align: center;
  margin: 0 0 40px 0;
}

.info-bridge {
  padding: 20px;
  font-size: 20px;
  color: #ffe6cf;
  border-radius: 5px;
  background: rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(5px);
  gap: 20px;
  position: relative;
  border: 1px solid transparent;
  background-clip: padding-box;
}
.info-bridge::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 5px;
  padding: 1px;
  background: linear-gradient(to bottom, #e5aa77, #bc6221);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.btn-main {
  position: relative;
  overflow: hidden;
  padding: 20px;
  background: linear-gradient(180deg, #ffc582, #fe9d3d);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  color: #020b14;
  max-width: 360px;
  margin-top: 20px;
  transition: 0.3s ease;
  font-size: 20px;
}
.btn-main svg {
  margin-left: 40px;
  transition: transform 0.35s ease;
}
.btn-main::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -120%;
  width: 80px;
  height: 200%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transform: rotate(25deg);
  transition: left 0.6s ease;
  pointer-events: none;
}
.btn-main:hover {
  filter: contrast(1.3);
}
.btn-main:hover svg {
  transform: translateX(10px);
}
.btn-main:hover::before {
  left: 140%;
}
.btn-main:active {
  transform: translateY(0) scale(1.02);
}

.btn-primary {
  padding: 20px;
  border: 1px solid #e5aa77;
  border-radius: 10px;
  height: -moz-fit-content;
  height: fit-content;
}
.btn-primary svg {
  color: #fe9d3d;
  margin-left: 20px;
  transition: 0.3s;
}
.btn-primary:hover {
  background: #e5aa77;
  color: #020b14;
}
.btn-primary:hover svg {
  color: #020b14;
  transform: translateX(5px);
}

* {
  box-sizing: border-box;
}

@font-face {
  font-family: "Roboto";
  src: url("../fonts/roboto/Roboto-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url("../fonts/roboto/Roboto-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url("../fonts/roboto/Roboto-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url("../fonts/roboto/Roboto-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url("../fonts/roboto/Roboto-Heavy.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Beaufort";
  src: url("../fonts/beaufort/BeaufortforLOL-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Beaufort";
  src: url("../fonts/beaufort/BeaufortforLOL-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Beaufort";
  src: url("../fonts/beaufort/BeaufortforLOL-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Beaufort";
  src: url("../fonts/beaufort/BeaufortforLOL-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Beaufort";
  src: url("../fonts/beaufort/BeaufortforLOL-Heavy.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
html {
  scroll-behavior: smooth;
}

body {
  background: #020b14;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  padding: 0;
  margin: 0 auto;
  font-size: 18px;
  color: #ffe6cf;
  max-width: 1920px;
}

a {
  transition: 0.3s;
  text-decoration: none;
  color: #ffe6cf;
}

.wrap {
  margin: 0 auto;
  width: calc(100% - 100px);
}

h1 {
  font-size: 50px;
  font-family: "Beaufort";
  font-weight: 700;
  margin: 40px 0;
  width: -moz-fit-content;
  width: fit-content;
}

h2 {
  font-size: 40px;
  font-family: "Beaufort";
  font-weight: 700;
  margin: 40px 0;
  width: -moz-fit-content;
  width: fit-content;
}

h3 {
  font-size: 32px;
  font-family: "Beaufort";
  font-weight: 700;
  margin: 40px 0;
  width: -moz-fit-content;
  width: fit-content;
}

h4 {
  font-size: 24px;
  font-family: "Beaufort";
  font-weight: 700;
  margin: 40px 0;
}

h5 {
  font-size: 20px;
  font-family: "Beaufort";
  font-weight: 700;
  margin: 40px 0;
}

section {
  padding: 40px 0;
}
section h2 {
  font-size: 50px;
  text-transform: uppercase;
}

.title-section {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  text-align: center;
}
.title-section h2 {
  margin: 0;
}

.title-desc {
  text-align: center;
}
.title-desc span {
  color: #e5aa77;
  text-transform: uppercase;
  font-weight: 500;
}

.hero {
  width: 100%;
  position: relative;
}
.hero::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, #020b14, #a18c52, #020b14);
  bottom: 0;
}
.hero {
  overflow: hidden;
}

.hero-image {
  background-image: url(../img/main-hero.webp);
  background-position: right bottom;
  background-repeat: no-repeat;
  height: 920px;
}

.hero-container {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0%);
  height: 100%;
}

.menu {
  padding-top: 20px;
}

.menu-right {
  gap: 40px;
}
.menu-right.active {
  position: fixed;
  right: 0;
  top: 85px;
  padding: 20px 40px;
  background: #020b14;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  z-index: 1000;
  border-radius: 10px;
  gap: 20px;
  max-height: calc(100vh - 100px);
  overflow-y: auto;
  animation: scale-up-top 0.3s cubic-bezier(0.39, 0.575, 0.565, 1) both;
}
.menu-right.active::after {
  content: "";
  width: 24px;
  height: 24px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20'%3E%3Cpath d='M0 0h20v20H0z' fill='none'/%3E%3Cpath fill='%23e5aa77' d='m11 7l-4 6h8z'/%3E%3C/svg%3E") no-repeat center;
  background-size: contain;
  flex-shrink: 0;
  position: absolute;
  top: -16px;
  right: 10px;
}
.menu-right.active .menu-nav {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.menu-right.active .menu-nav .menu-nav-item {
  font-size: 18px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  width: 100%;
  text-align: center;
}
.menu-right.active .menu-nav .menu-nav-item:last-child {
  border-bottom: none;
}
.menu-right.active .menu-nav .menu-nav-item.has-dropdown .dropdown-menu {
  position: static;
  opacity: 1;
  visibility: visible;
  transform: none;
  background: rgba(255, 255, 255, 0.02);
  border: none;
  border-radius: 8px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, margin 0.3s ease, padding 0.3s ease;
  padding: 0;
  min-width: auto;
  box-shadow: none;
  margin: 0;
}
.menu-right.active .menu-nav .menu-nav-item.has-dropdown .dropdown-menu li a {
  padding: 8px 20px;
  font-size: 16px;
}
.menu-right.active .menu-nav .menu-nav-item.has-dropdown .dropdown-link.dropdown-open {
  color: #e5aa77;
}
.menu-right.active .menu-nav .menu-nav-item.has-dropdown .dropdown-link.dropdown-open .dropdown-arrow {
  transform: rotate(180deg);
}
.menu-right.active .menu-nav .menu-nav-item.has-dropdown .dropdown-link.dropdown-open + .dropdown-menu {
  max-height: 500px;
  margin-top: 8px;
  padding: 8px 0;
}
.menu-right.active .menu-tel {
  margin-top: 10px;
  align-self: flex-start;
  margin: 0 auto;
}

@keyframes scale-up-top {
  0% {
    transform: scale(0.5);
    transform-origin: 50% 0%;
    opacity: 0;
  }
  100% {
    transform: scale(1);
    transform-origin: 50% 0%;
    opacity: 1;
  }
}
.menu-nav {
  gap: 40px;
}
.menu-nav .menu-nav-item {
  position: relative;
  padding: 8px 0;
  transition: color 0.3s ease;
}
.menu-nav .menu-nav-item:hover {
  color: #e5aa77;
}
.menu-nav .menu-nav-item > a {
  color: inherit;
  text-decoration: none;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}
.menu-nav .menu-nav-item.has-dropdown .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 280px;
  padding: 12px 0;
  background: #020b14;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.25s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  z-index: 100;
}
.menu-nav .menu-nav-item.has-dropdown .dropdown-menu li {
  list-style: none;
}
.menu-nav .menu-nav-item.has-dropdown .dropdown-menu li a {
  display: block;
  padding: 10px 20px;
  color: #ffe6cf;
  text-decoration: none;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.menu-nav .menu-nav-item.has-dropdown .dropdown-menu li a:hover {
  background: rgba(229, 170, 119, 0.15);
  color: #e5aa77;
  padding-left: 25px;
}
@media (hover: hover) and (pointer: fine) {
  .menu-nav .menu-nav-item.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .menu-nav .menu-nav-item.has-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
  }
}
.menu-nav .menu-nav-item.has-dropdown .dropdown-arrow {
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.menu-burger {
  font-size: 20px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 10px;
  border-radius: 10px;
  display: none;
  transition: all 0.3s ease;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.menu-burger span {
  font-size: 16px;
  text-transform: uppercase;
  margin-right: 10px;
  font-weight: 500;
  letter-spacing: 2px;
  line-height: 30px;
}
.menu-burger:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: #e5aa77;
  color: #e5aa77;
}
.menu-burger.active {
  background: rgba(255, 255, 255, 0.05);
  border-color: #e5aa77;
  color: #e5aa77;
}
.menu-burger:active {
  transform: scale(0.97);
}

.menu-tel {
  padding: 12px 20px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 24px;
  border-radius: 10px;
  font-weight: 500;
  transition: border-color 0.3s ease;
}
.menu-tel svg {
  margin-right: 10px;
}
.menu-tel:hover {
  border-color: #e5aa77;
}

.logo {
  transition: filter 0.3s ease;
}
.logo:hover {
  filter: brightness(1.2);
}

@media screen and (max-width: 1180px) {
  .menu-right {
    display: none;
  }
  .menu-right.active {
    display: flex;
  }
  .menu-burger {
    display: flex;
    align-items: center;
  }
}
.menu-right.active::-webkit-scrollbar {
  width: 4px;
}
.menu-right.active::-webkit-scrollbar-track {
  background: transparent;
}
.menu-right.active::-webkit-scrollbar-thumb {
  background: rgba(229, 170, 119, 0.3);
  border-radius: 4px;
}

.hero-social {
  gap: 10px;
}

.hero-social-item {
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  background: rgba(2, 11, 20, 0.4);
}
.hero-social-item:hover {
  border: 1px solid #e5aa77;
}

.hero-content {
  height: calc(100% - 150px);
  max-width: 60%;
}
.hero-content h1 {
  max-width: 930px;
  text-transform: uppercase;
  line-height: 150%;
}
.hero-content .hero-info {
  max-width: 810px;
  font-size: 24px;
  margin-bottom: 40px;
  line-height: 150%;
  font-weight: 500;
}
.hero-content .hero-info span {
  color: #e5aa77;
}
.hero-content .info-bridge {
  max-width: 810px;
  line-height: 1.5;
  text-align: left;
}

.about {
  position: relative;
}
.about::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, #020b14, #a18c52, #020b14);
  bottom: 0;
}
.about .title-section {
  margin: 0;
}
.about .title-desc {
  text-align: left;
}

.about-container {
  gap: 40px;
  margin-top: 40px;
  margin-bottom: 40px;
}

.about-block {
  width: calc(50% - 20px);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  overflow: hidden;
}
.about-block:last-child {
  width: 100%;
}

.about-top {
  padding: 20px;
  gap: 20px;
  position: relative;
}
.about-top::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, #020b14, #a18c52, #020b14);
  bottom: 0;
}
.about-top {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.2), transparent);
}
.about-top h3 {
  text-transform: uppercase;
  margin: 0;
}

.about-content {
  padding: 20px;
  line-height: 200%;
}

.about-preim {
  font-weight: 500;
  color: #e5aa77;
}
.about-preim svg {
  margin-right: 10px;
}

.about-text {
  margin-top: 20px;
  font-weight: 400;
  text-align: justify;
}

.about-concurents {
  gap: 20px;
}

.about-concurents-block {
  flex: 1 1 auto;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 5px;
}
.about-concurents-block div {
  padding: 15px 20px;
}

.about-concurents-other {
  background: rgba(255, 0, 0, 0.1);
  color: #984040;
  font-weight: 500;
}
.about-concurents-other svg {
  margin-right: 10px;
}

.about-concurents-other-info {
  opacity: 0.5;
  font-size: 16px;
}

.about-concurents-dp {
  background: #1f1e16;
}
.about-concurents-dp span {
  background: linear-gradient(180deg, #e5aa77 0%, #bc6221 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  font-weight: 700;
  font-family: "Beaufort";
  text-transform: uppercase;
  font-size: 20px;
  margin-left: 10px;
}

.about-concurents-dp-info {
  font-size: 18px;
}

.work {
  background: url(../img/main-second.webp) top right no-repeat;
  position: relative;
}
.work::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, #020b14, #a18c52, #020b14);
  bottom: 0;
}
.work:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  background: #984040;
  width: 1px;
  height: 1px;
  box-shadow: 50px 0px 220px 220px #241b14;
  z-index: -1;
}
.work .gold-text {
  text-align: left;
}

.work-left {
  width: 54%;
}

.work-other {
  margin-top: 40px;
}

.work-other-item {
  gap: 20px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  width: -moz-fit-content;
  width: fit-content;
  padding: 15px 40px;
  border-radius: 5px;
  margin-bottom: 20px;
  backdrop-filter: blur(5px);
}

.work-right {
  width: 45%;
}
.work-right .info-bridge {
  max-width: 620px;
  background: rgba(14, 17, 22, 0.2);
}

.services {
  text-align: center;
  position: relative;
}
.services::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, #020b14, #a18c52, #020b14);
  bottom: 0;
}

.services-container {
  gap: 40px;
  margin-top: 40px;
}

.services-block {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  width: calc(33% - 40px);
  overflow: hidden;
  transition: 0.3s;
}
.services-block:hover {
  transform: scale(1.02);
}

.services-image {
  width: 100%;
  height: 260px;
  position: relative;
  overflow: hidden;
  position: relative;
}
.services-image::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, #020b14, #a18c52, #020b14);
  bottom: 0;
}
.services-image img {
  width: 100%;
}

.services-title {
  margin: 0;
  padding: 20px;
  font-size: 20px;
  text-transform: uppercase;
  font-weight: 700;
  position: absolute;
  bottom: 0;
  width: 100%;
  text-align: left;
  background: linear-gradient(180deg, transparent, rgba(229, 170, 119, 0.05), transparent);
}

.services-content {
  font-size: 20px;
  text-align: left;
  padding: 0 20px;
  color: #e5aa77;
  line-height: 150%;
}

.services-btn {
  margin-bottom: 20px;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: 20px;
  padding: 12px 20px;
}

.steps {
  overflow: hidden;
  position: relative;
  position: relative;
}
.steps::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, #020b14, #a18c52, #020b14);
  bottom: 0;
}
.steps::before {
  content: "";
  position: absolute;
  height: 246px;
  width: 755px;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 0);
  background: url(../img/steps-earth.webp);
  z-index: -1;
}

.steps-decline {
  position: relative;
}
.steps-decline::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, #020b14, #a18c52, #020b14);
  bottom: 0;
}
.steps-decline {
  width: 10%;
  margin: 25px auto;
  box-shadow: 0 0 1000px 100px rgba(255, 170, 96, 0.2);
}

.steps-informer {
  margin-top: 40px;
  text-align: center;
}
.steps-informer span {
  color: #e5aa77;
  display: block;
}

.consultation-detail {
  padding-top: 40px !important;
}

.steps-container {
  margin-top: 140px;
  text-align: center;
}

.steps-line {
  position: relative;
  z-index: -1;
  width: 100%;
}
.steps-line img {
  width: 90%;
}

.steps-block {
  margin-top: -42px;
}

.steps-item {
  width: 220px;
}

.steps-item-el {
  padding: 20px 45px;
  background: #0f1720;
  border-radius: 50px;
  border: 1px solid #e5aa77;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}

.steps-bottom {
  display: block;
  margin-top: 10px;
  height: 80px;
  font-family: "Beaufort";
  font-size: 20px;
}

.steps-num {
  display: block;
  font-family: "Beaufort";
  font-size: 30px;
  color: #e5aa77;
}

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

.prem-container {
  gap: 20px;
  margin-top: 40px;
  font-family: "Beaufort";
  font-size: 20px;
}

.prem-block {
  width: 100%;
  padding: 0px 20px 20px 20px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(5px);
  border-radius: 10px;
  position: relative;
}
.prem-block::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, #020b14, #a18c52, #020b14);
  bottom: 0;
}
.prem-block {
  position: relative;
}
.prem-block::before {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, #020b14, #a18c52, #020b14);
  top: 0;
}
.prem-block span {
  display: block;
  text-align: center;
}

.prem-img {
  margin-bottom: 20px;
}

.consultation {
  background: url(../img/consultation.webp) top;
  box-shadow: inset 0px 100px 50px 0px #020b14, inset 0px 20px 10px 0px #020b14;
  padding: 40px 0 0;
  position: relative;
  background-repeat: no-repeat;
}
.consultation .title-section h2 {
  font-size: 40px;
}
.consultation .info-bridge {
  text-align: center;
}

.consultation-container {
  margin-top: 40px;
}
.consultation-container .info-bridge {
  max-width: 800px;
  margin: 0 auto;
}
.consultation-container .btn-main {
  margin: 40px auto;
}

.footer {
  padding: 20px 0;
  background: rgba(2, 11, 20, 0.4);
  backdrop-filter: blur(5px);
  margin-top: 80px;
  position: relative;
}
.footer::before {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, #020b14, #a18c52, #020b14);
  top: 0;
}
.footer a {
  position: relative;
}
.footer a:hover {
  color: #e5aa77;
}

.footer_container {
  gap: 80px;
}

.footer-copy {
  font-size: 16px;
  color: #e5aa77;
  margin-top: 10px;
  font-weight: 500;
}

.footer-line {
  background: linear-gradient(90deg, #fea144, transparent);
  height: 1px;
  width: 100%;
  margin-top: 20px;
  max-width: 480px;
}

.footer-line-r {
  background: linear-gradient(90deg, transparent, #fea144);
  height: 1px;
  width: 100%;
  margin-top: 20px;
  max-width: 480px;
}

.footer-links {
  margin-top: 36px;
  font-size: 16px;
  gap: 20px;
}

.footer-logo {
  transition: 0.3s;
}
.footer-logo:hover {
  filter: brightness(1.2);
}

.footer-nav {
  flex: 1 1 auto;
  gap: 40px;
}

.footer-nav-title {
  margin-bottom: 20px;
  font-weight: 600;
  font-size: 20px;
  text-transform: uppercase;
  font-family: "Beaufort";
  color: #e5aa77;
}

.footer-nav-links a {
  display: block;
  margin-bottom: 15px;
  font-weight: 400;
  font-size: 16px;
}
.footer-nav-links a:last-child {
  margin: 0;
}

.footer-nav-block-group {
  gap: 80px;
}

.footer-right {
  max-width: 300px;
}

.footer-tel {
  gap: 10px;
  font-size: 24px;
  font-weight: 700;
  transition: 0.3s;
}

.footer-adr {
  text-align: right;
  font-size: 16px;
  font-weight: 500;
  margin-top: 20px;
}

.footer-std {
  margin-top: 20px;
  background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.4));
  padding: 10px;
  border-radius: 10px;
  font-size: 16px;
}
.footer-std span {
  color: #99826e;
  margin-right: 20px;
}
.footer-std img {
  padding: 5px;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: 0.3s;
}
.footer-std:hover img {
  transform: scale(1.05) rotate(360deg);
  border: 1px solid #fea144;
}

.hero-page {
  background-position: right bottom;
  background-repeat: no-repeat;
  height: 660px;
}

.breadcrump {
  background: rgba(2, 11, 20, 0.5);
  padding: 10px 20px;
  margin-top: 10px;
  border-radius: 10px;
  text-align: center;
}
.breadcrump a:hover {
  color: #e5aa77;
}
.breadcrump .breadcrump-dline {
  margin: 0px 10px;
}
.breadcrump .breadcrump-page {
  color: #e5aa77;
}

.page {
  min-height: 660px;
  background-position: top;
  background-repeat: no-repeat;
}
.page .hero-container {
  position: relative;
  height: auto;
  left: 0%;
  transform: translate(0%, 0%);
  margin-bottom: 40px;
}
.page .hero-content {
  height: auto;
  width: 100%;
  max-width: 100%;
  text-align: center;
}
.page .hero-content h1 {
  max-width: 100%;
  margin: 0 auto;
  margin-bottom: 0px;
  text-align: center;
}
.page .info-bridge {
  margin: 0 auto;
}
.page .btn-main {
  margin: 40px auto;
}
.page .hero-info {
  text-align: center;
  max-width: 100%;
}
.page .info-bridge {
  max-width: 100%;
}

.btn-link {
  padding: 10px 20px;
  border: 1px solid #e5aa77;
  border-radius: 5px;
  margin-right: 10px;
  transition: 0.3s;
  display: inline-block;
  margin-bottom: 10px;
  font-size: 18px;
}
.btn-link:hover {
  background: #e5aa77;
  color: #020b14;
}

.question {
  background: url(../img/question.png) right center;
  background-repeat: no-repeat;
  position: relative;
}
.question::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, #020b14, #a18c52, #020b14);
  bottom: 0;
}
.question {
  position: relative;
}
.question::before {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, #020b14, #a18c52, #020b14);
  top: 0;
}

.infolable-container {
  margin-top: 40px;
  gap: 20px;
}

.infolable-item {
  gap: 20px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  width: -moz-fit-content;
  width: fit-content;
  padding: 15px 40px;
  border-radius: 5px;
  backdrop-filter: blur(5px);
}

.cases-container {
  margin-top: 40px;
  gap: 40px;
}

.cases-block {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  width: calc(33% - 24px);
  overflow: hidden;
  transition: 0.3s;
  position: relative;
  position: relative;
}
.cases-block::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, #020b14, #a18c52, #020b14);
  bottom: 0;
}

.cases-image {
  width: 100%;
  height: 195px;
  position: relative;
  overflow: hidden;
  position: relative;
}
.cases-image::before {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, #020b14, #a18c52, #020b14);
  top: 0;
}
.cases-image {
  position: relative;
}
.cases-image::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, #020b14, #a18c52, #020b14);
  bottom: 0;
}
.cases-image img {
  width: 100%;
}

.cases-title {
  margin: 0;
  padding: 15px 20px;
  font-size: 20px;
  text-transform: uppercase;
  font-weight: 700;
  position: absolute;
  bottom: 0;
  width: 100%;
  text-align: left;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.4), transparent);
}

.cases-content {
  font-size: 20px;
  text-align: left;
  padding: 0 20px;
  color: #e5aa77;
  line-height: 150%;
  margin: 20px 0;
}
.cases-content p {
  margin: 0px 0 20px;
  color: #ffe6cf;
}
.cases-content span {
  font-size: 18px;
}

.cases-number {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
  width: 160px;
  padding: 15px 20px;
  text-align: center;
  border-radius: 0 0 20px 20px;
  text-transform: uppercase;
  background: linear-gradient(180deg, transparent, #020b14);
  font-family: "Beaufort";
  font-size: 20px;
}
.cases-number span {
  font-size: 24px;
  color: #e5aa77;
}

/* generated pages */
.hero-tags {
  gap: 20px;
  margin-top: 25px;
}

.hero-tags span,
.badge {
  background: #0d1c2f;
  border-radius: 5px;
  color: #e5aa77;
  display: inline-block;
  padding: 5px 20px;
  font-size: 16px;
}
.hero-tags span.post,
.badge.post {
  background: #2f1c0d;
}
.hero-tags span.news,
.badge.news {
  background: #0d2f2b;
}

.form label {
  display: block;
  font-size: 16px;
  margin-bottom: 18px;
}

.form-input {
  position: relative;
}
.form-input::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 5px;
  padding: 1px;
  background: linear-gradient(to bottom, #e5aa77, #bc6221);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.form input,
.form textarea {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 5px;
  color: #fff;
  border: none;
  position: relative;
  display: block;
  font: inherit;
  margin-top: 10px;
  outline: none;
  padding: 20px 20px;
  width: 100%;
}
.form input:focus,
.form textarea:focus {
  background: rgba(0, 0, 0, 0.05);
}

.form textarea {
  min-height: 120px;
  resize: vertical;
}

.form input::-moz-placeholder, .form textarea::-moz-placeholder {
  color: #a47e5c;
}

.form input::placeholder,
.form textarea::placeholder {
  color: #a47e5c;
}

.form-check {
  align-items: flex-start;
  display: flex !important;
  gap: 20px;
  line-height: 150%;
}
.form-check a {
  color: fff;
}

.form-check input {
  accent-color: #e5aa77;
  flex: 0 0 20px;
  height: 20px;
  margin: 2px 0 0;
  padding: 0;
  width: 20px;
}

.form-check a {
  border-bottom: 1px solid currentColor;
}

.contacts {
  gap: 40px;
}

.review-card,
.article-card {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05), rgba(64, 147, 255, 0.04), rgba(0, 0, 0, 0.05)), linear-gradient(180deg, rgba(0, 0, 0, 0.05), rgba(255, 168, 64, 0.04), rgba(0, 0, 0, 0.05));
  border-radius: 10px;
  position: relative;
}
.review-card::before,
.article-card::before {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, #020b14, #a18c52, #020b14);
  top: 0;
}
.review-card,
.article-card {
  position: relative;
}
.review-card::after,
.article-card::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, #020b14, #a18c52, #020b14);
  bottom: 0;
}
.review-card,
.article-card {
  border-radius: 10px;
}

.contacts-card,
.content-page {
  padding: 40px;
  height: -moz-fit-content;
  height: fit-content;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05), rgba(64, 147, 255, 0.04), rgba(0, 0, 0, 0.05)), linear-gradient(180deg, rgba(0, 0, 0, 0.05), rgba(255, 168, 64, 0.04), rgba(0, 0, 0, 0.05));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}
.contacts-card ul,
.content-page ul {
  margin: 10px 0;
  padding-left: 20px;
}
.contacts-card li,
.content-page li {
  margin-bottom: 10px;
  line-height: 150%;
}
.contacts-card li:last-child,
.content-page li:last-child {
  margin-bottom: 0;
}
.contacts-card p,
.content-page p {
  margin: 10px 0 0;
  line-height: 200%;
  text-align: justify;
}
.contacts-card h2,
.contacts-card h3,
.contacts-card h4,
.contacts-card h5,
.content-page h2,
.content-page h3,
.content-page h4,
.content-page h5 {
  padding-top: 20px;
}
.contacts-card h2:first-child,
.contacts-card h3:first-child,
.contacts-card h4:first-child,
.contacts-card h5:first-child,
.content-page h2:first-child,
.content-page h3:first-child,
.content-page h4:first-child,
.content-page h5:first-child {
  padding-top: 0;
}

.contacts-card h2 {
  font-size: 32px;
  margin-top: 0;
  margin-bottom: 20px;
  text-transform: none;
}

.contacts-card h3,
.contacts-form h3 {
  margin: 20px 0;
}

.contacts-card span,
.service-main span,
.accent-text,
.review-date,
.article-bottom span {
  color: #e5aa77;
  font-size: 16px;
}

.contact-address {
  background: rgba(255, 255, 255, 0.08);
  border-left: 3px solid #e5aa77;
  margin: 20px 0;
  padding: 20px;
}

.contacts-phone em {
  color: rgba(255, 255, 255, 0.35);
  font-style: normal;
  margin: 0 20px;
}

.contacts-form {
  padding: 0 40px;
}
.contacts-form h2 {
  margin-top: 0;
  margin-bottom: 20px;
}
.contacts-form p {
  font-size: 20px;
}

.contacts-form .btn-main,
.modal .btn-main {
  border: 0;
  cursor: pointer;
  max-width: 100%;
  width: 100%;
  font-family: "Roboto";
}

.reviews-grid,
.articles-grid {
  display: grid;
  margin-top: 40px;
  gap: 40px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.review-card,
.article-card {
  padding: 20px;
}

.review-person {
  border-right: 1px solid rgba(255, 255, 255, 0.05);
  padding-right: 20px;
  margin-right: 20px;
}

.review-person img,
.review-empty {
  border-radius: 5px;
  -o-object-fit: cover;
  object-fit: cover;
  width: 200px;
  height: 200px;
}

.review-empty,
.image-empty {
  align-items: center;
  background: rgba(0, 0, 0, 0.4);
  color: #e5aa77;
  display: flex;
  justify-content: center;
  text-transform: uppercase;
  width: 200px;
  height: 200px;
}

.review-person span {
  display: block;
  margin: 20px 0;
  text-align: center;
}

.review-text {
  line-height: 150%;
}

.review-text h3,
.article-content h3 {
  font-size: 20px;
  margin: 10px 0 20px;
  text-transform: uppercase;
  width: -moz-fit-content;
  width: fit-content;
}

.reviews-more {
  margin: 40px auto 0;
  max-width: 360px;
  text-align: center;
}

.article-image {
  border-right: 1px solid rgba(255, 255, 255, 0.05);
  padding-right: 20px;
  margin-right: 20px;
  width: 240px;
}

.article-image img,
.image-empty {
  border-radius: 5px;
  -o-object-fit: cover;
     object-fit: cover;
  width: 240px;
  height: 100%;
}

.article-content {
  line-height: 150%;
}
.article-content .btn-primary {
  border-radius: 5px;
}
.article-content .btn-primary svg {
  color: inherit;
}

.article-bottom {
  gap: 20px;
  margin-top: 20px;
}
.article-bottom span {
  font-size: 16px;
}
.article-bottom .btn-primary {
  padding: 10px 10px;
}

.pagination {
  margin-top: 40px;
  gap: 10px;
}
.pagination a:first-child {
  transform: rotate(180deg);
}

.pagination span,
.pagination a {
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  display: flex;
  height: 40px;
  justify-content: center;
  width: 40px;
  transition: 0.3s;
  cursor: pointer;
}
.pagination span:hover,
.pagination a:hover {
  background: rgba(255, 255, 255, 0.1);
}

.pagination .active {
  border: 1px solid #e5aa77;
  color: #e5aa77;
}

.content-page {
  margin: 40px auto;
  padding: 40px;
}

.content-page h2,
.content-page h3 {
  margin: 0 0 20px 0;
  text-transform: none;
}

.content-page h2 {
  font-size: 40px;
  line-height: 100%;
}

.content-gallery {
  gap: 20px;
  margin: 20px 0;
}

.content-gallery img {
  max-width: 430px;
  width: calc(50% - 10px);
}

blockquote {
  background: rgba(255, 255, 255, 0.05);
  border-left: 3px solid #e5aa77;
  margin: 20px 0;
  padding: 20px 20px;
}

.service-detail {
  align-items: flex-start;
  gap: 40px;
  padding: 40px 0;
  position: relative;
}
.service-detail::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, #020b14, #a18c52, #020b14);
  bottom: 0;
}

.service-prem-block {
  gap: 20px;
  margin-top: 40px;
}

.service-sidebar h2 {
  margin: 40px 0 10px;
  text-align: right;
  text-transform: uppercase;
}
.service-sidebar h3 {
  margin: 40px 0 10px;
  text-align: right;
  text-transform: uppercase;
}

.service-prem {
  padding: 20px 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  width: -moz-fit-content;
  width: fit-content;
  backdrop-filter: blur(5px);
  text-transform: uppercase;
}
.service-prem span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: block;
  background: linear-gradient(180deg, #ffc582, #fe9d3d);
  margin-right: 10px;
}

.service-main {
  margin: 0;
  line-height: 150%;
}
.service-main strong {
  color: #e5aa77;
  font-weight: 500;
}
.service-main ul {
  padding-left: 20px;
}
.service-main li {
  margin: 10px 0;
}

.service-sidebar {
  position: sticky;
  top: 10px;
  flex: 1 0 420px;
}
.service-sidebar .btn-main {
  margin-top: 0;
  max-width: 100%;
  justify-content: space-between;
}
.service-sidebar .infolable-item {
  width: 100%;
  justify-content: flex-start;
  margin: 20px 0;
  padding: 15px 20px;
}
.service-sidebar .btn-primary {
  margin: 20px auto;
  padding: 15px 20px;
}

.service-sidebar-btn {
  max-width: 260px;
  margin: 0 auto;
}
.service-sidebar-btn .btn-main {
  max-width: 100%;
  width: 100%;
  justify-content: space-between;
}

.service-sidebar .check-list,
.dot-list {
  list-style: none;
  margin: 20px 0 40px;
  padding: 0;
}

.check-list li,
.dot-list li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 10px;
  padding: 10px 0 20px 40px;
  position: relative;
}

.check-list li::before {
  color: #26e600;
  content: "✓";
  left: 0;
  position: absolute;
}

.dot-list li::before {
  background: #e5aa77;
  border-radius: 50%;
  content: "";
  height: 8px;
  left: 0;
  position: absolute;
  top: 16px;
  width: 8px;
}

.modal {
  align-items: center;
  display: flex;
  inset: 0;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  transition: opacity 0.25s ease;
  z-index: 500;
}
.modal.active {
  opacity: 1;
  pointer-events: auto;
}
.modal__overlay {
  background: rgba(2, 11, 20, 0.8);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  inset: 0;
  position: absolute;
}
.modal__dialog {
  background: #020b14;
  border-radius: 10px;
  box-shadow: 0 20px 40px rgba(255, 255, 255, 0.05);
  max-height: calc(100vh - 40px);
  max-width: 1040px;
  overflow: auto;
  padding: 40px;
  position: relative;
  width: calc(100% - 40px);
  z-index: 2;
}
.modal__dialog .form-input input,
.modal__dialog .form-input textarea {
  text-align: center;
}
.modal__dialog h2 {
  font-size: 40px;
  text-align: center;
  text-transform: uppercase;
  margin: 0 auto;
}
.modal__dialog > p {
  line-height: 150%;
  margin: 0 auto 20px;
  max-width: 680px;
  text-align: center;
}
.modal__close {
  background: transparent;
  border: 0;
  color: #e5aa77;
  cursor: pointer;
  font-size: 50px;
  line-height: 1;
  position: absolute;
  right: 28px;
  top: 20px;
  transition: 0.3s;
  z-index: 3;
}
.modal__close:hover {
  transform: rotate(90deg);
  color: #b92828;
}

body.modal-lock {
  overflow: hidden;
  position: fixed;
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 1440px) {
  h1 {
    font-size: 40px;
  }
  h2 {
    font-size: 32px;
  }
  h3 {
    font-size: 24px;
  }
  h4 {
    font-size: 20px;
  }
  h5 {
    font-size: 18px;
  }
  .hero-content {
    max-width: 70%;
  }
  .hero-content h1 {
    max-width: 100%;
    font-size: 50px;
  }
  .hero-content .hero-info {
    font-size: 20px;
  }
  .menu-tel {
    font-size: 20px;
  }
  .menu-nav {
    gap: 30px;
  }
  .logo {
    width: 250px;
  }
  .logo img {
    width: 100%;
  }
  .about-container {
    gap: 20px;
  }
  .about-block {
    width: calc(50% - 10px);
  }
  .info-bridge {
    font-size: 18px;
  }
  .services-block {
    width: calc(50% - 30px);
  }
  .footer_container {
    flex-wrap: wrap;
    gap: 20px;
  }
  .footer-left {
    width: 100%;
    justify-content: center;
    text-align: center;
    background: rgba(0, 0, 0, 0.2);
    padding: 20px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.05);
  }
  .footer-line {
    display: none;
  }
  .footer-links {
    text-align: center;
    margin: 20px auto;
  }
  .cases-container {
    flex-wrap: wrap;
  }
  .cases-block {
    width: calc(50% - 20px);
  }
  .article-card {
    width: 100%;
  }
  .articles-grid {
    gap: 20px;
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .reviews-grid {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .review-text {
    text-align: center;
  }
  .review-card {
    padding: 20px;
    flex-wrap: wrap;
  }
  .review-person {
    border-right: none;
    margin: 0 auto;
    padding-right: 0;
  }
  .btn-main {
    font-size: 18px;
  }
}
@media screen and (max-width: 1180px) {
  section h2 {
    font-size: 40px;
  }
  .menu-right {
    display: none;
  }
  .menu-burger {
    display: flex;
  }
  .hero-content {
    max-width: 100%;
  }
  .hero-content h1 {
    max-width: 100%;
  }
  .hero-content .hero-info {
    max-width: 100%;
  }
  .hero-content .info-bridge {
    max-width: 100%;
  }
  .hero-image {
    opacity: 0.4;
  }
  .logo {
    width: 300px;
  }
  .about-block {
    width: 100%;
  }
  .about-header {
    flex-wrap: wrap;
    gap: 20px;
  }
  .work-container {
    flex-wrap: wrap;
  }
  .work-left {
    width: 100%;
  }
  .work-right {
    width: 100%;
  }
  .steps-line {
    display: none;
  }
  .steps-block {
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
  }
  .services-container {
    gap: 20px;
  }
  .services-content {
    font-size: 18px;
  }
  .services-block {
    width: calc(50% - 10px);
  }
  .prem-container {
    flex-wrap: wrap;
    justify-content: center;
  }
  .prem-block {
    max-width: 300px;
  }
  .footer-right {
    max-width: 100%;
    width: 100%;
    margin-top: 20px;
  }
  .footer-line-r {
    display: none;
  }
  .footer-tel {
    justify-content: center;
    text-align: center;
  }
  .footer-adr {
    text-align: center;
  }
  .footer-std {
    justify-content: center;
  }
  .footer-nav {
    justify-content: space-between;
  }
  .consultation .title-section,
  .consultation .consultation-container,
  .consultation .footer {
    position: relative;
    z-index: 1;
  }
  .consultation::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(2, 11, 20, 0.5);
    z-index: 0;
  }
  .question {
    background-size: cover;
  }
  .page-informer {
    font-size: 18px;
  }
  .contacts {
    flex-wrap: wrap;
  }
  .contacts-card {
    width: 100%;
  }
  .contacts-form {
    padding: 0;
    width: 100%;
  }
  .content-page h2 {
    font-size: 32px;
  }
  .service-detail {
    flex-wrap: wrap;
  }
  .service-main {
    width: 100%;
  }
  .service-sidebar {
    width: 100%;
    flex: auto;
  }
  .service-sidebar .btn-primary {
    margin-bottom: 0;
  }
  .service-sidebar h3 {
    text-align: left;
  }
  .modal__dialog h2 {
    font-size: 32px;
  }
}
@media screen and (max-width: 780px) {
  body {
    font-size: 16px;
  }
  .wrap {
    width: calc(100% - 50px);
  }
  .hero-content {
    text-align: center;
  }
  .hero-content h1 {
    font-size: 40px;
  }
  .info-bridge {
    text-align: left;
    font-size: 18px;
  }
  .logo {
    width: 250px;
  }
  section h2 {
    font-size: 32px;
  }
  .consultation .title-section h2 {
    font-size: 32px;
  }
  .about .btn-primary {
    width: 100%;
  }
  .btn-primary {
    padding: 15px 15px;
  }
  .secondary-prem {
    font-size: 18px;
  }
  .services-block {
    width: 100%;
  }
  .footer-nav {
    display: none;
  }
  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 0;
  }
  .footer-links a {
    text-align: center;
  }
  .steps-block {
    gap: 20px;
  }
  .steps-decline {
    width: 150px;
  }
  .steps-item {
    height: 180px;
    width: 130px;
  }
  .work {
    background: transparent;
  }
  .btn-main {
    font-size: 18px;
  }
  .secondary-prem {
    font-size: 20px;
  }
  .page-informer h2 {
    font-size: 32px;
  }
  .cases-block {
    width: 100%;
  }
  .cases-content {
    font-size: 18px;
  }
  .article-card {
    flex-wrap: wrap;
  }
  .article-image {
    border-right: none;
    margin: 0;
    padding: 0;
    text-align: center;
    margin: 0 auto;
    width: auto;
  }
  .article-content {
    text-align: center;
  }
  .article-image img,
  .image-empty {
    width: 200px;
    height: 200px;
  }
  .review-text h3,
  .article-content h3 {
    margin: 20px auto;
  }
  .badge {
    width: 200px;
    margin-top: 5px;
  }
  .contacts-card {
    padding: 20px;
  }
  .contacts-card h2 {
    font-size: 28px;
    margin-bottom: 20px;
  }
  .modal__dialog {
    padding: 30px 20px;
    max-height: calc(100vh - 20px);
    width: calc(100% - 20px);
  }
  .modal__dialog h2 {
    font-size: 28px;
  }
  .modal__dialog > p {
    font-size: 14px;
    margin-bottom: 15px;
  }
  .modal__close {
    right: 20px;
    top: 15px;
    font-size: 40px;
  }
}
@media screen and (max-width: 480px) {
  h1 {
    font-size: 30px;
  }
  h2 {
    font-size: 24px;
  }
  h3 {
    font-size: 20px;
  }
  h4 {
    font-size: 18px;
  }
  h5 {
    font-size: 16px;
  }
  section h2 {
    font-size: 30px;
  }
  .page-informer h2 {
    font-size: 28px;
  }
  .consultation .title-section h2 {
    font-size: 30px;
  }
  .wrap {
    width: calc(100% - 20px);
  }
  .hero-content h1 {
    font-size: 30px;
    margin: 40px 0;
  }
  .hero-content .hero-info {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 20px;
  }
  .hero-content .info-bridge {
    text-align: center;
  }
  .info-bridge {
    font-size: 16px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
  }
  .info-bridge .info-bridge-icon {
    margin-right: 0;
  }
  .btn-main {
    padding: 20px 20px;
    font-size: 18px;
    max-width: 100%;
    justify-content: space-between;
  }
  .page .btn-main {
    margin: 40px 0;
    width: 100%;
  }
  .menu-burger span {
    display: none;
  }
  .logo {
    width: 200px;
  }
  .hero-social {
    gap: 10px;
    padding: 10px;
    justify-content: center;
    margin-top: 20px;
  }
  .about-preim svg {
    display: none;
  }
  .work-other-item {
    width: 100%;
    margin-bottom: 10px;
  }
  .steps-container {
    margin-top: 100px;
  }
  .work .gold-text {
    text-align: center;
  }
  .services-title {
    text-align: center;
  }
  .services-content {
    text-align: center;
    font-size: 16px;
  }
  .services-btn {
    width: auto;
    margin: 20px;
    margin-top: 0;
    justify-content: space-between;
  }
  .infolable-item {
    width: 100%;
  }
  .prem-block {
    max-width: 100%;
  }
  .article-bottom {
    flex-wrap: wrap;
    justify-content: center;
  }
  .contacts-card {
    padding: 20px;
  }
  .contacts-card h2 {
    font-size: 24px;
    margin-bottom: 20px;
  }
  .contacts-form .btn-main {
    justify-content: center;
  }
  .modal__dialog {
    padding: 80px 20px 20px 20px;
  }
  .modal__dialog::after {
    display: none;
  }
  .modal__dialog h2 {
    font-size: 30px;
  }
  .modal__dialog .btn-main {
    justify-content: center;
  }
  .form input,
  .form textarea {
    padding: 15px 20px;
  }
  .form textarea {
    min-height: 100px;
  }
  .service-prem {
    width: 100%;
  }
}