* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #D7D8DA;
  font-family: "Gilroy";
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
  color: #252525;
  transition: 0.4s ease-in-out;
}

body.overflow_hidden {
  overflow: hidden;
}

body.darkMode {
  background-color: #252525;
}
body.darkMode .section_title {
  color: #fff;
}
body.darkMode .main_brief .brief_button {
  color: #fff;
}
body.darkMode .main_brief .brief_button::before {
  background-color: #fff;
}
body.darkMode .main_brief .brief_button::after {
  background-color: #fff;
}
body.darkMode .main_brief .brief_button svg path {
  stroke: #fff;
}
body.darkMode .order_form:hover {
  border: 1px solid rgba(255, 255, 255, 0.3);
}
body.darkMode .order_form:active {
  border-color: transparent;
}

html {
  scroll-behavior: smooth;
}

.wrapper {
  overflow: hidden;
}

.container {
  margin: 0 auto;
  max-width: 1440px;
  padding: 0 40px;
}
@media (max-width: 1170px) {
  .container {
    padding: 0 24px;
  }
}
@media (max-width: 1024px) {
  .container {
    padding: 0 24px;
  }
}
@media (max-width: 680px) {
  .container {
    padding: 0 16px;
  }
}

.section_title {
  font-family: "Futura PT";
  font-style: normal;
  font-weight: 500;
  font-size: 112px;
  line-height: 104%;
  color: #252525;
  max-width: 70%;
  margin-bottom: 72px;
  transition: 0.3s all ease;
}
@media (max-width: 1024px) {
  .section_title {
    font-size: 72px;
    max-width: 100%;
    margin-bottom: 64px;
  }
}
@media (max-width: 680px) {
  .section_title {
    font-size: 40px;
    margin-bottom: 48px;
  }
}

.main_brief {
  font-family: "Futura PT";
  font-style: normal;
  font-weight: 500;
  font-size: 104px;
  line-height: 100%;
  color: #7F7D7D;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  padding-bottom: 20px;
}
.main_brief .brief_button {
  text-decoration: none;
  color: #252525;
  cursor: pointer;
  position: relative;
  display: initial;
}
.main_brief .brief_button::before {
  content: "";
  display: block;
  width: 0;
  position: absolute;
  height: 4px;
  bottom: 0;
  left: 0;
  background-color: #252525;
  transition: 0.3s all ease;
}
@media (max-width: 680px) {
  .main_brief .brief_button::before {
    height: 2px;
  }
}
.main_brief .brief_button::after {
  content: "";
  display: block;
  width: 32px;
  position: absolute;
  height: 32px;
  border-radius: 50%;
  bottom: 40px;
  right: -40px;
  background-color: #252525;
  transition: 0.3s all ease;
  opacity: 0;
  z-index: -1;
}
@media (max-width: 1024px) {
  .main_brief .brief_button::after {
    height: 24px;
    width: 24px;
    bottom: 20px;
    right: -35px;
  }
}
@media (max-width: 680px) {
  .main_brief .brief_button::after {
    height: 8px;
    width: 8px;
    right: -15px;
    bottom: 12px;
  }
}
.main_brief .brief_button:hover .main_brief__arrow {
  opacity: 1;
  visibility: visible;
}
.main_brief .brief_button:hover::before {
  width: 100%;
}
.main_brief .brief_button:hover::after {
  opacity: 1;
}
.main_brief .brief_button .main_brief__arrow {
  display: flex;
  position: absolute;
  right: -25px;
  top: -10px;
  opacity: 0;
  visibility: hidden;
  transform: translate(-10px, 10px);
  transition: all 0.3s;
}
@media (max-width: 1024px) {
  .main_brief {
    font-size: 64px;
  }
}
@media (max-width: 680px) {
  .main_brief {
    font-size: 32px;
  }
}

section {
  margin-bottom: 150px;
}
@media (max-width: 680px) {
  section {
    margin-bottom: 104px;
  }
}

.order_form {
  transition: 0.3s all ease;
  border: 1px solid #252525;
  background-color: transparent;
  border-radius: 36px;
  padding: 4px;
  display: flex;
  margin-right: 36px;
  transition: 0.2s ease-out;
  margin-right: 24px;
}
.order_form .order_button {
  color: #FFFFFF;
  text-decoration: none;
  background: #252525;
  border-radius: 32px;
  padding: 14px 30px;
  cursor: pointer;
}
.order_form:hover {
  border: 1px solid rgba(37, 37, 37, 0.3);
}
.order_form:active {
  border-color: transparent;
}

::-webkit-scrollbar {
  width: 8px;
}
@media (max-width: 680px) {
  ::-webkit-scrollbar {
    width: 0;
  }
}

::-webkit-scrollbar-track {
  background: rgba(222, 222, 222, 0.75);
}

::-webkit-scrollbar-thumb {
  background: #888;
  -webkit-transition: opacity 0.5s ease-out;
  transition: opacity 0.5s ease-out;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #555;
}

