.fw700 {
  font-weight: 700;
}

.fw600 {
  font-weight: 600;
}

.fw500 {
  font-weight: 500;
}

.w100 {
  width: 100%;
}

.uppercase {
  text-transform: uppercase;
}

.pointer {
  cursor: pointer;
}

.relative {
  position: relative;
}

.center {
  text-align: center;
}

.fancybox__caption {
  color: #fff;
}

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

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

.transition {
  transition: 0.3s all ease;
}

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

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

.align_start {
  align-items: flex-start;
}

.nowrap {
  flex-wrap: nowrap;
}

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

.before {
  position: relative;
}
.before:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.btn {
  height: 50px;
  text-transform: uppercase;
  background-color: #CBBEB5;
  width: -moz-max-content;
  width: max-content;
  display: flex;
  align-items: center;
  font-weight: 600;
  padding: 0 30px;
  cursor: pointer;
  transition: 0.3s all ease;
  font-size: 14px;
  line-height: 100%;
}
.btn svg {
  margin-left: 7px;
  position: relative;
  top: -2px;
}
.btn:hover {
  background-color: #3F3B38;
  color: #fff;
  box-shadow: 5px 10px 10px rgba(0, 0, 0, 0.3);
}
.btn:hover svg path {
  fill: #fff;
}

.fancybox__toolbar * {
  color: #fff !important;
}

.fit_image {
  overflow: hidden;
}
.fit_image:hover img {
  transform: scale(1.05);
}
.fit_image img {
  transition: 0.3s all ease;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.section_heading {
  font-size: 42px;
  font-weight: 700;
  margin-top: 20px;
}

.section_label {
  color: #CBBEB5;
  font-weight: 600;
  font-size: 15px;
}

.has_dot {
  position: relative;
}
.has_dot:after, .has_dot:before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -15px;
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fff;
}
.has_dot:after {
  animation: 2s dotAnimate ease-in infinite;
}

.show__at_mobile {
  display: none !important;
}

.breadcrumbs ol {
  display: inline-block;
}
.breadcrumbs li {
  display: inline;
}
.breadcrumbs a:after {
  content: "|";
  margin-right: 7px;
  padding-left: 6px;
}
.breadcrumbs a:hover {
  text-decoration: underline;
}
.breadcrumbs a, .breadcrumbs span {
  font-size: 14px;
}

@media only screen and (max-width: 1400px) {
  .btn {
    height: 3.57vw;
    padding: 0 2.14vw;
    font-size: 1vw;
  }
  .btn svg {
    margin-left: 0.5vw;
    top: -0.14vw;
    width: 0.64vw;
    height: 0.64vw;
  }

  .section_heading {
    font-size: 3vw;
    margin-top: 1.43vw;
  }

  .section_label {
    font-size: 1.07vw;
  }
  .section_label:before {
    width: 4.29vw;
    top: -0.36vw;
    margin-right: 0.71vw;
  }

  .has_dot:after, .has_dot:before {
    left: -1.07vw;
    width: 0.43vw;
    height: 0.43vw;
  }
}
@media only screen and (max-width: 900px) {
  .hide_at_mobile {
    display: none !important;
  }

  .show__at_mobile {
    display: flex !important;
  }

  .section_heading {
    font-size: 26px;
    margin-top: 5px;
  }

  .section_label {
    font-size: 10px;
  }
  .section_label:before {
    width: 20px;
    top: -3px;
    margin-right: 7px;
  }

  .btn {
    height: 50px;
    padding: 0 20px;
    font-size: 15px;
    width: 100%;
    justify-content: center;
  }
  .btn svg {
    margin-left: 7px;
    top: -2px;
    width: 8px;
    height: 8px;
  }
}
@keyframes dotAnimate {
  0% {
    transform: translateY(-50%) scale(1);
    opacity: 1;
  }
  100% {
    transform: translateY(-50%) scale(3);
    opacity: 0;
  }
}
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: #3F3B38;
}

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

body {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  background-color: #F9F7F1;
  font-size: 1vw;
}

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

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

a {
  text-decoration: none;
  font-size: 16px;
  font-weight: 400;
  transition: 0s all ease-out;
  color: #3F3B38;
}
a:hover {
  text-decoration: underline;
}

.container {
  margin: 0 auto;
  padding: 0 80px;
  max-width: 1480px;
}

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

