@font-face {
  font-family: 'Montserrat';
  src: url('..//fonts/Montserrat-Bold.woff2') format('woff2'),
    url('..//fonts/Montserrat-Bold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Montserrat';
  src: url('..//fonts/Montserrat-Medium.woff2') format('woff2'),
    url('..//fonts/Montserrat-Medium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Montserrat';
  src: url('..//fonts/Montserrat-Regular.woff2') format('woff2'),
    url('..//fonts/Montserrat-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}


@font-face {
  font-family: 'Montserrat';
  src: url('..//fonts/Montserrat-SemiBold.woff2') format('woff2'),
    url('..//fonts/Montserrat-SemiBold.woff') format('woff');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

* {
  box-sizing: border-box;
}

p {
  margin: 0;
}

a,
a:visited {
  color: inherit;
}

input,
textarea,
select {
  outline: none;
  border: 0;
  padding: 0;
  font-size: inherit;
  font-family: inherit;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Montserrat';
  background-color: #FFF3B6;
  line-height: 140%;
  font-size: 20px;
  color: #583E26;
  -webkit-tap-highlight-color: transparent;	
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

body.dark_theme {
  background-color: #1D0E00;
  color: #FFF;
}

.dark_theme svg path {
  fill: #fff;
}

.wrapper {
  overflow: hidden;
  width: 100%;
}

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

.home .main_header .container {
  max-width: 100%;
}

.home .main_header.sticky .container {
  max-width: 1600px;
}

.header_empty {
  height: 137px;
}

.main_header {
  position: absolute;
  top: 30px;
  left: 0;
  width: 100%;
  transition: padding 0.3s;
}

.main_header.sticky {
  background-color: #FDDF6D;
  padding: 10px 0;
  position: fixed;
  top: 0;
  transition: padding 0.3s;
  z-index: 999999999;
}

.home .main_header.sticky .logo {
  background: none;
  height: auto;
  padding: 0;
  margin: 0;
  text-align: left;
  width: auto;
}

.home .main_header.sticky .logo img,
.main_header.sticky .logo img {
  max-width: 200px;
}

.main_header.sticky .header_menu_top {
  display: none;
}

.main_header.sticky .navigation ul {
  border: 0;
  padding-top: 0;
  margin-top: 0;
}

.home .main_header.sticky .header_row {
  align-items: center;
}

.header_row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  white-space: nowrap;
}

.home .header_row {
  align-items: flex-start;
}

.logo {
  line-height: 0;
}

.home .main_header .logo {
  width: 34%;
  height: 452px;
  background-image: url(..//img/logo_bg.svg);
  background-repeat: no-repeat;
  background-size: contain;
  padding-top: 30px;
  margin-top: -30px;
  padding-right: 160px;
  text-align: right;
}

.logo img {
  width: 100%;
  max-width: 338px;
}

.header_menu {
  width: 40%;
  max-width: 680px;
}

.header_menu_top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
}

.theme_switcher_row {
  display: flex;
  align-items: center;
  gap: 15px;
}

.theme_switcher_row svg path {
  fill: #F7C815;
}

.theme_switcher_row svg path:nth-child(2) {
  fill: #FDDF6D;
}

.lang ul {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  gap: 15px;
}

.lang ul li {
  border-left: 1px solid #583E26;
  padding-left: 15px;
  line-height: 25px;
}

.lang ul li:first-child {
  border-left: 0;
  padding-left: 0;
}

.lang a {
  text-decoration: none;
  font-size: 18px;
  font-weight: 700;
  line-height: 100%;
  text-transform: uppercase;
  transition: 0.3s;
}

.lang a:hover {
  color: #F7C815;
  transition: 0.3s;
}

.lang .current_language a {
  color: #F7C815;
}

.main_header .navigation ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding-top: 20px;
  margin-top: 20px;
  border-top: 1px solid #583E26;
}

.main_header .navigation ul a {
  font-size: 18px;
  font-weight: 700;
  line-height: 100%;
  text-transform: uppercase;
  text-decoration: none;
  transition: 0.3s;
}

.main_header.sticky .navigation ul a {
  color: #583E26;
}

.main_header .navigation ul a:hover {
  color: #F7C815;
  transition: 0.3s;
}

.theme_switcher {
  width: 50px;
  height: 25px;
  border-radius: 30px;
  background: #F7C815;
  display: flex;
  align-items: center;
  cursor: pointer;
}

.theme_switcher span {
  width: 19px;
  height: 19px;
  border-radius: 50%;
  background: #FFF3B6;
  transform: translateX(27px);
  transition: 0.3s;
}

.theme_switcher.dark_theme {
  background-color: #C2C5CC;
}

.theme_switcher.dark_theme span {
  background-color: #1D0E00;
  transform: translateX(3px);
}

.main_header .phones_row {
  display: flex;
  align-items: center;
  gap: 10px;
}


.home .main_header .phones_row {
  width: 24%;
  height: 927px;
  background-image: url(..//img/phone_bg.svg);
  background-repeat: no-repeat;
  background-size: contain;
  margin-top: -30px;
  padding-top: 67px;
  padding-left: 82px;
  align-items: flex-start;
}

.home .main_header.sticky .phones_row {
  height: auto;
  background: none;
  padding: 0;
  margin: 0;
  width: auto;
  align-items: center;
}

.home .main_header .phones_row svg {
  position: relative;
  bottom: 4px;
}

.phones_row svg {
  min-width: 26px;
}

.main_header.sticky .phones_row svg {
  position: unset;
}

.main_header.sticky .phones_row svg path {
  fill: #583E26;
}

.phones {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.phones a {
  font-size: 18px;
  font-weight: 700;
  line-height: 100%;
  text-decoration: none;
  transition: 0.3s;
}

.main_header.sticky .phones a {
  color: #583E26;
}

.phones a:hover {
  color: #F7C815;
  transition: 0.3s;
}

.main_screen_row {
  height: 760px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  position: relative;
  z-index: 5;
}

.main_screen_row .left {
  width: 23%;
}

.main_screen_row .center {
  width: 57%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 70px;
  height: 87%;
}

.main_screen_row .right {
  width: 13%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  position: relative;
  top: 50px;
}

.socials {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.social {
  width: 35px;
  height: 35px;
  background-color: #583E26;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.social img {
  transform: scale(1);
  transition: 0.3s;
}

.social:hover img {
  transform: scale(1.2);
  transition: 0.3s;
}

.main_screen_row img {
  max-width: 100%;
}

.main_img_box {
  max-height: 574px;
}

.main_img_box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 80px 0px;
  border: 4px solid #F7C815;
}

.main_title {
  margin: 0;
  font-size: 3.4vw;
  font-weight: 700;
  line-height: 90%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.main_title span:first-child {
  font-size: 36px;
}

.main_descr_row {
  display: flex;
  gap: 55px;
}

.branch_box {
  background-image: url(..//img/branch.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 100%;
  max-width: 128px;
}

.main_descr {
  width: 86%;
  max-width: 665px;
}

.main_btn {
  margin-left: 184px;
  width: fit-content;
  padding: 19px 59px;
  font-size: 18px;
  font-weight: 700;
  line-height: 100%;
  text-transform: uppercase;
  border-radius: 30px;
  color: #583E26;
  background: #F7C815;
  border: 2px solid #F7C815;
  cursor: pointer;
  transition: 0.3s;
}

.main_btn:hover {
  background: transparent;
  border: 2px solid #583E26;
  transition: 0.3s;
}

.mt_100 {
  padding-top: 100px;
}

.mt_70 {
  margin-top: 70px;
}

.help {
  position: relative;
}

.help>img {
  position: absolute;
  top: 50px;
  left: 0;
}

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

.help_left {
  width: 46%;
}

.help_left h2 {
  white-space: nowrap;
}

.help_right {
  width: 50%;
  display: flex;
  align-items: center;
}

.title {
  display: flex;
  align-items: flex-end;
  gap: 20px;
}

.line {
  background: #F7C815;
  min-width: 100px;
  height: 2px;
  position: relative;
  bottom: 4px;
}

.title h2,
.title h1 {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  line-height: 100%;
  text-transform: uppercase;
}

.help_items {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.help_item {
  display: flex;
  align-items: center;
  gap: 20px;
  font-weight: 600;
  line-height: 100%;
}

.arrow {
  min-width: 50px;
  height: 50px;
  background-color: #F7C815;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.arrow img {
  transform: scale(1);
  transition: 0.3s;
}

.arrow:hover img {
  transform: scale(1.2);
  transition: 0.3s;
}

.help_slider {
  width: 75%;
  max-width: 600px;
  overflow: visible !important;
}

.help_slider::after {
  content: '';
  position: absolute;
  bottom: 77px;
  left: -112px;
  width: 161px;
  height: 112px;
  background-image: url(..//img/leaf_help.svg);
}

.help_slider_item {
  padding-bottom: 100%;
  position: relative;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 100px 0px;
  border: 4px solid #F7C815;
}

.help_slider_item blockquote {
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 47px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.85);
  padding: 30px 20px;
  margin: 0;
  color: #000;
  font-weight: 500;
  line-height: 140%;
}

.help_slider_item blockquote::before {
  content: '';
  position: absolute;
  top: -20px;
  left: 30px;
  width: 22px;
  height: 23px;
  background-image: url(..//img/polygon.svg);
  background-repeat: no-repeat;
  background-position: center;
}

.services_row {
  display: flex;
  flex-wrap: wrap;
  row-gap: 50px;
  justify-content: space-between;
}

.services_item {
  width: 48%;
  display: flex;
  justify-content: space-between;
  padding: 20px;
  border-radius: 30px;
  border: 2px solid #583E26;
  background-color: #FFF3B6;
}

.services_item.dark_theme {
  background-color: #1D0E00;
}

.services_item:nth-child(3) {
  width: 100%;
  position: relative;
}

.services_item:nth-child(3)::before {
  content: '';
  position: absolute;
  left: -52px;
  top: -40px;
  width: 107px;
  height: 136px;
  background-image: url(..//img/services_stones.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  z-index: -1;
}

.services_item:nth-child(3)::after {
  content: '';
  position: absolute;
  right: -64px;
  top: -106px;
  width: 143px;
  height: 110px;
  background-image: url(..//img/services_leaf.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  z-index: -1;
}

.services_item .img_box {
  width: 44.753%;
  position: relative;
}

.services_item:nth-child(3) .img_box {
  width: 30%;
}

.title_descr {
  width: 55.247%;
  padding: 20px 3% 20px 5%;
}

.services_item:nth-child(3) .title_descr {
  width: 70%;
  padding-left: 3%;
}

.services_item .img_box img {
  border-radius: 20px;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.title_descr h3 {
  margin: 0;
  font-size: 26px;
  font-weight: 700;
  line-height: 100%;
}

.title_descr p {
  margin-top: 20px;
}

.about_row {
  display: flex;
  justify-content: space-between;
}

.about_row .left {
  line-height: 0;
  width: 37.5%;
  position: relative;
  padding-bottom: 37.5%;
  height: 100%;
}

.about_row .left img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 100px 0px;
  border: 4px solid #F7C815;
}

.about_row .right {
  width: 52.7%;
}

.about_short_descr_row {
  position: relative;
}

.about_short_descr_row img {
  position: absolute;
  right: 100%;
  height: 100%;
  z-index: -1;
}

.about_short_descr {
  padding-left: 25px;
}

.education {
  margin-top: 30px;
  display: flex;
  justify-content: space-between;
  position: relative;
}

.education::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 178px;
  height: 43px;
  background-image: url(..//img/arc_education.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.univer {
  width: 48%;
  border-radius: 15px;
  border: 2px solid #583E26;
  padding: 20px;
}

.univer_img_box {
  position: relative;
  line-height: 0;
  padding-bottom: 45.42%;
}

.univer_img_box img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.univer_descr {
  margin-top: 20px;
  text-align: center;
}

.about_full_descr {
  margin-top: 50px;
  overflow: hidden;
  transition: 0.4s;
}

.about_full_descr p {
  margin: 15px 0;
}

.about_read_more {
  color: #583E26;
  font-weight: 700;
  line-height: 100%;
  border-radius: 30px;
  background: #F7C815;
  width: fit-content;
  padding: 11px 104px 11px 40px;
  margin-top: 15px;
  position: relative;
  cursor: pointer;
}

.about_read_more::before {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 46px;
  width: 2px;
  height: 14px;
  border-radius: 4px;
  background-color: #583E26;
  transition: 0.4s;
}

.about_read_more::after {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 40px;
  width: 14px;
  height: 2px;
  border-radius: 4px;
  background-color: #583E26;
}

.about_read_more.active::before {
  height: 0;
  transition: 0.4s;
}

.price_list {
  display: flex;
  justify-content: space-between;
  position: relative;
}

.price_list>img {
  position: absolute;
  bottom: 99%;
  z-index: -1;
}

.left_arc {
  left: 33%;
  transform: translateX(-50%);
}

.right_arc {
  right: 33%;
  transform: translateX(50%);
}

.stones_price {
  position: absolute;
  top: -48px;
  right: -25px;
}

.price_list_item {
  width: 32%;
  border-radius: 20px;
  border: 2px solid #583E26;
  display: flex;
  align-items: center;
  padding: 30px;
  background-color: #FFF3B6;
}

.price_list_item.dark_theme {
  background-color: #1D0E00;
}

.price_icon_box {
  text-align: center;
  line-height: 0;
  margin-right: 30px;
}

.price_content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 30px;
}

.price_content h3 {
  margin: 0;
  font-size: 17px;
  font-weight: 700;
  line-height: 120%;
  text-transform: uppercase;
}

.price_content span {
  color: #0F6A00;
  font-size: 18px;
  font-weight: 700;
  line-height: 120%;
}

.after_price_text {
  margin-top: 50px;
}

.problems .title {
  justify-content: center;
}

.problems_arrows {
  display: flex;
  justify-content: center;
  gap: 170px;
  margin-top: 20px;
}

.problems_list {
  display: flex;
  justify-content: space-between;
  position: relative;
}

.leaf_problems {
  top: 75px;
  left: -72px;
}

.arc_problems_left {
  top: 100%;
  left: 33%;
  transform: translateX(-50%);
}

.arc_problems_right {
  top: 100%;
  right: 33%;
  transform: translateX(50%);
}

.problems_list_item {
  width: 31.25%;
  border-radius: 15px;
  border: 2px solid #583E26;
  background: #FFF3B6;
  padding: 20px 20px 30px 20px;
}

.problems_list_item.dark_theme {
  background: #1D0E00;
}

.problems_list>img {
  position: absolute;
  z-index: -1;
}

.problems_list_item img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  border-radius: 10px;
}

.problems_list_item h3 {
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  line-height: 100%;
  text-decoration-line: underline;
  margin: 20px 0;
}

.problems_list_item_descr p {
  position: relative;
  padding-left: 15px;
}

.problems_list_item_descr p::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12.5px;
  width: 4px;
  height: 4px;
  background-color: #583E26;
  border-radius: 50%;
}

.problems_list_item.dark_theme .problems_list_item_descr p::before {
  background-color: #FFF;
}

.contacts {
  position: relative;
}

.arc_contacts {
  position: absolute;
  top: 100px;
  left: 0;
  z-index: -1;
}

.branch_contacts {
  position: absolute;
  top: 150px;
  right: 0;
  z-index: -1;
}

.contacts_row {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 50px;
}

.contacts_row .left>img {
  width: 300px;
  height: 300px;
  object-fit: cover;
  border-radius: 80px 0px;
  border: 4px solid #F7C815;
}

.contacts_under_img_text {
  font-weight: 700;
  line-height: 100%;
  text-align: center;
  max-width: 300px;
  margin-top: 15px;
}

.contacts .phones_row {
  display: flex;
  gap: 10px;
  margin-top: 50px;
}

.contacts .phones_row a {
  font-weight: 400;
}

.email {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  margin-top: 20px;
}

.email svg {
  transform: scale(1);
  transition: 0.3s;
}

.email:hover svg {
  transform: scale(1.2);
  transition: 0.3s;
}

.contacts .socials {
  flex-direction: row;
  gap: 20px;
  margin-top: 40px;
}

.contacts_row .right {
  border-radius: 30px;
  background: #FDDF6D;
  padding: 50px 40px;
  width: 60.4%;
  color: #583E26;
}

.contacts_row .right h3 {
  margin: 0 0 30px 0;
  font-size: 20px;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  text-align: center;
}

.form_row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  column-gap: 20px;
  row-gap: 30px;
}

.form_row p {
  width: calc(50% - 22.5px);
}

.form_row p:last-child {
  width: 100%;
}

.form_row p input,
.form_row p select {
  width: 100%;
  max-width: 300px;
  height: 50px;
  border-radius: 15px;
  background: #FFF;
  padding: 0 20px;
  margin-top: 10px;
}

.form_row p select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.form_row p span {
  position: relative;
}

.form_row p:nth-child(4) span::before {
  content: '';
  position: absolute;
  top: 50%;
  right: 23px;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background-image: url(..//img/clock.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.form_row p input::placeholder {
  font-family: inherit;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.form_row p textarea {
  padding: 20px;
  border-radius: 15px;
  background: #FFF;
  width: 100%;
  height: 120px;
  resize: none;
  margin-top: 10px;
}

.wpcf7-submit {
  width: 100%;
  height: 50px;
  max-width: 300px;
  border-radius: 15px;
  background: #583E26;
  border: 2px solid #583E26;
  color: #FDDF6D;
  font-size: 18px;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  margin: 50px 0 0 0;
  cursor: pointer;
  transition: 0.3s;
}

.wpcf7-submit:hover {
  color: #583E26;
  background-color: transparent;
  transition: 0.3s;
}

.form_submit {
  text-align: center;
  position: relative;
}

.wpcf7-spinner {
  position: absolute;
  bottom: 13px;
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output,
.wpcf7 form.failed .wpcf7-response-output,
.wpcf7 form.aborted .wpcf7-response-output {
  border: 0;
  margin: 20px 0 0 0;
  padding: 0;
  color: red;
  font-weight: 700;
}

.wpcf7 form.sent .wpcf7-response-output {
  border: 0;
  margin: 20px 0 0 0;
  padding: 0;
  color: #1abb00;
  font-weight: 700;
}

.main_footer {
  background: #FDDF6D;
  color: #583E26;
  margin-top: 100px;
}

.footer_row {
  padding: 50px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.copyright {
  padding: 30px 0;
  border-top: 1px solid #583E26;
  font-size: 18px;
  text-align: center;
}

.footer_menu>span {
  display: block;
  font-size: 18px;
  font-weight: 700;
  line-height: 100%;
  text-decoration-line: underline;
  text-transform: uppercase;
}

.footer_menu .navigation ul {
  list-style: none;
  padding: 0;
  margin: 20px 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer_menu .navigation ul a {
  font-size: 18px;
  font-weight: 700;
  line-height: 100%;
  text-decoration: none;
  position: relative;
  left: 0;
  transition: 0.2s;
}

.footer_menu .navigation ul a:hover {
  left: 4px;
  transition: 0.2s;
}

.footer_contacts .phones_row {
  display: flex;
  gap: 10px;
}

.footer_contacts .phones a {
  font-weight: 400;
  position: relative;
  left: 0;
}

.footer_contacts .phones a:hover {
  color: #583E26;
  left: 4px;
}

.footer_contacts .socials {
  flex-direction: row;
  gap: 20px;
  margin-top: 40px;
}

.footer_contacts svg path {
  fill: #583E26;
}

.article_row {
  display: flex;
  flex-wrap: wrap;
  column-gap: 27px;
  row-gap: 40px;
}

.archive_article {
  width: calc(25% - 20.25px);
  background: #FFF3B6;
  border-radius: 20px;
  border: 2px solid #583E26;
  padding: 20px 20px 30px 20px;
  position: relative;
}

.archive_article.dark_theme {
  background: #1D0E00;
}

.archive_article a {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  height: 100%;
  text-decoration: none;
}

.excerpt {
  flex-grow: 1;
}

.thumbnail_box {
  position: relative;
  padding-bottom: 59%;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 15px;
  overflow: hidden;
}

.thumbnail_box img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.archive_article h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 120%;
  text-transform: uppercase;
  text-align: center;
}

.read_more {
  color: #0F6A00;
}

.read_more svg {
  position: relative;
  left: 16px;
  transition: 0.3s;
}

.read_more svg path {
  fill: #0F6A00;
}

.archive_article a:hover .read_more svg {
  left: 30px;
  transition: 0.3s;
}

.show_more {
  margin: 50px auto 0 auto;
  padding-left: 95px;
  padding-right: 95px;
}

.archive_page {
  position: relative;
}

.branch_archive {
  position: absolute;
  max-width: 218px;
  right: 0;
  top: -22px;
  z-index: -1;
}

.archive_page .archive_article:nth-child(8n+5)::after {
  content: '';
  position: absolute;
  right: 100%;
  top: -19.5%;
  width: 43px;
  height: 178px;
  background-image: url(..//img/arc_article.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  z-index: -1;
}

.archive_page .archive_article:nth-child(8n+12)::after {
  content: '';
  position: absolute;
  left: 100%;
  top: -19.5%;
  width: 43px;
  height: 178px;
  background-image: url(..//img/arc_article.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transform: rotate(180deg);
  z-index: -1;
}

.single_header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  position: relative;
}

.single_header>img {
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}

.single_title {
  display: flex;
  align-items: center;
  gap: 50px;
  width: 50%;
}

.single_title h1 {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  line-height: 140%;
  text-transform: uppercase;
  max-width: 500px;
}

.single_thubnail_box {
  position: relative;
  max-width: 620px;
  width: 50%;
  padding-bottom: 22%;
}

.single_thubnail_box img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 100px 0px;
  border: 4px solid #F7C815;
}

.single_content {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.more_articles_swiper_box {
  position: relative;
}

.more_articles_button_prev {
  position: absolute;
  top: 50%;
  right: 103%;
  transform: translateY(-50%);
  z-index: 99;
}

.more_articles_button_next {
  position: absolute;
  top: 50%;
  left: 103%;
  transform: translateY(-50%);
  z-index: 99;
}

.swiper-button-disabled {
  opacity: 0.5;
}

.more_articles_row .archive_article {
  height: auto;
}

.more_articles_pagination {
  display: none;
}

.leaf_more_articles {
  position: absolute;
  right: 0;
  bottom: 99.8%;
  z-index: -1;
}

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

.youtube_link {
  display: flex;
  align-items: center;
  gap: 20px;
}

.youtube_link a {
  text-decoration: none;
  font-weight: 500;
  display: block;
  border-bottom: 1px solid #583E26;
  line-height: 100%;
}

.video_list {
  display: flex;
  flex-direction: column;
  gap: 100px;
}

.video_list_item_title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.video_list_item_title h2 {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  line-height: 140%;
}

.video_list_item {
  display: flex;
  flex-direction: column;
  gap: 50px;
  position: relative;
}

.video_list_item:nth-child(4n+1)::before {
  content: '';
  position: absolute;
  left: 0;
  top: 26px;
  width: 235px;
  height: 349px;
  background-image: url(..//img/branch_video.svg);
  background-repeat: no-repeat;
  z-index: -1;
}

.video_list_item:nth-child(4n+1)::after {
  content: '';
  position: absolute;
  right: 0;
  bottom: -60%;
  width: 103px;
  height: 427px;
  background-image: url(..//img/arc_video.svg);
  background-repeat: no-repeat;
  transform: rotate(180deg);
  z-index: -1;
}

.video_list_item:nth-child(4n+3)::before {
  content: '';
  position: absolute;
  left: 0;
  top: -15px;
  width: 103px;
  height: 427px;
  background-image: url(..//img/arc_video.svg);
  background-repeat: no-repeat;
  z-index: -1;
}

.video_list_item:nth-child(4n+3)::after {
  content: '';
  position: absolute;
  right: 0;
  bottom: -80px;
  width: 200px;
  height: 160px;
  background-image: url(..//img/leaf_video.svg);
  background-repeat: no-repeat;
  z-index: -1;
}

.video_list_item_video iframe {
  display: block;
  width: 100%;
  max-width: 800px;
  height: 400px;
  margin: 0 auto;
}

.show_more_video {
  margin: 50px auto 0 auto;
}

.modal_callback {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.75);
  opacity: 0;
  visibility: hidden;
  overflow-y: auto;
  transition: 0.3s;
  z-index: 9999999999;
}

.modal_callback_box {
  min-height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.modal_callback_row {
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  position: relative;
  border-radius: 30px;
  background: #FDDF6D;
  padding: 50px 40px;
  max-width: 725px;
  margin: 0 2.5%;
}

.active_modal_callback {
  opacity: 1;
  visibility: visible;
  transition: 0.3s;
}

.active_modal_callback_row {
  opacity: 1;
  visibility: visible;
  transition: 0.3s;
}

.modal_callback_no_scroll {
  overflow: hidden !important;
}

.close_modal_callback {
  position: absolute;
  right: 15px;
  top: 20px;
  font-size: 40px;
  cursor: pointer;
  line-height: 18px;
  color: #000;
}

.modal_callback_text h3 {
  margin: 0 0 30px 0;
  font-size: 20px;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  text-align: center;
}

.modal_callback_text.dark_theme {
  color: #583E26;
}

.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #FFF3B6;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity 0.5s ease-in-out;
  z-index: 9999999;
}

.preloader-circle {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 5px solid transparent;
  border-top: 5px solid #F7C815;
  animation: spin 1s linear infinite;
  margin-right: 10px;
  position: absolute;
}

.preloader-circle-fast {
  width: 150px;
  height: 150px;
  border-top: 5px solid #583E26;
  animation-duration: 0.8s;
}

.preloader-circle-slow {
  width: 200px;
  height: 200px;
  border-top: 5px solid #929292;
  animation-duration: 1.2s;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

body.loaded .preloader {
  opacity: 0;
  pointer-events: none;
}

.main_header_mobile {
  display: none;
}

.help_pagination {
  display: none;
}

.problems h2 {
  text-align: center;
  line-height: 120%;
}
.grecaptcha-badge{	
	visibility:hidden;
}

/* ============================================ADAPTIVE============================================ */

@media(min-width:1921px) {
  .home .main_header .phones_row {
    background-size: cover;
  }

  .main_title {
    font-size: 67px;
  }
}

@media(max-width:1800px) {
  .more_articles_button_prev {
    right: auto;
    left: 20px;
    display: none;
  }

  .more_articles_button_next {
    left: auto;
    right: 20px;
    display: none;
  }

  .more_articles_swiper_box:hover .arrow {
    display: flex;
  }
}

@media(max-width:1650px) {
  .container {
    max-width: 95%;
  }

  .home .logo {
    padding-right: 0;
    text-align: left;
    padding-left: 2.5%;
  }
}

@media(max-width:1500px) {
  .logo img {
    max-width: 300px;
  }
}

@media(max-width:1400px) {
  .archive_article {
    width: calc(33.33333% - 18px);
  }

  .archive_page .archive_article:nth-child(8n+5)::after {
    display: none;
  }

  .archive_page .archive_article:nth-child(8n+12)::after {
    display: none;
  }

  .archive_page .archive_article:nth-child(6n+4)::after {
    content: '';
    position: absolute;
    right: 97%;
    top: -19.5%;
    width: 43px;
    height: 178px;
    background-image: url(..//img/arc_article.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    z-index: -1;
  }

  .archive_page .archive_article:nth-child(6n+9)::after {
    content: '';
    position: absolute;
    left: 97%;
    top: -19.5%;
    width: 43px;
    height: 178px;
    background-image: url(..//img/arc_article.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    transform: rotate(180deg);
    z-index: -1;
  }
}

@media(max-width:1350px) {
  .logo img {
    max-width: 250px;
  }

  .home .phones_row {
    padding-left: 40px;
  }

  .main_screen_row .center {
    gap: 30px;
  }

  .main_descr_row {
    gap: 20px;
  }

  .main_screen_row .main_btn {
    margin-left: 149px;
  }
}

@media(max-width:1279px) {
  .branch_archive {
    display: none;
  }

  .archive_page .archive_article::after {
    display: none;
  }

  .header_empty {
    height: 79px;
  }

  .main_screen {
    margin-top: 50px;
  }

  .contacts>img {
    display: none;
  }

  .about_row {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .about_row .right {
    width: 100%;
  }

  .about_short_descr_row {
    display: flex;
    align-items: center;
    gap: 20px;
  }

  .about_short_descr_row>img {
    position: unset;
  }

  .services_item {
    width: 100%;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    flex-direction: column;
  }

  .services_item:nth-child(3) {
    max-width: 100%;
  }

  .services_item .img_box,
  .services_item:nth-child(3) .img_box {
    width: 100%;
    padding-bottom: 50%;
  }

  .title_descr,
  .services_item:nth-child(3) .title_descr {
    width: 100%;
    padding: 20px 0 0 0;
  }

  .title_descr h3 {
    text-align: center;
  }

  .services_item:nth-child(3)::before,
  .services_item:nth-child(3)::after {
    display: none;
  }

  .help_row {
    flex-direction: column;
    gap: 30px;
  }

  .help_left,
  .help_right {
    width: 100%;
  }

  .help_right {
    max-width: 800px;
  }

  .help>img {
    display: none;
  }

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

  .main_screen_row .center {
    height: 100%;
    width: 73%;
    justify-content: flex-start;
  }

  .main_descr {
    width: 100%;
    max-width: 100%;
  }

  .branch_box {
    display: none;
  }

  .main_screen_row .main_btn {
    margin-left: 0;
  }

  .main_screen_row {
    height: auto;
  }

  .main_screen_row .right {
    display: none;
  }

  .main_title {
    font-size: 40px;
  }

  .main_title span:first-child {
    font-size: 30px;
  }

  .main_header {
    display: none;
  }

  .main_header_mobile {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #F7C815;
    padding: 10px 0;
    z-index: 9999999;
  }

  .main_header_mobile svg path {
    fill: #583E26;
  }

  .logo img {
    max-width: 200px;
  }

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

  .burger {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 5px;
  }

  .burger span {
    width: 30px;
    height: 4px;
    border-radius: 10px;
    background-color: #583E26;
  }

  .burger span:nth-child(2) {
    width: 20px;
  }

  .theme_switcher_row svg:first-child path {
    fill: #000;
  }

  .theme_switcher_row svg:last-child path {
    fill: #FFF3B6;
  }

  .theme_switcher {
    background: #FFF3B6;
  }

  .theme_switcher span {
    background: #F7C815;
  }

  .home .logo {
    padding: 0;
  }

  .lang a {
    color: #583E26;
  }

  .main_header_mobile_menu {
    position: absolute;
    right: -100%;
    top: 0;
    width: 100%;
    height: 100vh;
    max-width: 450px;
    background-color: #FFF3B6;
    color: #583E26;
    padding: 100px 30px 80px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 30px;
    transition: 0.3s;
  }

  .main_header_mobile_menu svg path {
    fill: #583E26;
  }

  .main_header_mobile_menu.active {
    right: 0;
    transition: 0.3s;
  }

  .menu_mobile_opacity_box {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.75);
    display: none;
  }

  .opacity {
    display: block;
  }

  .main_header_mobile_menu .navigation ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .main_header_mobile_menu .navigation ul li a {
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 700;
  }

  .close_mobile_menu {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 40px;
  }

  .main_header_mobile_menu .lang ul {
    justify-content: center;
  }

  .home .phones_row {
    padding-left: 0;
  }

  .mobile_menu_contacts .phones_row {
    display: flex;
    align-items: center;
    gap: 15px;
  }

  .mobile_menu_contacts .socials {
    flex-direction: row;
    gap: 20px;
    margin-top: 30px;
  }

  .mobile_menu_contacts .email {
    font-weight: 500;
    font-size: 17px;
  }

  .mobile_menu_contacts .email svg {
    min-width: 26px;
  }

  .branch_menu_mobile {
    position: absolute;
    right: 0;
    top: 100px;
    max-width: 150px;
  }

  .phone_burger {
    display: flex;
    align-items: center;
    gap: 30px;
  }

  .phone_burger .phones_mobile {
    line-height: 0;
  }
}

@media(max-width:1000px) {

  .video_list_item::after,
  .video_list_item::before {
    display: none;
  }

  .video_list {
    max-width: 95%;
    margin-left: auto;
    margin-right: auto;
  }

  .single_title>img {
    max-width: 100px;
  }

  .single_title {
    gap: 20px;
  }

  .archive_article {
    width: calc(50% - 13.5px);
  }

  .price_icon_box {
    min-width: 60px;
    display: flex;
    justify-content: center;
  }

  .contacts_row {
    flex-direction: column;
    align-items: center;
  }

  .contacts_row .right {
    width: 100%;
    max-width: 700px;
  }

  .problems_arrows img:not(:nth-child(2)) {
    display: none;
  }

  .problems_arrows img:nth-child(2) {
    width: 10px;
    object-fit: contain;
  }

  .problems .problems_list {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
  }

  .problems_list_item {
    width: 100%;
    max-width: 500px;
  }

  .problems_list>img {
    display: none;
  }

  .about_row .left {
    width: 50%;
    padding-bottom: 50%;
  }

  .price_list {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .price_list>img {
    display: none;
  }

  .price_list_item {
    width: 100%;
    max-width: 600px;
  }
}

@media(max-width:768px) {
  .video_list {
    gap: 50px;
  }

  .video_list_item {
    gap: 20px;
  }

  .single_header>img {
    display: none;
  }

  .single_header {
    flex-direction: column;
  }

  .single_title,
  .single_thubnail_box {
    width: 100%;
  }

  .single_thubnail_box {
    padding-bottom: 50%;
  }

  .single_post,
  .video_page {
    margin-top: 20px !important;
    padding-top: 0 !important;
  }

  .title_row {
    flex-direction: column;
    gap: 50px;
  }

  .title_row .title {
    width: 100%;
  }

  .single_title>img {
    max-width: 70px;
  }

  .main_screen {
    margin-top: 0px;
  }

  .footer_row {
    flex-direction: column;
    align-items: flex-start;
    gap: 50px;
  }

  .main_screen_row .center .main_btn {
    margin-left: auto;
    margin-right: auto;
  }

  .mt_100 {
    padding-top: 70px;
  }

  .title h2,
  .title h1,
  .single_title h1 {
    font-size: 20px;
  }


  .help_left h2 {
    white-space: wrap;
  }

  .more_articles_swiper_box:hover .arrow {
    display: none;
  }

  .more_articles_pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
  }

  .more_articles_pagination span {
    padding: 0;
    margin: 0 !important;
    width: 10px;
    height: 10px;
    background-color: #583E26;
  }

  .main_screen_row {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .main_screen_row .left {
    width: 50%;
  }

  .main_screen_row .center {
    width: 100%;
  }

  .main_img_box img {
    height: 350px;
  }

  .header_empty {
    height: 100px;
  }

  .main_title {
    text-align: center;
  }

  .help_slider::after {
    display: none;
  }


}

@media(max-width:600px) {

  .video_list_item_title,
  .youtube_link {
    gap: 10px;
  }

  .video_list_item_title h2 {
    font-size: 20px;
    line-height: 120%;
  }

  .archive_article {
    width: 100%;
  }

  .form_row p {
    width: 100%;
  }

  .form_row p:nth-child(1) {
    order: 1;
  }

  .form_row p:nth-child(2) {
    order: 3;
  }

  .form_row p:nth-child(3) {
    order: 2;
  }

  .form_row p:nth-child(4) {
    order: 4;
  }

  .form_row p:nth-child(5) {
    order: 5;
  }

  .form_row p input,
  .form_row p select {
    max-width: 100%;
  }


  .about_row .left {
    width: 100%;
    padding-bottom: 100%;
  }

  .about_short_descr_row>img {
    display: none;
  }

  .education {
    flex-direction: column;
    gap: 20px;
  }

  .univer {
    width: 100%;
  }

  .about_short_descr {
    padding-left: 0;
  }
}

@media(max-width:500px) {
  .leaf_more_articles {
    max-width: 130px;
  }

  .single_thubnail_box img {
    border-radius: 70px 0;
  }

  .archive_page {
    padding-top: 20px !important;
    margin-top: 0 !important;
  }

  .archive_article {
    padding: 10px 10px 20px 10px;
  }

  .price_icon_box {
    margin-right: 15px;
  }

  .contacts_row .right {
    padding: 40px 15px;
  }

  .modal_callback_row {
    padding: 20px 15px;
  }

  .form_row {
    row-gap: 10px;
  }

  .form_row p input {
    height: 45px;
    border-radius: 12px;
  }

  .form_row p textarea {
    height: 80px;
    border-radius: 12px;
    padding: 10px;
  }

  .wpcf7-submit {
    margin-top: 20px;
  }

  .modal_callback_text h3 {
    margin-bottom: 20px;
  }

  .wpcf7-spinner {
    right: 50px;
  }

  .problems_list_item {
    padding: 10px 10px 20px 10px;
  }

  .price_list_item {
    padding: 25px 15px;
  }

  .services_item {
    padding: 10px;
  }

  .title_descr h3 {
    font-size: 22px;
  }

  .services_item .img_box,
  .services_item:nth-child(3) .img_box {
    padding-bottom: 70%;
  }

  .help_right .arrow {
    display: none;
  }

  .help_pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
  }

  .help_pagination span {
    padding: 0;
    margin: 0 !important;
    width: 10px;
    height: 10px;
    background-color: #583E26;
  }

  .help_slider {
    width: 100%;
  }

  .help_right {
    flex-direction: column;
  }

  .help_item {
    gap: 10px;
  }

  .mt_100 {
    padding-top: 50px;
  }

  .mt_70 {
    margin-top: 50px;
  }

  .line {
    min-width: 70px;
  }

  .main_btn {
    font-size: 16px;
    padding: 18px 40px;
  }

  .main_title {
    font-size: 24px;
    gap: 10px;
  }

  .main_title span:first-child {
    font-size: 20px;
  }

  .main_screen_row .left {
    width: 80%;
  }

  .header_menu_top {
    transform: scale(0.8);
  }

  .theme_switcher_row {
    gap: 5px;
  }

  .theme_switcher_row svg {
    display: none;
  }
}