header {
  position: fixed;
  top: 0;
  max-width: 1440px;
  position: fixed;
  right: 0;
  left: 0;
  margin: 0 auto;
  top: 0;
  background-color: #D9D9D9;
  transition: 0.4s ease-in-out;
  z-index: 100;
}
header .header_row {
  max-height: 110px;
  padding: 40px 40px 12px 40px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
header .header_row .row_item {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
header .header_row .row_item .menu_list ul, header .header_row .row_item .right_menu ul {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
header .header_row .row_item .menu_list ul a, header .header_row .row_item .right_menu ul a {
  text-decoration: none;
  line-height: 19px;
  color: #252525;
  position: relative;
  transition: 0.3s all ease;
}
header .header_row .row_item .menu_list ul a::after, header .header_row .row_item .right_menu ul a::after {
  display: block;
  content: "";
  width: 0;
  height: 1px;
  background-color: #252525;
  position: absolute;
  bottom: 0;
  transition: 0.3s ease all;
}
header .header_row .row_item .menu_list ul a:hover::after, header .header_row .row_item .right_menu ul a:hover::after {
  width: 100%;
}
header .header_row .row_item .menu_list ul a.active::after, header .header_row .row_item .right_menu ul a.active::after {
  width: 100%;
}
header .header_row .row_item li {
  list-style: none;
}
header .header_row .row_item:nth-child(1) {
  gap: 60px;
}
@media (max-width: 1170px) {
  header .header_row .row_item:nth-child(1) {
    gap: 30px;
  }
}
@media (max-width: 1030px) {
  header .header_row .row_item:nth-child(1) {
    gap: 20px;
  }
}
header .header_row .row_item .hamburger {
  display: none;
  cursor: pointer;
}
@media (max-width: 1024px) {
  header .header_row .row_item .hamburger {
    display: flex;
  }
}
header .header_row .row_item .hamburger .close_btn {
  opacity: 0;
  width: 0;
  transition: 0.2s all ease-out;
}
header .header_row .menu_list ul {
  gap: 36px;
}
@media (max-width: 1170px) {
  header .header_row .menu_list ul {
    gap: 20px;
  }
}
@media (max-width: 1024px) {
  header .header_row .menu_list {
    display: none;
  }
}
header .header_row .right_menu {
  margin-right: 45px;
}
header .header_row .right_menu ul {
  gap: 16px;
}
@media (max-width: 1170px) {
  header .header_row .right_menu {
    margin-right: 20px;
  }
}
@media (max-width: 1024px) {
  header .header_row .right_menu {
    display: none;
  }
}
header .header_row .social_links {
  margin-right: 36px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}
@media (max-width: 1170px) {
  header .header_row .social_links {
    margin-right: 20px;
  }
}
@media (max-width: 1024px) {
  header .header_row .social_links {
    display: none;
  }
}
header .header_row .logo svg path {
  transition: 0.3s all ease;
}
@media (max-width: 680px) {
  header .header_row .logo svg {
    width: 215px;
    height: 45px;
  }
}
@media (max-width: 1170px) {
  header .header_row {
    padding: 40px 24px 12px 24px;
  }
}
@media (max-width: 1024px) {
  header .header_row {
    padding: 40px 24px 12px 24px;
  }
}
@media (max-width: 680px) {
  header .header_row {
    padding: 35px 16px 12px 16px;
    max-height: 92px;
  }
}
@media (max-width: 680px) {
  header .order_form {
    display: none;
  }
}
header.mobile .row_item .hamburger .hamburger_icon {
  opacity: 0;
  width: 0;
}
header.mobile .row_item .hamburger .close_btn {
  opacity: 1;
  width: auto;
}
@media (max-width: 680px) {
  header.mobile .header_row {
    justify-content: space-between;
  }
}
@media (max-width: 680px) {
  header.mobile .header_row .row_item {
    width: 100%;
    justify-content: space-between;
  }
}
@media (max-width: 680px) {
  header.mobile .logo {
    display: none;
  }
}
@media (max-width: 680px) {
  header.mobile .order_form {
    display: flex;
  }
}

.dark_mode_toggle {
  cursor: pointer;
  display: flex;
}
.dark_mode_toggle svg path {
  transition: ease-out 0.3s;
}
.dark_mode_toggle .light {
  transition: ease-in-out 0.4s;
  height: 0;
  width: 0;
  opacity: 0;
}
.dark_mode_toggle .dark {
  transition: ease-in-out 0.4s;
  height: auto;
  opacity: 1;
  width: auto;
}
.dark_mode_toggle:hover {
  transition: ease-out 0.3s;
}
.dark_mode_toggle:hover .light path {
  fill: #FFC700;
}
.dark_mode_toggle:hover .dark path {
  fill: #004CB4;
}
.dark_mode_toggle:active {
  transition: 0.4s ease-in-out;
  padding-top: 5px;
}
.dark_mode_toggle:active svg path {
  transition: 0.4s ease-in-out;
}
@media (max-width: 1024px) {
  .dark_mode_toggle {
    display: none;
  }
}

.mobile_header {
  position: fixed;
  left: -100%;
  width: 100%;
  height: 100%;
  opacity: 0;
  top: 110px;
  visibility: hidden;
  z-index: 30;
  gap: 100px;
  transition: 0.3s all;
  justify-content: center;
  align-items: center;
  display: flex;
}
.mobile_header .mobile_menu {
  padding-top: 157px;
  height: 100%;
  transition: 0.4s ease-in-out;
  width: 100%;
  background: #D7D8DA;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 100px;
  position: relative;
}
.mobile_header .mobile_menu .social_links {
  gap: 40px;
  position: absolute;
  bottom: 182px;
}
@media (max-width: 680px) {
  .mobile_header .mobile_menu .social_links {
    bottom: 128px;
  }
}
.mobile_header .mobile_menu .menu_list, .mobile_header .mobile_menu .social_links {
  display: flex;
  list-style: none;
}
.mobile_header .mobile_menu .menu_list {
  gap: 16px;
  flex-direction: column;
  align-items: center;
}
.mobile_header .mobile_menu .menu_list a {
  text-decoration: none;
  color: #252525;
  font-size: 40px;
  line-height: 47px;
  position: relative;
  transition: 0.3s all ease;
}
@media (max-width: 680px) {
  .mobile_header .mobile_menu .menu_list a {
    font-size: 24px;
  }
}
.mobile_header .mobile_menu .menu_list a::after {
  display: block;
  content: "";
  width: 0;
  height: 2px;
  background-color: #252525;
  position: absolute;
  bottom: 0;
  transition: 0.3s ease all;
}
.mobile_header .mobile_menu .menu_list a:active::after {
  width: 100%;
}
.mobile_header .mobile_menu .menu_list a.active::after {
  width: 100%;
}
.mobile_header .mobile_menu .dark_mode_toggle {
  display: block;
  padding: 0;
}
@media (max-width: 680px) {
  .mobile_header .mobile_menu {
    padding-top: 104px;
    gap: 72px;
  }
}
.mobile_header.active {
  opacity: 1;
  visibility: visible;
  left: 0;
}
@media (max-width: 680px) {
  .mobile_header {
    top: 92px;
  }
}

main {
  margin-top: 110px;
  padding: 60px 0 150px 0;
}
@media (max-width: 680px) {
  main {
    margin-top: 92px;
    padding: 40px 0 104px 0;
  }
}

.hero .hero_swiper {
  position: relative;
}
.hero .hero_swiper .swiper-slide {
  flex: 0 0 auto;
  display: flex;
  width: calc(60% - 16px) !important;
}
.hero .hero_swiper .swiper-slide:nth-child(2n) {
  width: calc(40% - 16px) !important;
}
@media (max-width: 1024px) {
  .hero .hero_swiper .swiper-slide:nth-child(2n) {
    width: 100% !important;
  }
}
.hero .hero_swiper .swiper-slide img {
  height: 540px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}
@media (max-width: 1024px) {
  .hero .hero_swiper .swiper-slide img {
    height: 472px;
  }
}
@media (max-width: 680px) {
  .hero .hero_swiper .swiper-slide img {
    height: 286px;
  }
}
@media (max-width: 1024px) {
  .hero .hero_swiper .swiper-slide {
    width: 100% !important;
  }
}
.hero .hero_swiper .swiper_buttons {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: space-between;
  top: 0;
  bottom: 0;
  right: 16px;
  width: calc(100% - 32px);
}
.hero .hero_swiper .swiper_buttons .slide_prev, .hero .hero_swiper .swiper_buttons .slide_next {
  z-index: 1;
  cursor: pointer;
}
.hero .hero_swiper .swiper_buttons .slide_prev svg circle, .hero .hero_swiper .swiper_buttons .slide_next svg circle {
  fill: #fff;
  transition: 0.3s all ease;
}
.hero .hero_swiper .swiper_buttons .slide_prev.swiper-button-disabled svg circle, .hero .hero_swiper .swiper_buttons .slide_next.swiper-button-disabled svg circle {
  fill: #D1D1D1;
}
@media (max-width: 1024px) {
  .hero .hero_swiper .swiper_buttons {
    display: none;
  }
}
.hero .hero_texts {
  margin: 40px 0 150px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.hero .hero_texts .hero_title {
  transition: 0.3s all ease;
  font-family: "Futura PT Book";
  font-style: italic;
  font-weight: 400;
  font-size: 56px;
  line-height: 104%;
  padding-bottom: 16px;
  border-bottom: 0.5px solid #7F7D7D;
  flex: 0 0 auto;
  width: 100%;
  text-align: center;
  text-transform: uppercase;
}
.hero .hero_texts .hero_title .hero_title_text {
  position: relative;
  right: -100%;
}
@media (max-width: 1024px) {
  .hero .hero_texts .hero_title {
    font-size: 48px;
  }
}
@media (max-width: 680px) {
  .hero .hero_texts .hero_title {
    font-size: 24px;
    text-align: left;
  }
}
.hero .hero_texts .hero_description {
  padding-top: 8px;
  transition: 0.3s all ease;
  font-family: "Futura PT";
  font-style: normal;
  font-weight: 300;
  font-size: 48px;
  line-height: 104%;
  text-transform: lowercase;
  color: #252525;
}
.hero .hero_texts .hero_description .hero_description_text {
  position: relative;
  left: -100%;
}
@media (max-width: 1024px) {
  .hero .hero_texts .hero_description {
    font-size: 40px;
  }
}
@media (max-width: 680px) {
  .hero .hero_texts .hero_description {
    font-size: 24px;
  }
}
@media (max-width: 680px) {
  .hero .hero_texts {
    margin: 24px 0 104px 0;
  }
}

.fixed_actions {
  position: fixed;
  margin: 0 auto;
  left: 0;
  right: 0;
  bottom: 70px;
  width: 345px;
  border-radius: 36px;
  background: #D7D8DA;
  border: 1px solid #252525;
  border-radius: 36px;
  transition: 0.4s all ease-out;
}
.fixed_actions .actions {
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.fixed_actions .actions .action_item {
  border-radius: 36px;
  cursor: pointer;
  padding: 10px 52px;
  text-decoration: none;
  color: #252525;
  flex: 0 0 auto;
  z-index: 100;
  width: 50%;
  display: flex;
  justify-content: center;
}
.fixed_actions .actions .action_item.active {
  color: #fff;
}
.fixed_actions .actions .animation {
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-duration: 0.4s;
  animation-duration: 0.4s;
  -webkit-animation-timing-function: ease;
  animation-timing-function: ease;
  position: absolute;
  width: calc(50% - 4px);
  background: #252525;
  height: calc(100% - 8px);
  border-radius: 21px;
  left: 4px;
}
.fixed_actions .actions .animation.left {
  -webkit-animation-name: left;
  animation-name: left;
}
@-webkit-keyframes left {
  0% {
    margin-left: calc(50% - 4px);
    width: calc(50% - 4px);
  }
  50% {
    margin-left: 0;
    width: calc(100% - 8px);
  }
  to {
    width: calc(50% - 4px);
    margin-right: calc(50% - 4px);
  }
}
@keyframes left {
  0% {
    margin-left: calc(50% - 4px);
    width: calc(50% - 4px);
  }
  50% {
    margin-left: 0;
    width: calc(100% - 8px);
  }
  to {
    width: calc(50% - 4px);
    margin-right: calc(50% - 4px);
  }
}
.fixed_actions .actions .animation.right {
  -webkit-animation-name: right;
  animation-name: right;
}
@-webkit-keyframes right {
  0% {
    width: 50%;
  }
  50% {
    margin-left: 0;
    width: calc(100% - 8px);
  }
  to {
    width: calc(50% - 4px);
    margin-left: calc(50% - 4px);
  }
}
@keyframes right {
  0% {
    width: 50%;
  }
  50% {
    margin-left: 0;
    width: calc(100% - 8px);
  }
  to {
    width: calc(50% - 4px);
    margin-left: calc(50% - 4px);
  }
}
@media (max-width: 1024px) {
  .fixed_actions {
    display: none;
  }
}

.projects_page, .prices_page {
  transition: all 1s ease-out;
  opacity: 0;
  height: 0;
  overflow: hidden;
  transform: translateY(30px);
}
.projects_page.active, .prices_page.active {
  opacity: 1;
  height: auto;
  transform: translate(0);
}

.projects .more_button {
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s all ease;
  padding-bottom: 10px;
}
.projects .more_button a {
  text-decoration: none;
  color: #252525;
  padding: 14px 40px;
  border: 1px solid #252525;
  border-radius: 36px;
}
.projects .projects_row {
  display: flex;
  flex-direction: column;
  gap: 150px;
  margin-bottom: 100px;
}
@media (max-width: 680px) {
  .projects .projects_row {
    gap: 104px;
    margin-bottom: 64px;
  }
}
.projects .projects_item {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.projects .projects_item .card {
  transition: 0.4s ease-in;
  flex: 0 0 auto;
  text-decoration: none;
}
.projects .projects_item .card:nth-child(1) {
  width: calc(35% - 16px);
}
@media (max-width: 1024px) {
  .projects .projects_item .card:nth-child(1) {
    width: 100%;
  }
}
.projects .projects_item .card:nth-child(2) {
  width: calc(65% - 16px);
}
@media (max-width: 1024px) {
  .projects .projects_item .card:nth-child(2) {
    width: 100%;
  }
}
@media (max-width: 1024px) {
  .projects .projects_item .card:hover .card_image img {
    transform: scale(1.1);
  }
  .projects .projects_item .card:hover .card_image::after {
    opacity: 1;
  }
  .projects .projects_item .card:hover .card_image .product_name {
    opacity: 1;
  }
  .projects .projects_item .card:hover .card_title span {
    opacity: 0;
  }
  .projects .projects_item .card:hover .card_title::before {
    opacity: 1;
  }
}
.projects .projects_item .card_image {
  display: flex;
  margin-bottom: 24px;
  overflow: hidden;
  position: relative;
  cursor: none;
}
.projects .projects_item .card_image .product_name {
  position: absolute;
  top: 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  left: -20%;
  text-decoration: none;
  text-transform: uppercase;
  color: #fff;
  opacity: 0;
  pointer-events: none;
  font-family: "Futura LT";
  font-style: italic;
  font-weight: 500;
  font-size: 72px;
  line-height: 92px;
  z-index: 2;
}
.projects .projects_item .card_image img {
  transition: 0.4s ease-in;
  width: 100%;
  height: 482px;
  -o-object-position: center;
     object-position: center;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 680px) {
  .projects .projects_item .card_image img {
    height: 240px;
  }
}
.projects .projects_item .card_image::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3));
  opacity: 0;
  transition: 0.4s ease-in;
  display: block;
}
.projects .projects_item .card_image:hover img {
  transform: scale(1.1);
}
.projects .projects_item .card_image:hover::after {
  opacity: 1;
}
.projects .projects_item .card_title {
  margin-bottom: 16px;
  position: relative;
}
.projects .projects_item .card_title span {
  opacity: 1;
  color: #252525;
  transition: 0.4s ease-in;
  font-family: "Futura PT";
  font-style: normal;
  font-weight: 500;
  font-size: 24px;
  line-height: 100%;
}
@media (max-width: 680px) {
  .projects .projects_item .card_title span {
    font-size: 20px;
  }
}
.projects .projects_item .card_title::before {
  content: "";
  display: block;
  height: 10px;
  width: 10px;
  position: absolute;
  background-color: #252525;
  left: 0;
  border-radius: 50%;
  top: 0;
  bottom: 0;
  margin: auto;
  opacity: 0;
  transition: 0.4s ease-in;
}
.projects .projects_item .card_title.hover span {
  opacity: 0;
}
.projects .projects_item .card_title.hover::before {
  opacity: 1;
}
.projects .projects_item .card_description {
  background: transparent;
  display: flex;
  justify-content: space-between;
  font-weight: 400;
  font-size: 18px;
  line-height: 100%;
  color: #7F7D7D;
  align-items: center;
  position: relative;
  top: 0;
  z-index: 1;
  width: 100%;
}
.projects .projects_item .card_description .item_name {
  background: #D9D9D9;
  position: relative;
  z-index: 3;
  padding-right: 10px;
  transition: 0.4s ease-in-out;
}
.projects .projects_item .card_description .item_year {
  transition: 0.4s ease-in-out;
  position: relative;
  z-index: 3;
  background: #D9D9D9;
  padding-left: 10px;
}
.projects .projects_item .card_description::before {
  content: "";
  height: 1px;
  width: 100%;
  display: block;
  background: #7F7D7D;
  flex: 1;
  position: absolute;
  z-index: 1;
  left: 0;
}
@media (max-width: 680px) {
  .projects .projects_item .card_description {
    font-size: 16px;
  }
}
.projects .projects_item:nth-child(2n) {
  flex-direction: row-reverse;
}
@media (max-width: 1024px) {
  .projects .projects_item {
    flex-direction: column;
    gap: 150px;
  }
  .projects .projects_item .product_name {
    left: 0 !important;
    right: 0;
    margin: auto;
    bottom: 0;
    transform: translate(0px, 0px) !important;
  }
}
@media (max-width: 680px) {
  .projects .projects_item {
    gap: 104px;
  }
}

.prices_page .prices_information {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
}
.prices_page .prices_title {
  font-family: "Futura PT";
  font-style: normal;
  font-weight: 500;
  font-size: 112px;
  line-height: 104%;
  color: #252525;
  max-width: 70%;
  margin-bottom: 70px;
}
.prices_page .prices_name {
  font-family: "Futura PT";
  font-style: normal;
  font-weight: 300;
  font-size: 48px;
  line-height: 100%;
  color: #252525;
  margin-bottom: 40px;
}
.prices_page .prices_name span {
  font-weight: 500;
}
.prices_page .prices_row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.prices_page .prices_row li {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Gilroy";
  font-style: normal;
  font-weight: 400;
  font-size: 24px;
  line-height: 144%;
}
.prices_page .prices_list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.prices_page .prices_list .list_item {
  display: flex;
  align-items: center;
  font-weight: 600;
  font-size: 32px;
  line-height: 100%;
  color: #7F7D7D;
  gap: 10px;
  flex: 0 0 auto;
}
.prices_page .prices_list .list_item .item_price {
  display: flex;
}
.prices_page .prices_list .list_item span {
  font-weight: 700;
  color: #252525;
}
.prices_page .prices_list .list_item .item_image img {
  width: 100%;
}
@media (max-width: 1024px) {
  .prices_page {
    display: none;
  }
}

.section_subtitle {
  font-family: "Futura PT";
  font-style: normal;
  font-weight: 500;
  font-size: 104px;
  line-height: 104%;
  color: #252525;
}
.section_subtitle span {
  color: #7F7D7D;
}
.section_subtitle span.underline {
  position: relative;
  color: #252525;
}
.section_subtitle span.underline::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 5px;
  background-color: #252525;
  bottom: 3px;
  left: 0;
}

.supervision_block {
  display: flex;
  flex-direction: column;
  gap: 72px;
}
.supervision_block .section_title {
  font-size: 104px;
  margin-bottom: 0;
}
.supervision_block .supervision_advantages {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  flex-wrap: wrap;
}
.supervision_block .supervision_advantages .supervision_list {
  width: calc(44% - 47px);
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  gap: 48px 0;
}
.supervision_block .supervision_advantages .supervision_list:nth-child(2) {
  width: calc(56% - 47px);
}
.supervision_block .supervision_advantages li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-weight: 400;
  font-size: 24px;
  line-height: 134%;
  color: #252525;
}
.supervision_block .supervision_advantages li img {
  margin-top: 2px;
}

.delivery_row {
  display: flex;
  align-items: flex-start;
  gap: 72px;
  flex-wrap: wrap;
}
.delivery_row .price_row {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.delivery_row .item_title {
  font-weight: 400;
  font-size: 24px;
  line-height: 100%;
  color: #7F7D7D;
  margin-bottom: 24px;
}
.delivery_row .item_price {
  font-weight: 600;
  font-size: 32px;
  line-height: 104%;
  color: #252525;
  display: flex;
  align-items: center;
  gap: 32px;
}
.delivery_row .item_price .address {
  font-weight: 400;
  font-size: 18px;
  line-height: 104%;
  color: #7F7D7D;
}
.delivery_row .item_description {
  font-family: "Gilroy";
  font-style: normal;
  font-weight: 600;
  font-size: 32px;
  line-height: 100%;
}

footer {
  border-top: 1px solid #7F7D7D;
  border-bottom: 1px solid #7F7D7D;
  margin-bottom: 24px;
}
footer .footer_row {
  padding: 32px 0 16px 0;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 155px;
}
@media (max-width: 680px) {
  footer .footer_row {
    padding: 24px 0 16px 0;
    gap: 124px;
  }
}
footer .footer_bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 400;
  font-size: 12px;
  line-height: 104%;
  position: relative;
  transition: 0.3s all ease;
}
footer .footer_bottom .copyright span {
  text-transform: uppercase;
  letter-spacing: 0.16em;
}
@media (max-width: 1024px) {
  footer .footer_bottom .copyright {
    flex-direction: column;
    display: flex;
  }
}
footer .footer_bottom .privacy_policy {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 75px;
  color: #252525;
  text-decoration: none;
}
@media (max-width: 680px) {
  footer .footer_bottom .privacy_policy {
    bottom: 80px;
    margin: 0;
  }
}
footer .footer_bottom .designed_by {
  font-weight: 400;
  font-size: 10px;
}
footer .footer_bottom .designed_by a {
  text-decoration: underline;
  color: #252525;
  font-size: 12px;
  font-weight: 500;
  font-size: 12px;
  line-height: 104%;
}
@media (max-width: 1024px) {
  footer .footer_bottom {
    align-items: flex-end;
  }
}
footer .logo svg path {
  transition: 0.3s all ease;
}
@media (max-width: 680px) {
  footer .logo svg {
    width: 215px;
    height: 45px;
  }
}

.call_back_modal {
  transition: 0.2s all ease-in;
  opacity: 0;
  height: 100vh;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  overflow: auto;
  visibility: hidden;
  position: fixed;
  top: -100%;
  left: 0;
  right: 0;
  padding: 40px;
  background-color: #D7D8DA;
  z-index: 100;
}
.call_back_modal .form_top {
  display: flex;
  justify-content: space-between;
}
.call_back_modal .form_top span {
  display: flex;
  align-items: center;
  width: 72px;
  height: 72px;
}
.call_back_modal .form_top span .close_btn {
  cursor: pointer;
  transition: 0.2s ease-in;
}
.call_back_modal .form_top span .close_btn path {
  transition: 0.2s ease-in;
}
.call_back_modal .form_top span .close_btn:hover {
  transform: rotate(180deg);
}
@media (max-width: 1024px) {
  .call_back_modal .form_top span .close_btn {
    height: 50px;
    width: 50px;
  }
}
@media (max-width: 680px) {
  .call_back_modal .form_top span .close_btn {
    height: 40px;
    width: 40px;
  }
}
@media (max-width: 1024px) {
  .call_back_modal .form_top span {
    height: 50px;
    width: 50px;
  }
}
@media (max-width: 680px) {
  .call_back_modal .form_top span {
    position: absolute;
    top: 16px;
    right: 16px;
  }
}
.call_back_modal form {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 1024px) {
  .call_back_modal form {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 680px) {
  .call_back_modal form {
    gap: 64px;
  }
}
.call_back_modal .input_block {
  display: flex;
  flex-direction: column;
  width: 30%;
  margin-right: 100px;
}
@media (max-width: 1170px) {
  .call_back_modal .input_block {
    margin-right: 50px;
  }
}
@media (max-width: 1024px) {
  .call_back_modal .input_block {
    width: 100%;
  }
}
@media (max-width: 680px) {
  .call_back_modal .input_block {
    margin: 0;
  }
}
@media (max-width: 1024px) {
  .call_back_modal .input_row, .call_back_modal .terms_of_use {
    width: 100%;
    max-width: 390px;
  }
}
.call_back_modal .order_form {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin-right: 0;
}
.call_back_modal .terms_of_use {
  font-family: "Gilroy";
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 134%;
  color: #7F7D7D;
}
.call_back_modal .terms_of_use a {
  text-decoration: underline;
  color: #7F7D7D;
}
.call_back_modal .input_item {
  margin-bottom: 25px;
}
.call_back_modal .input_item input {
  width: 100%;
  border: none;
  outline: none;
  background-color: transparent;
  height: 50px;
  border-bottom: 1px solid #363636;
  font-family: "Gilroy";
  font-style: normal;
  font-weight: 400;
  font-size: 32px;
}
.call_back_modal .input_item input::-moz-placeholder {
  font-family: "Gilroy";
  font-style: normal;
  font-weight: 400;
  font-size: 32px;
  line-height: 37px;
  color: #7F7D7D;
}
.call_back_modal .input_item input:-ms-input-placeholder {
  font-family: "Gilroy";
  font-style: normal;
  font-weight: 400;
  font-size: 32px;
  line-height: 37px;
  color: #7F7D7D;
}
.call_back_modal .input_item input::placeholder {
  font-family: "Gilroy";
  font-style: normal;
  font-weight: 400;
  font-size: 32px;
  line-height: 37px;
  color: #7F7D7D;
}
@media (max-width: 1024px) {
  .call_back_modal .input_item input::-moz-placeholder {
    font-size: 24px;
  }
  .call_back_modal .input_item input:-ms-input-placeholder {
    font-size: 24px;
  }
  .call_back_modal .input_item input::placeholder {
    font-size: 24px;
  }
}
@media (max-width: 1024px) {
  .call_back_modal .input_item input {
    height: 45px;
    font-size: 24px;
  }
}
@media (max-width: 680px) {
  .call_back_modal .input_item input {
    font-size: 16px;
    height: 35px;
  }
}
.call_back_modal .input_item.file {
  margin-bottom: 30px;
  font-family: "Gilroy";
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 21px;
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
}
.call_back_modal .input_item.file label {
  display: flex;
  align-items: center;
  gap: 10px;
}
@media (max-width: 1024px) {
  .call_back_modal .input_item.file {
    margin: 0;
  }
}
.call_back_modal .input_action {
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media (max-width: 1024px) {
  .call_back_modal .input_action {
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
    gap: 16px;
  }
}
@media (max-width: 680px) {
  .call_back_modal .input_action {
    flex-direction: column;
    gap: 40px;
  }
}
.call_back_modal .form_row, .call_back_modal .form_texts {
  display: flex;
  flex-direction: column;
  gap: 68px;
}
@media (max-width: 1170px) {
  .call_back_modal .form_row, .call_back_modal .form_texts {
    gap: 40px;
  }
}
@media (max-width: 1024px) {
  .call_back_modal .form_row, .call_back_modal .form_texts {
    gap: 56px;
  }
}
@media (max-width: 680px) {
  .call_back_modal .form_row, .call_back_modal .form_texts {
    gap: 40px;
  }
}
.call_back_modal .form_texts {
  gap: 12px;
}
.call_back_modal .form_texts .form_title {
  font-family: "Futura PT";
  font-weight: 500;
  font-size: 80px;
  line-height: 100%;
}
@media (max-width: 1024px) {
  .call_back_modal .form_texts .form_title {
    font-size: 72px;
  }
}
@media (max-width: 680px) {
  .call_back_modal .form_texts .form_title {
    font-size: 40px;
  }
}
.call_back_modal .form_texts .form_description {
  font-family: "Gilroy";
  font-style: normal;
  font-weight: 400;
  font-size: 24px;
  line-height: 134%;
  max-width: 55%;
}
@media (max-width: 1024px) {
  .call_back_modal .form_texts .form_description {
    max-width: 80%;
  }
}
@media (max-width: 680px) {
  .call_back_modal .form_texts .form_description {
    font-size: 16px;
    max-width: 85%;
  }
}
.call_back_modal .choose_row, .call_back_modal .choose_item {
  display: flex;
  flex-direction: column;
}
.call_back_modal .choose_row {
  flex: 0 0 auto;
  width: 45%;
  gap: 72px;
}
@media (max-width: 1170px) {
  .call_back_modal .choose_row {
    gap: 40px;
  }
}
@media (max-width: 1024px) {
  .call_back_modal .choose_row {
    width: 100%;
  }
}
.call_back_modal .choose_item {
  gap: 40px;
}
.call_back_modal .choose_item .choose_element {
  display: flex;
  align-items: center;
  position: relative;
}
.call_back_modal .choose_item .choose_element .tip {
  color: #252525;
  border-radius: 20px;
  position: absolute;
  bottom: calc(100% + 12px);
  width: auto;
  left: 80%;
}
.call_back_modal .choose_item .choose_element .tip .tip_item {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.call_back_modal .choose_item .choose_element .tip .tip_block {
  border-radius: 20px;
  padding: 0;
  width: 0;
  flex-direction: column;
  gap: 20px;
  transition: 0.4s ease opacity;
  opacity: 0;
  height: 0;
  overflow: hidden;
}
.call_back_modal .choose_item .choose_element .tip .tip_block .tip_title {
  font-family: "Futura LT";
  font-style: italic;
  font-weight: normal;
  font-size: 18px;
  line-height: 104%;
}
@media (max-width: 680px) {
  .call_back_modal .choose_item .choose_element .tip .tip_block .tip_title {
    font-size: 16px;
  }
}
.call_back_modal .choose_item .choose_element .tip .tip_block .tip_list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  list-style: none;
  font-family: "Gilroy";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 104%;
}
.call_back_modal .choose_item .choose_element .tip .tip_block .tip_list li {
  display: flex;
  align-items: center;
  gap: 6px;
}
@media (max-width: 680px) {
  .call_back_modal .choose_item .choose_element .tip .tip_block .tip_list {
    font-size: 14px;
  }
}
.call_back_modal .choose_item .choose_element .tip .tip_image {
  display: flex;
  cursor: pointer;
}
.call_back_modal .choose_item .choose_element .tip .tip_image svg:nth-child(1) {
  width: auto;
  height: auto;
  opacity: 1;
}
.call_back_modal .choose_item .choose_element .tip .tip_image svg path {
  transition: 0.2s ease-out;
}
.call_back_modal .choose_item .choose_element .tip .tip_image svg:hover path {
  fill: rgba(127, 125, 125, 0.8);
}
.call_back_modal .choose_item .choose_element .tip .tip_image .close_tip {
  height: 0;
  width: 0;
  overflow: hidden;
  opacity: 0;
}
.call_back_modal .choose_item .choose_element .tip .tip_image .close_tip circle {
  transition: 0.4s ease-out;
}
.call_back_modal .choose_item .choose_element .tip .tip_image .close_tip:hover circle {
  opacity: 0.8;
}
.call_back_modal .choose_item .choose_element .tip .overlay {
  position: fixed;
  left: 0;
  height: 100vh;
  top: 0;
  width: 0;
  bottom: 0;
  background: #000000;
  opacity: 0.5;
  z-index: -1;
}
.call_back_modal .choose_item .choose_element .tip.active {
  background-color: #fff;
  z-index: 1;
}
.call_back_modal .choose_item .choose_element .tip.active .tip_block {
  display: flex;
  height: auto;
  width: 0;
  opacity: 1;
  visibility: visible;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  padding: 20px;
}
@media (max-width: 680px) {
  .call_back_modal .choose_item .choose_element .tip.active .tip_block {
    padding: 16px;
  }
}
.call_back_modal .choose_item .choose_element .tip.active .tip_image {
  width: 40px;
  position: relative;
}
.call_back_modal .choose_item .choose_element .tip.active .tip_image svg:nth-child(1) {
  width: 0;
  height: 0;
  opacity: 0;
}
.call_back_modal .choose_item .choose_element .tip.active .tip_image .close_tip {
  height: auto;
  width: auto;
  opacity: 1;
}
@media (max-width: 1024px) {
  .call_back_modal .choose_item .choose_element .tip.active {
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: auto;
    height: -webkit-max-content;
    height: -moz-max-content;
    height: max-content;
    right: 0;
  }
  .call_back_modal .choose_item .choose_element .tip.active .tip_block {
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
  }
  .call_back_modal .choose_item .choose_element .tip.active .tip_image {
    position: absolute;
    top: 0;
    right: 0;
  }
  .call_back_modal .choose_item .choose_element .tip.active .overlay {
    width: 100%;
  }
}
@media (max-width: 680px) {
  .call_back_modal .choose_item .choose_element #tip_2.active .tip_block {
    width: 100%;
  }
}
@media (max-width: 680px) {
  .call_back_modal .choose_item .choose_element #tip_2.active {
    max-width: 90%;
  }
}
.call_back_modal .choose_item .title {
  font-family: "Futura PT";
  font-weight: 600;
  font-size: 32px;
  line-height: 100%;
}
@media (max-width: 680px) {
  .call_back_modal .choose_item .title {
    font-size: 24px;
  }
}
.call_back_modal .choose_item .choose_container {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.call_back_modal .choose_item .choose_container label {
  font-family: "Gilroy";
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
  color: #252525;
  width: 185px;
  padding: 14px 0;
  border: 1px solid #7F7D7D;
  border-radius: 36px;
  text-align: center;
  transition: 0.2s ease-out;
  cursor: pointer;
}
.call_back_modal .choose_item .choose_container label:hover {
  background: rgba(127, 125, 125, 0.5);
  border-radius: 36px;
  color: #fff;
}
@media (max-width: 680px) {
  .call_back_modal .choose_item .choose_container label {
    padding: 12px 0;
    width: 150px;
  }
}
.call_back_modal .choose_item .choose_container input[type=radio], .call_back_modal .choose_item .choose_container input[type=checkbox] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  display: none;
}
.call_back_modal .choose_item .choose_container input[type=checkbox]:checked + label, .call_back_modal .choose_item .choose_container input[type=radio]:checked + label {
  background: #7F7D7D;
  border-radius: 36px;
  color: #FFFFFF;
}
.call_back_modal .choose_item .choose_container input[type=checkbox]:checked + label::before, .call_back_modal .choose_item .choose_container input[type=radio]:checked + label::before {
  content: "";
  transition: 0.2s ease-out;
  display: block;
  width: calc(100% + 8px);
  height: calc(100% + 8px);
  left: -5px;
  top: -5px;
  border: 1px solid #7F7D7D;
  position: absolute;
  border-radius: 36px;
}
@media (max-width: 680px) {
  .call_back_modal .choose_item .choose_container {
    gap: 23px;
  }
}
@media (max-width: 680px) {
  .call_back_modal .choose_item {
    gap: 32px;
  }
}
.call_back_modal .submit_modal {
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  justify-content: center;
  align-items: center;
  z-index: 100;
  height: 100vh;
  width: 100vw;
  transition: 0.3s all ease;
  opacity: 0;
  visibility: hidden;
}
.call_back_modal .submit_modal .submit_modal_body, .call_back_modal .submit_modal .modal_texts, .call_back_modal .submit_modal .description, .call_back_modal .submit_modal .actions {
  display: flex;
  flex-direction: column;
}
.call_back_modal .submit_modal .submit_modal_body {
  background: #252525;
  border-radius: 16px;
  width: 50%;
  padding: 24px;
  position: relative;
}
.call_back_modal .submit_modal .submit_modal_body .close {
  position: absolute;
  display: flex;
  top: 24px;
  right: 24px;
  cursor: pointer;
}
@media (max-width: 680px) {
  .call_back_modal .submit_modal .submit_modal_body .close svg {
    width: 30px;
    height: 30px;
    top: 16px;
    right: 16px;
  }
}
.call_back_modal .submit_modal .submit_modal_body .logo {
  position: absolute;
  bottom: 50px;
  right: 72px;
}
@media (max-width: 680px) {
  .call_back_modal .submit_modal .submit_modal_body .logo svg {
    width: 80px;
  }
}
@media (max-width: 1024px) {
  .call_back_modal .submit_modal .submit_modal_body .logo {
    right: 24px;
  }
}
@media (max-width: 680px) {
  .call_back_modal .submit_modal .submit_modal_body .logo {
    right: 16px;
  }
}
@media (max-width: 1170px) {
  .call_back_modal .submit_modal .submit_modal_body {
    width: 55%;
  }
}
@media (max-width: 680px) {
  .call_back_modal .submit_modal .submit_modal_body {
    width: 90%;
    padding: 16px;
  }
}
.call_back_modal .submit_modal .modal_texts {
  gap: 16px;
  margin-bottom: 95px;
}
.call_back_modal .submit_modal .modal_texts .title {
  font-family: "Futura PT";
  font-style: normal;
  font-weight: 500;
  font-size: 56px;
  line-height: 100%;
  color: #FFFFFF;
}
@media (max-width: 1024px) {
  .call_back_modal .submit_modal .modal_texts .title {
    font-size: 32px;
  }
}
@media (max-width: 680px) {
  .call_back_modal .submit_modal .modal_texts .title {
    font-size: 24px;
  }
}
.call_back_modal .submit_modal .modal_texts .description {
  gap: 6px;
  font-family: "Gilroy";
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 100%;
  color: #FFFFFF;
}
@media (max-width: 680px) {
  .call_back_modal .submit_modal .modal_texts .description {
    font-size: 16px;
  }
}
@media (max-width: 680px) {
  .call_back_modal .submit_modal .modal_texts {
    margin-bottom: 50px;
  }
}
.call_back_modal .submit_modal .actions {
  gap: 16px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin-bottom: 50px;
}
.call_back_modal .submit_modal .actions a {
  background: #FFFFFF;
  border-radius: 36px;
  padding: 14px 20px;
  text-decoration: none;
  color: #252525;
  text-align: center;
}
@media (max-width: 680px) {
  .call_back_modal .submit_modal .actions {
    margin-bottom: 20px;
  }
}
.call_back_modal .submit_modal .overlay {
  position: fixed;
  left: 0;
  height: 100vh;
  top: 0;
  width: 100%;
  bottom: 0;
  background: #000000;
  opacity: 0.5;
  z-index: -1;
}
.call_back_modal .submit_modal.active {
  opacity: 1;
  visibility: visible;
}
.call_back_modal.active {
  opacity: 1;
  top: 0;
  visibility: visible;
}
@media (max-width: 1024px) {
  .call_back_modal {
    padding: 24px;
  }
}
@media (max-width: 680px) {
  .call_back_modal {
    padding: 40px 16px 16px 16px;
  }
}

.darkMode header {
  background-color: #252525;
}
.darkMode header .logo svg path {
  fill: #FFFFFF;
}
.darkMode header .row_item .menu_list li a, .darkMode header .row_item .right_menu li a {
  color: #FFFFFF;
}
.darkMode header .row_item .menu_list li a::after, .darkMode header .row_item .right_menu li a::after {
  background-color: #fff;
}
.darkMode header .row_item .hamburger circle, .darkMode header .row_item .hamburger path {
  stroke: #fff;
}
.darkMode header .social_links {
  transition: 0.3s all ease;
}
.darkMode header .social_links svg path {
  fill: #7F7D7D;
}
.darkMode header .dark_mode_toggle .light {
  height: auto;
  width: auto;
  opacity: 1;
}
.darkMode header .dark_mode_toggle .dark {
  height: 0;
  width: 0;
  opacity: 0;
  overflow: hidden;
}
.darkMode .mobile_header .mobile_menu {
  background: #252525;
}
.darkMode .mobile_header .mobile_menu .menu_list a {
  color: #fff !important;
}
.darkMode .mobile_header .mobile_menu .menu_list a::after {
  background: #fff;
}
.darkMode .order_form {
  border-color: #fff;
}
.darkMode .order_form .order_button {
  transition: 0.3s all ease;
  color: #252525;
  background: #fff;
}
.darkMode .order_form::before {
  border-color: #fff;
}
.darkMode .projects_page {
  color: #fff;
}
.darkMode .projects_page .hero_texts .hero_title, .darkMode .projects_page .hero_texts .hero_description {
  color: #fff;
}
.darkMode .projects_page .projects_item {
  color: #fff;
}
.darkMode .projects_page .projects_item .card_title span {
  color: #fff;
}
.darkMode .projects_page .projects_item .card_title::before {
  background-color: #fff;
}
.darkMode .projects_page .item_name, .darkMode .projects_page .item_year {
  background: #252525 !important;
}
.darkMode .projects_page .more_button a {
  color: #fff;
  border-color: #fff;
}
.darkMode .fixed_actions {
  background-color: #252525;
  border-color: #fff;
}
.darkMode .fixed_actions .actions .action_item {
  color: #fff;
}
.darkMode .fixed_actions .actions .action_item.active {
  border-radius: 21px;
  color: #252525;
}
.darkMode .fixed_actions .actions .animation {
  background: #fff;
}
.darkMode footer .logo svg path {
  fill: #FFFFFF;
}
.darkMode footer .footer_bottom {
  color: #fff !important;
}
.darkMode footer .footer_bottom a {
  color: #fff;
}
.darkMode .prices_page {
  color: #fff !important;
}
.darkMode .prices_page .prices_name {
  color: #fff;
}
.darkMode .prices_page .prices_list .list_item span {
  color: #fff;
}
.darkMode .prices_page .section_subtitle {
  color: #fff;
}
.darkMode .prices_page .section_subtitle span.underline {
  color: #fff;
}
.darkMode .prices_page .section_subtitle span.underline::before {
  background-color: #fff;
}
.darkMode .prices_page .supervision_block .supervision_advantages li {
  color: #fff;
}
.darkMode .prices_page .delivery_row .item_price {
  color: #fff;
}
.darkMode .call_back_modal {
  background-color: #252525;
}
.darkMode .call_back_modal .form_top span .close_btn path:nth-child(1) {
  fill: #fff;
}
.darkMode .call_back_modal .form_top span .close_btn path:nth-child(2) {
  stroke: #252525;
}
.darkMode .call_back_modal .form_texts {
  color: #fff !important;
}
.darkMode .call_back_modal .choose_item {
  color: #fff !important;
}
.darkMode .call_back_modal .choose_item .choose_container label {
  color: #fff;
}
.darkMode .call_back_modal .choose_item .choose_container label:hover {
  background: rgba(127, 125, 125, 0.5);
  border: 1px solid #7F7D7D;
  border-radius: 36px;
  color: #fff;
}
.darkMode .call_back_modal .choose_item .choose_container input[type=radio], .darkMode .call_back_modal .choose_item .choose_container input[type=checkbox] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  display: none;
}
.darkMode .call_back_modal .choose_item .choose_container input[type=checkbox]:checked + label, .darkMode .call_back_modal .choose_item .choose_container input[type=radio]:checked + label {
  background: #7F7D7D;
  border-radius: 36px;
  color: #FFFFFF;
}
.darkMode .call_back_modal .input_item input {
  color: #fff;
}
.darkMode .call_back_modal .input_item.file {
  color: #fff;
}
.darkMode .call_back_modal .input_item.file svg path {
  stroke: #fff;
}