form button {
  cursor: pointer;
}

b {
  font-weight: 600;
}

ol, ul {
  list-style: none;
}

svg {
  transition: 0.3s all ease;
}

svg path {
  transition: 0.3s all ease;
}

blockquote, q {
  quotes: none;
}

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

strong {
  font-weight: bold;
}

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: #fff;
}

::-webkit-scrollbar-thumb {
  background-color: #000;
  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: 1400px) {
  p, a {
    font-size: 1.14vw;
  }

  .container {
    margin: 0 auto;
    padding: 0 5.71vw;
  }
}
@media only screen and (max-width: 900px) {
  p, a {
    font-size: 15px;
  }

  .container {
    margin: 0 auto;
    padding: 0 18px;
    width: 100%;
    max-width: 100%;
  }

  html,
body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }
}
.fz12 {
  font-size: 12px;
}

.fz14 {
  font-size: 14px;
}

.fz18 {
  font-size: 18px;
}

.fz20 {
  font-size: 20px;
}

.fz22 {
  font-size: 22px;
}

.fz26 {
  font-size: 26px;
}

.gap10 {
  gap: 10px;
}

.gap20 {
  gap: 20px;
}

.mt5 {
  margin-top: 5px;
}

.mt10 {
  margin-top: 20px;
}

.mt30 {
  margin-top: 30px;
}

.mt40 {
  margin-top: 40px;
}

.mt60 {
  margin-top: 60px;
}

.mt80 {
  margin-top: 80px;
}

