@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 300;
  font-stretch: 100%;
  font-display: swap;
  src: url("/fonts/Montserrat-Light.woff2") format("woff2"), url("/fonts/Montserrat-Light.woff2") format("woff2");
}
@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400;
  font-stretch: 100%;
  font-display: swap;
  src: url("/fonts/Montserrat-Regular.woff2") format("woff2"), url("/fonts/Montserrat-Regular.woff2") format("woff2");
}
@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 500;
  font-stretch: 100%;
  font-display: swap;
  src: url("/fonts/Montserrat-Medium.woff2") format("woff2"), url("/fonts/Montserrat-Medium.woff2") format("woff2");
}
@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 600;
  font-stretch: 100%;
  font-display: swap;
  src: url("/fonts/Montserrat-SemiBold.woff2") format("woff2"), url("/fonts/Montserrat-SemiBold.woff2") format("woff2");
}
@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 700;
  font-stretch: 100%;
  font-display: swap;
  src: url("/fonts/Montserrat-Bold.woff2") format("woff2"), url("/fonts/Montserrat-Bold.woff2") format("woff2");
}
@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 900;
  font-stretch: 100%;
  font-display: swap;
  src: url("/fonts/Montserrat-ExtraBold.woff2") format("woff2"), url("/fonts/Montserrat-ExtraBold.woff2") format("woff2");
}
.center {
  text-align: center;
}

.fw700 {
  font-weight: 700;
}

.fw600 {
  font-weight: 600;
}

.fw500 {
  font-weight: 500;
}

.w100 {
  width: 100% !important;
}

.br10 {
  border-radius: 10px;
}

.br15 {
  border-radius: 15px;
}

.white {
  color: #fff;
}
.white b {
  color: #fff;
}

.uppercase {
  text-transform: uppercase;
}

.relative {
  position: relative;
}

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

.transition {
  transition: 0.3s all ease;
}

.initialized {
  display: none;
}
.initialized.slick-initialized {
  display: block;
}

.hide {
  opacity: 0;
  visibility: hidden;
  z-index: -1;
  transition: 0.3s all ease;
}

.d_flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-flow: wrap;
}
.d_flex.nowrap {
  flex-flow: nowrap;
}

.orange {
  color: #FF5620;
}

.justify_start {
  justify-content: flex-start;
}

.justify_center {
  justify-content: center;
}

.bg_img {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.fancybox__caption {
  color: #fff;
}

.before {
  position: relative;
}
.before:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: 0.3s all ease;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
}

.bg_blur {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.24) 0%, rgba(0, 0, 0, 0.24) 100%);
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
}

.bg_dark_shadow {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80px;
  z-index: 2;
  background: linear-gradient(180deg, rgba(28, 28, 28, 0) 0%, #1c1c1c 100%);
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: -moz-max-content;
  width: max-content;
  padding: 0 30px;
  min-height: 60px;
  background: #FF5620;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 600;
  position: relative;
  overflow: hidden;
  transition: 0.3s all ease;
  cursor: pointer;
  line-height: 120%;
}
.btn.wide {
  min-width: 40vw;
}
.btn:hover {
  text-decoration: none;
  transform: scale(1.02);
  box-shadow: 5px 5px 8px rgba(255, 86, 32, 0.3);
  color: #fff;
}
.btn:before {
  content: "";
  position: absolute;
  top: -50%;
  left: -10%;
  width: 20px;
  height: 200%;
  background: rgba(255, 255, 255, 0.3);
  display: inline-block;
  transform: rotate(15deg);
  z-index: 33;
  animation: 4s btnBlick ease-in infinite;
}

.messengers {
  display: flex;
  gap: 15px;
}
.messengers a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
}
.messengers a:hover {
  transform: scale(1.1);
}
.messengers a.vi {
  background: #665CAC;
}
.messengers a.tg {
  background: #0088CC;
}
.messengers a.wa {
  background: #25D366;
}

.dotted_underline {
  text-decoration: underline;
  -webkit-text-decoration-style: dotted;
          text-decoration-style: dotted;
}
.dotted_underline:hover {
  -webkit-text-decoration-style: solid;
          text-decoration-style: solid;
}

.section_heading {
  font-size: 40px;
  text-align: center;
}

.slider_arrows .slider-arr {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  cursor: pointer;
  width: 50px;
  height: 50px;
  background: #FF5620;
  border-radius: 50%;
  justify-content: center;
}
.slider_arrows .slider-arr.prev {
  left: -80px;
}
.slider_arrows .slider-arr.next {
  right: -80px;
}

.image_scale {
  position: relative;
  overflow: hidden;
}
.image_scale .image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: 0.3s all ease-in;
}
.image_scale:hover .image {
  transform: scale(1.05);
}

.breadcrumbs {
  margin-top: 200px;
}
.breadcrumbs ol {
  display: inline-block;
}
.breadcrumbs ol a span {
  color: rgba(255, 255, 255, 0.6);
}
.breadcrumbs ol a:hover span {
  color: #FF5620;
}
.breadcrumbs ol li {
  display: inline;
}
.breadcrumbs ol li:after {
  content: "|";
  margin: 0 10px;
}
.breadcrumbs ol li:last-child:after {
  display: none;
}
.breadcrumbs ol span {
  font-size: 18px;
}

a.to-top-btn {
  position: fixed;
  right: 20px;
  width: 65px;
  height: 95px;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.4);
  border: 2px solid rgba(255, 86, 32, 0.4);
  border-bottom: none;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  transition: 1s all ease;
  padding-bottom: 15px;
  z-index: 99;
}
a.to-top-btn.up {
  bottom: -100px;
}
a.to-top-btn.down {
  transform: rotate(180deg);
  top: -100px;
}
a.to-top-btn.show.up {
  bottom: -15px;
}
a.to-top-btn.show.down {
  top: 150px;
}
a.to-top-btn:hover {
  bottom: 0;
}

@media only screen and (max-width: 1920px) {
  .br10 {
    border-radius: 0.52vw;
  }

  .br15 {
    border-radius: 0.78vw;
  }

  .bg_dark_shadow {
    height: 4.17vw;
  }

  .btn {
    padding: 0 1.56vw;
    min-height: 3.13vw;
    border-radius: 0.26vw;
    font-size: 0.83vw;
  }
  .btn:before {
    width: 1.04vw;
  }

  .messengers {
    gap: 0.78vw;
  }
  .messengers a {
    width: 2.08vw;
    height: 2.08vw;
  }
  .messengers a svg {
    width: 1.15vw;
    height: 1.15vw;
  }

  .section_heading {
    font-size: 2.08vw;
  }

  .slider_arrows .slider-arr {
    width: 2.6vw;
    height: 2.6vw;
  }
  .slider_arrows .slider-arr.prev {
    left: -4.17vw;
  }
  .slider_arrows .slider-arr.next {
    right: -4.17vw;
  }
  .slider_arrows .slider-arr svg {
    width: 0.47vw;
    height: 0.83vw;
  }

  .breadcrumbs {
    margin-top: 10.42vw;
  }
  .breadcrumbs ol li:after {
    margin: 0 0.52vw;
    font-size: 0.83vw;
  }
  .breadcrumbs ol span {
    font-size: 0.94vw;
  }

  a.to-top-btn {
    right: 1.04vw;
    width: 3.39vw;
    height: 4.95vw;
    border-top-left-radius: 0.52vw;
    border-top-right-radius: 0.52vw;
    padding-bottom: 0.78vw;
  }
  a.to-top-btn.up {
    bottom: -5.21vw;
  }
  a.to-top-btn.show.up {
    bottom: -0.78vw;
  }
  a.to-top-btn.show.down {
    top: 7.81vw;
  }
  a.to-top-btn img {
    width: 0.68vw;
  }
}
@media only screen and (max-width: 900px) {
  .d_flex.nowrap {
    flex-flow: wrap;
  }

  .bg_dark_shadow {
    height: 40px;
  }

  .br10 {
    border-radius: 10px;
  }

  .br15 {
    border-radius: 10px;
  }

  .breadcrumbs {
    margin-top: 70px;
  }
  .breadcrumbs ol li:after {
    margin: 0 5px;
    font-size: 10px;
  }
  .breadcrumbs ol span {
    font-size: 12px;
  }

  .btn {
    width: 100%;
    height: 50px;
    border-radius: 5px;
    font-size: 14px;
  }

  .section_heading {
    font-size: 24px;
    text-align: left;
  }

  .slider_arrows .slider-arr {
    width: 35px;
    height: 35px;
  }
  .slider_arrows .slider-arr svg {
    width: 7px;
    height: 15px;
  }

  .slick-dots li {
    width: 6px;
    height: 6px;
    margin: 0 4px;
  }
  .slick-dots li button:before {
    width: 6px;
    height: 6px;
  }

  .messengers {
    gap: 15px;
    width: 100%;
  }
  .messengers a {
    width: 40px;
    height: 40px;
  }
  .messengers a svg {
    width: 20px;
    height: 20px;
  }

  a.to-top-btn {
    right: 20px;
    width: 45px;
    height: 55px;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    padding-bottom: 5px;
  }
  a.to-top-btn.up {
    bottom: -60px;
  }
  a.to-top-btn.show.up {
    bottom: -1px;
  }
  a.to-top-btn.show.down {
    top: 57px;
  }
  a.to-top-btn img {
    width: 12px;
  }
}
.mt5 {
  margin-top: 5px;
}