.prices_page.tablet {
  opacity: 1;
  height: auto;
  display: none;
}
@media (max-width: 1024px) {
  .prices_page.tablet .prices_name {
    font-size: 32px;
  }
}
@media (max-width: 680px) {
  .prices_page.tablet .prices_name {
    font-size: 24px;
    margin-bottom: 24px;
  }
}
@media (max-width: 1024px) {
  .prices_page.tablet .prices_row .prices_item:nth-child(2) {
    order: 3;
    width: 100%;
  }
}
@media (max-width: 680px) {
  .prices_page.tablet .prices_row li {
    gap: 8px;
    font-size: 16px;
  }
}
@media (max-width: 680px) {
  .prices_page.tablet .prices_row li img {
    width: 16px;
    height: 16px;
  }
}
@media (max-width: 1024px) {
  .prices_page.tablet .prices_row {
    gap: 24px 40px;
    justify-content: flex-start;
    margin-bottom: 0;
  }
}
@media (max-width: 680px) {
  .prices_page.tablet .prices_row {
    gap: 16px;
  }
}
@media (max-width: 1024px) {
  .prices_page.tablet .prices_list {
    display: none;
  }
}
@media (max-width: 1024px) {
  .prices_page.tablet .section_subtitle {
    letter-spacing: -0.01em;
    font-size: 64px;
  }
}
@media (max-width: 680px) {
  .prices_page.tablet .section_subtitle {
    font-size: 32px;
  }
}
@media (max-width: 1024px) {
  .prices_page.tablet .supervision_block {
    gap: 64px;
  }
}
@media (max-width: 680px) {
  .prices_page.tablet .supervision_block {
    gap: 48px;
  }
}
@media (max-width: 1024px) {
  .prices_page.tablet .supervision_block .section_title {
    font-size: 64px;
  }
}
@media (max-width: 680px) {
  .prices_page.tablet .supervision_block .section_title {
    font-size: 32px;
  }
}
@media (max-width: 1024px) {
  .prices_page.tablet .supervision_block .supervision_advantages {
    flex-direction: column;
    gap: 16px;
  }
}
@media (max-width: 1024px) {
  .prices_page.tablet .supervision_block .supervision_advantages .supervision_list {
    width: 100%;
    gap: 16px;
  }
}
@media (max-width: 680px) {
  .prices_page.tablet .supervision_block .supervision_advantages .supervision_list li img {
    width: 16px;
    height: 20px;
  }
}
@media (max-width: 680px) {
  .prices_page.tablet .supervision_block .supervision_advantages .supervision_list li {
    font-size: 16px;
  }
}
@media (max-width: 680px) {
  .prices_page.tablet .delivery_row .item_title {
    margin-bottom: 16px;
    font-size: 18px;
  }
}
@media (max-width: 680px) {
  .prices_page.tablet .delivery_row .item_price {
    font-size: 18px;
  }
}
@media (max-width: 680px) {
  .prices_page.tablet .delivery_row .address {
    font-size: 16px;
  }
}
@media (max-width: 680px) {
  .prices_page.tablet .delivery_row .item_description {
    font-size: 18px;
  }
}
@media (max-width: 1024px) {
  .prices_page.tablet .delivery_row {
    gap: 40px;
  }
}
@media (max-width: 680px) {
  .prices_page.tablet .delivery_row {
    gap: 24px;
    flex-direction: column;
  }
}
@media (max-width: 1024px) {
  .prices_page.tablet {
    display: block;
  }
}

