@charset "UTF-8";
/* Reset and base styles  */
* {
  padding: 0px;
  margin: 0px;
  border: none;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Links */
a, a:link, a:visited {
  text-decoration: none;
}

a {
  color: unset;
}

a:hover {
  text-decoration: none;
}

/* Common */
aside, nav, footer, header, section, main {
  display: block;
}

h1, h2, h3, h4, h5, h6, p {
  font-size: inherit;
  font-weight: inherit;
}

ul, ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

img, svg {
  max-width: 100%;
  height: auto;
}

address {
  font-style: normal;
}

/* Form */
input, textarea, button, select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background-color: transparent;
}

input::-ms-clear {
  display: none;
}

button, input[type=submit] {
  display: inline-block;
  box-shadow: none;
  background-color: transparent;
  background: none;
  cursor: pointer;
}

a, button {
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

input:focus, input:active,
button:focus, button:active {
  outline: none;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

label {
  cursor: pointer;
}

legend {
  display: block;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-background-clip: text;
  -webkit-text-fill-color: rgb(0, 0, 0);
  -webkit-transition: background-color 5000s ease-in-out 0s;
  transition: background-color 5000s ease-in-out 0s;
  box-shadow: inset 0 0 20px 20px rgba(255, 255, 255, 0.1607843137);
}

textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
textarea:-webkit-autofill:active {
  -webkit-background-clip: text;
  -webkit-text-fill-color: rgb(231, 233, 234);
  -webkit-transition: background-color 5000s ease-in-out 0s;
  transition: background-color 5000s ease-in-out 0s;
  box-shadow: inset 0 0 20px 20px rgba(0, 0, 0, 0.1607843137);
}

textarea:focus {
  outline: none;
}

@font-face {
  font-family: "Inter Medium";
  font-weight: 500;
  src: url("./../fonts/Inter-Medium.ttf");
}
@font-face {
  font-family: "Inter";
  font-weight: 400;
  src: url("./../fonts/Inter-Regular.ttf");
}
@font-face {
  font-family: "Verdana-light";
  src: local("Verdana-light"), url("/assets/fonts/Verdana.ttf") format("truetype");
}
@font-face {
  font-family: "Verdana-Bold";
  src: local("Verdana-Bold"), url("/assets/fonts/Verdana-Bold.ttf") format("truetype");
}
body {
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background-color: #fafafa;
  overflow-x: hidden;
}

.main {
  flex: 1 0 auto;
  position: relative;
  z-index: 15;
  overflow: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  padding-left: 15px !important;
  padding-right: 15px !important;
}

.image-wrapper {
  max-width: 100%;
  overflow: hidden;
  display: inline-block;
}
.image-wrapper__image {
  max-width: 100%;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.solid-button {
  text-align: center;
  background-color: #ef7c00;
  color: #fafafa;
  font-size: 14px;
  display: inline-block;
  padding: 12px 30.5px;
  border-radius: 5px;
  transition: all 0.4s cubic-bezier(0.075, 0.82, 0.165, 1);
  opacity: 1;
}
@media (max-width: 767px) {
  .solid-button {
    padding: 12px 20px;
  }
}
@media (hover: hover) {
  .solid-button:hover {
    opacity: 0.8;
  }
}

.outline-button {
  display: inline-block;
  width: 200px;
  padding: 12px 0;
  border: 1px solid #c6c6c7;
  background-color: #fafafa;
  font-size: 14px;
  text-align: center;
  border-radius: 5px;
}

.title-h1 {
  font-size: 42px;
  font-weight: 700;
  text-transform: uppercase;
  color: #040404;
}
@media (max-width: 1023px) {
  .title-h1 {
    font-size: 36px;
  }
}
@media (max-width: 767px) {
  .title-h1 {
    font-size: 32px;
  }
}
@media (max-width: 424px) {
  .title-h1 {
    font-size: 28px;
  }
}

.iti.iti--allow-dropdown {
  width: 100%;
}

.title-h2 {
  color: #040404;
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
}
@media (max-width: 1023px) {
  .title-h2 {
    font-size: 28px;
  }
}
@media (max-width: 767px) {
  .title-h2 {
    font-size: 24px;
  }
}

.title-h3 {
  font-size: 24px;
  font-weight: 700;
}
@media (max-width: 767px) {
  .title-h3 {
    font-size: 20px;
    max-width: 210px;
  }
}

.title-h4 {
  font-size: 22px;
  font-weight: 700;
}
@media (max-width: 767px) {
  .title-h4 {
    font-size: 20px;
  }
}

.card-style-1 {
  background-color: #ef7c00;
}
.card-style-1__title {
  color: #fafafa;
}
.card-style-1__text {
  color: #fafafa;
}

.card-style-2 {
  background-color: #004e9e;
}
.card-style-2__title {
  color: #fafafa;
}
.card-style-2__text {
  color: #fafafa;
}

.card-style-3 {
  border: 2px solid #004e9e;
}
.card-style-3__title {
  color: #040404;
}
.card-style-3__text {
  color: #040404;
}

.card-style-4 {
  border: 2px solid #ef7c00;
}
.card-style-4__title {
  color: #040404;
}
.card-style-4__text {
  color: #040404;
}

.card-style-5 {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
}
.card-style-5::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(4, 4, 4, 0.44);
}
.card-style-5__title {
  position: relative;
  z-index: 1;
  color: #fafafa;
}

.dropdown {
  width: 100%;
  font-family: "Helvetica", sans-serif;
  font-weight: 300;
  max-width: 260px;
}
.dropdown__switch:checked + .dropdown__options-filter .dropdown__select {
  transform: scaleY(1);
  opacity: 1;
}
.dropdown__switch:checked + .dropdown__options-filter .dropdown__filter:after {
  transform: rotate(0);
}
.dropdown__options-filter {
  display: inline-block;
  width: 100%;
  cursor: pointer;
}
.dropdown__filter-selected {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.dropdown__filter {
  position: relative;
  display: flex;
  padding: 12px 18px;
  width: 100%;
  color: #040404;
  background-color: #fff;
  border-radius: 8px;
  font-size: 14px;
  transition: 0.3s;
  border: 1.3px solid #B8BBC2;
  font-size: 14px;
}
.dropdown__filter:focus {
  outline: none;
}
.dropdown__filter::after {
  position: absolute;
  content: "";
  width: 20px;
  height: 20px;
  background-image: url("/wp-content/themes/velesstroy/assets/images/svg/dropdown-arr.svg");
  right: 18px;
  transform: rotate(-90deg);
  transition: 0.3s ease-in-out;
}
.dropdown__select {
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  margin-top: 5px;
  overflow: hidden;
  transform: scaleY(0);
  transform-origin: top;
  border-radius: 5px;
  z-index: 999;
  opacity: 0;
  max-height: 300px;
  overflow-y: scroll;
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
  transition: 0.2s ease-in-out;
}
.dropdown__select::-webkit-scrollbar {
  display: none;
}
.dropdown__select-option {
  padding: 12px 24px;
  background-color: #fff;
  transition: 0.3s;
}
.dropdown__select-option:last-of-type {
  border-bottom: 0;
}
.dropdown__select-option:hover {
  background-color: #C4CBDF;
}

header {
  width: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.header_wrapper {
  width: 100%;
  padding: 0 15px;
  height: 100px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.header_buttons_wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
  height: 41px;
  max-width: 250px;
  width: 100%;
}

.header_burger {
  border: none;
  background-color: inherit;
  display: none;
  cursor: pointer;
}
@media (max-width: 760px) {
  .header_burger {
    display: block;
  }
}

.header_wrapper_bottom {
  width: 100%;
  padding: 0 15px;
}

.header_left_side {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

@media (max-width: 760px) {
  .header_left_side {
    flex-direction: column;
    gap: 10px;
    margin-top: 30px;
    align-items: flex-start;
  }
}

.header_links_wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 30px;
  list-style: none;
}
.header_links_wrapper a {
  font-size: 14px;
  color: black;
  text-decoration: none;
}
.header_links_wrapper button {
  font-size: 14px;
  color: black;
  text-decoration: none;
}
.header_links_wrapper li {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 5px;
}
@media (max-width: 1200px) {
  .header_links_wrapper li {
    display: none;
  }
}
.header_links_wrapper.bottom {
  width: 100%;
  gap: 0;
  justify-content: space-between;
}
.header_links_wrapper.bottom li {
  display: none;
}
@media (max-width: 1200px) {
  .header_links_wrapper.bottom li {
    display: flex;
  }
}
@media (max-width: 760px) {
  .header_links_wrapper.bottom li {
    display: none;
  }
}

.header_contact_us_button {
  background-color: #ef7c00;
  transition: 0.3s all ease-in-out;
  color: white;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  width: 100%;
  max-width: 200px;
  height: 100%;
  max-height: 41px;
  border-radius: 5px;
}
.header_contact_us_button:hover {
  background-color: #fa8d19;
}
@media (max-width: 470px) {
  .header_contact_us_button {
    display: none;
  }
}

/* Sliding Menu Styles */
.sliding-menu {
  position: fixed;
  top: 0;
  right: -310px; /* Hidden by default */
  width: 300px;
  height: 100%;
  background-color: #fff;
  box-shadow: -2px 0 5px rgba(0, 0, 0, 0.5);
  transition: right 0.3s ease-in-out; /* Smooth transition */
  z-index: 9999;
  display: flex;
  flex-direction: column;
}
.sliding-menu a {
  position: relative;
  cursor: pointer;
  line-height: 1.5;
  text-decoration: none;
  color: #000000;
}
.sliding-menu a:after {
  position: absolute;
  content: "";
  bottom: 0;
  display: block;
  width: 0;
  height: 1px;
  background: #000000 !important;
  transition: 0.3s;
}
.sliding-menu a:after {
  left: 50%;
  transform: translate(-50%);
}
.sliding-menu a:hover:after {
  width: 100%;
}

.sliding-menu-top {
  width: 100%;
  margin: 30px 0;
}

.sliding-menu ul {
  list-style-type: none;
  padding: 0;
}

.sliding-menu li {
  gap: 5px;
  padding: 15px 15px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  border-bottom: 1px solid gray;
}

.close-button {
  background: none;
  border: none;
  font-size: 30px;
  cursor: pointer;
  position: absolute;
  top: 10px;
  right: 10px;
}

.toggle-submenu {
  background-color: transparent;
  border: none;
  width: 40px;
  height: auto;
  cursor: pointer;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
}

/* Show the menu */
@media (max-width: 760px) {
  .sliding-menu.active {
    right: 0;
  }
}

.header_dropdown {
  position: absolute;
  display: none;
  top: 100%;
  left: 0;
  right: 0;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
  z-index: 1000;
  display: flex;
  flex-direction: row;
  align-items: center;
  opacity: 0;
  background-color: #fafafa;
}
@media (max-width: 1200px) {
  .header_dropdown {
    margin: 30px 0 0 0;
  }
}

.header_links_wrapper_drop.active {
  width: 100%;
  display: grid;
  align-items: center;
  list-style: none;
  padding: 0 15px;
  min-height: 50px;
  grid-template-columns: repeat(4, 1fr);
  transition: all 0.3s ease-in-out;
}
@media (max-width: 1100px) {
  .header_links_wrapper_drop.active {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 760px) {
  .header_links_wrapper_drop.active {
    display: none;
  }
}
.header_links_wrapper_drop.active li {
  text-align: left;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 5px;
  justify-content: center;
  padding: 15px 0;
}
.header_links_wrapper_drop.active a {
  color: black;
  text-decoration: none;
}

.header_dropdown.active {
  transition: all 0.3s ease-in-out;
  border-bottom: 1px solid orange;
  opacity: 1;
  max-height: 800px;
  display: block;
}
@media (max-width: 760px) {
  .header_dropdown.active {
    display: none;
  }
}

.dropdown-menu-sub {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
}
.dropdown-menu-sub a {
  padding: 0 15px;
  font-size: 14px;
}
.dropdown-menu-sub li {
  border-bottom: 1px solid gray;
}

.dropdown-menu-sub.open {
  max-height: 500px;
}

.header_phone {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
}
.header_phone span {
  font-size: 12px;
  color: rgb(150, 150, 150);
}

.footer {
  padding: 62px 0 34px;
}
@media (max-width: 1023px) {
  .footer {
    padding: 40px 0;
  }
}
@media (max-width: 767px) {
  .footer {
    padding: 30px 0;
  }
}
.footer__header {
  display: flex;
  justify-content: space-between;
  gap: 100px;
}
@media (max-width: 1023px) {
  .footer__header {
    gap: 50px;
  }
}
@media (max-width: 767px) {
  .footer__header {
    gap: 20px;
  }
}
.footer__logo {
  width: 170px;
}
.footer__contacts {
  flex: 1 1 100%;
}
@media (max-width: 767px) {
  .footer__contacts {
    display: none;
  }
}
.footer__phone {
  display: inline-block;
  font-size: 32px;
  font-weight: 700;
  margin-top: 8px;
}
@media (max-width: 1023px) {
  .footer__phone {
    font-size: 28px;
  }
}
@media (max-width: 767px) {
  .footer__phone {
    font-size: 24px;
  }
}
.footer__up-button {
  min-width: 69px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  height: 69px;
  border-radius: 50%;
  background-color: #ef7c00;
}
@media (max-width: 767px) {
  .footer__up-button {
    min-width: 50px;
    height: 50px;
  }
}
.footer__up-button-image {
  width: 20px;
}
.footer__content {
  margin-top: 61px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
@media (max-width: 1023px) {
  .footer__content {
    margin-top: 40px;
  }
}
@media (max-width: 767px) {
  .footer__content {
    flex-direction: column;
    margin-top: 20px;
    align-items: flex-start;
  }
}
.footer__content-contacts {
  display: none;
}
@media (max-width: 767px) {
  .footer__content-contacts {
    display: block;
  }
}
.footer__navigation {
  display: flex;
  -moz-column-gap: 30px;
       column-gap: 30px;
  row-gap: 15px;
  flex-wrap: wrap;
}
.footer__navigation-link {
  color: #040404;
}
.footer__home-link {
  font-size: 24px;
  font-weight: 700;
  color: #4b4b4b;
}
@media (max-width: 1023px) {
  .footer__home-link {
    font-size: 18px;
  }
}
.footer__bottom {
  margin-top: 28px;
  display: flex;
  gap: 30px;
}
@media (max-width: 767px) {
  .footer__bottom {
    flex-wrap: wrap;
    gap: 15px;
  }
}
.footer__bottom-text {
  color: #4b4b4b;
}

.vacancy {
  padding: 70px 0;
}
@media (max-width: 1023px) {
  .vacancy {
    padding: 40px 0;
  }
}
@media (max-width: 767px) {
  .vacancy {
    padding: 30px 0;
  }
}
@media (max-width: 1023px) {
  .vacancy__title {
    text-align: left;
  }
}
.vacancy__items {
  margin-top: 30px;
  display: flex;
  align-items: flex-start;
  gap: 27px;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .vacancy__items {
    justify-content: center;
  }
}
.vacancy__item {
  display: inline-block;
  max-width: 31.5%;
  width: 100%;
  flex: 0 1 30%;
  min-height: 380px;
}
@media (max-width: 1023px) {
  .vacancy__item {
    max-width: 47%;
    flex: 0 1 50%;
  }
}
@media (max-width: 767px) {
  .vacancy__item {
    max-width: 500px;
    flex: 0 0 100%;
  }
}
.vacancy__item-image {
  width: 100%;
  height: 240px;
  border-radius: 5px;
}
.vacancy__item-image img {
  transition: all 0.5s cubic-bezier(0.075, 0.82, 0.165, 1);
}
.vacancy__item-date {
  font-size: 14px;
  margin-top: 15px;
  color: #004e9e;
}
.vacancy__item-content {
  margin-top: 12px;
  max-width: 100%;
  width: 100%;
  overflow: hidden;
  display: flex;
  justify-content: space-between;
  gap: 10px;
}
.vacancy__item-text {
  color: #667085;
  margin-top: 10px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.vacancy__item-link {
  padding: 4.41px;
  background-color: #004e9e;
  align-self: flex-start;
  border-radius: 5.29px;
  min-width: 30px;
  transition: all 0.4s cubic-bezier(0.075, 0.82, 0.165, 1);
}
.vacancy__link-image {
  width: 21.18px;
}
.vacancy__all-link {
  text-align: center;
  display: block;
  text-decoration: underline !important;
  margin: 10px auto 0;
}
.vacancy__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}
.vacancy__tag {
  font-size: 14px;
  line-height: 130%;
  border-radius: 16px;
  font-weight: 400;
  padding: 2px 10px;
  width: -moz-fit-content;
  width: fit-content;
  font-family: "Inter Medium", Verdana, Geneva, Tahoma, sans-serif;
}
@media (hover: hover) {
  .vacancy__item:hover .vacancy__item-link {
    background-color: #ef7c00;
  }
  .vacancy__item:hover .vacancy__item-image img {
    transform: scale(1.05);
  }
}

.vacancy-item__policy {
	 margin-top: 15px;
	 position: relative;
}
 .vacancy-item__policy-label {
	 display: flex;
	 align-items: center;
	 gap: 15px;
	 cursor: pointer;
	 font-family: Verdana;
	 font-size: 13px;
	 font-style: normal;
	 font-weight: 400;
	 line-height: 100%;
	 color: #b7b7b7;
}
 .vacancy-item__policy-label a {
	 color: #b7b7b7;
	 font-family: Verdana;
	 font-size: 13px;
	 font-style: normal;
	 font-weight: 400;
	 line-height: 100%;
	/* 13px */
	 text-decoration-line: underline;
	 text-decoration-style: solid;
	 text-decoration-skip-ink: none;
	 text-decoration-thickness: auto;
	 text-underline-offset: auto;
	 text-underline-position: from-font;
	 transition: opacity 0.2s;
}
 .vacancy-item__policy-label a:hover {
	 opacity: 0.8;
}
 .vacancy-item__policy-input {
	 flex-shrink: 0;
	 width: 20px;
	 height: 20px;
	 border: 1px solid #145aa0;
	 appearance: none;
	 border-radius: 3px;
	 cursor: pointer;
	 accent-color: #145aa0;
	 position: relative;
}
 .vacancy-item__policy-input:checked::after {
	 content: "";
	 position: absolute;
	 left: 6px;
	 top: 2px;
	 width: 6px;
	 height: 10px;
	 border: solid #145aa0;
	 border-width: 0 2px 2px 0;
	 transform: rotate(45deg);
}
 .vacancy-item__policy-input:checked {
	 background-color: #fff;
	 border-color: #145aa0;
}
 .vacancy-item__policy-input:hover {
	 box-shadow: 0 0 4px rgba(20, 90, 160, 0.3);
}
 .vacancy-item__policy-error {
	 display: none;
	 color: #d93025;
	 font-size: 12px;
	 margin-top: 4px;
}
 .vacancy-item__policy.error .vacancy-item__policy-error {
	 display: block;
}
 @media (max-width: 768px) {
	 .vacancy-item__policy-label {
		 font-size: 13px;
		 flex-direction: row;
	}
}

.tag-1 {
  color: #004e9e;
  background-color: #f0edf5;
}

.tag-2 {
  color: #ef7c00;
  background-color: #edeff3;
}

.tag-3 {
  color: #fafafa;
  background-color: rgba(255, 150, 37, 0.75);
}

.page-banner {
  padding: 70px 0;
}
@media (max-width: 1023px) {
  .page-banner {
    padding: 40px 0;
  }
}
@media (max-width: 767px) {
  .page-banner {
    padding: 30px 0;
  }
}
.page-banner__content {
  display: flex;
  gap: 30px;
  align-items: stretch;
  margin-top: 31px;
}
@media (max-width: 767px) {
  .page-banner__content {
    flex-direction: column;
    margin-top: 25px;
    gap: 20px;
  }
}
.page-banner__left {
  flex: 1 1 468px;
  background-color: #ef7c00;
  border-radius: 7px;
  padding: 29px 33px 24px 21px;
  position: relative;
  overflow: hidden;
}
.page-banner__left::before {
  content: "";
  position: absolute;
  bottom: -117px;
  right: -93px;
  width: 244px;
  height: 254px;
  background-image: url("/wp-content/themes/velesstroy/assets/images/svg/university_drop.svg");
}
@media (max-width: 767px) {
  .page-banner__left {
    flex: none;
    padding: 20px 25px;
  }
}
.page-banner__text {
  color: #fafafa;
  position: relative;
}
.page-banner__button {
  background-color: #fafafa;
  max-width: 183px;
  width: 100%;
  position: relative;
  color: #000000;
  margin-top: 47px;
}
@media (max-width: 767px) {
  .page-banner__button {
    margin-top: 25px;
  }
}
.page-banner__right {
  flex: 1 2 670px;
  border-radius: 7px;
  max-height: 274px;
}
@media (max-width: 767px) {
  .page-banner__right {
    flex: 0 0 200px;
  }
}

.details-block {
  padding: 82px 0 123px;
}
@media (max-width: 1023px) {
  .details-block {
    padding: 40px 0;
  }
}
@media (max-width: 767px) {
  .details-block {
    padding: 30px 0;
  }
}
.details-block__title {
  text-align: start;
}
.details-block__content {
  margin-top: 54px;
  display: flex;
  align-items: stretch;
  gap: 31px;
}
@media (max-width: 1023px) {
  .details-block__content {
    flex-direction: column-reverse;
  }
}
@media (max-width: 767px) {
  .details-block__content {
    margin-top: 30px;
  }
}
.details-block__left {
  flex: 1 2 570px;
  border-radius: 10px;
}
@media (max-width: 1023px) {
  .details-block__left {
    flex: 0 0 350px;
  }
}
.details-block__right {
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1 1 570px;
}
@media (max-width: 1023px) {
  .details-block__right {
    max-width: 100%;
    flex: 1 1 auto;
  }
}
.details-block__details {
  background-color: #e3e3e3;
  border-radius: 7px;
  overflow: hidden;
}
.details-block__summary.is-open {
  transition: all 0.4s ease;
}
.details-block__summary.is-open::after {
  transform: rotate(45deg);
}
.details-block__text {
  padding: 0 32px 24px;
}
.details-block__summary {
  position: relative;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  padding: 23px 95px 24px 32px;
  font-size: 20px;
  list-style: none;
  overflow: hidden;
  transition: all 0.4s ease;
}
@media (max-width: 767px) {
  .details-block__summary {
    padding: 23px 55px 23px 24px;
  }
}
.details-block__summary::after {
  transition: all 0.8s cubic-bezier(0.075, 0.82, 0.165, 1);
  width: 28px;
  height: 28px;
  position: absolute;
  right: 25px;
  top: 23px;
  content: "";
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  background-image: url("/wp-content/themes/velesstroy/assets/images/svg/plus.svg");
}
@media (max-width: 767px) {
  .details-block__summary::after {
    right: 20px;
  }
}

.main-banner {
  padding: 50px 0 0;
}
@media (max-width: 1023px) {
  .main-banner {
    padding: 40px 0 0;
  }
}
@media (max-width: 767px) {
  .main-banner {
    padding: 30px 0;
  }
}
.main-banner__container {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 33px;
}
@media (max-width: 767px) {
  .main-banner__container {
    flex-direction: column;
    gap: 20px;
  }
}
.main-banner__left {
  flex: 1 2 668px;
  padding: 43.5px 27px;
  background-color: #ef7c00;
  border-radius: 7px;
  display: flex;
  align-items: center;
  min-height: 269px;
}
@media (max-width: 767px) {
  .main-banner__left {
    padding: 30px 20px;
    flex: 0 0 auto;
    width: 100%;
  }
}
@media (max-width: 767px) and (max-width: 767px) {
  .main-banner__left {
    min-height: -moz-fit-content;
    min-height: fit-content;
  }
}
.main-banner__title {
  color: #fafafa;
}
.main-banner__subtitle {
  color: #fafafa;
  font-weight: 700;
  font-size: 24px;
  margin-top: 5px;
}
@media (max-width: 767px) {
  .main-banner__subtitle {
    font-size: 20px;
  }
}
.main-banner__right {
  flex: 1 1 466px;
  overflow: hidden;
  height: 269px;
  border-radius: 7px;
  display: flex;
  align-items: stretch;
}
.main-banner__right img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 767px) {
  .main-banner__right {
    flex: 0 0 200px;
    width: 100%;
  }
}

body:has(.popup--opened) {
  overflow: hidden;
}

.popup {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.151);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.4s cubic-bezier(0.075, 0.82, 0.165, 1);
  pointer-events: none; /* Блокирует клики по умолчанию */
}
.popup--opened {
  visibility: visible;
  opacity: 1;
  pointer-events: all; /* Включает клики при открытии */
}
.popup--opened .popup__content {
  transform: scale(1);
}
.popup__content {
  transform: scale(1.2);
  transition: all 0.4s cubic-bezier(0.075, 0.82, 0.165, 1);
  padding: 28px;
  width: 703px;
  background-color: #ffffff;
  overflow: hidden;
}
@media (max-width: 1023px) {
  .popup__content {
    padding: 28px;
  }
}
@media (max-width: 767px) {
  .popup__content {
    padding: 30px 20px;
  }
}
.popup__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.popup__title {
  color: #ef7c00;
  text-align: left;
}
.popup__close-btn {
  width: 37px;
  position: absolute;
  top: 30px;
  right: 30px;
  transition: all 0.4s cubic-bezier(0.075, 0.82, 0.165, 1);
}
@media (max-width: 1023px) {
  .popup__close-btn {
    width: 28px;
  }
}
@media (hover: hover) {
  .popup__close-btn:hover {
    opacity: 0.8;
  }
}
.popup__close-btn:active {
  opacity: 0.6;
}
.popup__text {
  margin-top: 30px;
  position: relative;
}

.cookie-banner {
	 position: fixed;
	 bottom: 30px;
	 left: 120px;
	 width: auto;
	 max-width: 700px;
	 background: #fff;
	 border: 1px solid #e0e0e0;
	 box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
	 border-radius: 10px;
	 display: none;
	 padding: 15px;
	 justify-content: center;
	 align-items: center;
	 z-index: 9999;
	 font-family: inherit;
	 font-size: 14px;
	 color: #333;
	 animation: fadeIn 0.3s ease-in-out;
}
 .cookie-banner .cookie-text {
	 padding-right: 20px;
   color: var(--Black, #131313);
   font-family: Verdana;
   font-size: 14px;
   font-style: normal;
   font-weight: 400;
   line-height: 90%;
}
 .cookie-banner .cookie-btn {
	 background-color: #005bbb;
	 color: #fff;
	 border: none;
	 border-radius: 6px;
	 cursor: pointer;
	 font-weight: 500;
	 white-space: nowrap;
	 transition: background-color 0.2s ease;
	 height: 45px;
	 padding: 12px 53px;
	 justify-content: center;
	 align-items: center;
}
 .cookie-banner .cookie-btn:hover {
	 background-color: #004999;
}
 @keyframes fadeIn {
	 from {
		 opacity: 0;
		 transform: translate(-50%, 10px);
	}
	 to {
		 opacity: 1;
		 transform: translate(-50%, 0);
	}
}
 @media (max-width: 768px) {
	 .cookie-banner {
		 flex-direction: column;
		 bottom: 45px;
		 left: 20px;
		 width: calc(100% - 40px);
		 max-width: 100%;
		 padding: 15px;
		 border-radius: 8px;
	}
	 .cookie-text {
		 padding-right: 0;
		 margin-bottom: 12px;
	}
	 .cookie-btn {
		 width: 100%;
		 height: 44px;
		 padding: 10px 20px;
	}
}
.lang-switcher {
  display: inline-block;
  position: relative;
  margin-left: 20px;
}

@media (max-width: 760px) {
  .lang-switcher-mobile {
    margin-left: 0;
  }
}

.lang-switcher-mobile {
  display: inline-block;
  position: relative;
  padding: 15px;
}

@media (max-width: 760px) {
  .lang-switcher {
    display: none;
  }
}

.header_right_side {
  display: flex;
  gap: 10px;
}

.lang-switcher .switch {
  position: relative;
  width: 74px;
  height: 34px;
  background: #ddd;
  border-radius: 25px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px 5px 5px 9px;
  font-size: 12px;
  color: #333;
  user-select: none;
}

.lang-switcher input {
    display: none;
}

.lang-switcher .slider {
  position: absolute;
  width: 35px;
  height: 24px;
  background: #fff;
  border-radius: 20px;
  transition: 0.25s;
}

.lang-switcher input:checked+.switch .slider {
  transform: translateX(25px);
}

.lang-switcher-mobile .switch {
  position: relative;
  width: 74px;
  height: 34px;
  background: #ddd;
  border-radius: 25px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px 5px 5px 9px;
  font-size: 12px;
  color: #333;
  user-select: none;
}

.lang-switcher-mobile input {
  display: none;
}

.lang-switcher-mobile .slider {
  position: absolute;
  left: 0;
  width: 35px;
  height: 24px;
  background: #fff;
  border-radius: 20px;
  transition: 0.25s;
}

.lang-switcher-mobile input:checked+.switch .slider {
  transform: translateX(35px);
}