.mt8 {
  margin-top: 8px;
}

.mt10 {
  margin-top: 10px;
}

.mt20 {
  margin-top: 20px;
}

.mt25 {
  margin-top: 25px;
}

.mt30 {
  margin-top: 30px;
}

.mt40 {
  margin-top: 40px;
}

.mt50 {
  margin-top: 50px;
}

.mt70 {
  margin-top: 70px;
}

.mt90 {
  margin-top: 90px;
}

.mt120 {
  margin-top: 120px;
}

.gap5 {
  gap: 5px;
}

.gap15 {
  gap: 15px;
}

.gap20 {
  gap: 20px;
}

.gap30 {
  gap: 30px;
}

.gap40 {
  gap: 40px;
}

.blink_dot {
  position: relative;
  padding-left: 12px;
}
.blink_dot:before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  background: #1DD65C;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  animation: 3s blinkDot linear infinite;
}

@media only screen and (max-width: 1920px) {
  .mt5 {
    margin-top: 0.26vw;
  }

  .mt8 {
    margin-top: 0.42vw;
  }

  .mt10 {
    margin-top: 0.52vw;
  }

  .mt20 {
    margin-top: 1.04vw;
  }

  .mt25 {
    margin-top: 1.3vw;
  }

  .mt30 {
    margin-top: 1.56vw;
  }

  .mt40 {
    margin-top: 2.08vw;
  }

  .mt50 {
    margin-top: 2.6vw;
  }

  .mt70 {
    margin-top: 3.65vw;
  }

  .mt90 {
    margin-top: 4.69vw;
  }

  .mt120 {
    margin-top: 6.25vw;
  }

  .gap20 {
    gap: 1.04vw;
  }

  .gap30 {
    gap: 1.56vw;
  }

  .gap40 {
    gap: 2.08vw;
  }

  .blink_dot {
    padding-left: 0.63vw;
  }
  .blink_dot:before {
    width: 0.31vw;
    height: 0.31vw;
  }
}
@media only screen and (max-width: 900px) {
  .mt10 {
    margin-top: 10px;
  }

  .mt20 {
    margin-top: 15px;
  }

  .mt30 {
    margin-top: 20px;
  }

  .mt40 {
    margin-top: 20px;
  }

  .mt50 {
    margin-top: 30px;
  }

  .mt70 {
    margin-top: 50px;
  }

  .mt90 {
    margin-top: 50px;
  }

  .mt120 {
    margin-top: 50px;
  }

  .gap20 {
    gap: 15px;
  }

  .gap30 {
    gap: 15px;
  }
}
@keyframes showBasketPopup {
  0% {
    right: 0;
  }
  15% {
    right: 5.5vw;
  }
  85% {
    right: 5.5vw;
  }
  100% {
    right: 0;
  }
}
@keyframes btnBlick {
  0% {
    left: -50%;
  }
  30% {
    left: 200%;
  }
  100% {
    left: 200%;
  }
}
@keyframes blinkDot {
  0% {
    opacity: 0.8;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 0.8;
  }
}
@keyframes showP {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  vertical-align: baseline;
  outline: none;
  font-family: "Montserrat", sans-serif;
  box-sizing: border-box;
  color: #fff;
}

html {
  height: 100%;
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100vw;
}

