@charset "UTF-8";
:root {
  --Mango: #f67147;
  --Mango__hover: #df643d;
  --Mango__active: #c95936;
  --Mango_l: #fde3da;
  --Mango_l__hover: #f3dad1;
  --Mango_l__active: #dcc3bb;
  --8: #ebebeb;
  --Pepper: #042f4b;
  --Gradient: linear-gradient(180deg, #f57047 0%, #bf2748 100%);
  --white: #fff;
  --40: #999;
  --Gray-600: #50575c;
  --Beige: #fffaf4;
}

.h2 {
  color: var(--Pepper, #042f4b);
  font-family: "Open Sans";
  font-size: 28px;
  font-style: normal;
  font-weight: 600;
  line-height: 32px;
}

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

.h3 {
  color: var(--Pepper, #042f4b);
  font-family: "Open Sans";
  font-size: 22px;
  font-style: normal;
  font-weight: 600;
  line-height: 26px;
}

.text {
  color: var(--Pepper, #042f4b);
  font-family: "Open Sans";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

section {
  overflow: hidden;
}

html {
  height: 100%;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

header {
  flex: 0 0 auto;
  top: 0;
  z-index: 5;
  background: #fff;
  transition: 0.3s;
  overflow: hidden;
}

.sticky {
  box-shadow: 0px 5px 20px rgba(20, 32, 60, 0.1);
  position: fixed;
  width: 100%;
}
.sticky .header-wrap {
  height: 80px;
}
.sticky .header-wrap .logo {
  height: 65px;
}

main {
  flex: 1 0 auto;
}

footer {
  flex: 0 0 auto;
  overflow: hidden;
}

body::-webkit-scrollbar {
  width: 8px;
  /* ширина scrollbar */
}

body::-webkit-scrollbar-track {
  background: transparent;
  /* цвет дорожки */
}

body::-webkit-scrollbar-thumb {
  background-color: var(--Pepper);
  /* цвет плашки */
  border-radius: 100px;
  /* закругления плашки */
}

.container {
  max-width: 1580px;
  margin: 0 auto;
  padding: 0 30px;
  box-sizing: content-box;
  width: 100%;
}

.header-wrap {
  height: 170px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-wrap .center-links {
  display: flex;
  align-items: center;
  gap: 120px;
}
.header-wrap .right-links {
  display: flex;
  align-items: center;
  gap: 24px;
}
.header-wrap .mobile_button {
  display: none;
}
.header-wrap .logo {
  height: 125px;
}

.nav-link {
  color: var(--Pepper, #042f4b);
  font-family: Open Sans;
  font-size: 26px;
  font-style: normal;
  font-weight: 600;
  line-height: 30px;
  text-decoration: none;
}

.heading_wrap_profile_create h2 {
  font-family: Open Sans;
}

.rewok_message_label {
  margin-top: 24px;
  font-weight: 400;
}

.button {
  height: 62px;
  padding: 0 40px;
  border-radius: 8px;
  font-family: Open Sans;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: 0.3s;
  border: none;
  cursor: pointer;
}
.button.with_span {
  display: flex;
  flex-direction: column;
  color: var(--Main-white, #fffffe);
  font-family: "Open Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
}
.button.with_span span {
  color: var(--Main-white, #fffffe);
  font-family: "Open Sans";
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 22px;
}
.button.loading p {
  display: none;
}
.button.fit {
  width: -moz-fit-content;
  width: fit-content;
}
.button.button__mango-l {
  background: var(--Mango_l);
  color: var(--Pepper);
}
.button.button__mango-l:hover {
  background: var(--Mango_l__hover);
}
.button.button__mango-l:active {
  background: var(--Mango_l__active);
}
.button.with_icon {
  gap: 8px;
}
.button.big_padding {
  padding: 0 75px;
}
.button.search {
  height: 75px;
}
.button.button__mango {
  background: var(--Mango);
  color: var(--white) !important;
}
.button.button__mango:hover {
  background: var(--Mango__hover);
}
.button.button__mango:active {
  background: var(--Mango__active);
}
.button.button__mango:disabled {
  cursor: default;
  background: rgba(246, 113, 71, 0.5);
}
.button.button__outline {
  background: transparent;
  color: var(--Crimson, #e83d3d);
  border-radius: 8px;
  border: 1px solid var(--Crimson, #e83d3d);
}
.button.button__outline:hover {
  background: var(--Mango__hover);
  color: var(--white);
}
.button.button__outline:active {
  background: var(--Mango__active);
}
.button.button__gradient {
  border-radius: 16px;
  background: var(--Gradient, linear-gradient(180deg, #f57047 0%, #bf2748 100%));
  width: -moz-fit-content;
  width: fit-content;
  height: 100px;
  margin: 0 auto;
  color: var(--white);
  font-family: Open Sans;
  font-size: 28px;
  font-style: normal;
  font-weight: 600;
  line-height: 32px;
  transition: 0.3s;
}
.button.button__gradient:hover {
  background-position: 100px;
}
.button.fit {
  width: -moz-fit-content;
  width: fit-content;
}
.button.fill {
  width: 100%;
}

.heading__big {
  color: var(--Pepper, #042f4b);
  font-family: Open Sans;
  font-size: 80px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%;
  margin-top: 67px;
}
.heading__big span {
  color: var(--Mango, #f67147);
}

.form_item {
  position: relative;
}
.form_item .error {
  color: red;
  font-family: "Open Sans";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
  position: absolute;
  bottom: -22px;
}

form .success_mesage {
  color: var(--Pepper, #042f4b);
  font-family: "Open Sans";
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-align: center;
  margin-top: 50px;
  margin-bottom: 50px;
}

.link__blue {
  color: #06f;
  font-family: "Open Sans";
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 22px;
  text-decoration-line: underline;
}

.settings {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  border-radius: 8px;
  background: var(--white, #fff);
  box-shadow: 0px 3px 5px 3px rgba(4, 47, 75, 0.05);
  width: 100%;
  padding: 10px 16px;
  display: none;
  gap: 24px;
  transition: 0.3s;
}
.settings.active {
  display: flex;
}
.settings .column {
  width: 100%;
}
.settings .column .filter-item .filter-header {
  color: var(--Pepper, #042f4b);
  font-family: Open Sans;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
  cursor: pointer;
  pointer-events: none;
}
.settings .column .filter-item .filter-header img {
  transition: 0.3s;
  rotate: 180deg;
}
.settings .column .filter-item .filter-search {
  border-radius: 8px;
  border: 2px solid #d2d8e4;
  background: #fff;
  height: 48px;
  width: 100%;
  outline: none;
  transition: 0.3s;
  padding: 0 16px;
  color: var(--Pepper);
  font-family: Open Sans;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
  margin-bottom: 8px;
}
.settings .column .filter-item .filter-search::-moz-placeholder {
  color: var(--Gray-400, #68727a);
}
.settings .column .filter-item .filter-search::placeholder {
  color: var(--Gray-400, #68727a);
}
.settings .column .filter-item .filter-search:focus {
  border: 2px solid var(--Mango, #f67147);
}
.settings .column .filter-item .item {
  height: 24px;
  /* стили при наведении курсора на checkbox */
  /* стили для активного состояния чекбокса (при нажатии на него) */
  /* стили для чекбокса, находящегося в фокусе и не находящегося в состоянии checked */
}
.settings .column .filter-item .item label {
  height: 24px;
  cursor: pointer;
}
.settings .column .filter-item .item .custom-checkbox {
  position: absolute;
  z-index: -1;
  opacity: 0;
}
.settings .column .filter-item .item .custom-checkbox + label {
  display: inline-flex;
  align-items: center;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.settings .column .filter-item .item .custom-checkbox + label::before {
  content: "";
  display: inline-block;
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  flex-grow: 0;
  border: 2px solid #d2d8e4;
  border-radius: 4px;
  margin-right: 12px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%;
  transition: 0.3s;
}
.settings .column .filter-item .item .custom-checkbox:checked + label::before {
  border-color: var(--Mango);
  background-color: var(--Mango);
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M18.7099 7.20986C18.617 7.11613 18.5064 7.04174 18.3845 6.99097C18.2627 6.9402 18.132 6.91406 17.9999 6.91406C17.8679 6.91406 17.7372 6.9402 17.6154 6.99097C17.4935 7.04174 17.3829 7.11613 17.29 7.20986L9.83995 14.6699L6.70995 11.5299C6.61343 11.4366 6.49949 11.3633 6.37463 11.3141C6.24978 11.2649 6.11645 11.2408 5.98227 11.2431C5.84809 11.2454 5.71568 11.2741 5.5926 11.3276C5.46953 11.3811 5.35819 11.4583 5.26495 11.5549C5.17171 11.6514 5.0984 11.7653 5.04919 11.8902C4.99999 12.015 4.97586 12.1484 4.97818 12.2825C4.9805 12.4167 5.00923 12.5491 5.06272 12.6722C5.11622 12.7953 5.19343 12.9066 5.28995 12.9999L9.12995 16.8399C9.22291 16.9336 9.33351 17.008 9.45537 17.0588C9.57723 17.1095 9.70794 17.1357 9.83995 17.1357C9.97196 17.1357 10.1027 17.1095 10.2245 17.0588C10.3464 17.008 10.457 16.9336 10.55 16.8399L18.7099 8.67986C18.8115 8.58622 18.8925 8.47257 18.9479 8.34607C19.0033 8.21957 19.0319 8.08296 19.0319 7.94486C19.0319 7.80676 19.0033 7.67015 18.9479 7.54365C18.8925 7.41715 18.8115 7.3035 18.7099 7.20986Z' fill='white'/%3E%3C/svg%3E%0A");
}
.settings .column .filter-item .item .custom-checkbox:not(:disabled):not(:checked) + label:hover::before {
  border-color: var(--Mango__hover);
}
.settings .column .filter-item .item .custom-checkbox:not(:disabled):active + label::before {
  background-color: var(--Mango__active);
  border-color: var(--Mango__active);
}
.settings .column .filter-item .item .custom-checkbox:focus:not(:checked) + label::before {
  border-color: var(--Mango__hover);
}
.settings .column .filter-item .item label {
  color: var(--Gray-600, #50575c);
  font-family: Open Sans;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
}
.settings .column .filter-item .filter-variations {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-height: 170px;
  overflow: auto;
  padding-top: 1px;
  position: relative;
}
.settings .column .filter-item .filter-variations::-webkit-scrollbar {
  width: 4px;
}
.settings .column .filter-item .filter-variations::-webkit-scrollbar-track {
  background: transparent;
}
.settings .column .filter-item .filter-variations::-webkit-scrollbar-thumb {
  background-color: var(--Pepper);
  border-radius: 100px;
}
.settings .column .filter-item .filter-variations .splitter {
  width: calc(100% - 10px);
  height: 0.5px;
  background: var(--Pepper);
  display: list-item;
  margin-top: -6px;
  margin-bottom: -4px;
}
.settings .column .filter-item .filter-reset {
  color: #06f;
  font-family: Open Sans;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-decoration: underline;
  margin-top: 10px;
  cursor: pointer;
  text-underline-offset: 3px;
  width: -moz-fit-content;
  width: fit-content;
}
.settings .column .heading {
  color: var(--Pepper, #042f4b);
  font-family: Open Sans;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 22px;
  margin-bottom: 6px;
}
.settings .column .search {
  height: 48px;
  border-radius: 8px;
  border: 2px solid #d2d8e4;
  background: var(--white);
  width: 100%;
  outline: none;
  padding: 0 16px;
  transition: 0.3s;
  margin-bottom: 14px;
}
.settings .column .search:focus {
  border: 2px solid var(--Mango);
}
.settings .column .item-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-height: 170px;
  overflow: auto;
}
.settings .column .item-list::-webkit-scrollbar {
  width: 4px;
  /* ширина scrollbar */
}
.settings .column .item-list::-webkit-scrollbar-track {
  background: transparent;
  /* цвет дорожки */
}
.settings .column .item-list::-webkit-scrollbar-thumb {
  background-color: var(--Pepper);
  /* цвет плашки */
  border-radius: 100px;
  /* закругления плашки */
}
.settings .column .item-list .item {
  height: 24px;
  /* стили при наведении курсора на checkbox */
  /* стили для активного состояния чекбокса (при нажатии на него) */
  /* стили для чекбокса, находящегося в фокусе и не находящегося в состоянии checked */
}
.settings .column .item-list .item .custom-checkbox {
  position: absolute;
  z-index: -1;
  opacity: 0;
}
.settings .column .item-list .item .custom-checkbox + label {
  display: inline-flex;
  align-items: center;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.settings .column .item-list .item .custom-checkbox + label::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  flex-grow: 0;
  border: 2px solid #d2d8e4;
  border-radius: 4px;
  margin-right: 12px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%;
  transition: 0.3s;
}
.settings .column .item-list .item .custom-checkbox:checked + label::before {
  border-color: var(--Mango);
  background-color: var(--Mango);
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M18.7099 7.20986C18.617 7.11613 18.5064 7.04174 18.3845 6.99097C18.2627 6.9402 18.132 6.91406 17.9999 6.91406C17.8679 6.91406 17.7372 6.9402 17.6154 6.99097C17.4935 7.04174 17.3829 7.11613 17.29 7.20986L9.83995 14.6699L6.70995 11.5299C6.61343 11.4366 6.49949 11.3633 6.37463 11.3141C6.24978 11.2649 6.11645 11.2408 5.98227 11.2431C5.84809 11.2454 5.71568 11.2741 5.5926 11.3276C5.46953 11.3811 5.35819 11.4583 5.26495 11.5549C5.17171 11.6514 5.0984 11.7653 5.04919 11.8902C4.99999 12.015 4.97586 12.1484 4.97818 12.2825C4.9805 12.4167 5.00923 12.5491 5.06272 12.6722C5.11622 12.7953 5.19343 12.9066 5.28995 12.9999L9.12995 16.8399C9.22291 16.9336 9.33351 17.008 9.45537 17.0588C9.57723 17.1095 9.70794 17.1357 9.83995 17.1357C9.97196 17.1357 10.1027 17.1095 10.2245 17.0588C10.3464 17.008 10.457 16.9336 10.55 16.8399L18.7099 8.67986C18.8115 8.58622 18.8925 8.47257 18.9479 8.34607C19.0033 8.21957 19.0319 8.08296 19.0319 7.94486C19.0319 7.80676 19.0033 7.67015 18.9479 7.54365C18.8925 7.41715 18.8115 7.3035 18.7099 7.20986Z' fill='white'/%3E%3C/svg%3E%0A");
}
.settings .column .item-list .item .custom-checkbox:not(:disabled):not(:checked) + label:hover::before {
  border-color: var(--Mango__hover);
}
.settings .column .item-list .item .custom-checkbox:not(:disabled):active + label::before {
  background-color: var(--Mango__active);
  border-color: var(--Mango__active);
}
.settings .column .item-list .item .custom-checkbox:focus:not(:checked) + label::before {
  border-color: var(--Mango__hover);
}
.settings .column .item-list .item label {
  color: var(--Gray-600, #50575c);
  font-family: Open Sans;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
}

.checkbox-item {
  height: 24px;
  /* стили при наведении курсора на checkbox */
  /* стили для активного состояния чекбокса (при нажатии на него) */
  /* стили для чекбокса, находящегося в фокусе и не находящегося в состоянии checked */
}
.checkbox-item .custom-checkbox {
  position: absolute;
  z-index: -1;
  opacity: 0;
}
.checkbox-item .custom-checkbox + label {
  display: inline-flex;
  align-items: center;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.checkbox-item .custom-checkbox + label::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  flex-grow: 0;
  border: 2px solid #d2d8e4;
  border-radius: 4px;
  margin-right: 12px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%;
  transition: 0.3s;
}
.checkbox-item .custom-checkbox:checked + label::before {
  border-color: var(--Mango);
  background-color: var(--Mango);
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M18.7099 7.20986C18.617 7.11613 18.5064 7.04174 18.3845 6.99097C18.2627 6.9402 18.132 6.91406 17.9999 6.91406C17.8679 6.91406 17.7372 6.9402 17.6154 6.99097C17.4935 7.04174 17.3829 7.11613 17.29 7.20986L9.83995 14.6699L6.70995 11.5299C6.61343 11.4366 6.49949 11.3633 6.37463 11.3141C6.24978 11.2649 6.11645 11.2408 5.98227 11.2431C5.84809 11.2454 5.71568 11.2741 5.5926 11.3276C5.46953 11.3811 5.35819 11.4583 5.26495 11.5549C5.17171 11.6514 5.0984 11.7653 5.04919 11.8902C4.99999 12.015 4.97586 12.1484 4.97818 12.2825C4.9805 12.4167 5.00923 12.5491 5.06272 12.6722C5.11622 12.7953 5.19343 12.9066 5.28995 12.9999L9.12995 16.8399C9.22291 16.9336 9.33351 17.008 9.45537 17.0588C9.57723 17.1095 9.70794 17.1357 9.83995 17.1357C9.97196 17.1357 10.1027 17.1095 10.2245 17.0588C10.3464 17.008 10.457 16.9336 10.55 16.8399L18.7099 8.67986C18.8115 8.58622 18.8925 8.47257 18.9479 8.34607C19.0033 8.21957 19.0319 8.08296 19.0319 7.94486C19.0319 7.80676 19.0033 7.67015 18.9479 7.54365C18.8925 7.41715 18.8115 7.3035 18.7099 7.20986Z' fill='white'/%3E%3C/svg%3E%0A");
}
.checkbox-item .custom-checkbox:not(:disabled):not(:checked) + label:hover::before {
  border-color: var(--Mango__hover);
}
.checkbox-item .custom-checkbox:not(:disabled):active + label::before {
  background-color: var(--Mango__active);
  border-color: var(--Mango__active);
}
.checkbox-item .custom-checkbox:focus:not(:checked) + label::before {
  border-color: var(--Mango__hover);
}
.checkbox-item label {
  color: var(--Gray-600, #50575c);
  font-family: Open Sans;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
}

.main-search {
  position: relative;
  width: 100%;
}
.main-search .search__big {
  border-radius: 8px;
  background: var(--8, #ebebeb);
  border: none;
  height: 75px;
  width: 100%;
  padding: 0 90px 0 31px;
  color: var(--Pepper);
  font-family: Open Sans;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
  outline: none;
  transition: 0.3s;
}
.main-search .search__big::-moz-placeholder {
  color: var(--40, #999);
  font-family: Open Sans;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
}
.main-search .search__big::placeholder {
  color: var(--40, #999);
  font-family: Open Sans;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
}
.main-search img {
  position: absolute;
  right: 20px;
  top: 17px;
  cursor: pointer;
}

.search-form {
  max-width: 845px;
  display: flex;
  gap: 12px;
  margin-top: 35px;
}

.search-wrap {
  display: flex;
  position: relative;
}
.search-wrap .left {
  max-width: 900px;
  position: relative;
  z-index: 2;
}
.search-wrap .right img {
  position: absolute;
  top: 87px;
  right: -110px;
  max-width: 750px;
}

.help-search {
  margin-top: 12px;
  display: flex;
  gap: 12px;
}
.help-search .item {
  border-radius: 20px;
  background: var(--8, #ebebeb);
  height: 40px;
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 17px;
  color: var(--Pepper, #042f4b);
  font-family: Open Sans;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
  text-decoration: none;
}

#Search {
  height: calc(100vh - 180px);
  min-height: 700px;
}

.heading__minor {
  color: var(--Pepper, #042f4b);
  font-family: Open Sans;
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  margin: 0 auto;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 18px;
  margin-bottom: 80px;
}

.categories-wrap {
  display: grid;
  justify-content: space-evenly;
  margin-bottom: 160px;
  grid-template-columns: auto auto auto auto;
  gap: 40px;
}
.categories-wrap .item {
  color: var(--Pepper, #042f4b);
  font-family: Open Sans;
  font-size: 22px;
  font-style: normal;
  font-weight: 600;
  line-height: 36px;
  text-decoration: none;
}

.background {
  padding: 0 30px 120px 30px;
  height: -moz-fit-content;
  height: fit-content;
  margin-bottom: 140px;
  border-radius: 48px;
  background: linear-gradient(180deg, rgba(245, 112, 71, 0.07) 0%, rgba(191, 39, 72, 0.07) 100%);
}
.background .heading__minor {
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 80px;
  padding-bottom: 80px;
}

.slick-arrow {
  height: -moz-fit-content;
  height: fit-content;
  background: transparent;
  border: none;
  cursor: pointer;
}

.slick-prev {
  padding-right: 54px;
}

.slick-next {
  padding-left: 54px;
}

.featured_listings {
  display: flex;
  align-items: center;
  justify-content: center;
}
.featured_listings .slick-list {
  width: 100%;
}

.testimonials {
  display: flex;
  align-items: center;
}
.testimonials .slick-list {
  width: 100%;
}

.slick-dots {
  position: absolute;
  bottom: -50px;
  display: flex;
  gap: 34px;
  margin: 0 auto;
  left: 0;
  right: 0;
  width: -moz-fit-content;
  width: fit-content;
  list-style: none;
}
.slick-dots li button {
  background: url("../img/dot_outline.svg") center center no-repeat;
  text-indent: -9999px;
  overflow: hidden;
  height: 20px;
  width: 20px;
  border: none;
}
.slick-dots li.slick-active button {
  background: url("../img/dot.svg") center center no-repeat;
}

#FeaturedListings {
  /* the parent */
}
#FeaturedListings .slick-slide {
  margin: 0 20px;
  display: flex;
  flex-direction: column;
  height: auto;
}
#FeaturedListings .slick-track {
  display: flex;
}
#FeaturedListings .slick-list {
  margin: 0 -20px;
}
#FeaturedListings .swiper-slide {
  border-radius: 40px;
  background: var(--white, #fff);
  padding: 32px 32px 40px 32px;
  text-decoration: none;
}
#FeaturedListings .swiper-slide .item-img {
  border-radius: 16px;
  max-width: 250px;
  max-height: 250px;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#FeaturedListings .swiper-slide .item-short-info {
  margin-top: 24px;
}
#FeaturedListings .swiper-slide .item-short-info .item-name {
  color: var(--Pepper, #042f4b);
  font-family: Open Sans;
  font-size: 22px;
  font-style: normal;
  font-weight: 600;
  line-height: 26px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  /* number of lines to show */
  line-clamp: 2;
  -webkit-box-orient: vertical;
}
#FeaturedListings .swiper-slide .item-short-info-wrap {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
#FeaturedListings .swiper-slide .item-short-info-wrap .short-info-item {
  color: var(--Pepper, #042f4b);
  font-family: Open Sans;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  /* number of lines to show */
  line-clamp: 2;
  -webkit-box-orient: vertical;
}
#FeaturedListings .swiper-slide .languages {
  display: flex;
  align-items: center;
  gap: 8px;
}
#FeaturedListings .swiper-slide .item-description {
  margin-top: 32px;
  color: var(--Pepper, #042f4b);
  font-family: Open Sans;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
}
#FeaturedListings .swiper-slide .item-description p {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  /* number of lines to show */
  line-clamp: 2;
  -webkit-box-orient: vertical;
}

#HowItWorks .background {
  padding: 104px 66px 66px 66px;
  margin-bottom: 75px;
}

.stages-wrap {
  display: flex;
  justify-content: space-between;
  margin-bottom: 80px;
  align-items: flex-start;
}
.stages-wrap .stage {
  width: 100%;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.stages-wrap .stage img {
  max-height: 280px;
}
.stages-wrap .stage .stage-text {
  color: var(--Pepper, #042f4b);
  text-align: center;
  font-family: Open Sans;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.stages-wrap .stage:first-child {
  max-width: 350px;
}

#Testimonials {
  padding-bottom: 180px;
}
#Testimonials .slick-dots li button {
  background: url("../img/dot_outline_grey.svg") center center no-repeat;
}
#Testimonials .slick-dots li.slick-active button {
  background: url("../img/dot_grey.svg") center center no-repeat;
}
#Testimonials .heading__minor {
  margin-bottom: 50px;
}
#Testimonials .carousel-item {
  border-radius: 40px;
  background: var(--white, #fff);
  padding: 32px 32px 40px 32px;
  text-decoration: none;
  display: flex;
  align-items: center;
  flex-direction: column;
}
#Testimonials .carousel-item h3 {
  color: var(--Pepper, #042f4b);
  font-family: Open Sans;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
  margin-bottom: 14px;
}
#Testimonials .carousel-item .stars {
  display: flex;
  margin-bottom: 9px;
}
#Testimonials .carousel-item .text {
  color: var(--Pepper, #042f4b);
  text-align: center;
  font-family: Open Sans;
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
}

footer {
  background: var(--Beige, #fffaf4);
  padding-top: 32px;
}
footer .footer-wrap {
  display: flex;
  justify-content: space-between;
  padding: 0 75px;
}
footer .column {
  display: flex;
  flex-direction: column;
  gap: 17px;
  padding-top: 40px;
}
footer .column .header-column {
  font-family: Open Sans;
  font-size: 28px;
  font-style: normal;
  font-weight: 600;
  line-height: 32px;
  display: none;
  cursor: pointer;
  transition: 0.3s;
}
footer .column .header-column img {
  transition: 0.3s;
  rotate: 180deg;
}
footer .column .column-links {
  display: flex;
  flex-direction: column;
  gap: 17px;
}
footer .column .footer-link {
  color: var(--40, #999);
  font-family: Open Sans;
  font-size: 22px;
  font-style: normal;
  font-weight: 600;
  line-height: 26px;
  text-decoration: none;
}
footer .column .footer-logo {
  width: 130px;
  height: 130px;
  -o-object-fit: contain;
     object-fit: contain;
}
footer .column.center {
  padding-top: 0;
  align-items: center;
}
footer .copyright {
  color: var(--25, #bfbfbf);
  font-family: Open Sans;
  font-size: 22px;
  font-style: normal;
  font-weight: 600;
  line-height: 26px;
  padding-bottom: 25px;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}

.StripeElement {
  width: 100%;
  height: 32px;
  border: none;
  border-radius: 8px;
  outline: none;
  padding-left: 15px;
  background: #fff;
  display: flex;
  align-items: center;
}
.StripeElement .__PrivateStripeElement {
  width: 100%;
}

.socials {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 20px;
  margin-top: 10px;
}
.socials .social-item {
  width: 40px;
  height: 40px;
  background: #fab69d;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}
.socials .social-item img {
  width: 24px;
  height: 24px;
}
.socials .social-item:hover {
  background: var(--Mango);
}

.red_block {
  width: 100%;
  border: 0.5px solid var(--Mango, #f67147);
  background: rgba(246, 113, 71, 0.05);
  color: var(--Pepper);
  padding: 8px;
  border-radius: 8px;
  font-family: "Open Sans";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
  margin-bottom: 30px;
  box-shadow: 0px 4px 20px 0px rgba(255, 0, 0, 0.16);
}

.item-wrap .left .socials .social-item {
  background: #fde3da;
}

.select2-results__option {
  font-family: Open Sans;
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
  background: var(--Mango);
}

#SearchMobile {
  display: none;
  padding-top: 76px;
  overflow: hidden;
}
#SearchMobile .image {
  max-width: 516px;
  margin-top: 64px;
  position: relative;
  left: -27px;
}
#SearchMobile h2 {
  color: #000;
  text-align: center;
  font-family: Open Sans;
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%;
}
#SearchMobile h2 span {
  color: var(--Mango, #f67147);
}
#SearchMobile h3 {
  color: rgba(0, 0, 0, 0.6);
  font-family: Open Sans;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
  text-align: center;
  margin-top: 24px;
}
#SearchMobile .search-mobile {
  border-radius: 16px;
  background: #fef1ed;
  padding: 32px 24px;
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
#SearchMobile .search-mobile .input_label {
  color: rgba(43, 43, 43, 0.6);
  font-family: Open Sans;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
}
#SearchMobile .search-mobile .input_label .arrow {
  width: 24px;
  height: 24px;
  position: absolute;
  right: 10px;
  bottom: 12px;
}
#SearchMobile .search-mobile .input_label select {
  height: 48px;
  border-radius: 8px;
  border: 2px solid var(--40, #999);
  background: #fff;
  outline: none;
  padding: 0 10px 0 16px;
  color: var(--Pepper, #042f4b);
  font-family: Open Sans;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
}
#SearchMobile .search-mobile .input_label .select2-selection {
  min-height: 48px;
  height: -moz-fit-content;
  height: fit-content;
  border-radius: 8px;
  border: 2px solid var(--40, #999);
  background: #fff;
}
#SearchMobile .search-mobile .input_label .select2-selection .select2-search__field {
  margin-top: 0;
  margin-left: 0;
  height: 35px;
  padding-top: 13px;
  padding-bottom: 13px;
  padding-left: 16px;
  font-family: Open Sans;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
  color: var(--Pepper);
}
#SearchMobile .search-mobile .input_label .select2-selection .select2-search__field::-moz-placeholder {
  font-family: Open Sans;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
}
#SearchMobile .search-mobile .input_label .select2-selection .select2-search__field::placeholder {
  font-family: Open Sans;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
}
#SearchMobile .search-mobile .input-mobile {
  border-radius: 8px;
  border: 2px solid var(--40, #999);
  background: #fff;
  height: 48px;
  padding: 0 10px 0 16px;
  width: 100%;
  color: var(--Pepper);
  outline: none;
}
#SearchMobile .search-mobile .input-mobile::-moz-placeholder {
  color: #68727a;
  font-family: Open Sans;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
}
#SearchMobile .search-mobile .input-mobile::placeholder {
  color: #68727a;
  font-family: Open Sans;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
}
#SearchMobile .search-mobile .input-mobile.first {
  margin-bottom: 8px;
}
#SearchMobile .search-mobile .input-mobile.first::-moz-placeholder {
  text-align: center;
}
#SearchMobile .search-mobile .input-mobile.first::placeholder {
  text-align: center;
}
#SearchMobile .search-mobile .button {
  margin-top: 8px;
}

#Breadcrumbs {
  margin-top: 20px;
  margin-bottom: 32px;
}
#Breadcrumbs .breadcrumbs {
  display: flex;
  gap: 4px;
  align-items: center;
}
#Breadcrumbs .breadcrumbs .breadcrumb {
  color: var(--Pepper, #042f4b);
  font-family: Open Sans;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
  text-decoration: none;
}

h1.header {
  color: var(--Pepper, #042f4b);
  font-family: Open Sans;
  font-size: 36px;
  font-style: normal;
  font-weight: 600;
  line-height: 40px;
}

#Catalog {
  overflow: visible;
}

.catalog-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.catalog-header .catalog-buttons {
  display: flex;
  gap: 16px;
}
.catalog-header .catalog-buttons button {
  border: none;
  background: transparent;
  width: 32px;
  height: 32px;
  cursor: pointer;
}
.catalog-header .catalog-buttons button svg {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  transition: 0.3s;
}
.catalog-header .catalog-buttons button svg path {
  transition: 0.3s;
}
.catalog-header .catalog-buttons button.active#list path {
  fill: var(--Pepper);
}
.catalog-header .catalog-buttons button.active#grid path {
  stroke: var(--Pepper);
}
.catalog-header .catalog-buttons button.active#location path {
  stroke: var(--Pepper);
}
.catalog-header .catalog-buttons button:hover#list path {
  fill: var(--Pepper);
}
.catalog-header .catalog-buttons button:hover#grid path {
  stroke: var(--Pepper);
}
.catalog-header .catalog-buttons button:hover#location path {
  stroke: var(--Pepper);
}

.catalog-wrap {
  display: flex;
  gap: 80px;
  margin-top: 41px;
}
.catalog-wrap .catalog-filter {
  max-width: 277px;
  width: 100%;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.catalog-wrap .catalog-filter .filter_close {
  display: none;
}
.catalog-wrap .catalog-filter .filter-item .filter-header {
  color: var(--Pepper, #042f4b);
  font-family: Open Sans;
  font-size: 22px;
  font-style: normal;
  font-weight: 600;
  line-height: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
  cursor: pointer;
}
.catalog-wrap .catalog-filter .filter-item .filter-header img {
  transition: 0.3s;
  rotate: 180deg;
}
.catalog-wrap .catalog-filter .filter-item .filter-search {
  border-radius: 8px;
  border: 2px solid #d2d8e4;
  background: #fff;
  height: 48px;
  width: 100%;
  outline: none;
  transition: 0.3s;
  padding: 0 16px;
  color: var(--Pepper);
  font-family: Open Sans;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
  margin-bottom: 8px;
}
.catalog-wrap .catalog-filter .filter-item .filter-search::-moz-placeholder {
  color: var(--Gray-400, #68727a);
}
.catalog-wrap .catalog-filter .filter-item .filter-search::placeholder {
  color: var(--Gray-400, #68727a);
}
.catalog-wrap .catalog-filter .filter-item .filter-search:focus {
  border: 2px solid var(--Mango, #f67147);
}
.catalog-wrap .catalog-filter .filter-item .item {
  height: 24px;
  /* стили при наведении курсора на checkbox */
  /* стили для активного состояния чекбокса (при нажатии на него) */
  /* стили для чекбокса, находящегося в фокусе и не находящегося в состоянии checked */
}
.catalog-wrap .catalog-filter .filter-item .item label {
  height: 24px;
  cursor: pointer;
}
.catalog-wrap .catalog-filter .filter-item .item .custom-checkbox {
  position: absolute;
  z-index: -1;
  opacity: 0;
}
.catalog-wrap .catalog-filter .filter-item .item .custom-checkbox + label {
  display: inline-flex;
  align-items: center;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.catalog-wrap .catalog-filter .filter-item .item .custom-checkbox + label::before {
  content: "";
  display: inline-block;
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  flex-grow: 0;
  border: 2px solid #d2d8e4;
  border-radius: 4px;
  margin-right: 12px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%;
  transition: 0.3s;
}
.catalog-wrap .catalog-filter .filter-item .item .custom-checkbox:checked + label::before {
  border-color: var(--Mango);
  background-color: var(--Mango);
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M18.7099 7.20986C18.617 7.11613 18.5064 7.04174 18.3845 6.99097C18.2627 6.9402 18.132 6.91406 17.9999 6.91406C17.8679 6.91406 17.7372 6.9402 17.6154 6.99097C17.4935 7.04174 17.3829 7.11613 17.29 7.20986L9.83995 14.6699L6.70995 11.5299C6.61343 11.4366 6.49949 11.3633 6.37463 11.3141C6.24978 11.2649 6.11645 11.2408 5.98227 11.2431C5.84809 11.2454 5.71568 11.2741 5.5926 11.3276C5.46953 11.3811 5.35819 11.4583 5.26495 11.5549C5.17171 11.6514 5.0984 11.7653 5.04919 11.8902C4.99999 12.015 4.97586 12.1484 4.97818 12.2825C4.9805 12.4167 5.00923 12.5491 5.06272 12.6722C5.11622 12.7953 5.19343 12.9066 5.28995 12.9999L9.12995 16.8399C9.22291 16.9336 9.33351 17.008 9.45537 17.0588C9.57723 17.1095 9.70794 17.1357 9.83995 17.1357C9.97196 17.1357 10.1027 17.1095 10.2245 17.0588C10.3464 17.008 10.457 16.9336 10.55 16.8399L18.7099 8.67986C18.8115 8.58622 18.8925 8.47257 18.9479 8.34607C19.0033 8.21957 19.0319 8.08296 19.0319 7.94486C19.0319 7.80676 19.0033 7.67015 18.9479 7.54365C18.8925 7.41715 18.8115 7.3035 18.7099 7.20986Z' fill='white'/%3E%3C/svg%3E%0A");
}
.catalog-wrap .catalog-filter .filter-item .item .custom-checkbox:not(:disabled):not(:checked) + label:hover::before {
  border-color: var(--Mango__hover);
}
.catalog-wrap .catalog-filter .filter-item .item .custom-checkbox:not(:disabled):active + label::before {
  background-color: var(--Mango__active);
  border-color: var(--Mango__active);
}
.catalog-wrap .catalog-filter .filter-item .item .custom-checkbox:focus:not(:checked) + label::before {
  border-color: var(--Mango__hover);
}
.catalog-wrap .catalog-filter .filter-item .item label {
  color: var(--Gray-600, #50575c);
  font-family: Open Sans;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}
.catalog-wrap .catalog-filter .filter-item .filter-body {
  display: none;
}
.catalog-wrap .catalog-filter .filter-item .filter-variations-wrapper {
  padding: 14px 16px;
  border-radius: 8px;
  border: 1px solid rgba(210, 216, 228, 0.5);
  background: var(--white, #fff);
  box-shadow: 0px 4px 20px 0px rgba(79, 86, 105, 0.16);
}
.catalog-wrap .catalog-filter .filter-item .filter-variations {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-height: 247px;
  overflow: auto;
  padding-top: 1px;
  position: relative;
}
.catalog-wrap .catalog-filter .filter-item .filter-variations::-webkit-scrollbar {
  width: 4px;
}
.catalog-wrap .catalog-filter .filter-item .filter-variations::-webkit-scrollbar-track {
  background: transparent;
}
.catalog-wrap .catalog-filter .filter-item .filter-variations::-webkit-scrollbar-thumb {
  background-color: var(--Pepper);
  border-radius: 100px;
}
.catalog-wrap .catalog-filter .filter-item .filter-variations .splitter {
  width: calc(100% - 10px);
  height: 0.5px;
  background: var(--Pepper);
  display: list-item;
  margin-top: -6px;
  margin-bottom: -4px;
}
.catalog-wrap .catalog-filter .filter-item .filter-reset {
  color: #06f;
  font-family: Open Sans;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-decoration: underline;
  margin-top: 10px;
  cursor: pointer;
  text-underline-offset: 3px;
  width: -moz-fit-content;
  width: fit-content;
}
.catalog-wrap .catalog-items-wrapper {
  width: 100%;
}
.catalog-wrap .catalog-items {
  width: 100%;
  margin-bottom: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 23px;
}
.catalog-wrap .catalog-items .map {
  display: none;
  height: 700px;
  width: 100%;
  margin-bottom: 50px;
}
.catalog-wrap .catalog-items.location .catalog-item {
  display: none;
}
.catalog-wrap .catalog-items.location .map {
  display: block;
}
.catalog-wrap .catalog-items.grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}
.catalog-wrap .catalog-items.grid .catalog-item {
  max-width: 392px;
  height: -moz-fit-content;
  height: fit-content;
  border-radius: 32px;
  background: rgba(210, 216, 228, 0.2);
  padding: 24px;
  display: flex;
  gap: 24px;
  position: relative;
  text-decoration: none;
  height: 100%;
}
.catalog-wrap .catalog-items.grid .catalog-item .item-languages {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.catalog-wrap .catalog-items.grid .catalog-item .item-img {
  max-width: 81px;
  width: 100%;
  max-height: 81px;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
  position: absolute;
  left: 24px;
  top: 24px;
}
.catalog-wrap .catalog-items.grid .catalog-item.gold {
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(245, 112, 71, 0.1) 0%, rgba(191, 39, 72, 0.1) 100%);
}
.catalog-wrap .catalog-items.grid .catalog-item .item-name {
  color: var(--Pepper, #042f4b);
  font-family: Open Sans;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: 100px;
  word-break: break-all;
}
.catalog-wrap .catalog-items.grid .catalog-item .item-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.catalog-wrap .catalog-items.grid .catalog-item .item-language {
  display: block;
  max-width: 40px;
  max-height: 24px;
  margin-bottom: 18px;
}
.catalog-wrap .catalog-items.grid .catalog-item .item-heading .item-language {
  display: none;
}
.catalog-wrap .catalog-items.grid .catalog-item .item-executor .executor-name {
  display: flex;
  align-items: center;
  color: var(--Pepper, #042f4b);
  font-family: Open Sans;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: 100px;
  word-break: break-all;
}
.catalog-wrap .catalog-items.grid .catalog-item .item-executor .executor-location {
  margin-top: 30px;
  color: var(--Pepper, #042f4b);
  font-family: Open Sans;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
  display: flex;
  align-items: center;
}
.catalog-wrap .catalog-items.grid .catalog-item .item-area {
  color: var(--Pepper, #042f4b);
  font-family: Open Sans;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
}
.catalog-wrap .catalog-items.grid .catalog-item .item-area img {
  vertical-align: middle;
}
.catalog-wrap .catalog-items.grid .catalog-item .item-description {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  line-clamp: 4;
  -webkit-box-orient: vertical;
  color: var(--Pepper, #042f4b);
  font-family: Open Sans;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
}
.catalog-wrap .catalog-items.list .catalog-item {
  height: -moz-fit-content;
  height: fit-content;
  width: 100%;
  border-radius: 32px;
  background: rgba(210, 216, 228, 0.2);
  padding: 24px;
  display: flex;
  gap: 24px;
  text-decoration: none;
}
.catalog-wrap .catalog-items.list .catalog-item.gold {
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(245, 112, 71, 0.1) 0%, rgba(191, 39, 72, 0.1) 100%);
}
.catalog-wrap .catalog-items.list .catalog-item .item-img {
  width: 194px;
  height: 194px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
}
.catalog-wrap .catalog-items.list .catalog-item .item-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 700px;
}
.catalog-wrap .catalog-items.list .catalog-item .item-info .item-heading {
  display: flex;
  gap: 16px;
  align-items: center;
}
.catalog-wrap .catalog-items.list .catalog-item .item-info .item-heading .item-name {
  color: var(--Pepper, #042f4b);
  font-family: Open Sans;
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.catalog-wrap .catalog-items.list .catalog-item .item-info .item-heading .item-language {
  display: block;
}
.catalog-wrap .catalog-items.list .catalog-item .item-info .item-language {
  width: 40px;
  height: 24px;
  display: none;
}
.catalog-wrap .catalog-items.list .catalog-item .item-info .item-executor {
  display: flex;
  gap: 24px;
}
.catalog-wrap .catalog-items.list .catalog-item .item-info .item-executor .executor-name {
  display: flex;
  gap: 4px;
  align-items: center;
  color: var(--Pepper, #042f4b);
  font-family: Open Sans;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
}
.catalog-wrap .catalog-items.list .catalog-item .item-info .item-executor .executor-location {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--Pepper, #042f4b);
  font-family: Open Sans;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
}
.catalog-wrap .catalog-items.list .catalog-item .item-info .item-area {
  display: flex;
  gap: 4px;
  align-items: center;
  color: var(--Pepper, #042f4b);
  font-family: Open Sans;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
}
.catalog-wrap .catalog-items.list .catalog-item .item-info .item-area span {
  font-weight: 600;
}
.catalog-wrap .catalog-items.list .catalog-item .item-info .item-description {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  /* number of lines to show */
  line-clamp: 4;
  -webkit-box-orient: vertical;
  color: var(--Pepper, #042f4b);
  font-family: Open Sans;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
}

.pagination {
  margin: 0 auto;
  margin-bottom: 70px;
}
.pagination ul {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 16px;
  justify-content: center;
}
.pagination ul .paginationjs-page {
  border-radius: 8px;
  border: 1px solid var(--Border-input, #d2d8e4);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.3s;
  color: var(--Pepper, #042f4b);
  text-align: center;
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
}
.pagination ul .paginationjs-page a {
  color: var(--Pepper, #042f4b);
  text-align: center;
  font-family: Inter;
  font-size: 14px;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
  -webkit-touch-callout: none;
  /* iOS Safari */
  -webkit-user-select: none;
  /* Safari */
  /* Konqueror HTML */
  -moz-user-select: none;
  /* Old versions of Firefox */
  /* Internet Explorer/Edge */
  user-select: none;
  text-decoration: none;
}
.pagination ul .paginationjs-page.active {
  border-radius: 8px;
  background: var(--Mango, #f67147);
  border: 1px solid var(--Mango, #f67147);
  color: #fff;
}
.pagination ul .paginationjs-page.active:hover {
  background: #f67147;
}
.pagination ul .paginationjs-page:hover {
  background: rgba(246, 113, 71, 0.1);
}
.pagination ul .paginationjs-ellipsis {
  border-radius: 8px;
  border: 1px solid var(--Border-input, #d2d8e4);
  color: var(--Pepper, #042f4b);
  text-align: center;
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: default;
  -webkit-touch-callout: none;
  /* iOS Safari */
  -webkit-user-select: none;
  /* Safari */
  /* Konqueror HTML */
  -moz-user-select: none;
  /* Old versions of Firefox */
  /* Internet Explorer/Edge */
  user-select: none;
}
.pagination ul .paginationjs-next {
  border-radius: 8px;
  border: 1px solid var(--Border-input, #d2d8e4);
  color: var(--Pepper, #042f4b);
  text-align: center;
  font-family: Inter;
  font-size: 14px;
  width: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.3s;
  -webkit-touch-callout: none;
  /* iOS Safari */
  -webkit-user-select: none;
  /* Safari */
  /* Konqueror HTML */
  -moz-user-select: none;
  /* Old versions of Firefox */
  /* Internet Explorer/Edge */
  user-select: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pagination ul .paginationjs-next a {
  display: flex;
  align-items: center;
  justify-content: center;
}
.pagination ul .paginationjs-next.active {
  border-radius: 8px;
  background: var(--Mango, #f67147);
  border: 1px solid var(--Mango, #f67147);
  color: #fff;
}
.pagination ul .paginationjs-next.active:hover {
  background: #f67147;
}
.pagination ul .paginationjs-next:hover {
  background: rgba(246, 113, 71, 0.1);
}

#Item {
  overflow: visible;
  margin-bottom: 48px;
}

#image {
  display: block;
  /* This rule is very important, please don't ignore this */
  max-width: 100%;
}

.zindex {
  z-index: 2;
}

.item-wrap {
  display: flex;
  gap: 40px;
}
.item-wrap .left {
  max-width: 395px;
  width: 100%;
}
.item-wrap .left .item-img {
  width: 100%;
  max-width: 395px;
  height: 395px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
}
.item-wrap .left .views {
  color: rgba(4, 47, 75, 0.5);
  font-family: Open Sans;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
  margin-top: -6px;
}
.item-wrap .left .contacts {
  margin-bottom: 48px;
}
.item-wrap .left .contacts .links {
  display: flex;
  gap: 13px;
  margin-top: 25px;
  margin-bottom: 30px;
}
.item-wrap .left .contacts .links .link-wrapper {
  position: relative;
}
.item-wrap .left .contacts .links .contacts-link {
  height: 62px;
  padding: 0 26px;
  background: #fde3da;
  border: none;
  border-radius: 8px;
  color: var(--Pepper, #042f4b);
  font-family: Open Sans;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 22px;
  cursor: pointer;
  transition: 0.3s;
}
.item-wrap .left .contacts .links .contacts-link:hover {
  background: var(--Mango);
  color: #fff;
}
.item-wrap .left .contacts .location {
  display: flex;
  gap: 12px;
  color: var(--Pepper, #042f4b);
  font-family: Open Sans;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.item-wrap .right {
  display: flex;
  flex-direction: column;
  gap: 48px;
  width: 100%;
  max-width: 850px;
}
.item-wrap .right .item_name {
  color: var(--Pepper, #042f4b);
  font-family: "Open Sans";
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: 40px;
}
.item-wrap .right .item_block {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.item-wrap .right .item_block .language_list {
  display: flex;
  gap: 15px;
}
.item-wrap .right .item_block .language_list .language {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.item-wrap .right .item_block .language_list .language img {
  width: 70px;
  height: 42px;
  border: 0.5px solid #eee;
}
.item-wrap .right .item_block .language_list .language p {
  color: var(--Pepper, #042f4b);
  font-family: "Open Sans";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
}
.item-wrap .right .item_block .description {
  max-width: 850px;
}
.item-wrap .right .item_block .video {
  position: relative;
  height: 475px;
  border-radius: 8px;
  overflow: hidden;
}
.item-wrap .right .item_block .video .overlay {
  background: #000;
  width: 100%;
  height: 100%;
  position: absolute;
  background-size: cover !important;
  display: flex;
}
.item-wrap .right .item_block .video .overlay .play {
  width: 100px;
  height: 100px;
  background: var(--Mango, #f67147);
  border-radius: 50%;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  cursor: pointer;
  transition: 0.3s;
}
.item-wrap .right .item_block .video .overlay .play:hover {
  background: var(--Mango__hover);
}
.item-wrap .right .item_block .video .overlay .play svg {
  margin-left: 10px;
}
.item-wrap .right .item_block .photos {
  max-height: 285px;
  display: grid;
  gap: 11px;
  grid-template-areas: "A A A A   B B D D" "A A A A   C C E E";
}
.item-wrap .right .item_block .photos img:nth-child(1) {
  grid-area: A;
  max-height: 285px;
  max-width: 423px;
}
.item-wrap .right .item_block .photos img:nth-child(2) {
  grid-area: B;
  max-height: 136px;
}
.item-wrap .right .item_block .photos img:nth-child(3) {
  grid-area: C;
  max-height: 136px;
}
.item-wrap .right .item_block .photos img:nth-child(4) {
  grid-area: D;
  max-height: 136px;
}
.item-wrap .right .item_block .photos img:nth-child(5) {
  grid-area: E;
  max-height: 136px;
}
.item-wrap .right .item_block .photos img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  cursor: pointer;
}
.item-wrap .right .item_block .photos.reverse {
  grid-template-areas: "B B D D   A A A A" "C C E E   A A A A" !important;
}

.rating-area {
  overflow: hidden;
  width: 215px;
  display: none;
}

.rating-area:not(:checked) > input {
  display: none;
}

.rating-area:not(:checked) > label {
  float: right;
  width: 42px;
  padding: 0;
  cursor: pointer;
  font-size: 32px;
  line-height: 32px;
  color: lightgrey;
  text-shadow: 1px 1px #bbb;
}

.rating-area:not(:checked) > label:before {
  content: "★";
}

.rating-area > input:checked ~ label {
  color: gold;
  text-shadow: 1px 1px #c60;
}

.rating-area:not(:checked) > label:hover,
.rating-area:not(:checked) > label:hover ~ label {
  color: gold;
}

.rating-area > input:checked + label:hover,
.rating-area > input:checked + label:hover ~ label,
.rating-area > input:checked ~ label:hover,
.rating-area > input:checked ~ label:hover ~ label,
.rating-area > label:hover ~ input:checked ~ label {
  color: gold;
  text-shadow: 1px 1px goldenrod;
}

.rate-area > label:active {
  position: relative;
}

.label_wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.month_text {
  display: none;
}

.popup {
  height: 96px;
  background: #fff;
  padding: 0 28px 0 35px;
  border-radius: 24px;
  position: absolute;
  top: calc(100% + 10px);
  box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: center;
  display: none;
  z-index: 10;
}
.popup .text {
  color: var(--Pepper, #042f4b);
  font-family: "Open Sans";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
  white-space: nowrap;
}
.popup .triangle {
  position: absolute;
  width: 0;
  height: 0;
  left: 40px;
  top: -14px;
  bottom: 0;
  border-style: solid;
  border-width: 11px 7px 11px 0;
  border-color: transparent #fff transparent transparent;
  transform: rotate(90deg);
}
.popup .copy_button {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: #f6f6f6;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  margin-left: 37px;
  cursor: pointer;
  transition: 0.3s;
}
.popup .copy_button:hover {
  background: #f1f1f1;
}
.popup .copy_button .success {
  display: none;
}

.photos_viewer {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 10;
  background: #fff;
  display: none;
}
.photos_viewer .close {
  position: absolute;
  right: 32px;
  top: 32px;
  cursor: pointer;
}
.photos_viewer .center {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin-top: 36px;
}
.photos_viewer .item_name {
  color: var(--Pepper, #042f4b);
  font-family: "Open Sans";
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: 40px;
}
.photos_viewer .photos_carousel {
  max-width: 1820px;
  display: flex;
  align-items: center;
  margin: 0 auto;
  margin-top: 21px;
  margin-bottom: 66px;
}
.photos_viewer .photos_carousel .slick-slide {
  max-height: 612px;
  -o-object-fit: contain;
     object-fit: contain;
}
.photos_viewer .photos_carousel .slick-list {
  max-height: 612px;
  width: 100%;
}
.photos_viewer .photos_carousel .slick-track {
  max-height: 612px;
}
.photos_viewer .photos_carousel_nav {
  margin-top: 21px;
  margin-bottom: 66px;
}
.photos_viewer .photos_carousel_nav .slick-slide {
  height: 81px;
  max-width: 120px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  margin: 0 8px;
  border: 1px solid #042f4b;
  border-radius: 8px;
}
.photos_viewer .photos_carousel_nav .slick-slide.slick-current {
  border: 3px solid var(--Mango, #f67147);
}
.photos_viewer .photos_carousel_nav .slick-list {
  max-height: 81px;
  margin: 0 -9px;
}
.photos_viewer .photos_carousel_nav .slick-track {
  transform: translate3d(0px, 0px, 0px) !important;
  max-width: 700px;
}

.big_news {
  display: flex;
  gap: 37px;
  margin-bottom: 128px;
  text-decoration: none;
}
.big_news .text_block {
  display: flex;
  flex-direction: column;
  gap: 25px;
  max-width: 660px;
}
.big_news .text_block .text {
  display: -webkit-box;
  -webkit-line-clamp: 5;
  /* number of lines to show */
  line-clamp: 5;
  overflow: hidden;
  -webkit-box-orient: vertical;
}
.big_news .news_img {
  width: 100%;
  height: 100%;
  max-width: 885px;
  max-height: 560px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 16px;
}

.news_list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  row-gap: 93px;
  margin-bottom: 55px;
}
.news_list .news {
  display: flex;
  gap: 20px;
  text-decoration: none;
}
.news_list .news .text_block {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.news_list .news .text_block .h3 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  /* number of lines to show */
  line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
}
.news_list .news .text_block .text {
  color: var(--Pepper, #042f4b);
  font-family: Open Sans;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  /* number of lines to show */
  line-clamp: 5;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
}
.news_list .news .news_img {
  border-radius: 16px;
  max-width: 200px;
  max-height: 127px;
  -o-object-fit: cover;
     object-fit: cover;
}

.news_item_wrap {
  display: flex;
  gap: 80px;
  justify-content: space-between;
}
.news_item_wrap .title {
  color: var(--Pepper, #042f4b);
  font-family: "Open Sans";
  font-size: 48px;
  font-style: normal;
  font-weight: 600;
  line-height: 64px;
}
.news_item_wrap .text_block .text_value {
  font-family: "Open Sans";
  font-weight: 400;
  font-size: 18px;
  color: var(--Pepper);
}
.news_item_wrap .text_block .text_value p {
  font-family: "Open Sans";
  font-weight: 400;
  font-size: 18px;
  color: var(--Pepper);
}
.news_item_wrap .read_more {
  max-width: 430px;
  width: 100%;
}
.news_item_wrap .read_more .title_read_more {
  margin-bottom: 40px;
  color: var(--Pepper, #042f4b);
  font-family: "Open Sans";
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.news_item_wrap .read_more .read_more_list {
  display: flex;
  gap: 120px;
  flex-direction: column;
  margin-bottom: 75px;
}
.news_item_wrap .read_more .read_more_list .read_more_news {
  display: flex;
  flex-direction: column;
  gap: 15px;
  text-decoration: none;
}
.news_item_wrap .read_more .read_more_list .read_more_news .title {
  color: var(--Pepper, #042f4b);
  font-family: "Open Sans";
  font-size: 22px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
.news_item_wrap .read_more .read_more_list .read_more_news .text {
  color: var(--Pepper, #042f4b);
  font-family: "Open Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.small_container {
  max-width: 1300px;
}

.about_us_start {
  display: flex;
  gap: 70px;
  margin-bottom: 70px;
  width: 100%;
}
.about_us_start .text_block h2 {
  color: var(--Pepper, #042f4b);
  font-family: "Open Sans";
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%;
  margin-bottom: 10px;
}
.about_us_start .text_block h1 {
  color: var(--Pepper, #042f4b);
  font-family: "Open Sans";
  font-size: 80px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%;
  margin-bottom: 30px;
}
.about_us_start .text_block h1 span {
  color: var(--Mango, #f67147);
}
.about_us_start .text_block p {
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-size: 18px;
  text-align: justify;
  color: #042f4b;
}
.about_us_start .text_block .about_us_logo {
  margin-top: 14px;
  width: 142px;
  height: 138px;
  margin-bottom: 18px;
}
.about_us_start .text_block .text {
  word-break: break-all;
}
.about_us_start .about_us_img {
  width: 100%;
  max-height: 620px;
}
.about_us_start .about_us_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 32px;
}

#BlogItem .text_value {
  margin-bottom: 40px;
  margin-top: 20px;
}

#BlogItem .main_news_image {
  max-height: 600px;
  margin-top: 30px;
  width: 100%;
}

.about_us_middle {
  margin-top: 40px;
}
.about_us_middle:last-child {
  margin-bottom: 40px;
}
.about_us_middle h2 {
  color: var(--Pepper, #042f4b);
  font-family: "Open Sans";
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%;
  margin-bottom: 10px;
}
.about_us_middle .text_wrap {
  display: flex;
  gap: 70px;
}
.about_us_middle .text_wrap .text {
  word-break: break-all;
}
.about_us_middle .text_wrap p,
.about_us_middle .text_wrap li {
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-size: 18px;
  text-align: justify;
  color: #042f4b;
}
.about_us_middle .text_wrap img {
  max-height: 370px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 32px;
}

.question_block {
  width: 100%;
  border-radius: 32px;
  background: rgba(246, 113, 71, 0.15);
  padding: 55px 65px 40px 65px;
  position: relative;
}
.question_block .question_block_title {
  color: var(--Pepper, #042f4b);
  font-family: "Open Sans";
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%;
  margin-bottom: 22px;
}
.question_block .question_block_text {
  color: var(--Pepper, #042f4b);
  font-family: "Open Sans";
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 110%;
  margin-bottom: 48px;
}
.question_block .question_block_img {
  position: absolute;
  top: 0;
  right: 130px;
}

.faq_list {
  max-width: 760px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 60px;
}
.faq_list .question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 8px;
  padding: 0 8px 0 24px;
  border: 1px solid #d2d8e4;
  background: #fff;
  color: var(--Pepper, #042f4b);
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  position: relative;
  z-index: 2;
  transition: 0.3s;
}
.faq_list .question path {
  transition: 0.3s;
}
.faq_list .question svg {
  transition: 0.3s;
}
.faq_list .question.active {
  color: var(--Mango, #f67147);
}
.faq_list .question.active svg {
  transform: rotate(180deg);
}
.faq_list .question.active svg path {
  fill: var(--Mango);
}
.faq_list .answer {
  position: relative;
  margin-top: -10px;
  color: var(--Pepper, #042f4b);
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  border-radius: 0 0 8px 8px;
  border: 1px solid #d2d8e4;
  border-top: none;
  background: #fafafa;
  padding: 30px;
  z-index: 1;
  display: none;
}

.faq_wrap {
  display: flex;
  gap: 60px;
}

.faq_form_block {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-bottom: 60px;
}
.faq_form_block .faq_form {
  border-radius: 32px;
  background: rgba(4, 47, 75, 0.1);
  padding: 55px 65px;
}
.faq_form_block .faq_form .form_textarea {
  height: 136px;
  color: var(--Pepper, #042f4b);
  font-family: "Open Sans";
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 22px;
  margin-bottom: 15px;
}
.faq_form_block .faq_form .button {
  margin-top: 16px;
}
.faq_form_block .faq_form h2 {
  color: var(--Pepper, #042f4b);
  font-family: "Open Sans";
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%;
}
.faq_form_block .faq_form p {
  color: var(--Pepper, #042f4b);
  font-family: "Open Sans";
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 110%;
  margin-top: 22px;
  margin-bottom: 33px;
}

.form_textarea {
  width: 100%;
  resize: none;
  border-radius: 8px;
  background: #fffffe;
  border: none;
  padding: 12px 21px;
  outline: none;
  font-family: "Open Sans";
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 22px;
  color: var(--Pepper, #042f4b);
}
.form_textarea::-webkit-resizer {
  width: 11px;
  height: 11px;
  background-image: url("data:image/svg+xml,%3Csvg width='11' height='11' viewBox='0 0 11 11' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 0V9C11 10.1046 10.1046 11 9 11H0L11 0Z' fill='%23D2D8E4'/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
}
.form_textarea::-moz-placeholder {
  font-family: "Open Sans";
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 22px;
  color: var(--Pepper, #042f4b);
}
.form_textarea::placeholder {
  font-family: "Open Sans";
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 22px;
  color: var(--Pepper, #042f4b);
}
.form_textarea.bordered {
  border-radius: 8px;
  border: 1px solid #d2d8e4;
  height: 159px;
}
.form_textarea.resize {
  resize: vertical;
}

.form_label_wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.max_length {
  color: var(--Red-1, #ee3636);
  text-align: right;
  font-family: "Open Sans";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
  margin-bottom: 8px;
}

.select2-container {
  width: 100% !important;
  max-width: 770px;
}

.select2-container .select2-selection--single {
  height: 56px;
  display: flex;
  align-items: center;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  padding: 0 21px;
  color: var(--Pepper);
  font-family: "Open Sans";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
}

.select2-search--dropdown {
  display: none;
}

.select2-container--default .select2-selection--single {
  border-radius: 8px;
  border: 1px solid #d2d8e4;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
  border: none;
  background: url("/assets/img/arrow_down.svg");
  height: 24px;
  width: 24px;
  top: 0;
  bottom: 0;
  right: 16px;
  left: unset;
  margin: auto 0;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  top: 0;
  bottom: 0;
  margin: auto 0;
  right: 0;
}

.contact_us_form .form_label {
  font-size: 18px;
}

.form_label {
  color: var(--Pepper, #042f4b);
  font-family: "Open Sans";
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 22px;
  margin-bottom: 8px;
  display: block;
}

.form_input {
  border-radius: 8px;
  background: #fffffe;
  width: 100%;
  border: none;
  height: 62px;
  padding: 0 21px;
  outline: none;
  font-family: "Open Sans";
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 22px;
  color: var(--Pepper, #042f4b);
}
.form_input::-moz-placeholder {
  font-family: "Open Sans";
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 22px;
  color: var(--Pepper, #042f4b);
}
.form_input::placeholder {
  font-family: "Open Sans";
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 22px;
  color: var(--Pepper, #042f4b);
}
.form_input.bordered {
  border: 1px solid #d2d8e4;
  height: 56px;
}

.blog_block {
  padding: 55px 65px 45px 65px;
  border-radius: 32px;
  background: rgba(246, 113, 71, 0.15);
  position: relative;
}
.blog_block h2 {
  color: var(--Pepper, #042f4b);
  font-family: "Open Sans";
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%;
  margin-bottom: 22px;
  position: relative;
  z-index: 2;
}
.blog_block p {
  color: var(--Pepper, #042f4b);
  font-family: "Open Sans";
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 110%;
  margin-bottom: 48px;
  position: relative;
  z-index: 2;
}
.blog_block .blog_block_img {
  position: absolute;
  top: -30px;
  right: 55px;
}

.h1 {
  color: var(--Pepper, #042f4b);
  font-family: "Open Sans";
  font-size: 36px;
  font-style: normal;
  font-weight: 600;
  line-height: 40px;
}

#ContactUs h1 {
  margin-bottom: 30px;
}

.text-center {
  text-align: center;
}

.contact_us_form {
  max-width: 770px;
  width: 100%;
  gap: 24px;
  display: flex;
  flex-direction: column;
}
.contact_us_form .button {
  margin-top: 8px;
}
.contact_us_form .small_text {
  color: rgba(4, 47, 75, 0.5);
  font-family: "Open Sans";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
  margin-top: -8px;
}
.contact_us_form .small_text a {
  color: rgba(4, 47, 75, 0.5);
}

.contact_us_wrap {
  display: flex;
  gap: 50px;
  width: 100%;
  margin-bottom: 50px;
  justify-content: center;
}

.contact_us_blocks {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.nothing {
  display: none;
  color: var(--Gray-600, #50575c);
  font-family: Open Sans;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
  margin-top: 10px;
}

.contact_us_block {
  border-radius: 32px;
  background: rgba(4, 47, 75, 0.04);
  padding: 36px 54px;
  width: 100%;
  position: relative;
}
.contact_us_block h2 {
  color: var(--Pepper, #042f4b);
  font-family: "Open Sans";
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%;
  margin-bottom: 16px;
}
.contact_us_block p {
  color: var(--Pepper, #042f4b);
  font-family: "Open Sans";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 39px;
}
.contact_us_block .contact_us_block_image {
  position: absolute;
  top: 30px;
  right: 30px;
}
.contact_us_block .countact_us_copy {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
}
.contact_us_block .countact_us_copy .copied {
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  padding: 20px;
  background: #fff;
  border-radius: 8px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: calc(100% + 10px);
  margin: auto 0;
  color: var(--Pepper, #042f4b);
  font-family: "Open Sans";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  display: none;
}

.policy_wrap {
  gap: 20px;
  display: flex;
  margin-bottom: 80px;
}
.policy_wrap .text_block {
  color: var(--Pepper, #042f4b);
  font-family: Open Sans;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
  width: 100%;
}
.policy_wrap img {
  width: 100%;
  height: auto;
  max-height: 440px;
  -o-object-fit: contain;
     object-fit: contain;
}

.testimonial {
  border-radius: 40px;
  background: var(--white, #fff);
  padding: 32px 32px 40px 32px;
  text-decoration: none;
  display: flex;
  align-items: center;
  flex-direction: column;
}
.testimonial h3 {
  color: var(--Pepper, #042f4b);
  font-family: Open Sans;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
  margin-bottom: 14px;
}
.testimonial .stars {
  display: flex;
  margin-bottom: 9px;
}
.testimonial .text {
  color: var(--Pepper, #042f4b);
  text-align: center;
  font-family: Open Sans;
  font-size: 22px;
  font-style: normal;
  font-weight: 600;
  line-height: 26px;
}

.testimonials_wrap {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 70px;
  margin-bottom: 30px;
}

.restore_password_form {
  max-width: 550px;
  margin: 0 auto;
  display: flex;
  gap: 24px;
  flex-direction: column;
  margin-bottom: 60px;
}
.restore_password_form.login {
  max-width: 320px;
}
.restore_password_form .form_label {
  display: flex;
  align-items: center;
  gap: 12px;
}
.restore_password_form .form_label .question {
  width: 25px;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(4, 47, 75, 0.1);
  border-radius: 50%;
  position: relative;
  cursor: pointer;
}
.restore_password_form .form_label .question:hover .question_list {
  display: block;
}
.restore_password_form .form_label .question .question_list {
  display: none;
  width: 285px;
  padding: 16px;
  color: var(--Pepper, #042f4b);
  font-family: Open Sans;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
  border-radius: 8px;
  border: 1px solid var(--Pepper, #042f4b);
  background: #fffffe;
  position: absolute;
  top: -15px;
  left: 30px;
  z-index: 3;
}
.restore_password_form .success_message {
  color: #54a800;
  font-family: "Open Sans";
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 22px;
}
.restore_password_form .success_message a {
  color: #06f;
  font-family: "Open Sans";
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 22px;
  text-decoration: none;
}

.text_a {
  color: var(--Pepper, #042f4b);
  /* Body Accent */
  font-family: "Open Sans";
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 22px;
}

.form_input_wrap {
  position: relative;
}
.form_input_wrap .visibility {
  position: absolute;
  top: 12px;
  right: 24px;
  cursor: pointer;
}
.form_input_wrap .error {
  color: var(--Pepper, #042f4b);
  font-family: Open Sans;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
  color: #e83d3d;
}

#Login .text_a {
  margin-top: 32px;
  margin-bottom: 24px;
}

.forgot_password {
  color: var(--Pepper, #042f4b);
  font-family: "Open Sans";
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px;
  text-decoration: none;
  margin-top: -8px;
  border: none;
  background: transparent;
  width: -moz-fit-content;
  width: fit-content;
  cursor: pointer;
}

.modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  padding: 40px 40px 24px 40px;
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  background: #fff;
  border-radius: 32px;
  background: #fff;
  box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.06);
  z-index: 10;
  display: none;
}
.modal.crop_container {
  width: 80%;
  height: 80%;
}
.modal.crop_container .headline {
  margin-bottom: 10px;
}
.modal.crop_container .button {
  margin-top: 10px;
  margin-left: auto;
}
.modal .small_bold {
  color: var(--Pepper, #042f4b);
  font-family: "Open Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 22px;
  margin-bottom: 5px;
}
.modal .form_label {
  font-weight: 400;
}
.modal.small {
  max-width: 482px;
}
.modal .bold {
  color: var(--Pepper, #042f4b);
  font-family: "Open Sans";
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
  display: block;
}
.modal p.text_red {
  color: var(--Crimson, #e83d3d);
  font-family: "Open Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 22px;
}
.modal p.text_normal {
  color: var(--Pepper, #042f4b);
  font-family: "Open Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
  margin-top: 5px;
}
.modal p.text_orange {
  color: var(--Crimson, #e83d3d);
  font-family: "Open Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
  display: block;
  margin-top: 5px;
}
.modal .ok_button {
  margin-top: 40px;
}
.modal .grey_text {
  color: rgba(4, 47, 75, 0.4);
  font-family: "Open Sans";
  font-size: 15px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
.modal .grey_text a {
  color: rgba(4, 47, 75, 0.4);
  font-family: "Open Sans";
  font-size: 15px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
.modal .buttons_restore {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 5px;
}
.modal .buttons_restore .forgot_password {
  margin-top: 0;
}
.modal .buttons_restore .link {
  color: var(--Pepper, #042f4b);
  text-align: center;
  font-family: "Open Sans";
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: 16px;
  text-decoration: none;
  border: none;
  background: transparent;
  cursor: pointer;
}
.modal#LoginModal .headline, .modal#RegisterModal .headline {
  margin-bottom: 30px;
  font-size: 22px;
}
.modal#LoginModal .restore_password_form, .modal#RegisterModal .restore_password_form {
  margin-bottom: 0;
  gap: 10px;
}
.modal#LoginModal .restore_password_form .first_step, .modal#RegisterModal .restore_password_form .first_step {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.modal#LoginModal .restore_password_form button, .modal#RegisterModal .restore_password_form button {
  margin-top: 10px;
}
.modal#LoginModal .second_step, .modal#RegisterModal .second_step {
  display: none;
  flex-direction: column;
  align-items: center;
}
.modal#LoginModal .second_step img, .modal#RegisterModal .second_step img {
  margin-bottom: 37px;
}
.modal#LoginModal .second_step .buttons_restore, .modal#RegisterModal .second_step .buttons_restore {
  margin-top: 15px;
}
.modal#LoginModal .second_step p, .modal#RegisterModal .second_step p {
  color: rgba(4, 47, 75, 0.5);
  font-family: "Open Sans";
  font-size: 15px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
.modal#LoginModal .second_step p a, .modal#RegisterModal .second_step p a {
  color: #06f;
  font-family: "Open Sans";
  font-size: 15px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-decoration-line: underline;
}
.modal .headline {
  color: #242424;
  text-align: center;
  font-family: "Open Sans";
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 22px;
}
.modal .first_step {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 320px;
}
.modal .first_step .buttons_restore {
  margin-top: 16px;
}
.modal.modal_login {
  max-width: 400px;
  width: 100%;
}
.modal .second_step {
  display: flex;
  flex-direction: column;
  align-items: center;
  display: none;
}
.modal.modal_restore {
  max-width: 400px;
  width: 100%;
  flex-direction: column;
  align-items: center;
  min-height: 385px;
}
.modal.modal_restore img {
  margin-top: 16px;
  margin-bottom: 24px;
}
.modal.modal_restore .restore_text {
  color: var(--Pepper, #042f4b);
  text-align: center;
  font-family: "Open Sans";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
  display: inline;
  margin-bottom: 50px;
}
.modal.modal_restore .restore_text a {
  color: var(--Pepper, #042f4b);
  font-family: Open Sans;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
  color: #06f;
  text-decoration: none;
}
.modal .card {
  border-radius: 12px;
  background: lightgray -921.793px -336.291px/662.069% 603.352% no-repeat;
  height: 202px;
  padding: 15px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: flex-end;
  justify-content: flex-end;
  margin-top: 40px;
}
.modal .card .card_input {
  width: 100%;
  height: 32px;
  border: none;
  border-radius: 8px;
  outline: none;
  padding-left: 15px;
  line-height: 18px;
  font-size: 12px;
}
.modal .card .card_input_wrap {
  width: 100%;
  display: flex;
  gap: 15px;
}
.modal .radio_buttons {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-top: 40px;
}
.modal .policy_agrement {
  color: var(--Pepper, #042f4b);
  font-family: Inter;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  display: block;
  opacity: 0.7;
  margin-top: 8px;
  margin-bottom: 40px;
}
.modal .policy_agrement a {
  color: var(--Pepper, #042f4b);
  font-family: Inter;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  display: inline;
}

.overlay {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  background: rgba(0, 0, 0, 0.3);
  display: none;
}

.video .overlay {
  z-index: 4;
}

.form_radio {
  width: 100%;
  /* для элемента label связанного с .custom-radio */
  /* создание в label псевдоэлемента  before со следующими стилями */
  /* стили для радиокнопки, находящейся в фокусе и не находящейся в состоянии checked */
  /* стили для радиокнопки, находящейся в состоянии checked */
  /* стили для радиокнопки, находящейся в состоянии disabled */
}
.form_radio.price .custom-radio + label {
  color: var(--Pepper, #042f4b);
  font-family: "Open Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 22px;
  width: 100%;
  align-items: flex-start;
}
.form_radio.price .custom-radio + label .label_wrap {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.form_radio.price .custom-radio + label .label_wrap .upper {
  display: flex;
  justify-content: space-between;
}
.form_radio.price .custom-radio + label .label_wrap .upper .wrap {
  display: flex;
}
.form_radio.price .custom-radio + label .label_wrap .upper .wrap p {
  white-space: nowrap;
}
.form_radio.price .custom-radio + label .label_wrap .bottom {
  color: var(--Pepper, #042f4b);
  font-family: "Open Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
  text-decoration-line: strikethrough;
}
.form_radio.price .custom-radio + label .sale {
  border-radius: 4px;
  background: rgba(4, 47, 75, 0.2);
  color: var(--Pepper, #042f4b);
  padding: 0 4px;
  margin-left: 10px;
}
.form_radio.price .custom-radio + label .right_side {
  color: var(--Pepper, #042f4b);
  font-family: "Open Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
  text-align: end;
  white-space: nowrap;
  margin-left: 10px;
}
.form_radio.price .custom-radio + label .right_side span {
  margin-left: 0;
}
.form_radio.disabled {
  opacity: 0.3;
}
.form_radio .custom-radio {
  position: absolute;
  z-index: -1;
  opacity: 0;
}
.form_radio .custom-radio + label {
  display: inline-flex;
  align-items: center;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  color: var(--Pepper, #042f4b);
  font-family: "Open Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
  cursor: pointer;
}
.form_radio .custom-radio + label span {
  color: var(--Crimson, #e83d3d);
}
.form_radio .custom-radio + label::before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  flex-grow: 0;
  border: 1.5px solid #042f4b;
  border-radius: 50%;
  margin-right: 0.5em;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 150% 150%;
}
.form_radio .custom-radio:focus:not(:checked) + label::before {
  border-color: #80bdff;
}
.form_radio .custom-radio:checked + label::before {
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10.0047 14C11.1127 14 12.0556 13.6095 12.8333 12.8286C13.6111 12.0477 14 11.1033 14 9.99529C14 8.88732 13.6095 7.94444 12.8286 7.16667C12.0477 6.38889 11.1033 6 9.99529 6C8.88732 6 7.94444 6.39046 7.16667 7.17138C6.38889 7.95229 6 8.89674 6 10.0047C6 11.1127 6.39046 12.0556 7.17138 12.8333C7.95229 13.6111 8.89674 14 10.0047 14Z' fill='%23042F4B'/%3E%3C/svg%3E%0A");
}
.form_radio .custom-radio:disabled + label::before {
  background-color: #e9ecef;
}

#AcceptEmail h1 {
  color: var(--Pepper, #042f4b);
  font-family: "Open Sans";
  font-size: 48px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
  text-align: center;
  margin-top: 56px;
}
#AcceptEmail p {
  color: var(--Pepper, #042f4b);
  text-align: center;
  font-family: "Open Sans";
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 22px;
  text-align: center;
  max-width: 730px;
  margin: 0 auto;
  margin-top: 48px;
}
#AcceptEmail .link {
  display: block;
  color: #06f;
  text-align: center;
  font-family: "Open Sans";
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 22px;
  margin: 0 auto;
  margin-top: 40px;
  margin-bottom: 120px;
}
#AcceptEmail button {
  margin: 0 auto;
  margin-top: 56px;
  margin-bottom: 120px;
}
#AcceptEmail.page-not-found a {
  color: var(--white);
  font-family: Open Sans;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 22px;
  display: flex;
  max-width: 300px;
  padding: 0 40px;
}

.class_premium_video {
  margin-bottom: 16px;
}

#AcceptEmail .error404 {
  color: var(--Pepper, #042f4b);
  font-family: "Open Sans";
  font-size: 128px;
  font-style: normal;
  font-weight: 600;
  line-height: 128px;
}

#AcceptEmail.page-not-found h1 {
  margin-top: 24px;
  color: var(--Pepper, #042f4b);
  font-family: "Open Sans";
  font-size: 28px;
  font-style: normal;
  font-weight: 600;
  line-height: 32px;
}
#AcceptEmail.page-not-found p {
  color: var(--Pepper, #042f4b);
  font-family: "Open Sans";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
  margin-top: 16px;
}
#AcceptEmail.page-not-found button {
  height: 54px;
}

.heading_wrap_profile_create {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.heading_wrap_profile_create a {
  color: #06f;
  font-family: "Open Sans";
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 22px;
  text-decoration: none;
}

.text_after_heading_profile {
  margin-top: 16px;
  color: var(--Pepper, #042f4b);
  font-family: Open Sans;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
  max-width: 330px;
}

.form_job_wrap {
  margin-top: 56px;
  display: flex;
  flex-direction: column;
  gap: 62px;
  margin-bottom: 48px;
}
.form_job_wrap h2 {
  color: var(--Pepper, #042f4b);
  font-family: "Open Sans";
  font-size: 28px;
  font-style: normal;
  font-weight: 600;
  line-height: 32px;
}
.form_job_wrap .form_job_block {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.form_job_wrap .form_job_block .button {
  margin-top: 16px;
  width: 235px;
}
.form_job_wrap .form_job_block .error {
  color: #e83d3d;
  font-family: "Open Sans";
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: 16px;
}
.form_job_wrap .form_job_item {
  display: flex;
  flex-direction: column;
  position: relative;
}
.form_job_wrap .form_job_item .example {
  font-family: "Open Sans";
  font-size: 12px;
  font-weight: 300;
  line-height: 22px;
  color: #939393;
}
.form_job_wrap .form_job_item .form_input {
  max-width: 550px;
  margin-top: 8px;
}
.form_job_wrap .form_job_item.textarea {
  max-width: 850px;
}
.form_job_wrap .form_job_item .form_textarea {
  max-width: 850px;
  margin-top: 8px;
}
.form_job_wrap .form_job_item .bottom {
  color: #999;
  font-family: "Open Sans";
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 22px;
  max-width: 550px;
  text-align: end;
}
.form_job_wrap .form_job_item .select2-container {
  max-width: 550px;
  margin-top: 8px;
}
.form_job_wrap .form_job_item .custom_file_label {
  color: var(--Pepper, #042f4b);
  font-family: "Open Sans";
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
}
.form_job_wrap .form_job_item .form_job_label {
  color: var(--Pepper, #042f4b);
  font-family: "Open Sans";
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 22px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.form_job_wrap .form_job_item .form_job_label .question {
  width: 25px;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(4, 47, 75, 0.1);
  border-radius: 50%;
  position: relative;
  cursor: pointer;
}
.form_job_wrap .form_job_item .form_job_label .question:hover .question_list {
  display: block;
}
.form_job_wrap .form_job_item .form_job_label .question .question_list {
  display: none;
  width: 385px;
  padding: 16px;
  color: var(--Pepper, #042f4b);
  font-family: Open Sans;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0px 4px 20px 0px rgba(79, 86, 105, 0.16);
  position: absolute;
  top: -15px;
  left: 30px;
  z-index: 3;
}

.custom_file {
  border-radius: 8px;
  border: 1px dashed var(--Border-button, #dadce3);
  width: 135px;
  height: 100px;
  display: block;
  margin-top: 19px;
  padding: 4px;
  cursor: pointer;
}
.custom_file:hover .custom_file_background {
  background: #f2f3f6;
}
.custom_file input {
  opacity: 0;
  position: absolute;
  left: 0;
  width: 0;
  height: 0;
}
.custom_file .custom_file_background {
  transition: 0.3s;
  border-radius: 8px;
  background: #fafbfd;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.status {
  border-radius: 4px;
  border-radius: 4px;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0 20px;
  height: 30px;
  display: flex;
  align-items: center;
  color: var(--Main-white, #fffffe);
  font-family: "Open Sans";
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 22px;
  text-transform: uppercase;
}
.status.published {
  background: #a2bc00;
}
.status.rework {
  background: #0094ff;
}
.status.moderation {
  background: #ffa63e;
}
.status.blocked {
  background: #e52900;
}
.status.grey {
  background: #9f9f9f;
}

.profile_block.moderator_message {
  display: flex;
  flex-direction: column;
  gap: 16px;
  border: 1px solid var(--Mango);
  margin-bottom: 30px;
}
.profile_block.moderator_message .rewok_message_label {
  margin: 0;
  font-size: 16px;
}
.profile_block.moderator_message .moderator_message_text {
  color: var(--Pepper, #042f4b);
  font-family: "Open Sans";
  font-size: 14px;
}

.d-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.d-flex .max_length {
  margin-bottom: 0;
}

.mt16 {
  margin-top: 16px;
}

#Profile {
  overflow: visible;
}

.profile_block {
  border-radius: 32px;
  background: #fff;
  box-shadow: 0px 4px 20px 0px rgba(79, 86, 105, 0.16);
  padding: 32px;
  display: flex;
  gap: 32px;
}
.profile_block .main_image {
  border-radius: 16px;
  max-width: 322px;
  max-height: 322px;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.profile_block .main_info {
  width: 100%;
}
.profile_block .main_info .head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.profile_block .main_info .head .left {
  display: flex;
  align-items: center;
  gap: 26px;
}
.profile_block .main_info .head .left .status {
  border-radius: 8px;
}
.profile_block .main_info .head .left .views {
  border-radius: 8px;
  border: 1px solid var(--Pepper, #042f4b);
  color: var(--Pepper, #042f4b);
  font-family: Open Sans;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
  padding: 0 13px;
  height: 28px;
  display: flex;
  align-items: center;
}
.profile_block .main_info .body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  margin-top: 30px;
}
.profile_block .main_info .body .item .name_field {
  color: var(--Pepper, #042f4b);
  font-family: Open Sans;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
  color: rgba(4, 47, 75, 0.5);
}
.profile_block .main_info .body .item .value_field {
  color: var(--Pepper, #042f4b);
  font-family: "Open Sans";
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 22px;
  display: inline;
}
.profile_block .main_info .body .item .value_field .text_value {
  max-height: 46px;
  text-overflow: ellipsis;
  /* white-space: nowrap; */
  max-width: 560px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}
.profile_block .main_info .body .item .value_field .text_value.open {
  max-height: unset;
  -webkit-line-clamp: unset;
  line-clamp: unset;
}
.profile_block .main_info .body .item .value_field a {
  color: #06f;
  font-family: "Open Sans";
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 22px;
  text-decoration: none;
}

.subscribition_error {
  color: red;
  font-family: "Open Sans";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
  display: none;
  position: relative;
  margin-top: 10px;
}

.settings_menu {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  transition: 0.3s;
  position: relative;
}
.settings_menu:hover .menu {
  display: block;
}
.settings_menu .menu {
  border-radius: 8px;
  background: #fff;
  box-shadow: 0px 1px 2px 1px rgba(0, 0, 0, 0.1);
  width: -moz-fit-content;
  width: fit-content;
  position: absolute;
  top: 100%;
  right: 0;
  display: none;
}
.settings_menu .menu form {
  width: 100%;
}
.settings_menu .menu .item {
  padding: 0 27px;
  display: flex;
  width: 100%;
  align-items: center;
  height: 40px;
  color: var(--Pepper, #042f4b);
  font-family: "Open Sans";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
  text-decoration: none;
  border: none;
  background: transparent;
  transition: 0.3s;
  white-space: nowrap;
  cursor: pointer;
}
.settings_menu .menu .item:hover {
  background: rgba(4, 47, 75, 0.03);
}
.settings_menu:hover {
  background: #f2f5f6;
  cursor: pointer;
}

.InputElement {
  background: #fff;
}

#card-element {
  border-radius: 12px;
  background: lightgray -921.793px -336.291px/662.069% 603.352% no-repeat;
  height: 202px;
  padding: 15px;
  margin-top: 40px;
}

.mb16 {
  margin-bottom: 16px;
}

#SelectLanguage .select2 {
  margin-top: 16px;
  margin-bottom: 16px;
}

.subscribe_wrap {
  margin-top: 30px;
  display: flex;
  gap: 50px;
  margin-bottom: 60px;
}
.subscribe_wrap .subscribe_block {
  width: 100%;
  padding: 38px;
  border-radius: 32px;
  background: var(--Main-white, #fffffe);
  box-shadow: 0px 4px 20px 0px rgba(79, 86, 105, 0.16);
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.subscribe_wrap .subscribe_block .left {
  display: flex;
  gap: 12px;
  align-items: center;
}
.subscribe_wrap .subscribe_block .subscribe_block_head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.subscribe_wrap .subscribe_block .subscribe_block_card_list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.subscribe_wrap .subscribe_block .subscribe_block_card_list p {
  color: var(--Pepper, #042f4b);
  font-family: "Open Sans";
  font-size: 22px;
  font-style: normal;
  font-weight: 600;
  line-height: 26px;
  display: flex;
  gap: 25px;
}
.subscribe_wrap .subscribe_block .subscribe_block_card_list p span {
  color: var(--Crimson, #e83d3d);
}
.subscribe_wrap .subscribe_block .form_premium {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.subscribe_wrap .subscribe_block .form_premium.disabled {
  opacity: 0.3;
}
.subscribe_wrap .subscribe_block .form_premium .form_item {
  display: flex;
  flex-direction: column;
}
.subscribe_wrap .subscribe_block .form_premium .form_item.list_links {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.subscribe_wrap .subscribe_block .form_premium .form_item .h3 {
  width: -moz-fit-content;
  width: fit-content;
}
.subscribe_wrap .subscribe_block .form_premium .form_item .language_wrap {
  margin-top: 8px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.subscribe_wrap .subscribe_block .form_premium .form_item .language_wrap .add_language {
  border-radius: 16px;
  border: 0.5px solid var(--Pepper, #042f4b);
  background: #fff;
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  align-items: center;
  padding: 0 8px 0 16px;
  color: var(--Pepper, #042f4b);
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 900;
  line-height: 24px;
  cursor: pointer;
  height: 32px;
}
.subscribe_wrap .subscribe_block .form_premium .form_item .language_wrap .add_language.disabled {
  opacity: 0.5;
  cursor: default;
}
.subscribe_wrap .subscribe_block .form_premium .form_item .language_wrap .add_language:disabled {
  cursor: default;
}
.subscribe_wrap .subscribe_block .form_premium .form_item .language_wrap .language {
  color: var(--Pepper, #042f4b);
  font-family: "Open Sans";
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 22px;
  border-radius: 16px;
  border: 0.5px solid var(--Pepper, #042f4b);
  background: #fff;
  width: -moz-fit-content;
  width: fit-content;
  height: 32px;
  display: flex;
  align-items: center;
  padding: 0 8px 0 16px;
}
.subscribe_wrap .subscribe_block .form_premium .form_item .language_wrap .language .deleteLang {
  border: none;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.subscribe_wrap .subscribe_block .form_premium .form_item .custom_file {
  width: 122px;
  height: 89px;
  margin-top: 0;
}
.subscribe_wrap .subscribe_block .form_premium .form_item .custom_file.single {
  margin-top: 8px;
}
.subscribe_wrap .subscribe_block .form_premium .form_item .label_custom {
  position: relative;
  max-width: 350px;
}
.subscribe_wrap .subscribe_block .form_premium .form_item .label_custom p {
  position: absolute;
  height: -moz-fit-content;
  height: fit-content;
  top: 7px;
  bottom: 0;
  left: 13px;
  padding: 0 3px;
  background: #fff;
  transition: 0.3s;
  cursor: text;
  color: var(--Pepper, #042f4b);
  font-family: "Open Sans";
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 22px;
}
.subscribe_wrap .subscribe_block .form_premium .form_item .label_custom .custom_input {
  border-radius: 8px;
  border: 0.5px solid var(--Pepper, #042f4b);
  background: #fff;
  height: 36px;
  padding-left: 13px;
  outline: none;
  width: 100%;
}
.subscribe_wrap .subscribe_block .form_premium .form_item .images_wrap {
  display: flex;
  flex-wrap: wrap;
  margin-top: 8px;
  gap: 20px;
}
.subscribe_wrap .subscribe_block .form_premium .form_item .images_wrap .image_preview {
  width: 122px;
  height: 89px;
  position: relative;
}
.subscribe_wrap .subscribe_block .form_premium .form_item .images_wrap .image_preview .delete {
  border-radius: 8px;
  background: #ff5145;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 8px;
  right: 8px;
  cursor: pointer;
  transition: 0.3s;
  border: none;
}
.subscribe_wrap .subscribe_block .form_premium .form_item .images_wrap .image_preview .delete:hover {
  background: #e74a3f;
}
.subscribe_wrap .subscribe_block .form_premium .form_item .images_wrap .image_preview img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
}
.subscribe_wrap .subscribe_block .form_premium .form_item .error {
  color: var(--Crimson, #e83d3d);
  font-family: "Open Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 22px;
  margin-top: 10px;
}
.subscribe_wrap .subscribe_block .premium_possibility {
  margin-top: 8px;
  width: 124px;
  height: 89px;
}
.subscribe_wrap.column {
  width: 100%;
  flex-direction: column;
  margin-top: 0;
  margin-bottom: 0;
}

.disabled_prem {
  opacity: 0.3;
}

#AboutUs li {
  margin-left: 24px;
}

.payment_info {
  border-radius: 12px;
  border: 0.5px solid var(--Mango, #f67147);
  background: rgba(246, 113, 71, 0.05);
  padding: 21px 30px 30px 30px;
}
.payment_info h3 {
  color: var(--Pepper, #042f4b);
  font-family: "Open Sans";
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 10px;
}
.payment_info .desc {
  color: var(--Pepper, #042f4b);
  font-family: "Open Sans";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
  margin-bottom: 37px;
}
.payment_info .price {
  color: var(--Pepper, #042f4b);
  font-family: "Open Sans";
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 22px;
  margin-bottom: 18px;
}
.payment_info .price span {
  color: var(--Pepper, #042f4b);
  font-family: Open Sans;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
}

.profile_map {
  height: 520px;
}

.price-tag {
  background-color: #e83d3d;
  border-radius: 8px;
  color: #ffffff;
  font-size: 14px;
  padding: 10px 15px;
  position: relative;
  font-weight: 600;
  font-size: 18px;
  line-height: 122%;
  font-family: "Open Sans";
}

.price-tag::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translate(-50%, 0);
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 8px solid #e83d3d;
}

.profile_marker {
  position: relative;
}
.profile_marker .icon path {
  transition: 0.3s;
}
.profile_marker.active .icon path {
  fill: #bc2727;
}
.profile_marker .popup_profile {
  position: absolute;
  border: 1px solid rgba(4, 47, 75, 0.6);
  border-radius: 16px;
  background: #fff;
  padding: 15px 30px 20px 30px;
  min-width: 500px;
  display: none;
  bottom: 20px;
  left: -50px;
  z-index: 1;
}
.profile_marker .popup_profile_languages {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}
.profile_marker .popup_profile.gold {
  background: linear-gradient(180deg, #FEF1ED 0%, #F9E9ED 100%);
}
.profile_marker .popup_profile_close {
  position: absolute;
  top: 15px;
  right: 30px;
  cursor: pointer;
}
.profile_marker .popup_profile .button {
  height: 46px;
  font-weight: 400;
  font-size: 18px;
  margin-top: 27px;
}
.profile_marker .popup_profile_category {
  font-weight: 700;
  font-size: 28px;
  font-family: "Open Sans";
  color: var(--Pepper);
}
.profile_marker .popup_profile_text {
  font-family: "Open Sans";
  font-weight: 400;
  font-size: 14px;
  line-height: 157%;
  color: var(--Pepper);
}
.profile_marker .popup_profile_text span {
  font-weight: 600;
}
.profile_marker .popup_profile_text.mb30 {
  margin-bottom: 30px;
  margin-top: 4px;
}

.show_filters_mobile {
  display: none;
}

.promocode_wrap {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
  margin-top: 10px;
}
.promocode_wrap button {
  height: 56px;
}
.promocode_wrap .error {
  display: none;
}

.promocode_error {
  color: red;
  font-family: "Open Sans";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
  display: none;
  position: relative;
  top: -8px;
}

.error_form {
  color: red;
  font-family: "Open Sans";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
}

.loading_button {
  width: 100%;
  height: 60px;
  -o-object-fit: contain;
     object-fit: contain;
  display: none;
}

.header-wrap .mobile_button {
  padding: 0 10px;
}

.header-wrap .buttons_wrap {
  display: none;
  gap: 10px;
}

@media (max-width: 1600px) {
  header,
  footer,
  main {
    zoom: 75%;
  }
  .select2-dropdown {
    width: 412.5px !important;
    margin-top: -15px;
    font-size: 12px;
  }
  .stages-wrap .stage img {
    width: 270px;
  }
  footer .column .footer-logo {
    width: 120px;
    height: 120px;
  }
  .background .heading__minor {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .search-wrap .left {
    background: rgba(255, 255, 255, 0.6);
    border-radius: 20px;
  }
  #FeaturedListings .carousel .carousel-next {
    padding-left: 15px;
  }
  #FeaturedListings .carousel .carousel-prev {
    padding-right: 15px;
  }
  .big_news .news_img {
    max-width: 600px;
  }
  @supports (-webkit-appearance: none) and (stroke-color: transparent) {
    body {
      zoom: 75%;
    }
    header, footer, main {
      zoom: 100%;
    }
    .select2-dropdown {
      width: 550px !important;
      margin-top: 0;
    }
  }
}
@media (max-width: 1300px) {
  .header-wrap .center-links {
    gap: 50px;
  }
  .testimonials_wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
  }
  .catalog-wrap .catalog-items.grid {
    grid-template-columns: 1fr 1fr;
  }
  .stages-wrap .stage img {
    width: 240px;
  }
  .stages-wrap .stage .stage-text {
    font-size: 24px;
  }
  #Testimonials .carousel .carousel-item {
    padding: 0;
  }
  #Testimonials .carousel .carousel-next {
    padding-left: 15px;
  }
  #Testimonials .carousel .carousel-prev {
    padding-right: 15px;
  }
  .blog_block .blog_block_img {
    display: none;
  }
  .policy_wrap {
    flex-direction: column;
    align-items: center;
    margin-bottom: 40px;
  }
  .policy_wrap img {
    max-height: 400px;
  }
  @supports (-webkit-appearance: none) and (stroke-color: transparent) {
    body {
      zoom: 75%;
    }
    header, footer, main {
      zoom: 100%;
    }
    .select2-dropdown {
      width: 550px !important;
      margin-top: 0;
    }
  }
}
@media (max-width: 992px) {
  .header-wrap {
    height: 113px;
  }
  .header-wrap .logo {
    height: 75px;
    width: 75px;
  }
  .header-wrap .center-links {
    display: none;
  }
  .header-wrap .right-links {
    display: none;
  }
  .header-wrap .mobile_button {
    display: flex;
  }
  #Testimonials .carousel-item {
    max-width: 600px;
  }
  .featured_listings {
    justify-content: center;
    margin: 0 auto;
  }
  .search-wrap {
    flex-direction: column;
  }
  .search-wrap .right img {
    position: static;
    margin-top: 20px;
  }
  #Search {
    height: -moz-fit-content;
    height: fit-content;
  }
  .catalog-wrap .catalog-items.grid {
    grid-template-columns: 1fr;
  }
  .subscribe_wrap {
    flex-direction: column;
  }
  .profile_block .main_info .head .left {
    flex-wrap: wrap;
  }
  .profile_block .main_info .body {
    grid-template-columns: 1fr;
  }
  .profile_block .main_info .head {
    align-items: flex-start;
  }
  .testimonials_wrap {
    gap: 20px;
  }
  .testimonials_wrap .testimonial {
    padding: 15px;
  }
  .faq_wrap {
    flex-direction: column;
    gap: 0;
  }
  .about_us_start {
    flex-direction: column;
    gap: 24px;
  }
  .question_block .question_block_img {
    right: 0;
  }
  .news_item_wrap .title {
    font-size: 24px;
    line-height: 32px;
  }
  #Breadcrumbs .breadcrumbs {
    overflow: scroll;
  }
  #Breadcrumbs .breadcrumbs .breadcrumb {
    white-space: nowrap;
  }
  .news_item_wrap {
    display: flex;
    flex-direction: column;
    gap: 40px;
  }
  .big_news {
    flex-direction: column;
    gap: 15px;
  }
  .item-wrap {
    flex-direction: column;
    gap: 0;
  }
  .item-wrap .right {
    gap: 24px;
  }
  .container {
    padding: 0 10px;
  }
  .pagination ul {
    gap: 5px;
  }
  #list {
    display: none;
  }
  .catalog-wrap .catalog-items {
    justify-content: center;
  }
  .catalog-wrap {
    gap: 24px;
  }
  .catalog-wrap .catalog-items.list .catalog-item .item-info .item-heading {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }
  .catalog-wrap .catalog-items.list .catalog-item .item-info .item-area {
    display: inline;
  }
  .catalog-wrap .catalog-items.list .catalog-item .item-info .item-area img {
    vertical-align: bottom;
  }
  .catalog-wrap .catalog-items.list .catalog-item .item-info .item-executor {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }
  .categories-wrap {
    flex-wrap: wrap;
  }
  .container {
    max-width: 768px;
  }
  .button {
    height: 50px;
  }
  .stages-wrap {
    flex-wrap: wrap;
    justify-content: center;
  }
  .footer-wrap {
    flex-direction: column;
  }
  .footer-wrap .column.center {
    order: 1;
  }
  .footer-wrap .column:first-child {
    order: 2;
  }
  .footer-wrap .column:last-child {
    order: 3;
  }
  footer .column .column-links-wrap {
    display: none;
  }
  footer .column .header-column {
    display: flex;
    justify-content: space-between;
  }
  .pagination .copyright {
    padding-top: 25px;
  }
  .news_list {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }
  .contact_us_block .contact_us_block_image {
    display: none;
  }
  .select2-container {
    max-width: 360px;
  }
  .header-wrap .buttons_wrap {
    display: flex;
  }
  @supports (-webkit-appearance: none) and (stroke-color: transparent) {
    body {
      zoom: 75%;
    }
    header, footer, main {
      zoom: 100%;
    }
    .select2-dropdown {
      width: 550px !important;
      margin-top: 0;
    }
  }
}
@media (max-width: 768px) {
  .container {
    max-width: 440px;
  }
  .subscribe_wrap .subscribe_block .left {
    flex-direction: column;
    align-items: flex-start;
  }
  .select2-dropdown {
    width: 270px !important;
    margin-top: -15px;
    font-size: 12px;
  }
  @supports (-webkit-appearance: none) and (stroke-color: transparent) {
    body {
      zoom: 75%;
    }
    header, footer, main {
      zoom: 100%;
    }
    .select2-dropdown {
      width: 360px !important;
      margin-top: 0;
    }
  }
  .item-wrap .left .contacts .links .link-wrapper {
    position: static;
  }
  #SearchMobile .image {
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
    left: 0;
  }
  .categories-wrap {
    grid-template-columns: auto auto;
  }
  .form_radio.price .custom-radio + label .label_wrap .upper {
    flex-wrap: wrap;
    justify-content: flex-start;
  }
  .modal {
    padding: 40px 15px 24px 15px;
    border-radius: 14px;
  }
  .modal .button.with_span span {
    font-size: 14px;
  }
  .modal .text_button {
    font-size: 14px;
  }
  .form_radio.price .custom-radio + label .right_side {
    margin-left: 0;
  }
  .show_filters_mobile {
    display: flex;
  }
  .catalog-wrap .catalog-filter .filter_close {
    position: absolute;
    top: 15px;
    right: 30px;
    cursor: pointer;
    display: block;
  }
  .catalog-wrap .catalog-filter {
    display: none;
    position: fixed;
    width: 100%;
    left: 0;
    top: 0;
    background: #fff;
    height: 100%;
    z-index: 10;
    padding: 65px 30px;
  }
  .testimonials_wrap {
    grid-template-columns: 1fr;
  }
  .profile_block {
    flex-direction: column;
  }
  .item-wrap .right .item_block .photos {
    display: flex;
    max-height: none;
    flex-wrap: wrap;
    max-height: unset;
  }
  .heading_wrap_profile_create {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .about_us_middle .text_wrap {
    flex-direction: column;
    gap: 30px;
  }
  .item-wrap .right .item_block .language_list {
    flex-wrap: wrap;
  }
  .h1 {
    font-size: 24px;
    line-height: 30px;
  }
  .right .text {
    word-break: break-word;
  }
  .contact_us_wrap {
    flex-direction: column;
  }
  .faq_form_block .faq_form,
  .blog_block {
    padding: 30px 35px;
  }
  .faq_list .question {
    padding: 8px 8px 8px 24px;
  }
  .about_us_middle h2 {
    font-size: 36px;
  }
  .about_us_start .text_block h1 {
    font-size: 60px;
  }
  .question_block .question_block_text {
    margin-bottom: 24px;
  }
  .question_block {
    padding: 40px 30px;
  }
  .question_block .question_block_text {
    font-size: 18px;
  }
  .question_block .question_block_title {
    font-size: 24px;
  }
  .question_block .question_block_img {
    display: none;
  }
  .news_list .news {
    flex-direction: column;
  }
  .item-wrap .right .item_block .video {
    max-height: 205px;
  }
  .big_news {
    margin-bottom: 55px;
  }
  .item-wrap .left .contacts .links {
    flex-wrap: wrap;
    position: relative;
  }
  .popup {
    left: 0;
  }
  .item-wrap .right .item_block .video .overlay .play {
    width: 50px;
    height: 50px;
  }
  .item-wrap .right .item_block .video .overlay .play svg {
    width: 20px;
    height: 17px;
  }
  .catalog-wrap {
    flex-direction: column;
  }
  #Search {
    display: none;
  }
  #SearchMobile {
    display: block;
  }
  .catalog-wrap .catalog-filter {
    max-width: none;
  }
  #SearchMobile {
    order: 1;
  }
  #FeaturedListings {
    order: 2;
  }
  #FeaturedListings .background {
    padding: 0;
    background: transparent;
  }
  #FeaturedListings .slick-list {
    overflow: visible;
  }
  #FeaturedListings .swiper-slide {
    width: 360px;
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(245, 112, 71, 0.07) 0%, rgba(191, 39, 72, 0.07) 100%);
  }
  #FeaturedListings .slick-arrow {
    position: absolute;
    padding: 0;
    width: -moz-fit-content;
    width: fit-content;
  }
  #FeaturedListings .slick-arrow.slick-prev {
    bottom: -80px;
    left: 35%;
  }
  #FeaturedListings .slick-arrow.slick-next {
    bottom: -80px;
    right: 35%;
  }
  #Categories {
    order: 3;
  }
  #HowItWorks {
    order: 4;
  }
  #Testimonials .slick-arrow {
    padding: 0;
  }
  #Testimonials .container {
    max-width: 450px;
  }
  #Testimonials .carousel-item {
    padding: 30px 0 40px 0;
    max-width: 360px;
  }
  #Testimonials .carousel-item .text {
    font-size: 18px;
    line-height: 22px;
  }
  footer {
    padding-top: 20px;
  }
  footer .footer-wrap {
    padding: 0;
  }
  footer .column {
    padding-top: 48px;
  }
  footer .column .socials {
    margin-top: 0;
    margin-bottom: 0;
  }
  footer .column .footer-logo {
    width: 96px;
    height: 100px;
  }
  footer .copyright {
    padding-top: 48px;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
    text-align: left;
    margin: 0;
  }
  .categories-wrap {
    gap: 40px;
    margin-bottom: 40px;
  }
  .categories-wrap .column {
    width: 100%;
    max-width: 155px;
  }
  .categories-wrap .item {
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 20px;
  }
  .heading__minor {
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-top: 8px;
  }
  #HowItWorks .background {
    background: transparent;
    padding: 0;
  }
  #HowItWorks .stages-wrap {
    gap: 24px;
  }
  #HowItWorks .stages-wrap .stage {
    padding: 50px;
    border-radius: 32px;
    background: linear-gradient(180deg, rgba(245, 112, 71, 0.07) 0%, rgba(191, 39, 72, 0.07) 100%);
  }
  #HowItWorks .stages-wrap .stage .stage-text {
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
  }
  #HowItWorks .button.button__gradient {
    height: 72px;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 22px;
  }
}/*# sourceMappingURL=style.css.map */