.mt100 {
  margin-top: 100px;
}

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

  .fz14 {
    font-size: 1vw;
  }

  .fz18 {
    font-size: 1.29vw;
  }

  .fz20 {
    font-size: 1.43vw;
  }

  .fz22 {
    font-size: 1.57vw;
  }

  .fz26 {
    font-size: 1.86vw;
  }

  .gap10 {
    gap: 0.71vw;
  }

  .gap20 {
    gap: 1.43vw;
  }

  .mt5 {
    margin-top: 0.36vw;
  }

  .mt10 {
    margin-top: 1.43vw;
  }

  .mt30 {
    margin-top: 2.14vw;
  }

  .mt40 {
    margin-top: 2.86vw;
  }

  .mt60 {
    margin-top: 4.29vw;
  }

  .mt80 {
    margin-top: 5.71vw;
  }

  .mt100 {
    margin-top: 7.14vw;
  }
}
@media only screen and (max-width: 900px) {
  .fz12 {
    font-size: 10px;
  }

  .fz18 {
    font-size: 15px;
  }

  .fz20 {
    font-size: 16px;
  }

  .fz22 {
    font-size: 17px;
  }

  .fz26 {
    font-size: 18px;
  }

  .gap10 {
    gap: 10px;
  }

  .gap20 {
    gap: 15px;
  }

  .mt10 {
    margin-top: 10px;
  }

  .mt30 {
    margin-top: 20px;
  }

  .mt40 {
    margin-top: 20px;
  }

  .mt60 {
    margin-top: 40px;
  }

  .mt80 {
    margin-top: 40px;
  }

  .mt100 {
    margin-top: 70px;
  }
}
form .input_group label {
  margin-bottom: 10px;
  display: inline-block;
}
form .input_group label b {
  color: #3F3B38;
}
form .input_field {
  height: 50px;
  font-size: 18px;
  padding: 0 20px;
  border: 1px solid rgba(0, 0, 0, 0.3);
  font-family: "Montserrat", sans-serif;
  width: 100%;
  transition: 0.3s all ease;
  box-sizing: border-box;
  border-radius: 0;
}
form .input_field:active, form .input_field:focus {
  border-color: #3F3B38;
}
form textarea {
  outline: none;
}
form textarea.input_field {
  padding: 15px 20px;
  height: 200px;
  border-radius: 20px;
}
form button {
  border: none;
  font-family: "Montserrat", sans-serif;
  color: #3F3B38;
}
form .agree_row input {
  width: 14px;
  height: 14px;
}
form .agree_row input:after, form .agree_row input:before {
  content: "";
  position: absolute;
  width: 120%;
  height: 120%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
form .agree_row input:checked:after {
  background-color: #3F3B38;
  z-index: 2;
  background-image: url("/img/checked.webp");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 10px 10px;
}
form .agree_row input:checked:before {
  background-color: #3F3B38;
  border: none;
}
form .agree_row input:before {
  border: 1px solid rgba(0, 0, 0, 0.2);
  background-color: #F1F5F6;
  z-index: 1;
}
form .agree_row a {
  text-decoration: underline;
}

@media only screen and (max-width: 1400px) {
  form .input_group label {
    margin-bottom: 0.71vw;
  }
  form .input_field {
    height: 3.57vw;
    font-size: 1.29vw;
    padding: 0 1.43vw;
  }
  form textarea.input_field {
    padding: 1.07vw 1.43vw;
    height: 14.29vw;
    border-radius: 1.43vw;
  }
  form .agree_row input {
    width: 1vw;
    height: 1vw;
  }
  form .agree_row input:checked:after {
    background-size: 0.71vw 0.71vw;
  }
}
@media only screen and (max-width: 900px) {
  form .input_group label {
    font-size: 14px;
  }
  form .input_field {
    font-size: 16px;
    height: 45px;
    padding: 0 15px;
  }
  form .agree_row input {
    min-width: 12px;
    width: 12px;
    height: 12px;
  }
  form .agree_row input:checked:after {
    background-size: 6px 6px;
  }
}
.content_seo h2, .content_seo h3 {
  font-weight: 700;
  margin: 20px 0;
}
.content_seo h2 {
  font-size: 42px;
}
.content_seo h3 {
  font-size: 36px;
}
.content_seo ul {
  margin: 25px 0;
}
.content_seo ul li {
  position: relative;
  margin: 5px 0;
}
.content_seo ul li:before {
  content: "";
  display: inline-block;
  background: #3F3B38;
  margin-right: 10px;
  width: 6px;
  position: relative;
  top: -4px;
  height: 6px;
  border-radius: 50%;
}
.content_seo i {
  font-style: italic;
}
.content_seo p {
  margin: 25px 0;
}
.content_seo p, .content_seo a, .content_seo li {
  font-size: 18px;
}
.content_seo .btgrid .row {
  display: flex;
  gap: 60px;
}

@media only screen and (max-width: 1400px) {
  .content_seo h2, .content_seo h3 {
    margin: 1.43vw 0;
  }
  .content_seo h2 {
    font-size: 3vw;
  }
  .content_seo h3 {
    font-size: 2.57vw;
  }
  .content_seo p {
    margin: 1.79vw 0;
  }
  .content_seo ul {
    margin: 1.79vw 0;
  }
  .content_seo ul li {
    margin: 0.36vw 0;
  }
  .content_seo ul li:before {
    margin-right: 0.71vw;
    width: 0.43vw;
    top: -0.29vw;
    height: 0.43vw;
  }
  .content_seo p, .content_seo a, .content_seo li {
    font-size: 1.29vw;
  }
  .content_seo .btgrid .row {
    gap: 4.29vw;
  }
}
@media only screen and (max-width: 900px) {
  .content_seo .section_label {
    font-size: 10px !important;
  }
  .content_seo h2, .content_seo h3 {
    margin: 10px 0 20px;
  }
  .content_seo h2 {
    font-size: 26px;
  }
  .content_seo h3 {
    font-size: 22px;
  }
  .content_seo p {
    margin: 15px 0;
  }
  .content_seo p, .content_seo a, .content_seo li {
    font-size: 15px;
  }
  .content_seo ul {
    margin: 15px 0;
  }
  .content_seo ul li {
    margin: 4px 0;
  }
  .content_seo ul li:before {
    margin-right: 8px;
    width: 4px;
    top: -3px;
    height: 4px;
  }
  .content_seo .btn {
    font-size: 15px;
  }
  .content_seo .btgrid .row {
    flex-flow: wrap;
    gap: 20px;
  }
  .content_seo .btgrid .col {
    width: 100% !important;
  }
}
header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  padding: 13px 0;
  background-color: rgba(217, 217, 217, 0.2);
}
header.fixed {
  position: fixed;
  background-color: rgba(47, 43, 40, 0.9);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
}
header nav ul {
  gap: 40px;
}
header nav a {
  color: #fff;
  font-weight: 500;
  font-size: 17px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}