.contacts {
  display: flex;
  align-items: center;
  gap: 72px;
  margin-bottom: 72px;
  flex-wrap: wrap;
}
.contacts .phone, .contacts .mail {
  display: flex;
  align-items: center;
  text-decoration: none;
  font-family: "Futura PT";
  font-weight: 500;
  font-style: normal;
  font-size: 64px;
  line-height: 104%;
  color: #252525;
}
.contacts .phone img, .contacts .mail img {
  margin-right: 20px;
}
@media (max-width: 680px) {
  .contacts .phone img, .contacts .mail img {
    width: 30px;
    height: 30px;
  }
}
@media (max-width: 680px) {
  .contacts .phone, .contacts .mail {
    font-size: 24px;
  }
}
.contacts .phone span {
  font-family: "Futura PT Book";
  font-weight: 400;
}
@media (max-width: 1024px) {
  .contacts {
    flex-direction: column;
    gap: 40px;
    align-items: flex-start;
  }
}
@media (max-width: 680px) {
  .contacts {
    gap: 24px;
  }
}

.location {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.location .location_title {
  display: flex;
  align-items: center;
  gap: 20px;
  font-family: "Futura PT Book";
  font-style: normal;
  font-weight: 400;
  font-size: 24px;
  line-height: 104%;
  color: #252525;
}
@media (max-width: 680px) {
  .location .location_title {
    font-size: 18px;
  }
}
@media (max-width: 680px) {
  .location .location_title img {
    height: 30px;
  }
}
.location .address {
  padding-left: 60px;
  font-family: "Futura PT";
  font-style: normal;
  font-weight: 500;
  font-size: 64px;
  line-height: 104%;
  letter-spacing: -0.02em;
  color: #252525;
}
.location .address span {
  font-family: "Futura PT Book";
  font-weight: 400;
}
@media (max-width: 1024px) {
  .location .address {
    font-size: 60px;
  }
}
@media (max-width: 680px) {
  .location .address {
    padding-left: 0;
    font-size: 24px;
  }
}

body.darkMode .contacts .phone, body.darkMode .contacts .mail {
  color: #fff;
}
body.darkMode .location .location_title, body.darkMode .location .address {
  color: #fff !important;
}

.steps .section_title {
  max-width: 100%;
  margin-bottom: 150px;
}
.steps .section_title span {
  color: #7F7D7D;
}
@media (max-width: 1024px) {
  .steps .section_title {
    max-width: 95%;
    margin-bottom: 90px;
  }
}
@media (max-width: 680px) {
  .steps .section_title {
    max-width: 100%;
    font-size: 40px;
    margin-bottom: 50px;
  }
}
.steps .path_pagination {
  margin-bottom: 150px;
}
.steps .path_pagination .step_list {
  display: flex;
  align-items: center;
}
.steps .path_pagination .step_list .step_list_item {
  display: flex;
  cursor: pointer;
}
.steps .path_pagination .step_list .step_list_item .texts_row {
  position: relative;
}
.steps .path_pagination .step_list .step_list_item .texts_row .texts {
  font-family: "Futura PT";
  font-style: normal;
  font-size: 18px;
  line-height: 104%;
  color: #BABABA;
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: absolute;
  bottom: 28px;
  left: 0;
}
.steps .path_pagination .step_list .step_list_item .texts_row .texts .title {
  width: 170px;
  font-weight: 500;
  transition: 0.3s;
}
@media (max-width: 1024px) {
  .steps .path_pagination .step_list .step_list_item .texts_row .texts .title {
    display: none;
  }
}
.steps .path_pagination .step_list .step_list_item .texts_row .texts .description {
  font-family: "Futura PT Book";
  font-style: italic;
  font-weight: 400;
  transition: 0.3s;
}
@media (max-width: 680px) {
  .steps .path_pagination .step_list .step_list_item .texts_row .texts {
    font-size: 12px;
    bottom: 20px;
    width: 38px;
  }
}
.steps .path_pagination .step_list .step_list_item:nth-child(2n) {
  flex-direction: column-reverse;
}
.steps .path_pagination .step_list .step_list_item:nth-child(2n) svg {
  position: relative;
  top: 12px;
}
@media (max-width: 1024px) {
  .steps .path_pagination .step_list .step_list_item:nth-child(2n) svg {
    top: 7.5px;
  }
}
@media (max-width: 680px) {
  .steps .path_pagination .step_list .step_list_item:nth-child(2n) svg {
    top: 3px;
  }
}
.steps .path_pagination .step_list .step_list_item:nth-child(2n) .texts {
  top: 16px;
}
.steps .path_pagination .step_list .step_list_item:nth-child(3) .texts .title {
  width: 200px;
}
.steps .path_pagination .step_list .step_list_item:nth-child(6) .texts .title {
  width: 200px;
}
.steps .path_pagination .step_list .step_list_item:nth-child(7) .texts .title {
  width: 240px;
}
.steps .path_pagination .step_list .step_list_item svg {
  width: 100%;
}
.steps .path_pagination .step_list .step_list_item svg line {
  transition: 0.3s;
}
.steps .path_pagination .step_list .step_list_item svg ellipse {
  transition: 0.3s;
}
.steps .path_pagination .step_list .step_list_item svg path {
  transition: 0.3s;
}
.steps .path_pagination .step_list .step_list_item:hover .texts .title {
  color: #252525;
}
.steps .path_pagination .step_list .step_list_item:hover .texts .description {
  color: #252525;
}
.steps .path_pagination .step_list .step_list_item.active .texts .title {
  color: #252525;
}
.steps .path_pagination .step_list .step_list_item.active .texts .description {
  color: #252525;
}
.steps .path_pagination .step_list .step_list_item.active svg line {
  stroke: #252525;
}
.steps .path_pagination .step_list .step_list_item.active svg ellipse {
  fill: #252525;
}
.steps .path_pagination .step_list .step_list_item.active svg path {
  stroke: #252525;
}
@media (max-width: 1024px) {
  .steps .path_pagination {
    margin-bottom: 90px;
  }
}
.steps .information_container {
  overflow: hidden;
}
.steps .swiper-wrapper .swiper-slide:nth-child(4) .slide_image {
  height: auto;
}
.steps .swiper-wrapper .swiper-slide:nth-child(4) .slide_image img {
  height: auto;
}
.steps .swiper-wrapper .slide_row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.steps .swiper-wrapper .slide_row .slide_action {
  flex: 0 0 auto;
  width: calc(46% - 36px);
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.steps .swiper-wrapper .slide_row .slide_action .title {
  font-family: "Gilroy";
  font-style: normal;
  font-weight: 400;
  font-size: 24px;
  line-height: 134%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.steps .swiper-wrapper .slide_row .slide_action .title .step_title {
  font-family: "Futura PT";
  font-style: normal;
  font-weight: 500;
  font-size: 24px;
  line-height: 104%;
  color: #252525;
  display: none;
}
@media (max-width: 1024px) {
  .steps .swiper-wrapper .slide_row .slide_action .title .step_title {
    display: flex;
  }
}
@media (max-width: 680px) {
  .steps .swiper-wrapper .slide_row .slide_action .title {
    font-size: 16px;
  }
}
@media (max-width: 1024px) {
  .steps .swiper-wrapper .slide_row .slide_action {
    width: 100%;
  }
}
.steps .swiper-wrapper .slide_row .download_button {
  display: flex;
  align-items: center;
  text-decoration: none;
  gap: 16px;
  font-family: "Gilroy";
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  line-height: 124%;
  color: #252525;
}
.steps .swiper-wrapper .slide_row .slide_image {
  flex: 0 0 auto;
  width: calc(54% - 36px);
  height: 430px;
  overflow: hidden;
}
.steps .swiper-wrapper .slide_row .slide_image img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  width: 100%;
  height: 430px;
}
@media (max-width: 1024px) {
  .steps .swiper-wrapper .slide_row .slide_image img {
    height: 320px;
  }
}
@media (max-width: 1024px) {
  .steps .swiper-wrapper .slide_row .slide_image {
    width: 100%;
    height: 320px;
  }
}
@media (max-width: 1024px) {
  .steps .swiper-wrapper .slide_row {
    flex-direction: column;
    gap: 40px;
  }
}
.steps .slide_nav {
  display: none;
  align-items: center;
  gap: 16px;
}
.steps .slide_nav .next svg {
  rotate: 180deg;
}
.steps .slide_nav .prev, .steps .slide_nav .next {
  cursor: pointer;
}
.steps .slide_nav .prev svg circle, .steps .slide_nav .next svg circle {
  transition: 0.3s;
}
.steps .slide_nav .prev svg path, .steps .slide_nav .next svg path {
  transition: 0.3s;
}
.steps .slide_nav .prev:hover svg circle, .steps .slide_nav .next:hover svg circle {
  fill: #252525;
}
.steps .slide_nav .prev:hover svg path, .steps .slide_nav .next:hover svg path {
  stroke: #fff;
}
@media (max-width: 1024px) {
  .steps .slide_nav {
    display: flex;
  }
}

body.darkMode .path_pagination .step_list_item {
  display: flex;
  cursor: pointer;
}
body.darkMode .path_pagination .step_list_item .texts_row .texts {
  color: #7F7D7D !important;
}
body.darkMode .path_pagination .step_list_item svg line {
  stroke: #7F7D7D !important;
}
body.darkMode .path_pagination .step_list_item svg ellipse {
  fill: #7F7D7D !important;
}
body.darkMode .path_pagination .step_list_item svg path {
  stroke: #7F7D7D !important;
}
body.darkMode .path_pagination .step_list_item:hover .texts .title {
  color: #fff !important;
}
body.darkMode .path_pagination .step_list_item:hover .texts .description {
  color: #fff !important;
}
body.darkMode .path_pagination .step_list_item.active .texts .title {
  color: #fff !important;
}
body.darkMode .path_pagination .step_list_item.active .texts .description {
  color: #fff !important;
}
body.darkMode .path_pagination .step_list_item.active svg line {
  stroke: #fff !important;
}
body.darkMode .path_pagination .step_list_item.active svg ellipse {
  fill: #fff !important;
}
body.darkMode .path_pagination .step_list_item.active svg path {
  stroke: #fff !important;
}
body.darkMode .slide_row .slide_action {
  color: #fff !important;
}
body.darkMode .slide_row .step_title {
  color: #fff !important;
}
body.darkMode .slide_row .download_button {
  color: #fff !important;
}
body.darkMode .slide_row .download_button svg path {
  fill: #fff;
}
body.darkMode .slide_nav .prev:hover svg circle, body.darkMode .slide_nav .next:hover svg circle {
  fill: #fff;
}
body.darkMode .slide_nav .prev:hover svg path, body.darkMode .slide_nav .next:hover svg path {
  stroke: #252525;
}

.product_information {
  font-family: "Futura PT Book";
  font-style: normal;
  font-weight: 400;
  font-size: 24px;
  line-height: 104%;
  color: #252525;
}
.product_information .section_title {
  margin-bottom: 16px;
}
.product_information .hashtags {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 40px;
}
@media (max-width: 1024px) {
  .product_information .hashtags {
    margin-bottom: 32px;
  }
}
.product_information .card_image {
  display: flex;
  overflow: hidden;
  margin-bottom: 32px;
  justify-content: center;
  position: relative;
}
.product_information .card_image .like_counter {
  position: absolute;
  right: 24px;
  bottom: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.product_information .card_image .like_counter span {
  color: #fff;
}
@media (max-width: 680px) {
  .product_information .card_image .like_counter {
    right: 16px;
    bottom: 16px;
  }
}
.product_information .card_image img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}
@media (max-width: 680px) {
  .product_information .card_image img {
    height: 300px;
  }
}
.product_information .information_row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 64px;
}
.product_information .information_row .row_item {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-wrap: wrap;
  flex: 0 0 auto;
}
.product_information .information_row .row_item:nth-child(1) {
  width: 10%;
}
@media (max-width: 1024px) {
  .product_information .information_row .row_item:nth-child(1) {
    width: calc(25% - 20px);
  }
}
@media (max-width: 680px) {
  .product_information .information_row .row_item:nth-child(1) {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}
.product_information .information_row .row_item:nth-child(2) {
  width: 65%;
}
@media (max-width: 1024px) {
  .product_information .information_row .row_item:nth-child(2) {
    width: calc(75% - 20px);
  }
}
@media (max-width: 680px) {
  .product_information .information_row .row_item:nth-child(2) {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    order: 4;
  }
}
.product_information .information_row .address {
  display: flex;
  align-items: center;
  gap: 40px;
}
.product_information .information_row .address .address_item {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.product_information .information_row .item_title {
  font-family: "Gilroy";
  line-height: 100%;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #7F7D7D;
}
.product_information .information_row .item_body {
  font-family: "Gilroy";
  font-style: normal;
  font-weight: 400;
  font-size: 24px;
  line-height: 134%;
  color: #252525;
}
@media (max-width: 680px) {
  .product_information .information_row .item_body {
    font-size: 18px;
  }
}
.product_information .information_row .item_image {
  display: flex;
  align-items: flex-end;
  gap: 12px;
}
.product_information .information_row .item_image svg path {
  transition: 0.3s;
}
@media (max-width: 1024px) {
  .product_information .information_row {
    gap: 64px 0;
  }
}
@media (max-width: 680px) {
  .product_information .information_row {
    gap: 40px 0;
  }
}
.product_information .product_category {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.product_information .product_category .category {
  display: flex;
  align-items: center;
  gap: 105px;
  position: relative;
}
.product_information .product_category .category::before {
  content: "";
  height: 1px;
  width: 100%;
  display: block;
  background: #7F7D7D;
  flex: 1;
  position: absolute;
  z-index: 1;
  left: 0;
}
@media (max-width: 680px) {
  .product_information .product_category .category {
    gap: 50px;
  }
}
.product_information .product_category .category_title {
  transition: 0.4s ease-in-out;
  background: #D9D9D9;
  position: relative;
  z-index: 3;
  text-transform: uppercase;
  font-family: "Gilroy";
  font-weight: 400;
  color: #7F7D7D;
  font-size: 24px;
  line-height: 100%;
  letter-spacing: 0.03em;
  padding-right: 10px;
}
@media (max-width: 680px) {
  .product_information .product_category .category_title {
    font-size: 18px;
  }
}
.product_information .product_category .category_name {
  transition: 0.4s ease-in-out;
  position: relative;
  z-index: 3;
  background: #D9D9D9;
  padding-left: 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  line-height: 100%;
}
.product_information .product_category .category_name .date {
  color: #7F7D7D;
}
@media (max-width: 1024px) {
  .product_information .product_category {
    flex-direction: column;
    gap: 60px;
    align-items: flex-start;
  }
}
.product_information .category_action span {
  cursor: pointer;
  display: flex;
  padding: 10px 27px;
  font-family: "Gilroy";
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 144%;
  color: #252525;
  text-decoration: none;
  border: 1px solid #252525;
  border-radius: 36px;
}
@media (max-width: 680px) {
  .product_information {
    font-size: 16px;
  }
}

.categories .section_title {
  font-size: 104px;
  display: flex;
  align-items: center;
  max-width: 100%;
}
.categories .section_title::after {
  content: "";
  height: 1px;
  margin-top: 25px;
  width: 100%;
  display: block;
  background-color: #7F7D7D;
  flex: 1;
  margin-left: 30px;
}
@media (max-width: 680px) {
  .categories .section_title::after {
    display: none;
  }
}
@media (max-width: 1024px) {
  .categories .section_title {
    font-size: 64px;
  }
}
@media (max-width: 680px) {
  .categories .section_title {
    font-size: 32px;
  }
}
.categories .images_row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 32px 0;
}
.categories .images_row .image {
  flex: 0 0 auto;
  width: calc(50% - 16px);
  overflow: hidden;
  max-height: 372px;
}
.categories .images_row .image img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}
@media (max-width: 1024px) {
  .categories .images_row .image {
    width: 100%;
    height: 100%;
  }
}
@media (max-width: 1024px) {
  .categories .images_row {
    flex-direction: column;
  }
}
.categories:last-child {
  margin-bottom: 100px;
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.pagination a {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-family: "Gilroy";
  font-weight: 500;
  font-style: normal;
  text-decoration: none;
  font-size: 24px;
  line-height: 134%;
  color: #252525;
}
.pagination a .image {
  display: flex;
  margin-top: 8px;
}
@media (max-width: 680px) {
  .pagination a .image svg {
    width: 12px;
  }
}
@media (max-width: 680px) {
  .pagination a .image {
    margin-top: 3px;
  }
}
@media (max-width: 680px) {
  .pagination a {
    font-size: 16px;
  }
}
.pagination .pagination_infos {
  display: flex;
  flex-direction: column;
}
.pagination .pagination_text {
  font-weight: 400;
  font-size: 12px;
  text-transform: uppercase;
  color: #7F7D7D;
}
.pagination .next {
  text-align: right;
}

.preview .section_title {
  display: flex;
  align-items: center;
  max-width: 100%;
  flex-direction: row-reverse;
}
.preview .section_title span {
  display: flex;
  max-width: 80%;
}
.preview .section_title::before {
  content: "";
  height: 1px;
  margin-top: -80px;
  width: 100%;
  display: block;
  background-color: #7F7D7D;
  flex: 1;
  margin-left: 30px;
}
@media (max-width: 1024px) {
  .preview .section_title::before {
    margin-top: -54px;
  }
}
@media (max-width: 680px) {
  .preview .section_title::before {
    display: none;
  }
}
@media (max-width: 680px) {
  .preview .section_title {
    font-size: 32px;
    flex-direction: row;
  }
}
.preview .preview_text {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.preview .preview_text .before {
  font-family: "Futura PT";
  font-style: normal;
  font-weight: 700;
  font-size: 64px;
  line-height: 144%;
  color: #7F7D7D;
}
@media (max-width: 680px) {
  .preview .preview_text .before {
    font-size: 24px;
  }
}
.preview .preview_text .after {
  font-family: "Futura PT";
  font-style: normal;
  font-weight: 700;
  font-size: 64px;
  line-height: 144%;
  color: #252525;
}
@media (max-width: 680px) {
  .preview .preview_text .after {
    font-size: 24px;
  }
}
.preview .preview_content {
  width: auto !important;
  overflow: hidden;
  height: 720px !important;
}
.preview .preview_content img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
@media (max-width: 1024px) {
  .preview .preview_content {
    height: 472px !important;
  }
}
@media (max-width: 680px) {
  .preview .preview_content {
    height: auto !important;
    overflow: hidden;
  }
}

body.darkMode .product_information {
  color: #fff;
}
body.darkMode .product_information .information_row .item_body {
  color: #fff;
}
body.darkMode .product_information .information_row .item_image svg path {
  fill: #fff;
}
body.darkMode .product_information .product_category .category_title {
  background: #252525;
}
body.darkMode .product_information .product_category .category_name {
  background: #252525;
}
body.darkMode .product_information .product_category .category_name .date {
  color: #7F7D7D;
}
body.darkMode .product_information .category_action span {
  color: #fff;
  border: 1px solid #fff;
}
body.darkMode .preview .preview_text .after {
  color: #fff;
}
body.darkMode .pagination a {
  color: #fff;
}
body.darkMode .pagination svg path {
  stroke: #fff;
}/*# sourceMappingURL=main.css.map */