body {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  width: 100%;
  background: #1C1C1C;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

p {
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: #fff;
}

a {
  text-decoration: none;
  font-size: 16px;
  font-weight: 400;
  transition: 0.3s all ease;
  color: #fff;
}
a:hover {
  text-decoration: underline;
  color: #FF5620;
}

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

textarea,
select {
  font-family: "Montserrat", sans-serif;
}

form button {
  cursor: pointer;
}

b, strong {
  font-weight: 600;
}

ol, ul {
  list-style: none;
}

svg, svg path {
  transition: 0.3s all ease;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
  content: "";
}

input {
  outline: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

img {
  border: 0;
  max-width: 100%;
}

/* Chrome, Opera, Safari */
details summary::-webkit-details-marker {
  display: none;
}

details :focus {
  outline: 0;
}

/* Firefox */
details, summary {
  display: block;
}

details summary:before {
  content: none;
}

details[open] summary:before {
  content: none;
}

::-webkit-scrollbar-track {
  background-color: #1C1C1C;
}

::-webkit-scrollbar-thumb {
  background-color: #FF5620;
  background-position: center;
  background-repeat: no-repeat;
}

::-webkit-scrollbar {
  width: 12px;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

@media only screen and (max-width: 1920px) {
  p, a {
    font-size: 0.83vw;
  }
}
@media only screen and (max-width: 900px) {
  body {
    overflow-x: hidden;
    max-width: 100vw;
  }

  p, a {
    font-size: 14px;
  }

  .container {
    padding-left: 18px;
    padding-right: 18px;
  }
}
.fz12 {
  font-size: 12px;
}

.fz13 {
  font-size: 13px;
}

.fz14 {
  font-size: 14px;
}

.fz16 {
  font-size: 16px;
}

.fz18 {
  font-size: 18px;
}

.fz20 {
  font-size: 20px;
}

.fz22 {
  font-size: 22px;
}

.fz24 {
  font-size: 24px;
}

.fz30 {
  font-size: 30px;
}

.fz40 {
  font-size: 40px;
}

.fz50 {
  font-size: 50px;
}

@media only screen and (max-width: 1920px) {
  .fz12 {
    font-size: 0.63vw;
  }

  .fz13 {
    font-size: 0.68vw;
  }

  .fz14 {
    font-size: 0.73vw;
  }

  .fz16 {
    font-size: 0.83vw;
  }

  .fz18 {
    font-size: 0.94vw;
  }

  .fz20 {
    font-size: 1.04vw;
  }

  .fz22 {
    font-size: 1.15vw;
  }

  .fz24 {
    font-size: 1.25vw;
  }

  .fz30 {
    font-size: 1.56vw;
  }

  .fz40 {
    font-size: 2.08vw;
  }

  .fz50 {
    font-size: 2.6vw;
  }
}
@media only screen and (max-width: 900px) {
  .fz12 {
    font-size: 12px;
  }

  .fz13 {
    font-size: 13px;
  }

  .fz14 {
    font-size: 14px;
  }

  .fz18 {
    font-size: 14px;
  }

  .fz20 {
    font-size: 14px;
  }

  .fz22 {
    font-size: 16px;
  }

  .fz24 {
    font-size: 20px;
  }

  .fz30 {
    font-size: 20px;
  }

  .fz40 {
    font-size: 20px;
  }

  .fz50 {
    font-size: 24px;
  }
}
form label {
  display: block;
  font-size: 14px;
  font-weight: 300;
  margin-bottom: 10px;
}
form button.btn {
  border: none;
  color: #fff;
  box-sizing: border-box;
}
form .form_agree {
  width: 100%;
}
form .form_agree input {
  width: 14px;
  height: 14px;
  cursor: pointer;
  position: relative;
}
form .form_agree input:after, form .form_agree input:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  border-radius: 3px;
}
form .form_agree input:before {
  background: #FF5620;
  z-index: 1;
}
form .form_agree input:checked:after {
  background-image: url("/img/checked.webp");
  background-size: 10px 9px;
  background-repeat: no-repeat;
  background-position: center center;
  z-index: 2;
}
form .form_agree a {
  text-decoration: underline;
}

.input_group select {
  cursor: pointer;
  outline: none;
}
.input_group select,
.input_group input {
  box-sizing: border-box;
  border-radius: 5px;
  height: 60px;
  font-size: 18px;
  font-family: "Montserrat", sans-serif;
  color: #111;
  font-weight: 500;
  padding: 0 20px;
  background: #fff;
  border: 2px solid #fff;
  transition: 0.3s all ease-in;
}
.input_group select:focus,
.input_group input:focus {
  border-color: #FF5620;
}

@media only screen and (max-width: 1920px) {
  form label {
    font-size: 0.73vw;
    margin-bottom: 0.52vw;
  }
  form .form_agree input {
    width: 0.73vw;
    height: 0.73vw;
  }
  form .form_agree input:after, form .form_agree input:before {
    border-radius: 0.16vw;
  }
  form .form_agree input:checked:after {
    background-size: 0.52vw 0.47vw;
  }

  .input_group select,
.input_group input {
    border-radius: 0.26vw;
    height: 3.13vw;
    font-size: 0.94vw;
    padding: 0 1.04vw;
  }
}
@media only screen and (max-width: 900px) {
  form label {
    font-size: 12px;
    margin-bottom: 5px;
  }
  form .form_agree {
    flex-flow: nowrap !important;
    gap: 10px;
  }
  form .form_agree input {
    width: 14px;
    height: 14px;
  }
  form .form_agree input:before, form .form_agree input:after {
    display: none;
  }
  form .form_agree .fz14 {
    font-size: 12px;
  }

  .input_group {
    width: 100%;
  }
  .input_group select,
.input_group input {
    width: 100% !important;
    height: 50px;
    font-size: 16px;
    border-radius: 5px;
    padding: 0 15px;
  }
}
.content_seo h1 {
  font-size: 50px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
}
.content_seo h2 {
  font-size: 40px;
  font-weight: 500;
  margin: 30px 0;
  color: rgba(255, 255, 255, 0.8);
}
.content_seo h3 {
  font-size: 22px;
  line-height: 140%;
  margin: 30px 0;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
}
.content_seo p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 150%;
  margin: 20px 0;
  font-size: 18px;
}
.content_seo strong {
  color: inherit;
}
.content_seo img {
  border-radius: 15px;
}
.content_seo ul {
  margin: 20px 0;
}
.content_seo ul li {
  position: relative;
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
  margin: 5px 0;
  line-height: 150%;
  padding-left: 12px;
}
.content_seo ul li:before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  background: #FF5620;
  width: 4px;
  height: 4px;
  border-radius: 50%;
}
.content_seo a {
  text-decoration: underline;
  color: #FF5620;
  font-size: 18px;
}
.content_seo a.btn {
  color: #fff;
  text-decoration: none;
}
.content_seo a.btn:hover {
  color: #fff;
}
.content_seo .btgrid .row {
  display: flex;
  flex-flow: nowrap;
  gap: 40px;
}
.content_seo .btgrid .col-md-3 {
  width: 25%;
}
.content_seo .btgrid .col-md-4 {
  width: 33%;
}
.content_seo .btgrid .col-md-6 {
  width: -moz-fit-content;
  width: fit-content;
}
.content_seo.bottom_shadow:before {
  height: 75px;
  top: 100%;
  transform: translateY(-100%);
  background: linear-gradient(180deg, rgba(28, 28, 28, 0) 0%, #1c1c1c 100%);
}

@media only screen and (max-width: 1920px) {
  .content_seo h1 {
    font-size: 2.6vw;
  }
  .content_seo h2 {
    font-size: 2.08vw;
    margin: 1.04vw 0;
  }
  .content_seo h3 {
    font-size: 1.15vw;
    margin: 1.56vw 0;
  }
  .content_seo p {
    margin: 1.56vw 0;
  }
  .content_seo a, .content_seo p, .content_seo ul li {
    font-size: 0.94vw;
  }
  .content_seo img {
    border-radius: 0.78vw;
  }
  .content_seo ul {
    margin: 1.04vw 0;
  }
  .content_seo ul li {
    margin: 0.26vw 0;
    padding-left: 0.63vw;
  }
  .content_seo ul li:before {
    top: 0.52vw;
    width: 0.21vw;
    height: 0.21vw;
  }
  .content_seo .btgrid .row {
    gap: 2.08vw;
  }
  .content_seo.bottom_shadow:before {
    height: 3.91vw;
  }
}
@media only screen and (max-width: 900px) {
  .content_seo h1 {
    font-size: 22px;
  }
  .content_seo h2 {
    font-size: 20px;
    margin: 20px 0;
  }
  .content_seo h3 {
    font-size: 18px;
    margin: 20px 0;
  }
  .content_seo p {
    margin: 15px 0;
  }
  .content_seo a, .content_seo p, .content_seo ul li {
    font-size: 15px;
  }
  .content_seo ul {
    margin: 15px 0;
  }
  .content_seo ul li {
    margin: 5px 0;
    padding-left: 12px;
  }
  .content_seo ul li:before {
    top: 8px;
    width: 6px;
    height: 6px;
  }
  .content_seo img {
    border-radius: 10px;
  }
  .content_seo .btgrid .row {
    gap: 15px;
    flex-flow: wrap;
  }
  .content_seo .btgrid .row .col {
    width: 100% !important;
  }
  .content_seo.bottom_shadow:before {
    height: 40px;
  }
}
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  z-index: 999;
  transition: 0.3s all ease-in;
}
header .show_at_mobile {
  display: none;
}
header.not_index {
  background-color: #1C1C1C;
}
header.not_index .header_menu_row {
  border-color: rgba(255, 255, 255, 0.2);
}
header.fixed {
  background-color: #1C1C1C;
}
header.fixed .header_menu_row {
  border-color: rgba(255, 255, 255, 0.2);
}
header.fixed nav .child_menu {
  background: #1C1C1C;
}
header .btn {
  min-height: 50px;
  height: 50px;
}
header .btn:hover {
  color: #fff;
}
header .blink_dot {
  color: rgba(255, 255, 255, 0.8);
}
header .mobile_menu_btn {
  display: none;
}
header .burger_btn {
  width: 30px;
  height: 20px;
}
header .burger_btn .line {
  transition: 0.3s all ease-in;
  display: block;
  background: #FF5620;
  height: 3px;
  width: 100%;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
header .burger_btn .line:first-child {
  top: 0;
}
header .burger_btn .line:last-child {
  top: 100%;
}

.header_rate_block .flag p {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  color: #1C1C1C;
  animation: 1s showP linear;
}
.header_rate_block p {
  margin-top: 2px;
  line-height: 120%;
  color: rgba(255, 255, 255, 0.8);
}

.header_phones .phones {
  display: flex;
  flex-direction: column;
}
.header_phones a {
  font-size: 22px;
  font-weight: 600;
}
.header_phones a i {
  color: #FF5620;
  transition: 0.3s all ease;
}
.header_phones a:hover {
  text-decoration: none;
}
.header_phones a:hover i {
  color: #fff;
}

.header_logo_block p {
  opacity: 0.8;
}

.header_menu_row {
  border-top: 1px solid transparent;
  border-bottom: 1px solid transparent;
  transition: 0.3s all ease-in;
}
.header_menu_row p, .header_menu_row a {
  font-size: 20px;
  font-weight: 500;
}
.header_menu_row a:hover {
  text-decoration: none;
}

nav > ul {
  gap: 80px;
}
nav > ul > li {
  padding: 10px 0;
}
nav > ul > li.current > a, nav > ul > li.current p {
  color: #FF5620;
}
nav a {
  text-shadow: 1px 1px 2px #111;
}
nav .has_child {
  position: relative;
  padding-right: 20px;
}
nav .has_child > a:before {
  background-image: url("/img/child_arr.webp");
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  width: 10px;
  height: 10px;
  top: 50%;
  transform: translate(-100%, -50%);
  left: calc(100% + 20px);
}
nav .has_child:hover > a {
  color: #FF5620;
}
nav .has_child:hover > a:before {
  transform: translate(-100%, -50%) rotate(180deg);
}
nav .has_child:hover .child_menu {
  opacity: 1;
  visibility: visible;
  z-index: 99;
  top: 100%;
}
nav .child_menu {
  position: absolute;
  top: 130%;
  left: -20px;
  width: -moz-max-content;
  width: max-content;
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  padding: 15px 20px;
  display: grid;
  gap: 5px;
}
nav .child_menu a {
  font-size: 18px;
  font-weight: 400;
}

.header_lang_block a {
  opacity: 0.6;
}
.header_lang_block a:hover {
  opacity: 1;
}

@media only screen and (max-width: 1920px) {
  header .btn {
    min-height: 2.6vw;
    height: 2.6vw;
  }

  .header_logo_block img {
    width: 3.91vw;
  }

  .header_phones a {
    font-size: 1.15vw;
  }

  .header_menu_row p, .header_menu_row a {
    font-size: 1.04vw;
  }

  .header_rate_block .flag svg {
    width: 3.07vw;
    height: 5.63vw;
  }

  nav > ul {
    gap: 4.17vw;
  }
  nav > ul > li {
    padding: 0.52vw 0;
  }
  nav .has_child {
    padding-right: 1.04vw;
  }
  nav .has_child > a:before {
    width: 0.52vw;
    height: 0.52vw;
    left: calc(100% + 1.04vw);
  }
  nav .child_menu {
    left: -1.04vw;
    padding: 0.78vw 1.04vw;
    gap: 0.26vw;
  }
  nav .child_menu a {
    font-size: 0.94vw;
  }
}
@media only screen and (max-width: 900px) {
  header {
    padding: 10px 0;
    background-color: #1C1C1C;
    box-shadow: 0 0 5px 5px rgba(0, 0, 0, 0.3);
  }
  header .show_at_mobile {
    display: block;
  }
  header.open_services .mobile_services_menu {
    left: 0;
  }
  header.open_services .burger_btn .line:nth-child(2) {
    opacity: 0;
  }
  header.open_services .burger_btn .line:first-child {
    top: 50%;
    transform: rotate(45deg) translateY(-50%);
  }
  header.open_services .burger_btn .line:last-child {
    top: 50%;
    transform: rotate(-45deg) translateY(-50%);
  }
  header.open_moblie .header_menu_row {
    left: 0;
  }
  header.open_moblie .show_menu_btn .house {
    display: none;
  }
  header.open_moblie .show_menu_btn .cross {
    display: block;
  }
  header .mobile_menu_btn {
    display: flex;
  }
  header .mobile_menu_btn .cross {
    display: none;
  }
  header a.btn,
header .header_phones,
header .header_rate_block,
header .header_messengers {
    display: none;
  }
  header .top_row {
    height: 40px;
  }
  header .header_logo_block {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
  header .header_logo_block:after, header .header_logo_block:before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 25px;
    background-color: #fff;
    opacity: 0.118;
  }
  header .header_logo_block:before {
    left: -15px;
  }
  header .header_logo_block:after {
    right: -15px;
  }
  header .header_logo_block p {
    display: none;
  }
  header .header_logo_block img {
    width: 34px;
  }
  header .mobile_menu_btn p {
    opacity: 0.8;
  }
  header .header_menu_row {
    position: absolute;
    background: #1C1C1C;
    left: 100%;
    top: 60px;
    width: 100vw;
    height: 100vh;
    padding-top: 50px;
    padding-left: 45px;
    background-image: url("/img/nav_menu_a_bg.webp");
    background-position: left top;
    margin-top: 0;
    z-index: 999;
    border-top: none;
  }
  header .header_menu_row a, header .header_menu_row p {
    font-size: 18px;
  }
  header .header_menu_row .header_lang_block {
    margin-top: 50px;
  }
  header .header_menu_row .has_child a:before {
    display: none !important;
  }
  header .header_menu_row nav {
    width: 100%;
  }
  header .header_menu_row nav ul {
    flex-direction: column !important;
    align-items: flex-start !important;
  }
  header .header_menu_row nav ul.child_menu {
    display: none !important;
  }
  header .header_menu_row nav li.current a, header .header_menu_row nav li.current p {
    font-size: 26px;
  }
}
.hero_section_welcome {
  min-height: 840px;
  padding: 260px 0 100px;
}
.hero_section_welcome .inner {
  gap: 100px;
}
.hero_section_welcome .content_seo h1 {
  font-size: 60px;
  font-weight: 600;
  margin-bottom: 40px;
  color: #fff;
  text-shadow: 1px 1px 2px #111;
}
.hero_section_welcome .content_seo h1 span {
  color: #FF5620;
}
.hero_section_welcome .content_seo h1 small {
  font-size: 50px;
}
.hero_section_welcome .content_seo p {
  font-size: 22px;
  font-weight: 500;
  text-shadow: 1px 1px 2px #111;
}
.hero_section_welcome .content_seo .btn {
  margin-top: 70px;
}
.hero_section_welcome .right {
  width: 420px;
  min-width: 420px;
}
.hero_section_welcome .right .row {
  padding: 10px;
  border: 2px solid #FF5620;
}
.hero_section_welcome .right .row p {
  text-shadow: 1px 1px 2px #111;
}
.hero_section_welcome:before {
  background: rgba(28, 28, 28, 0.1);
}

.page_bottom_seo_text.open .content_seo {
  height: -moz-max-content;
  height: max-content;
}
.page_bottom_seo_text.open .content_seo:before {
  display: none;
}
.page_bottom_seo_text.open .show_btn {
  display: none;
}
.page_bottom_seo_text.open .hide_btn {
  display: flex !important;
}
.page_bottom_seo_text .content_seo {
  height: 260px;
  overflow: hidden;
}

.show_seo_btn {
  cursor: pointer;
  color: #FF5620;
  text-underline-offset: 5px;
  line-height: 140%;
  width: -moz-max-content;
  width: max-content;
}

@media only screen and (max-width: 1920px) {
  .hero_section_welcome {
    min-height: 43.75vw;
    padding: 13.54vw 0 5.21vw;
  }
  .hero_section_welcome .inner {
    gap: 5.21vw;
  }
  .hero_section_welcome .content_seo h1 {
    font-size: 3.13vw;
    margin-bottom: 2.08vw;
  }
  .hero_section_welcome .content_seo h1 small {
    font-size: 2.6vw;
  }
  .hero_section_welcome .content_seo p {
    font-size: 1.15vw;
  }
  .hero_section_welcome .content_seo .btn {
    margin-top: 3.65vw;
  }
  .hero_section_welcome .right {
    width: 22.92vw;
    min-width: 22.92vw;
  }
  .hero_section_welcome .right .row {
    padding: 0.52vw;
  }

  .show_seo_btn svg {
    width: 0.36vw;
    height: 0.89vw;
  }

  .page_bottom_seo_text .content_seo {
    height: 13.54vw;
  }
}
@media only screen and (max-width: 900px) {
  .hero_section_welcome {
    padding: 140px 0 70px;
  }
  .hero_section_welcome .right {
    width: 100%;
    margin-top: 50px;
  }
  .hero_section_welcome .right .row {
    padding: 10px;
  }
  .hero_section_welcome .content_seo h1 {
    font-size: 26px;
    margin-bottom: 20px;
  }
  .hero_section_welcome .content_seo h1 small {
    font-size: 20px;
    display: block;
  }
  .hero_section_welcome .content_seo h1 br {
    display: none;
  }
  .hero_section_welcome .content_seo p {
    font-size: 14px;
  }

  .services_welcome.mt70 {
    margin-top: 30px;
  }

  .page_bottom_seo_text .content_seo {
    height: 300px;
  }

  .show_seo_btn svg {
    width: 7px;
    height: 15px;
  }
}
.services_items {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 30px;
}

.service_card {
  padding: 30px;
  border-radius: 15px;
  min-height: 450px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}
.service_card .title {
  font-size: 24px;
  font-weight: 500;
  text-shadow: 1px 1px 2px #111;
}
.service_card ul {
  display: grid;
  gap: 10px;
}
.service_card ul a {
  text-decoration: underline;
  -webkit-text-decoration-style: dotted;
          text-decoration-style: dotted;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  position: relative;
  padding-left: 15px;
  display: inline-block;
}
.service_card ul a:hover {
  -webkit-text-decoration-style: solid;
          text-decoration-style: solid;
}
.service_card ul a:hover:before {
  background: #FF5620;
}
.service_card ul a:before {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #fff;
  transition: 0.3s all ease;
}
.service_card .bg_service {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}
.service_card:hover .title {
  color: #FF5620;
}
.service_card:hover .bg_service {
  transform: scale(1.05);
}

.service_filter {
  cursor: pointer;
  border: 1px solid #FF5620;
  color: rgba(255, 255, 255, 0.7);
  height: 60px;
  padding: 0 30px;
}
.service_filter.current {
  background: #FF5620;
  color: #fff;
}

.service_sidebar {
  min-width: 380px;
  width: 380px;
  background: rgba(255, 255, 255, 0.05);
}
.service_sidebar > ul > li:hover .service_category {
  background: #FF5620;
  color: #fff;
  text-decoration: none;
}
.service_sidebar > ul > li:hover .sidebar_child {
  display: grid;
}
.service_sidebar .open .service_category {
  background: #FF5620;
  color: #fff;
  text-decoration: none;
}
.service_sidebar .open .sidebar_child {
  display: grid;
}
.service_sidebar .service_category {
  display: block;
  padding: 10px 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.service_sidebar .sidebar_child {
  padding: 15px 20px 15px 40px;
  gap: 5px;
  list-style-type: disc;
  display: none;
}

.related_services_slider {
  display: none;
}
.related_services_slider.slick-initialized {
  display: block;
}
.related_services_slider .service_card {
  display: flex !important;
}
.related_services_slider .slick-list {
  margin: 0 -15px;
}
.related_services_slider .slick-slide {
  margin: 0 15px;
}
.related_services_slider ul.slick-dots {
  bottom: -40px;
}

@media only screen and (max-width: 1920px) {
  .services_items {
    gap: 1.56vw;
  }

  .service_card {
    padding: 1.56vw;
    border-radius: 0.78vw;
    min-height: 23.44vw;
  }
  .service_card .title {
    font-size: 1.25vw;
  }
  .service_card ul {
    gap: 0.52vw;
  }
  .service_card ul a {
    padding-left: 0.78vw;
  }
  .service_card ul a:before {
    top: 0.42vw;
  }

  .service_filter {
    height: 3.13vw;
    padding: 0 1.56vw;
  }

  .service_sidebar {
    min-width: 20.8vw;
    width: 19.79vw;
    top: 9.38vw;
  }
  .service_sidebar .service_category {
    padding: 0.52vw 1.04vw;
  }
  .service_sidebar .sidebar_child {
    padding: 0.78vw 1.04vw 0.78vw 2.08vw;
    gap: 0.26vw;
  }

  .related_services_slider .slick-list {
    margin: 0 -0.78vw;
  }
  .related_services_slider .slick-slide {
    margin: 0 0.78vw;
  }
  .related_services_slider ul.slick-dots {
    bottom: -2.08vw;
  }
}
@media only screen and (max-width: 1680px) {
  .service_card ul a {
    font-size: 14px;
  }
}
@media only screen and (max-width: 900px) {
  .services_items {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 15px;
  }

  .service_card {
    border-radius: 5px;
    padding: 15px;
    min-height: 200px;
  }
  .service_card .title {
    font-size: 18px;
  }

  .service_filter {
    height: 35px;
    padding: 0 10px;
    font-size: 12px;
  }

  .service_sidebar {
    display: none;
  }

  .related_services_slider .slider-arr {
    display: none !important;
  }
  .related_services_slider .slick-list {
    margin: 0 -7px;
  }
  .related_services_slider .slick-slide {
    margin: 0 7px;
  }
  .related_services_slider ul.slick-dots {
    bottom: -30px;
  }
}
@media only screen and (max-width: 680px) {
  .services_items {
    grid-template-columns: 1fr 1fr;
  }
}
.projects_block .slider-arr.prev {
  left: 50px;
}
.projects_block .slider-arr.next {
  right: 50px;
}
.projects_block .slick-dots {
  left: calc(100% - 50px);
  bottom: 50px;
  transform: translateX(-100%);
  width: -moz-max-content;
  width: max-content;
  display: flex;
}

.project_card {
  width: calc(50% - 15px);
  margin-bottom: 30px;
  height: 475px;
  overflow: hidden;
}
.project_card .project_image {
  height: 475px;
  display: block;
}
.project_card .project_image_slider {
  overflow: hidden;
}
.project_card:hover .project_card_details {
  bottom: 40px;
}
.project_card:hover .more_btn {
  opacity: 1;
}

.project_card_details {
  display: flex;
  flex-direction: column;
  position: absolute;
  bottom: 10px;
  left: 50px;
  max-width: 60%;
  z-index: 2;
}
.project_card_details .project_title {
  line-height: 130%;
  text-shadow: 1px 1px 2px #111;
}
.project_card_details .more_btn {
  opacity: 0;
}

.projects_details .content_left,
.projects_details .project_single_slider {
  width: 50%;
}
.projects_details .content_left {
  position: sticky;
  top: 180px;
  height: -moz-max-content;
  height: max-content;
}
.projects_details .image_right {
  height: 500px;
  display: block;
}

.nav_project_slider .slick-list {
  margin: 0 -15px;
}
.nav_project_slider .slick-slide {
  margin: 0 15px;
}
.nav_project_slider .slick-current .image {
  border-color: #FF5620;
}
.nav_project_slider .image {
  height: 275px;
  border: 2px solid transparent;
}
.nav_project_slider ul.slick-dots {
  bottom: -30px;
}

.project_video {
  height: 450px;
}

@media only screen and (max-width: 1920px) {
  .projects_block .slider-arr.prev {
    left: 2.6vw;
  }
  .projects_block .slider-arr.next {
    right: 2.6vw;
  }
  .projects_block .slick-dots {
    left: calc(100% - 2.6vw);
    bottom: 2.6vw;
  }

  .project_card {
    width: calc(50% - 0.78vw);
    margin-bottom: 1.56vw;
    height: 24.74vw;
  }
  .project_card .project_image {
    height: 24.74vw;
  }
  .project_card:hover .project_card_details {
    bottom: 2.08vw;
  }

  .project_card_details {
    bottom: 0.52vw;
    left: 2.6vw;
  }

  .projects_details .content_left {
    top: 9.38vw;
  }
  .projects_details .image_right {
    height: 26.04vw;
  }

  .nav_project_slider .slick-list {
    margin: 0 -0.78vw;
  }
  .nav_project_slider .slick-slide {
    margin: 0 0.78vw;
  }
  .nav_project_slider .image {
    height: 14.32vw;
  }
  .nav_project_slider ul.slick-dots {
    bottom: -1.56vw;
  }

  .project_video {
    height: 23.44vw;
  }
}
@media only screen and (max-width: 900px) {
  .projects_block .slider-arr.prev {
    left: 15px;
  }
  .projects_block .slider-arr.next {
    right: 15px;
  }
  .projects_block .slick-dots {
    left: calc(100% - 15px);
    bottom: 25px;
  }

  .project_card {
    width: 100%;
    margin-bottom: 15px;
    height: 300px;
  }
  .project_card .project_image {
    height: 300px;
  }

  .project_card_details {
    left: 15px;
    bottom: 20px !important;
  }
  .project_card_details .more_btn {
    opacity: 1;
    font-size: 12px;
  }

  .projects_details .project_single_slider,
.projects_details .content_left {
    width: 100%;
  }
  .projects_details .image_right {
    height: 300px;
  }

  .project_video {
    height: 300px;
  }

  .nav_project_slider.mt70 {
    margin-top: 30px;
  }
  .nav_project_slider .slider-arr {
    display: none !important;
  }
  .nav_project_slider .image {
    height: 125px;
  }
  .nav_project_slider ul.slick-dots {
    bottom: -20px;
  }
}
.step_card {
  background: rgba(255, 255, 255, 0.9);
  padding: 40px 50px;
  cursor: pointer;
  min-height: 388px;
  height: 100%;
}
.step_card p, .step_card a {
  color: #000;
}
.step_card a:hover {
  color: #FF5620;
}
.step_card .order {
  color: #FF5620;
  background: #fff;
  padding: 0 30px;
  height: 44px;
  width: -moz-max-content;
  width: max-content;
  line-height: 100%;
  border-radius: 5px;
}
.step_card .title {
  width: 90%;
  line-height: 130%;
}

.steps_slider {
  padding-bottom: 50px;
}
.steps_slider .slick-list {
  margin: 0 -15px;
}
.steps_slider .slick-slide {
  margin: 0 15px;
}
.steps_slider .slick-slide > div {
  height: 100%;
}

@media only screen and (max-width: 1920px) {
  .step_card {
    padding: 2.08vw 2.6vw;
    min-height: 20.21vw;
  }
  .step_card .order {
    padding: 0 1.56vw;
    height: 2.29vw;
    border-radius: 0.26vw;
  }

  .steps_slider {
    padding-bottom: 2.6vw;
  }
  .steps_slider .slick-list {
    margin: 0 -0.78vw;
  }
  .steps_slider .slick-slide {
    margin: 0 0.78vw;
  }
}
@media only screen and (max-width: 900px) {
  .how_start_work .slider-arr {
    display: none !important;
  }
  .how_start_work .slick-dots {
    bottom: -20px;
  }

  .step_card {
    padding: 20px;
  }
  .step_card .order {
    height: 25px;
    padding: 0 10px;
    border-radius: 5px;
  }
}
.faq_card {
  padding: 30px 50px;
  background: rgba(255, 255, 255, 0.05);
  height: -moz-max-content;
  height: max-content;
}
.faq_card.open .title {
  color: #FF5620;
}
.faq_card.open .content_seo {
  display: block;
}
.faq_card.open .faq_btn {
  background: #F1F1F1;
  color: #FF5620;
  transform: rotate(45deg);
}
.faq_card .top {
  gap: 40px;
  cursor: pointer;
}
.faq_card .top:hover .title {
  color: #FF5620;
}
.faq_card .content_seo {
  display: none;
}

.faq_btn {
  min-width: 40px;
  width: 40px;
  height: 40px;
  background: #FF5620;
  border-radius: 50%;
  justify-content: center;
  transition: 0.3s all ease-in;
}

.faq_cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.faq_cards .faq_col {
  display: flex;
  flex-direction: column;
}

@media only screen and (max-width: 1920px) {
  .faq_card {
    padding: 1.56vw 2.6vw;
  }
  .faq_card .top {
    gap: 2.08vw;
  }

  .faq_btn {
    min-width: 2.08vw;
    width: 2.08vw;
    height: 2.08vw;
  }
}
@media only screen and (max-width: 900px) {
  .faq_section.mt90 {
    margin-top: 70px;
  }

  .faq_cards {
    grid-template-columns: 1fr;
  }

  .faq_card {
    padding: 15px 20px;
  }
  .faq_card .top {
    flex-flow: nowrap !important;
    gap: 20px;
  }

  .faq_btn {
    width: 30px;
    min-width: 30px;
    height: 30px;
  }
}
.callback_section {
  padding: 80px 0;
}
.callback_section .container {
  margin-top: -200px;
  padding-top: 200px;
}
.callback_section .title {
  max-width: 75%;
  line-height: 130%;
}
.callback_section form {
  align-items: flex-end;
}
.callback_section .bg_dark_shadow.top {
  bottom: 100%;
  transform: translateY(100%) rotate(180deg);
}
.callback_section:before {
  background: rgba(28, 28, 28, 0.85);
}
.callback_section .form_call_messenger svg {
  position: absolute;
  right: 10px;
  top: -5px;
}

@media only screen and (max-width: 1920px) {
  .callback_section {
    padding: 4.17vw 0;
  }
  .callback_section .title img {
    width: 2.08vw;
  }
  .callback_section form button svg {
    width: 1.09vw;
    height: 1.04vw;
  }
  .callback_section .form_call_messenger svg {
    right: 0.52vw;
    top: -0.26vw;
    width: 1.46vw;
    height: 1.41vw;
  }
}
@media only screen and (max-width: 900px) {
  .callback_section {
    padding: 40px 0;
  }
  .callback_section .title {
    max-width: 100%;
  }
  .callback_section .title img {
    width: 20px;
  }
  .callback_section form button svg {
    width: 10px;
    height: 10px;
  }
  .callback_section .form_call_messenger svg {
    right: 10px;
    top: -10px;
    width: 23px;
    height: 27px;
  }
}
.about_page .content_seo .btgrid .col-md-6 {
  width: -moz-fit-content;
  width: fit-content;
}

.diploma_slider {
  width: 150px;
}
.diploma_slider .diploma {
  height: 225px;
}
.diploma_slider .slider-arr {
  width: 35px;
  height: 35px;
  opacity: 0.7;
}
.diploma_slider .slider-arr.prev {
  left: 0;
  transform: translate(-50%, -50%);
}
.diploma_slider .slider-arr.next {
  right: 0;
  transform: translate(50%, -50%);
}
.diploma_slider .slider-arr:hover {
  opacity: 1;
}
.diploma_slider .slick-dots {
  bottom: -30px;
}

.about_why_choose_us .inner {
  position: relative;
}
.about_why_choose_us .inner .adv-items {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}
.about_why_choose_us .inner .adv-items.second-row {
  background-color: #282828;
  width: 75.2%;
  position: relative;
  top: -2px;
}
.about_why_choose_us .inner .adv-items.second-row .item {
  text-align: center;
  border-bottom: 2px solid #FF5620;
  justify-content: center;
}
.about_why_choose_us .inner .adv-items.second-row .item:hover span.number {
  color: #FF5620;
}
.about_why_choose_us .inner .adv-items.second-row .item span.number {
  display: block;
  width: 100%;
  color: #fff;
  font-weight: 600;
  font-size: 33px;
  transition: 0.3s all ease;
}
.about_why_choose_us .inner .adv-items.second-row .item p {
  width: 100%;
  font-size: 18px;
}
.about_why_choose_us .inner .adv-items .item {
  justify-content: flex-start;
  flex-direction: column;
  box-sizing: border-box;
  border-top: 2px solid #FF5620;
  border-left: 2px solid #FF5620;
  padding: 20px;
}
.about_why_choose_us .inner .adv-items .item:last-child {
  border-right: 2px solid #FF5620;
  border-bottom: 2px solid #FF5620;
}
.about_why_choose_us .inner .adv-items .item:hover p.title {
  color: #FF5620;
}
.about_why_choose_us .inner .adv-items .item p.title {
  font-weight: 600;
  font-size: 28px;
  width: 100%;
  text-align: center;
  transition: 0.3s all ease;
}
.about_why_choose_us .inner .adv-items .item ul {
  margin-top: 15px;
}
.about_why_choose_us .inner .adv-items .item ul li {
  margin-bottom: 5px;
}
.about_why_choose_us .inner .adv-items .item ul li p {
  width: 100%;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  position: relative;
}
.about_why_choose_us .inner .adv-items .item ul li p:before {
  content: "";
  width: 10px;
  position: relative;
  top: -4px;
  height: 1px;
  background-color: #FF5620;
  display: inline-block;
  margin-right: 7px;
}
.about_why_choose_us .inner img.installation {
  position: absolute;
  bottom: -80px;
  transform: translateY(-50%);
  right: 55px;
  width: 215px;
}

@media only screen and (max-width: 1920px) {
  .about_page .content_seo .director_image {
    min-width: 29.79vw !important;
  }

  .diploma_slider {
    width: 7.81vw;
  }
  .diploma_slider .diploma {
    height: 11.72vw;
  }
  .diploma_slider .slider-arr {
    width: 1.82vw;
    height: 1.82vw;
  }
  .diploma_slider .slick-dots {
    bottom: -1.56vw;
  }

  .about_why_choose_us .inner .adv-items.second-row {
    top: -0.1vw;
  }
  .about_why_choose_us .inner .adv-items.second-row .item span.number {
    font-size: 1.72vw;
  }
  .about_why_choose_us .inner .adv-items.second-row .item p {
    font-size: 0.94vw;
  }
  .about_why_choose_us .inner .adv-items .item {
    padding: 1.04vw;
  }
  .about_why_choose_us .inner .adv-items .item p.title {
    font-size: 1.46vw;
  }
  .about_why_choose_us .inner .adv-items .item ul {
    margin-top: 0.78vw;
  }
  .about_why_choose_us .inner .adv-items .item ul li {
    margin-bottom: 0.26vw;
  }
  .about_why_choose_us .inner .adv-items .item ul li p {
    font-size: 0.94vw;
  }
  .about_why_choose_us .inner .adv-items .item ul li p:before {
    width: 0.52vw;
    top: -0.21vw;
    margin-right: 0.36vw;
  }
  .about_why_choose_us .inner img.installation {
    bottom: -4.17vw;
    right: 2.86vw;
    width: 10.2vw;
  }
}
@media only screen and (max-width: 900px) {
  .diploma_slider {
    margin-top: 30px;
    width: 100%;
  }
  .diploma_slider .diploma {
    height: 250px;
  }
  .diploma_slider .slick-list {
    margin: 0 -7px;
  }
  .diploma_slider .slick-slide {
    margin: 0 7px;
  }

  .about_why_choose_us {
    width: 100%;
  }
  .about_why_choose_us .inner .adv-items {
    grid-template-columns: 1fr;
  }
  .about_why_choose_us .inner .adv-items.second-row {
    top: 0;
    width: 100%;
  }
  .about_why_choose_us .inner .adv-items.second-row .item {
    border-bottom: none;
  }
  .about_why_choose_us .inner .adv-items.second-row .item span.number {
    font-size: 23px;
  }
  .about_why_choose_us .inner .adv-items.second-row .item p {
    font-size: 15px;
  }
  .about_why_choose_us .inner .adv-items.second-row .item:last-child {
    border-bottom: 2px solid #FF5620;
  }
  .about_why_choose_us .inner .adv-items .item {
    padding: 15px;
    border-right: 2px solid #FF5620;
  }
  .about_why_choose_us .inner .adv-items .item:last-child {
    border-bottom: none;
  }
  .about_why_choose_us .inner .adv-items .item p.title {
    font-size: 17px;
  }
  .about_why_choose_us .inner .adv-items .item ul {
    margin-top: 7px;
  }
  .about_why_choose_us .inner .adv-items .item ul li {
    margin-bottom: 5px;
  }
  .about_why_choose_us .inner .adv-items .item ul li p {
    font-size: 15px;
  }
  .about_why_choose_us .inner .adv-items .item ul li p:before {
    width: 10px;
    top: -3px;
    margin-right: 5px;
  }
  .about_why_choose_us .inner img.installation {
    margin-top: 30px;
    position: relative;
    bottom: 0;
    right: 0;
    width: 60%;
    transform: translateY(0);
  }
}
.blog_posts {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}

.post_card {
  height: 450px;
}
.post_card .date {
  background: #FF5620;
  position: absolute;
  left: 40px;
  top: 30px;
  padding: 5px 10px;
}
.post_card .details {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 0 40px;
}
.post_card .post_title:hover {
  color: #FF5620;
  text-decoration: underline;
}
.post_card .more_btn {
  opacity: 0;
}
.post_card .more_btn:hover {
  text-decoration: underline;
  gap: 30px;
}
.post_card:hover {
  text-decoration: none;
}
.post_card:hover .details {
  bottom: 40px;
}
.post_card:hover .more_btn {
  opacity: 1;
}

.aside_pagination {
  position: absolute;
  top: 350px;
  left: 37px;
}
.aside_pagination.show_at_mobile {
  display: none !important;
}
.aside_pagination a.back {
  left: -56px;
  top: -100px;
}
.aside_pagination a.back:before {
  left: 100%;
}
.aside_pagination a.back a {
  font-weight: 400;
}
.aside_pagination a.ahead {
  text-align: right;
  left: -56px;
  top: 40px;
}
.aside_pagination a.ahead:before {
  right: 100%;
}
.aside_pagination a.ahead,
.aside_pagination a.back {
  position: relative;
  display: inline-block;
  width: 120px;
  transform: rotate(-90deg);
}
.aside_pagination a.ahead span,
.aside_pagination a.back span {
  color: #F8F8F9;
  font-size: 24px;
  opacity: 0.4;
  transition: 0.3s all ease;
}
.aside_pagination a.ahead:hover,
.aside_pagination a.back:hover {
  text-decoration: none;
}
.aside_pagination a.ahead:hover span,
.aside_pagination a.back:hover span {
  color: #FF5620;
  opacity: 1;
}
.aside_pagination a.ahead:before,
.aside_pagination a.back:before {
  content: "";
  position: absolute;
  height: 1px;
  top: 50%;
  width: 100px;
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-50%);
}
.aside_pagination nav span {
  color: #fff !important;
}
.aside_pagination nav span.rounded-md.shadow-sm > span:first-child,
.aside_pagination nav span.rounded-md.shadow-sm > span:last-child {
  display: none !important;
}
.aside_pagination nav div:first-child {
  display: none;
}
.aside_pagination nav svg {
  display: none !important;
}
.aside_pagination nav span.relative {
  display: flex;
  flex-direction: column;
}
.aside_pagination nav span.relative > span,
.aside_pagination nav span.relative a.relative {
  margin-bottom: 50px;
}
.aside_pagination nav span[aria-current=page] {
  opacity: 1 !important;
}
.aside_pagination nav span[aria-current=page] span {
  color: #FF5620 !important;
}
.aside_pagination nav span, .aside_pagination nav a {
  font-size: 24px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.4);
  transition: 0.3s all ease;
}
.aside_pagination nav span button, .aside_pagination nav a button {
  background-color: transparent;
  color: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  border: none;
  font-size: 24px;
  padding: 0;
  transition: 0.3s all ease;
}
.aside_pagination nav span button:hover, .aside_pagination nav a button:hover {
  color: #FF5620;
}
.aside_pagination nav span:hover, .aside_pagination nav a:hover {
  color: #FF5620;
}
.aside_pagination.bottom_nav {
  top: 0;
  left: 0;
  position: relative;
  display: flex;
  justify-content: center;
  gap: 30px;
}
.aside_pagination.bottom_nav a.ahead,
.aside_pagination.bottom_nav a.back {
  display: block;
  text-align: left;
  width: -moz-max-content;
  width: max-content;
  left: 0;
  top: 0;
  transform: rotate(0);
}
.aside_pagination.bottom_nav a.ahead:before, .aside_pagination.bottom_nav a.ahead:after,
.aside_pagination.bottom_nav a.back:before,
.aside_pagination.bottom_nav a.back:after {
  display: none;
}
.aside_pagination.bottom_nav nav span.relative > span {
  margin-bottom: 0;
}
.aside_pagination.bottom_nav nav span.relative {
  flex-direction: row;
  gap: 30px;
  margin-bottom: 0;
}