header .phone_block {
  flex-direction: column;
  align-items: flex-end;
}
header .phone {
  margin-top: 2px;
}
header .get_callback {
  text-decoration: underline;
  -webkit-text-decoration-style: dotted;
          text-decoration-style: dotted;
  text-underline-offset: 2px;
}
header .get_callback:hover {
  -webkit-text-decoration-style: solid;
          text-decoration-style: solid;
}

.header_messengers {
  margin-top: 5px;
}
.header_messengers ul {
  gap: 10px;
}
.header_messengers a {
  width: 30px;
  height: 30px;
  background-color: #CBBEB5;
  justify-content: center;
  transition: 0.3s all ease;
}
.header_messengers a.viber:hover {
  background-color: #665cac;
}
.header_messengers a.telegram:hover {
  background-color: #08c;
}
.header_messengers a.whatsapp:hover {
  background-color: #25d366;
}

.burger_btn {
  display: none;
  width: 20px;
  height: 30px;
  margin-left: 20px;
}
.burger_btn span {
  display: block;
  width: 20px;
  height: 3px;
  background: #fff;
  border-radius: 5px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: 0.3s all ease;
}
.burger_btn span:first-child {
  top: calc(50% - 8px);
}
.burger_btn span:last-child {
  top: calc(50% + 8px);
}
.burger_btn.active span:nth-child(2) {
  left: 70%;
  opacity: 0;
}
.burger_btn.active span:first-child {
  transform: rotate(45deg) translate(-50%, -50%);
  top: calc(50% + 6px);
  left: calc(50% - 4px);
}
.burger_btn.active span:last-child {
  transform: rotate(-45deg) translate(-50%, -50%);
  top: calc(50% - 8px);
  left: calc(50% - 2px);
}

@media only screen and (max-width: 1400px) {
  header {
    padding: 0.93vw 0;
  }
  header .logo svg {
    width: 3.36vw;
    height: 3.93vw;
  }
  header nav ul {
    gap: 2.86vw;
  }
  header nav a {
    font-size: 1.21vw;
  }
  header .phone {
    margin-top: 0.14vw;
  }
  header .get_callback {
    text-underline-offset: 0.14vw;
  }

  .header_messengers {
    margin-top: 0.36vw;
  }
  .header_messengers ul {
    gap: 0.71vw;
  }
  .header_messengers a {
    width: 2.14vw;
    height: 2.14vw;
  }
  .header_messengers a svg {
    width: 70%;
    height: 70%;
  }
}
@media only screen and (max-width: 900px) {
  header {
    padding: 5px 0;
  }
  header.open {
    position: fixed;
    height: 100vh;
    background-color: rgba(47, 43, 40, 0.9);
    -webkit-backdrop-filter: blur(5px);
            backdrop-filter: blur(5px);
  }
  header.open .messengers_block,
header.open nav {
    display: block;
  }
  header .logo svg {
    width: 30px;
    height: 30px;
  }
  header .phone {
    font-size: 18px;
    margin-top: 0;
  }
  header .phone_block .get_callback,
header .phone_block .has_dot {
    display: none;
  }
  header .messengers_block {
    display: none;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 400px;
  }
  header .messengers_block .has_dot {
    display: none;
  }
  header nav {
    display: none;
    position: absolute;
    top: 80px;
    left: 0;
    padding: 0 18px;
    width: 100%;
  }
  header nav ul {
    flex-direction: column !important;
  }
  header nav ul li {
    margin-bottom: 20px;
  }
  header nav ul a {
    font-size: 20px;
  }

  .header_messengers ul {
    gap: 15px;
  }
  .header_messengers a {
    width: 30px;
    height: 30px;
  }

  .burger_btn {
    display: block;
  }
}
.hero_section {
  padding-top: 180px;
  padding-bottom: 150px;
}
.hero_section:before {
  height: 150px;
  background: linear-gradient(0deg, rgba(248, 248, 248, 0) 0%, rgba(47, 43, 40, 0.79) 100%);
  z-index: 1;
}
.hero_section .title {
  font-size: 84px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}
.hero_section .inner {
  position: relative;
  z-index: 2;
}
.hero_section .label {
  width: -moz-max-content;
  width: max-content;
  padding: 2px 10px;
  background: #CBBEB5;
}

.steps_section {
  padding: 80px 0 110px;
}
.steps_section:before {
  background: rgba(47, 43, 40, 0.68);
}

.step_items {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-column-gap: 60px;
  grid-row-gap: 30px;
  max-width: 800px;
}

.step_item .trend_number {
  min-width: 40px;
  width: 40px;
  height: 40px;
  font-size: 20px;
}

.faq_section {
  background: #2F2B28;
  padding: 60px 0 80px;
}
.faq_section:before {
  height: 130px;
  top: -130px;
  background: linear-gradient(180deg, rgba(248, 248, 248, 0) 0%, #2f2b28 100%);
}

.faq_cards {
  gap: 30px;
}
.faq_cards .col {
  width: 50%;
  display: grid;
  gap: 30px;
}

.faq_card {
  padding: 0 30px;
  background-color: #686868;
  position: relative;
  overflow: hidden;
}
.faq_card p, .faq_card li {
  color: #fff;
}
.faq_card .close {
  width: 30px;
  height: 30px;
  background-color: #CBBEB5;
  border-radius: 50%;
  line-height: 90%;
  justify-content: center;
}
.faq_card .title_row {
  padding-top: 20px;
  margin-bottom: 20px;
  background-color: #686868;
}
.faq_card.open_faq {
  padding-bottom: 15px;
}
.faq_card.open_faq .title_row {
  margin-bottom: 0;
}
.faq_card.open_faq .close {
  background-color: #2F2B28;
  transform: rotate(135deg);
}
.faq_card.open_faq .content_seo {
  margin-top: 0;
  opacity: 1;
  position: relative;
}
.faq_card .content_seo {
  margin-top: -20%;
  opacity: 0;
  position: absolute;
  transition: 0.3s all ease-in-out;
}
.faq_card .content_seo ul li:before {
  background: #fff;
}

@media only screen and (max-width: 1400px) {
  .hero_section {
    padding-top: 12.86vw;
    padding-bottom: 10.71vw;
  }
  .hero_section:before {
    height: 10.71vw;
  }
  .hero_section .title {
    font-size: 6vw;
  }
  .hero_section .label {
    padding: 0.14vw 0.71vw;
  }

  .about_section .about_img {
    min-width: 30.71vw !important;
    width: 30.71vw !important;
  }
  .about_section .btn {
    font-size: 1vw !important;
  }

  .steps_section {
    padding: 5.71vw 0 7.86vw;
  }

  .step_items {
    grid-column-gap: 4.29vw;
    grid-row-gap: 2.14vw;
    max-width: 57.14vw;
  }

  .step_item .trend_number {
    min-width: 2.86vw;
    width: 2.86vw;
    height: 2.86vw;
    font-size: 1.43vw;
  }

  .faq_section {
    padding: 4.29vw 0 5.71vw;
  }
  .faq_section:before {
    height: 9.29vw;
    top: -9.29vw;
  }

  .faq_cards {
    gap: 2.14vw;
  }
  .faq_cards .col {
    gap: 2.14vw;
  }

  .faq_card {
    padding: 0 2.14vw;
  }
  .faq_card .close {
    width: 2.14vw;
    height: 2.14vw;
  }
  .faq_card .title_row {
    padding-top: 1.43vw;
    margin-bottom: 1.43vw;
  }
  .faq_card.open_faq {
    padding-bottom: 1.07vw;
  }
}
@media only screen and (max-width: 900px) {
  .hero_section {
    padding: 120px 0 100px;
  }
  .hero_section:before {
    height: 100%;
    opacity: 0.7;
  }
  .hero_section .label {
    font-size: 10px;
    padding: 2px 5px;
  }
  .hero_section .title {
    font-size: 60px;
    width: 50%;
  }

  .about_section .btn {
    font-size: 15px !important;
  }
  .about_section .about_img {
    max-width: 400px;
    width: 100% !important;
  }

  .steps_section {
    padding: 50px 0 70px;
  }

  .step_item .trend_number {
    height: 30px;
    width: 30px;
    min-width: 30px;
    font-size: 14px;
  }

  .step_items {
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    max-width: 100%;
  }

  .faq_section {
    padding: 50px 0;
  }
  .faq_section .btn {
    text-align: center;
  }
  .faq_section .btn svg {
    width: 20px;
    height: 20px;
  }

  .faq_cards {
    flex-flow: wrap !important;
    gap: 15px;
  }
  .faq_cards .col {
    width: 100%;
    gap: 15px;
  }

  .faq_card {
    padding: 0 20px;
  }
  .faq_card .title_row {
    padding-top: 12px;
    margin-bottom: 12px;
  }
  .faq_card .close {
    min-width: 20px;
    width: 20px;
    height: 20px;
  }
}
.service_cards {
  display: grid;
  gap: 80px;
}

.service_card {
  display: flex;
  justify-content: space-between;
  gap: 60px;
}
.service_card:nth-child(2), .service_card:nth-child(4), .service_card:nth-child(6) {
  flex-direction: row-reverse;
}
.service_card.show_modal_content .service__card_modal_content {
  opacity: 1;
  visibility: visible;
  z-index: 9999;
}
.service_card.show_modal_content .service__card_modal_content .modal_inner {
  top: 0;
}

.service_title {
  font-size: 26px;
}

.what__includes_btn {
  background: transparent;
  border: 2px solid #3F3B38;
}

.service_img {
  min-width: 680px;
  width: 680px;
  height: 375px;
}
.service_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media only screen and (max-width: 1400px) {
  .service_cards {
    gap: 5.71vw;
  }

  .service_card {
    gap: 4.29vw;
  }

  .service_title {
    font-size: 1.86vw;
  }

  .service_img {
    min-width: 48.57vw;
    width: 48.57vw;
    height: 26.79vw;
  }
}
@media only screen and (max-width: 900px) {
  .service_cards {
    gap: 50px;
  }

  .service_card {
    gap: 0;
    flex-direction: column-reverse !important;
  }

  .service_img {
    width: 100%;
    height: 50vw;
  }

  .service_title {
    font-size: 18px;
  }
}
.project_cards {
  display: grid;
  gap: 100px;
}

.project_card {
  align-items: flex-end;
  gap: 5px;
}
.project_card .col.w30 {
  width: 30%;
}
.project_card .col.w40 {
  width: 40%;
}
.project_card .image {
  height: 300px;
  display: block;
}
.project_card .image.h605 {
  height: 605px;
}
.project_card .image.h505 {
  height: 505px;
}

.project_desc {
  padding: 50px;
}
.project_desc.second {
  padding: 0 0 40px;
}
.project_desc p {
  font-size: 18px;
}

.project_place {
  padding: 10px 30px;
  border-left: 2px solid #2F2B28;
}

.project_gallery_count {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 1;
  background: #F9F7F1;
  padding: 10px;
}

@media only screen and (max-width: 1400px) {
  .project_cards {
    gap: 7.14vw;
  }

  .project_card .image {
    height: 21.43vw;
  }
  .project_card .image.h605 {
    height: 43.21vw;
  }
  .project_card .image.h505 {
    height: 36.07vw;
  }

  .project_desc {
    padding: 3.57vw;
  }
  .project_desc.second {
    padding: 0 0 2.86vw;
  }
  .project_desc p {
    font-size: 1.29vw;
  }

  .project_place {
    padding: 0.71vw 2.14vw;
  }

  .project_gallery_count {
    top: 1.43vw;
    left: 1.43vw;
    padding: 0.71vw;
  }
  .project_gallery_count svg {
    width: 1.5vw;
    height: 1.36vw;
  }
}
@media only screen and (max-width: 900px) {
  .project_cards {
    gap: 40px;
  }

  .project_card {
    flex-flow: wrap !important;
  }
  .project_card .image {
    height: 60vw !important;
  }
  .project_card .col {
    width: 100% !important;
  }

  .project_place {
    padding: 10px 0 0 0;
    margin-top: 10px;
    border-left: none;
    border-top: 1px solid #2F2B28;
    display: flex;
    gap: 5px;
  }
  .project_place p {
    margin-top: 0;
    font-size: 15px;
  }
  .project_place p:nth-child(2) {
    margin-right: 20px;
  }

  .project_desc {
    padding: 0 !important;
  }
  .project_desc p {
    font-size: 15px;
  }

  .project_gallery_count {
    top: 15px;
    left: 15px;
    font-size: 13px;
    padding: 7px 10px;
  }
  .project_gallery_count svg {
    width: 15px;
    height: 14px;
  }
}
.post_cards {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}

.post_card .btn {
  height: 40px;
  padding: 0 20px;
}

.post_image {
  height: 300px;
}

.post_date {
  position: absolute;
  z-index: 1;
  background: #F9F7F1;
  top: 20px;
  left: 20px;
  padding: 5px 10px;
}

@media only screen and (max-width: 1400px) {
  .post_card .btn {
    height: 2.86vw;
    padding: 0 1.43vw;
  }

  .post_image {
    height: 21.43vw;
  }

  .post_date {
    top: 1.43vw;
    left: 1.43vw;
    padding: 0.36vw 0.71vw;
  }
}
@media only screen and (max-width: 900px) {
  .post_cards {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .post_card .mt10 {
    margin-top: 15px;
  }
  .post_card .fz20 {
    font-size: 18px;
  }
  .post_card .btn {
    height: 40px;
  }

  .post_image {
    height: 60vw;
  }

  .post_date {
    top: 15px;
    left: 15px;
    padding: 5px 10px;
    font-size: 11px;
  }
}
footer {
  padding: 80px 0 30px;
}
footer .socials {
  margin-left: 20px;
  gap: 20px;
}
footer .socials a:hover svg path {
  fill: #CBBEB5;
}
footer .right a {
  margin-top: 10px;
}
footer .footer_title {
  font-size: 80px;
}
footer:before {
  background: rgba(47, 43, 40, 0.68);
}
footer:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 130px;
  transform: rotate(180deg);
  background: linear-gradient(180deg, rgba(248, 248, 248, 0) 0%, #2f2b28 100%);
}
footer p, footer a {
  color: #fff;
}
footer .btn {
  color: #3F3B38;
}
footer .rights_footer {
  border-top: 1px solid #D9D9D9;
  padding-top: 30px;
}
footer .rights_footer a {
  text-decoration: underline;
}
footer .rights_footer a:hover {
  color: #CBBEB5;
}

@media only screen and (max-width: 1400px) {
  footer {
    padding: 5.71vw 0 2.14vw;
  }
  footer .socials {
    margin-left: 1.43vw;
    gap: 1.43vw;
  }
  footer .right a {
    margin-top: 0.71vw;
  }
  footer .footer_title {
    font-size: 5.71vw;
  }
  footer:after {
    height: 9.29vw;
  }
  footer .rights_footer {
    padding-top: 2.14vw;
  }

  .socials svg {
    width: 2vw;
    height: 2vw;
  }
}
@media only screen and (max-width: 900px) {
  footer {
    padding: 60px 0 20px;
  }
  footer .socials {
    margin-left: 20px;
    gap: 15px;
  }
  footer .mt30 {
    margin-top: 40px;
  }
  footer .fz18 {
    font-size: 16px;
  }
  footer .inner {
    gap: 60px;
  }
  footer .right,
footer .left {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  footer .footer_title {
    font-size: 40px;
    text-align: center;
  }
  footer .rights_footer {
    padding-top: 20px;
    flex-direction: column;
    gap: 5px;
  }

  .socials svg {
    width: 25px;
    height: 25px;
  }
}
.modal_window {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.4);
  justify-content: center;
}
.modal_window.show {
  opacity: 1;
  visibility: visible;
  z-index: 9999;
}
.modal_window.show .modal_inner {
  top: 0;
}

.close_modal {
  font-size: 50px;
  transform: rotate(45deg);
  position: absolute;
  top: 20px;
  right: 20px;
  line-height: 50%;
}
.close_modal:hover {
  color: #3F3B38;
  transform: rotate(135deg);
}

.modal_inner {
  background: #F8F8F8;
  padding: 40px;
  width: 450px;
  top: 100px;
}
.modal_inner .w50 {
  width: 48%;
}

.service__card_modal_content .container {
  width: 100%;
}
.service__card_modal_content .modal_inner {
  width: 100%;
  max-height: 70vh;
  overflow-y: scroll;
}

@media only screen and (max-width: 1400px) {
  .close_modal {
    font-size: 3.57vw;
    top: 1.43vw;
    right: 1.43vw;
  }

  .modal_inner {
    padding: 2.86vw;
    width: 32.14vw;
    top: 7.14vw;
  }
}
@media only screen and (max-width: 900px) {
  .modal_inner {
    padding: 20px;
    width: calc(100% - 36px);
  }
  .modal_inner .modal_title {
    font-size: 24px;
    padding-right: 30px;
  }

  .close_modal {
    font-size: 44px;
    right: 20px;
    top: 15px;
  }
}