@media only screen and (max-width: 1920px) {
  .post_card {
    height: 23.44vw;
  }
  .post_card .date {
    left: 2.08vw;
    top: 1.56vw;
    padding: 0.26vw 0.52vw;
  }
  .post_card .details {
    padding: 0 2.08vw;
  }
  .post_card .more_btn svg {
    width: 1.15vw;
    height: 0.52vw;
  }
  .post_card .more_btn:hover {
    gap: 1.56vw;
  }
  .post_card:hover .details {
    bottom: 2.08vw;
  }

  .post_page .post_date svg {
    width: 1.25vw;
    height: 1.25vw;
  }

  .aside_pagination {
    top: 18.23vw;
    left: 1.93vw;
  }
  .aside_pagination a.back {
    left: -2.92vw;
    top: -5.21vw;
  }
  .aside_pagination a.ahead {
    left: -2.92vw;
    top: 2.08vw;
  }
  .aside_pagination a.ahead,
.aside_pagination a.back {
    width: 6.25vw;
  }
  .aside_pagination a.ahead span,
.aside_pagination a.back span {
    font-size: 1.25vw;
  }
  .aside_pagination a.ahead:before,
.aside_pagination a.back:before {
    width: 5.21vw;
  }
  .aside_pagination nav span.relative > span,
.aside_pagination nav span.relative a.relative {
    margin-bottom: 2.6vw;
  }
  .aside_pagination nav span, .aside_pagination nav a {
    font-size: 1.25vw;
  }
  .aside_pagination nav span button, .aside_pagination nav a button {
    font-size: 1.25vw;
  }
  .aside_pagination.bottom_nav {
    gap: 1.56vw;
  }
  .aside_pagination.bottom_nav nav span.relative {
    gap: 1.56vw;
  }
}
@media only screen and (max-width: 900px) {
  .blog_posts {
    grid-template-columns: 1fr;
  }

  .post_card {
    height: 250px;
  }
  .post_card .date {
    left: 15px;
    top: 15px;
    padding: 5px;
    border-radius: 5px;
    font-size: 12px;
  }
  .post_card .details {
    padding: 15px;
    bottom: 0 !important;
  }
  .post_card .more_btn {
    opacity: 1;
  }
  .post_card .more_btn svg {
    width: 16px;
    height: 8px;
  }

  .post_page .post_date svg {
    width: 15px;
    height: 15px;
  }

  .aside_pagination {
    display: none;
  }
  .aside_pagination.show_at_mobile {
    display: flex !important;
  }
  .aside_pagination.bottom_nav {
    display: flex;
    gap: 15px;
  }
  .aside_pagination.bottom_nav nav span.relative {
    gap: 15px;
  }
  .aside_pagination a.ahead span,
.aside_pagination a.back span,
.aside_pagination nav span,
.aside_pagination nav span button,
.aside_pagination nav a button {
    font-size: 17px;
  }
}
.price_table .bg .row_title {
  background: rgba(255, 255, 255, 0.05);
}
.price_table .open {
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.price_table .open svg {
  transform: rotate(180deg);
}
.price_table .open .row_title {
  background: #FF5620;
}
.price_table .open .row_title:hover {
  color: #fff;
}
.price_table .open .child_price {
  display: block;
}
.price_table .row_title {
  height: 60px;
  cursor: pointer;
  padding: 0 40px;
}
.price_table .row_title:hover {
  color: #FF5620;
}
.price_table .child_price {
  display: none;
}
.price_table .child_price p {
  padding: 10px 40px 10px 80px;
}
.price_table .child_price .bg {
  background: rgba(255, 255, 255, 0.05);
}
.price_table .work_title {
  width: 50%;
  min-width: 50%;
}
.price_table .work_measure, .price_table .work_price {
  min-width: 25%;
  width: 25%;
}
.price_table .border_right {
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

table.calc_table input.volume {
  background: transparent;
  height: 40px;
  width: 80px;
  color: #fff;
  border: none;
  border-bottom: 1px solid #FF5620;
}
table.calc_table .has_bg {
  background: rgba(255, 255, 255, 0.05);
}
table.calc_table th td {
  padding: 10px 0;
}
table.calc_table td {
  padding: 10px 40px;
}
table.calc_table td:first-child {
  padding-left: 75px;
}
table.calc_table .total.hide {
  visibility: visible;
}
table.calc_table .total.hide .add_to_basket {
  position: absolute;
  visibility: hidden;
}
table.calc_table .total button.btn {
  height: 40px;
  min-height: 40px;
}

.price_block .title_block .title {
  height: 60px;
  cursor: pointer;
  padding: 0 40px;
}
.price_block .title_block .title:hover {
  color: #FF5620;
}
.price_block .sub_price_item.open {
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.price_block .sub_price_item.open svg {
  transform: rotate(180deg);
}
.price_block .sub_price_item.open .title_block .title {
  color: #fff;
  background: #FF5620;
}
.price_block .sub_price_item.bg .title {
  background: rgba(255, 255, 255, 0.05);
}
.price_block .sub_price_item.open .total_block {
  display: flex;
}
.price_block .sub_price_item.open table {
  display: table;
}
.price_block .sub_price_item .total_block {
  justify-content: flex-end;
  padding: 15px 80px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.price_block .sub_price_item .total_block,
.price_block .sub_price_item table {
  display: none;
}

.basket_inner .remove_from_basket button {
  background: #FF5620;
  color: #fff;
  border: none;
  border-radius: 5px;
}
.basket_inner tbody tr:nth-child(1), .basket_inner tbody tr:nth-child(3), .basket_inner tbody tr:nth-child(5), .basket_inner tbody tr:nth-child(7), .basket_inner tbody tr:nth-child(9), .basket_inner tbody tr:nth-child(11), .basket_inner tbody tr:nth-child(13), .basket_inner tbody tr:nth-child(15), .basket_inner tbody tr:nth-child(17), .basket_inner tbody tr:nth-child(19), .basket_inner tbody tr:nth-child(21), .basket_inner tbody tr:nth-child(23) {
  background: rgba(255, 255, 255, 0.05);
}

.download_final label {
  font-size: 18px;
  cursor: pointer;
}
.download_final .checkbox_item {
  gap: 10px;
}
.download_final .checkbox_item label {
  margin-bottom: 0;
}
.download_final .checkbox_item input {
  width: 16px;
  height: 16px;
  cursor: pointer;
}
.download_final .input_group {
  width: 32%;
}
.download_final .input_group input {
  width: 100%;
}
.download_final .border {
  border: 1px solid #FF5620;
  padding: 20px;
}
.download_final .w50 {
  width: 50%;
}

#big_price_total {
  padding-top: 150px;
  margin-top: -150px;
}

.calc_scroll_to_final {
  position: fixed;
  top: 50%;
  right: 40px;
  z-index: 99;
  background: #FF5620;
  color: #fff;
  width: 120px;
  padding: 10px 20px;
  text-align: center;
  overflow: visible;
}
.calc_scroll_to_final:before {
  display: none;
}
.calc_scroll_to_final img {
  position: absolute;
  top: calc(100% + 15px);
  left: 50%;
  transform: translateX(-50%);
}

.basket_deleted_popup {
  background: #FF5620;
  color: #fff;
  position: fixed;
  z-index: 99;
  bottom: 40px;
  right: 0;
  padding: 10px 20px;
  max-width: 50vw;
  border: 1px solid #FF5620;
  animation: 3s showBasketPopup ease-in 0s forwards;
}

@media only screen and (max-width: 1920px) {
  .price_table .row_title {
    height: 3.13vw;
    padding: 0 2.08vw;
  }
  .price_table .row_title svg {
    width: 0.68vw;
    height: 0.42vw;
  }
  .price_table .child_price p {
    padding: 0.52vw 2.08vw 0.52vw 4.17vw;
  }

  table.calc_table input.volume {
    height: 2.08vw;
    width: 4.17vw;
  }
  table.calc_table th td {
    padding: 0.52vw 0;
  }
  table.calc_table td {
    padding: 0.52vw 2.08vw;
  }
  table.calc_table td:first-child {
    padding-left: 3.91vw;
  }
  table.calc_table .total button.btn {
    height: 2.08vw;
    min-height: 2.08vw;
  }

  .price_block .title_block .title {
    height: 3.13vw;
    padding: 0 2.08vw;
  }
  .price_block .sub_price_item .total_block {
    padding: 0.78vw 4.17vw;
  }

  .basket_inner .remove_from_basket button {
    border-radius: 0.26vw;
  }

  .download_final label {
    font-size: 0.94vw;
  }
  .download_final .checkbox_item {
    gap: 0.52vw;
  }
  .download_final .checkbox_item input {
    width: 0.83vw;
    height: 0.83vw;
  }
  .download_final .border {
    padding: 1.04vw;
  }

  #big_price_total {
    padding-top: 7.81vw;
    margin-top: -7.81vw;
  }

  .calc_scroll_to_final {
    right: 2.08vw;
    width: 6.25vw;
    padding: 0.52vw 1.04vw;
  }
  .calc_scroll_to_final img {
    width: 2.08vw;
    top: calc(100% + 0.78vw);
  }

  .basket_deleted_popup {
    bottom: 2.08vw;
    padding: 0.52vw 1.04vw;
  }
}
@media only screen and (max-width: 900px) {
  .price_table .row_title {
    height: -moz-max-content;
    height: max-content;
    padding: 15px;
    flex-flow: nowrap !important;
  }
  .price_table .row_title svg {
    width: 13px;
    height: 8px;
  }
  .price_table .child_price p.work_title {
    padding: 10px 10px 10px 30px;
  }

  .price_block .title_block .title {
    height: -moz-max-content;
    height: max-content;
    padding: 15px;
    flex-flow: nowrap !important;
  }
  .price_block .sub_price_item .total_block {
    padding: 10px 15px;
  }

  .basket_inner .remove_from_basket button {
    height: 25px;
    font-size: 12px;
    border-radius: 5px;
  }

  .download_final label {
    font-size: 14px;
  }
  .download_final .input_group {
    margin-top: 20px;
    width: 100%;
  }
  .download_final .checkbox_item input {
    width: 15px;
    height: 15px;
  }
  .download_final .w50 {
    width: 100%;
  }
}
.contact_page .map {
  width: 65%;
}
.contact_page iframe {
  height: 500px;
}

@media only screen and (max-width: 1920px) {
  .contact_page iframe {
    height: 26.04vw;
  }
}
@media only screen and (max-width: 900px) {
  .contact_page .map {
    width: 100%;
    margin-top: 30px;
  }
  .contact_page iframe {
    height: 400px;
  }
}
.get_calculated_page_inner {
  gap: 60px;
}

.get_calculated_left {
  width: 60%;
  min-width: 60%;
}
.get_calculated_left .input_group {
  width: 48.5%;
}
.get_calculated_left .input_group input {
  width: 100%;
}

.calculator_big_btns .btn {
  width: 50%;
  background: transparent;
  border: 2px solid #FF5620;
}
.calculator_big_btns .btn.current {
  background: #FF5620;
}

.get_calculated_page .price_updated_date img {
  position: relative;
  transform: rotate(-90deg);
}

.calculator_page_show_block {
  display: none;
}
.calculator_page_show_block.current {
  display: block;
}

@media only screen and (max-width: 1920px) {
  .get_calculated_page_inner {
    gap: 3.13vw;
  }

  .get_calculated_page .price_updated_date img {
    width: 2.08vw;
  }
}
@media only screen and (max-width: 900px) {
  .get_calculated_left {
    width: 100%;
  }
  .get_calculated_left .input_group {
    width: 100%;
  }

  .calculator_big_btns .btn {
    width: 100%;
  }

  table.calc_table td {
    padding: 10px 5px;
  }
  table.calc_table input.volume {
    width: 40px;
    height: 40px;
  }
  table.calc_table .total button.btn {
    height: 30px;
    font-size: 12px;
  }

  .calc_scroll_to_final {
    right: 20px;
    width: 100px;
    padding: 5px;
    font-size: 12px;
  }
  .calc_scroll_to_final img {
    width: 20px;
    top: calc(100% + 5px);
  }

  .get_calculated_page .price_updated_date img {
    width: 20px;
  }
}
.modal_window {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
}
.modal_window.show {
  z-index: 999;
  opacity: 1;
  visibility: visible;
}
.modal_window.show .inner {
  top: 0;
}
.modal_window .inner {
  background: rgba(0, 0, 0, 0.8);
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  max-width: 900px;
  padding: 50px;
  top: 100px;
}
.modal_window .close_modal {
  position: absolute;
  top: 40px;
  right: 50px;
  cursor: pointer;
}
.modal_window .close_modal:hover p {
  color: #FF5620;
}
.modal_window .close_modal:hover svg {
  transform: rotate(90deg);
}

.mobile_services_menu {
  position: absolute;
  background: #1C1C1C;
  left: -100%;
  top: 60px;
  width: 100vw;
  max-width: 100vw;
  height: calc(100vh - 60px);
  z-index: 999;
  overflow-y: scroll;
  display: none;
}
.mobile_services_menu ul.links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 0 18px 18px;
  gap: 15px;
}
.mobile_services_menu ul.links li {
  overflow-wrap: break-word;
}
.mobile_services_menu .serv {
  flex-direction: column;
  align-items: flex-start;
  height: 200px;
  padding: 15px;
  font-size: 16px;
  text-shadow: 1px 1px 2px #111;
  border-radius: 5px;
  word-break: break-word;
}
.mobile_services_menu .serv .btn {
  height: 40px;
}
.mobile_services_menu .serv:before {
  background: rgba(0, 0, 0, 0.2);
}

@media only screen and (max-width: 900px) {
  .mobile_services_menu {
    display: block;
  }
}
footer .inner {
  padding: 55px 0;
  background-size: contain;
  background-position: bottom center;
}
footer .col_title {
  font-size: 22px;
}
footer .menu_col ul {
  display: grid;
  gap: 8px;
}
footer .menu_col ul p {
  opacity: 0.8;
  font-size: 18px;
}
footer .menu_col ul li,
footer .menu_col ul a {
  opacity: 0.8;
  font-size: 18px;
}
footer .menu_col ul li:hover,
footer .menu_col ul a:hover {
  opacity: 1;
}

.footer_contacts_row {
  justify-content: flex-start;
}
.footer_contacts_row p {
  opacity: 0.8;
}

.footer_socials a:hover img {
  transform: scale(1.1);
}

.footer_rights_row {
  padding: 20px 0;
}
.footer_rights_row .show_modal_rights {
  cursor: pointer;
}
.footer_rights_row .show_modal_rights:hover {
  color: #FF5620;
}
.footer_rights_row a {
  color: #FF5620;
  text-decoration: underline;
  -webkit-text-decoration-style: dotted;
          text-decoration-style: dotted;
}
.footer_rights_row a:hover {
  -webkit-text-decoration-style: solid;
          text-decoration-style: solid;
}

@media only screen and (max-width: 1920px) {
  footer .inner {
    padding: 2.86vw 0;
  }
  footer .col_title {
    font-size: 1.15vw;
  }
  footer .menu_col ul {
    gap: 0.42vw;
  }
  footer .menu_col ul p, footer .menu_col ul a, footer .menu_col ul li {
    font-size: 0.94vw;
  }

  .logo_footer img {
    width: 3.49vw;
  }

  .footer_contacts_row img {
    width: 1.09vw;
  }

  .footer_socials img {
    height: 1.46vw;
  }

  .footer_rights_row {
    padding: 1.04vw 0;
  }
}
@media only screen and (max-width: 900px) {
  footer {
    margin-top: 60px !important;
  }
  footer .inner {
    background: none;
  }
  footer .logo_block {
    margin-bottom: 40px;
  }
  footer .col_title {
    font-size: 18px;
  }
  footer ul.footer_services {
    max-width: 50%;
  }
  footer .menu_col {
    margin-bottom: 40px;
    min-width: 50%;
  }
  footer .menu_col .gap40 {
    gap: 5px;
  }
  footer .menu_col ul li {
    margin-bottom: 3px;
  }
  footer .menu_col ul p, footer .menu_col ul a {
    font-size: 15px;
  }

  .footer_socials img {
    height: 25px;
  }

  .footer_contacts_row {
    flex-flow: nowrap !important;
  }
  .footer_contacts_row br {
    display: none;
  }
  .footer_contacts_row img {
    width: 15px;
  }

  .logo_footer {
    flex-flow: nowrap !important;
  }
  .logo_footer img {
    width: 50px;
  }
  .logo_footer br {
    display: none;
  }

  .footer_rights_row {
    padding: 15px 0;
    margin-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }
  .footer_rights_row .fz14 {
    font-size: 12px;
    width: 100%;
    text-align: center;
  }
}
@media only screen and (max-width: 900px) {
  footer .logo_block {
    max-width: 50%;
  }
  footer .menu_col .d_flex.nowrap {
    flex-flow: nowrap;
  }
}
