/* @font-face {
    font-family: 'Lora', serif;
    src: local('Lora-Bold'), local('Lora-Bold'), url('https://assistpoint.ru/wp-content/themes/assistpointp/fonts/Lora-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
	font-display: swap;
} */
@font-face {
  font-family: "Lora";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/lora/v24/0QI6MX1D_JOuGQbT0gvTJPa787z5vBJFkq1umA.woff2)
    format("woff2");
  unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
@font-face {
  font-family: "Nunito Sans";
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/nunitosans/v12/pe0oMImSLYBIv1o4X1M8cce4E91Kdmwp.woff2)
    format("woff2");
  unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
@font-face {
  font-family: "Nunito Sans";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/nunitosans/v12/pe0qMImSLYBIv1o4X1M8cce5I9tScg.woff2)
    format("woff2");
  unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
@font-face {
  font-family: "Nunito Sans";
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/nunitosans/v12/pe0oMImSLYBIv1o4X1M8cce4E9lKdg.woff2)
    format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215,
    U+FEFF, U+FFFD;
}
/* @font-face {
    font-family: 'Nunito Sans', sans-serif;
    src: local('Nunito Sans'), local('Nunito Sans'), url('https://assistpoint.ru/wp-content/themes/assistpointp/fonts/NunitoSans-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
	font-display: swap;
}
@font-face {
    font-family: 'Nunito Sans', sans-serif;
    src: local('Nunito Sans'), local('Nunito Sans'), url('https://assistpoint.ru/wp-content/themes/assistpointp/fonts/NunitoSans-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
	font-display: swap;
}
 */
:root {
  font-size: 1em;
  font-weight: 400;
  --lora: "Lora", serif;
  --nunito: "Nunito Sans", sans-serif;
  --pixel: url("data:image/gif;base64,R0lGODlhAQABAIAAAP///////yH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==");
  --orange: #d68360;
  --dark-violet: #41355a;
  --color-text: #39464a;
  --white: #fff;
  --gray: #e5e5e5;
  --dark-gray: #5b5855;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: var(--nunito);
}

ul,
ol {
  list-style-type: none;
}

.hide {
  display: none;
}

.btn {
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: none;
  padding: 13px 37px;
  cursor: pointer;
  font-family: var(--lora);
  font-weight: 700;
  border-radius: 3px;
}

body {
  overflow-x: hidden;
}

a,
a:hover {
  text-decoration: none;
}

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

.title__h2 > h2,
.title__h2 > h1 {
  font-size: 36px;
  color: var(--color-text);
  text-align: center;
  font-weight: 700;
  line-height: 130%;
  font-family: var(--lora);
}

.close {
  width: 60px;
  height: 60px;
  display: block;
  position: absolute;
  right: 25px;
  top: -35px;
  position: absolute;
  z-index: 9999;
  cursor: pointer;
  background: #d68360;
  border-radius: 50%;
  box-shadow: 0px 4px 30px rgba(0, 0, 0, 0.25);
}

.close__mobile {
  position: absolute;
  width: 16px;
  height: 16px;
  display: block;
  right: 10px;
  top: 10px;
  cursor: pointer;
}

.close__mobile::before,
.close__mobile::after {
  content: "";
  width: 16px;
  height: 2px;
  background-color: #3e635f;
  position: absolute;
  right: 1px;
  top: 10px;
  cursor: pointer;
}

.close__mobile::before {
  transform: rotate(-45deg);
  top: 7px;
}

.close__mobile::after {
  transform: rotate(45deg);
  top: 7px;
}

.close:target {
  display: none;
}

.close::before,
.close::after {
  content: "";
  position: absolute;
  display: block;
  width: 18px;
  height: 2px;
  left: 22px;
  top: 28px;
  border-radius: 5px;
  background-color: #fff;
}

.close::before {
  transform: rotate(45deg);
}

.close::after {
  transform: rotate(-45deg);
}

.header {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
  background-color: var(--dark-violet);
}

.header__contacts {
  padding: 14px 0px;
  background-color: var(--secondary_gray);
  width: 100%;
}

.header__top {
  padding: 0px !important;
}

.header__top .footer__phone li a,
.header__top .footer__email a,
.header__top .footer__social p {
  font-size: 14px !important;
}

.header__top .footer__phone li a:hover {
  font-weight: 700;
}

.toggle__popup {
  display: none;
}

.header__wrap,
.header__nav,
.header__tells,
.header__phone a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 400;
  font-size: 14px;
  line-height: 120%;
  color: var(--white);
  position: relative;
}

.header__wrap,
.header {
  z-index: 4;
}

.header__phone a:hover {
  font-weight: 700;
}

.header__nav {
  width: 100%;
  margin: 0px 0px 27px;
  border-bottom: 1px solid #d5d5d6;
}

.header__nav_active .header__wrapper li > a {
  flex-direction: column;
  align-items: baseline;
}

.header__nav_active .header__wrapper li > a {
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  color: var(--golden_accent);
  padding: 15px 0px;
  display: block;
}

.header__wrapper {
  display: flex;
  max-width: 965px;
  width: 100%;
  gap: 0 40px;
  justify-content: flex-start;
  align-items: center;
}

.header__wrapper > li::after {
  content: "";
  width: 0%;
  height: 3px;
  display: block;
  background-color: var(--orange);
  position: absolute;
  top: 68px;
  left: 0px;
}

.header__wrapper > li:hover::after {
  width: 100%;
}

.header__nav_active .header__wrapper {
  flex-direction: column;
  align-items: baseline;
}

.header__wrapper li > a {
  font-size: 16px;
  font-weight: 400;
  line-height: 19px;
  color: var(--color-text);
  position: relative;
}

.header__wrapper li:not(.item__hover) > a:hover {
  font-weight: 700;
}

.header__tells {
  gap: 20px 30px;
}

.header__tells .header__btn {
  display: none;
}

.header__phone {
  position: relative;
  display: flex;
  align-items: center;
}

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

.header__phone a.header__num_act:before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  background-size: 100%;
  background-repeat: no-repeat;
  margin-right: 8px;
}

.header__phone .header__message {
  display: inline-block;
  width: 20px;
  height: 20px;
  background-size: 100%;
  margin-right: 8px;
}

.header__phone .header__message_tg:after {
  background-size: 65px 20px;
}

.header__phone .header__message_vb:after {
  background-size: 65px 20px;
  background-position: -23px;
}

.header__phone .header__message_wa:after {
  background-size: 65px 20px;
  background-position: -45px;
}

.header__icons_mobile,
.header__close_mobile,
.header__text_mobile {
  display: none;
}

.header__mobile {
  width: 40px;
  height: 36px;
  position: relative;
  border: 0px solid var(--accent_green);
  transition: 0.3s all;
  display: none;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.header__mobile span {
  width: 40px;
  height: 2px;
  background: var(--accent_green);
  display: block;
}

.header__mobile_active span {
  opacity: 0;
  transition: 0.3s all;
}

.header__mobile_active {
  width: 36px;
  position: relative;
  border: 2px solid var(--accent_green);
  transition: 0.3s all;
}

.header__mobile::before,
.header__mobile::after {
  content: "";
  width: 40px;
  height: 2px;
  background-color: var(--accent_green);
  position: absolute;
  left: 0px;
  display: block;
  transition: 0.3s all;
}

.header__mobile::before {
  top: 5px;
}

.header__mobile_active::before {
  top: 15px;
  transform: rotate(-45deg);
}

.header__mobile::after {
  bottom: 5px;
}

.header__mobile_active::after {
  bottom: 15px;
  transform: rotate(45deg);
}

.header__mobile_active::before,
.header__mobile_active::after {
  transition: 0.3s all;
  width: 18px;
  left: 7px;
}

.header__srch {
  width: 300px;
  position: absolute;
  top: 70px;
  right: 0px;
  padding: 10px 48px 10px 10px;
  background-color: var(--dark-violet);
  z-index: 99;
  transition: 0.5s right;
  border-radius: 3px;
  display: none;
}

.header__srch .searchform > div {
  position: relative;
}

.header__srch label {
  display: none;
}

.header__srch .btn__icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  position: absolute;
  right: 17px;
  top: 12px;
  background-color: transparent;
  border: 3px solid var(--orange);
  visibility: hidden;
}

.header__srch form {
  position: relative;
}

.header__srch form .search-form__button {
  position: absolute;
  right: 11px;
  top: 14px;
  border: none;
  background: transparent;
  cursor: pointer;
}

.header__srch label.screen-reader-text + input {
  padding: 14px 43px 14px 14px;
  max-width: 280px;
  width: 100%;
  color: var(--dark-violet);
  font-size: 14px;
  line-height: 120%;
  background-repeat: no-repeat;
  background-position: 5% 51%;
  border-radius: 3px;
}

.header__logo {
  position: relative;
  width: 184px;
  overflow: hidden;
  height: 38px;
}

.header__logo a {
  height: 80px;
  width: 184px;
  display: block;
  position: absolute;
  left: 0px;
  top: 6px;
}

.header__logo img {
  width: 192px;
  height: 72px;
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: 50% 50%;
}

.header__social {
  visibility: hidden;
}

.item__hover::before {
  content: "";
  background-image: url("https://assistpoint.ru/wp-content/themes/assistpointp/image/arrow_menu.svg");
  background-size: cover;
  background-repeat: no-repeat;
  width: 30px;
  height: 30px;
  display: block;
  position: absolute;
  right: -26px;
  top: 22px;
  transform: rotate(0deg);
  transition: 0.5s all;
  background-position: 0% 50%;
}

.item__hover:hover::before {
  transform: rotate(180deg);
  transition: 0.5s all;
}

.close_search {
  position: absolute;
  top: 15px;
  right: 15px;
  cursor: pointer;
  display: block;
  width: 30px;
  height: 30px;
}

.close_search::before,
.close_search::after {
  content: "";
  position: absolute;
  display: block;
  width: 18px;
  height: 2px;
  left: 8px;
  top: 16px;
  border-radius: 5px;
  background-color: var(--orange);
}

.close_search::before {
  transform: rotate(45deg);
}

.close_search::after {
  transform: rotate(-45deg);
}

.btn__dark {
  background-color: var(--orange);
  color: var(--white);
  transition: 0.1s all;
}

.btn__dark:hover {
  background-color: #a75938;
  transition: 0.1s all;
}

.header__icons {
  display: flex;
  gap: 0px 3px;
}

.header__icon {
  display: block;
  width: 24px;
  height: 24px;
  background-size: 100%;
  background-repeat: no-repeat;
  cursor: pointer;
}

.header__menu {
  width: 100%;
}

.header__bg {
  position: fixed;
  width: 100%;
  height: 100%;
  background: var(--accent_green08);
  left: 0px;
  top: 0px;
  display: none;
  z-index: 99;
}

.header__bg_active {
  display: block;
}

.header__item {
  position: relative;
  padding: 28px 0px 23px;
}
.item__hover {
  padding: 28px 6px 23px;
}

.item__hover ul {
  display: none;
}

.item__hover:hover ul {
  display: block;
}

.header__submenu {
  background-color: var(--dark-violet);
  position: absolute;
  width: 140%;
  padding: 0px 20px 20px;
  left: 0px;
  top: 70px;
  border-radius: 3px;
}

.header__submenu li {
  margin-top: 15px;
}

.header__submenu li a {
  color: var(--white);
}

.header__search {
  background-image: url("https://assistpoint.ru/wp-content/themes/assistpointp/image/search_icons.svg");
}

/* popup */

.popup {
  background: var(--accent_green08);
  width: 100%;
  height: 100%;
  display: none;
  justify-content: center;
  align-items: center;
  position: fixed;
  left: 0px;
  top: 0px;
  z-index: 9999;
}

.popup:target {
  background: rgb(65 53 90 / 90%);
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  left: 0px;
  top: 0px;
  z-index: 99999;
}

.popup__img {
  width: 480px;
  height: 500px;
  background-image: var(--pixel);
  background-size: cover;
  background-position: 50% 50%;
  position: relative;
}

.popup__wrapper {
  position: relative;
  max-width: 930px;
  width: 100%;
  display: flex;
  background-color: var(--white);
}

.popup__wrapper .popup__img {
  order: 2;
}

.popup__form {
  max-width: 450px;
  width: 100%;
}

.popup__form .home_form {
  box-shadow: unset;
  width: 100%;
  max-width: 450px;
  height: 100%;
  padding: 57px 63px;
  margin: 0px;
  position: relative;
}
.popup__form .home_form::after {
  content: "";
  width: 106px;
  height: 50px;
  background-image: url(https://assistpoint.ru/wp-content/uploads/2022/12/arrow_left.png);
  position: absolute;
  top: 77%;
  right: -13%;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.popup__form .home_form form > p {
  padding: 0px;
  margin-bottom: 8px;
}

.popup__form .home_form > p {
  font-weight: 700;
  font-size: 25px;
  line-height: 32px;
  text-align: center;
  color: #5b5855;
}

.popup__form .home_form form label {
  padding: 0px;
}

.popup__content {
  background: rgb(65 53 90 / 90%);
  padding: 40px;
  width: 100%;
  position: absolute;
  bottom: 52px;
}
.popup__title {
  font-weight: 700;
  font-size: 28px;
  line-height: 120%;
  color: var(--white);
  font-family: var(--lora);
  text-align: center;
}

.popup__desc {
  font-weight: 400;
  font-size: 15px;
  line-height: 18px;
  color: var(--white);
  width: 100%;
  margin-top: 10px;
  text-align: center;
}

/* popup end */

/* prform */

.prform {
  position: relative;
  overflow: hidden;
  background-color: #edf0f5;
  z-index: 0;
}

.prform__rec {
  display: block;
  width: 100%;
  position: absolute;
  bottom: 0px;
  height: 125px;
  background: var(--accent_green);
}

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

.prform__content {
  padding: 0px;
  max-width: 580px;
  width: 100%;
  height: 100%;
  position: relative;
  padding: 16px 0px;
}

.prform__content > h1,
.prform-program .prform__headling {
  font-size: 40px;
  font-weight: 700;
  line-height: 130%;
  text-align: left;
  color: var(--white);
  margin-bottom: 20px;
  font-family: var(--lora);
  position: relative;
}

.prform__content::before {
  content: "";
  display: block;
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 4px;
  background: var(--orange);
}

.prform__content::after {
  content: "";
  display: block;
  position: absolute;
  left: 0px;
  bottom: 0px;
  width: 73%;
  height: 4px;
  background: var(--orange);
}

.prform__content p {
  font-size: 24px;
  font-weight: 700;
  line-height: 140%;
  text-align: left;
  color: var(--white);
  max-width: 540px;
}

.prform__content div + div {
  margin-top: 24px;
}

.prform__content div {
  font-weight: 700;
  font-size: 18px;
  line-height: 110%;
  color: var(--white);
}

.prform__content div span {
  font-weight: 800;
  font-size: 18px;
  line-height: 110%;
  color: #ff986d;
}

.prform__form {
  position: relative;
  width: 100%;
  margin-top: 0px;
  display: flex;
  justify-content: center;
}
.prform__bg {
  position: absolute;
  left: 0px;
  top: 0px;
  z-index: -1;
  width: 100%;
  height: 450px;
  overflow: hidden;
}

.prform__bg:before {
  content: "";
  width: 100%;
  position: absolute;
  left: 0px;
  top: 0px;
  height: 100%;
  display: block;
  background: linear-gradient(
    0deg,
    rgb(37 37 73 / 89%),
    rgba(37, 37, 73, 0.57)
  );
}

.prform__bg img {
  height: max-content;
  width: 100%;
  position: relative;
  top: -50%;
  z-index: -1;
}

.home_form {
  padding: 30px 30px 35px;
  max-width: 380px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 9;
  position: relative;
  background: rgba(239, 243, 248, 0.95);
  margin-top: 47px;
  margin-left: 7%;
}

.home_form form {
  display: flex;
  flex-direction: column;
}

.home_form form p {
  font-family: var(--lora);
  font-weight: 700;
  font-size: 20px;
  line-height: 130%;
  color: var(--dark-gray);
  text-align: center;
  margin-bottom: 8px;
}

.home_form form label p {
  font-family: var(--nunito);
  font-weight: 400;
  font-size: 14px;
  line-height: 120%;
  color: var(--dark-gray);
  text-align: left;
  margin-bottom: 0px;
  padding: 16px 0 5px;
}

.home_form form label {
  position: relative;
  width: 100%;
}

.home_form form label input {
  padding: 10px 16px 10px 16px;
  max-width: 324px;
  width: 100%;
  height: 44px;
  border: 1px solid var(--golden_accent);
  color: #8997a6;
  font-size: 16px;
  line-height: 120%;
  background-repeat: no-repeat;
  background-position: 5% 51%;
}

.home_form form > input {
  padding: 14px 15px;
  max-width: 324px;
  width: 100%;
  background-color: var(--orange);
  color: #fff;
  border: none;
  margin: 24px auto 0px;
  font-weight: 700;
  font-size: 15px;
  line-height: 18px;
  transition: 0.1s background-color;
  cursor: pointer;
}

.home_form form > input:hover {
  background-color: #a75938;
  transition: 0.1s all;
}

.prform_footer {
  min-height: 500px;
}

.prform_footer .ft__prform {
  height: 500px;
}

.ft__prform {
  height: 100%;
  width: 100%;
  background: var(--pixel);
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
}

/* programs */

.programs {
  padding: 80px 0px 60px;
  background: #edf0f5;
}

.programs .rek1 {
  display: none;
}

.programs__title {
  margin-bottom: 30px;
}
.programs__content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.programs__content .programs__tabs {
  display: flex;
  justify-content: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 0px;
  margin-bottom: 60px;
  position: relative;
  background-color: var(--dark-violet);
}

.programs__content .programs__close_mobile {
  display: none;
}

.programs__tabs_mobile {
  display: none;
}

.programs__tab {
  padding: 0px 45px 0px 40px;
  margin: 10px 0px;
  font-size: 16px;
  font-weight: 400;
  color: var(--white);
  cursor: pointer;
  transition: 0.3s all;
  display: flex;
  align-items: center;
}

.programs__tab + .programs__tab {
  border-left: 1px solid #d68360;
}

.programs__tab:hover {
  text-decoration: underline;
  transition: 0.3s all;
}

.programs__gerb {
  width: 40px;
  height: 40px;
  display: block;
  background-image: var(--pixel);
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
  margin-right: 20px;
}

.programs__tab_active {
  background-color: var(--accent_green);
  color: var(--white);
}

.programs__items {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  filter: drop-shadow(0px 5px 80px rgba(161, 189, 225, 0.21));
  display: none;
}

.programs__items_active {
  display: block;
}

.programs__items.programs__items_show {
  display: flex;
}

/* .programs__items .content__item .content__item_active {
    display: flex;
} */

.programs__item {
  max-width: 380px;
  min-height: 360px;
  width: 100%;
  background-color: var(--dark-violet);
  transition: 0.5s all;
  position: relative;
}

.programs__item:hover {
  transition: 0.5s all;
}

.program__image {
  position: relative;
}
.program__image,
.program__img {
  width: 100%;
  height: 200px;
}

.program__img {
  background-image: var(--pixel);
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  cursor: pointer;
}

.program__terms {
  padding: 10.5px 12px;
  position: absolute;
  bottom: 8px;
  left: 15px;
  background: var(--dark_gold);
  opacity: 0.9;
  backdrop-filter: blur(300px);
  border-radius: 20px 0px;
}

.program__terms p,
.program__terms a {
  color: var(--white);
  font-weight: 700;
  font-size: 12px;
  line-height: 14px;
}

.program__text {
  padding: 20px 35px 35px;
}
.program__title a {
  font-size: 22px;
  font-weight: 700;
  line-height: 120%;
  color: var(--white);
  text-align: center;
  margin-bottom: 19px;
  display: block;
  transition: 0.5s color;
  font-family: var(--lora);
}

.program__title a:hover {
  color: var(--orange);
  transition: 0.5s color;
}

.program__option p {
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: var(--white);
  margin-bottom: 12px;
}

.program__option p > span {
  font-size: 16px;
  font-weight: 700;
  line-height: 140%;
  color: var(--white);
  margin-left: 12px;
}

.page-program__options {
  padding: 0px 20px 5px;
}

.program__arrow {
  width: 28px;
  height: 28px;
  background-image: var(--pixel);
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  display: block;
  position: absolute;
  right: 20px;
  bottom: 20px;
}

.programs__block {
  padding: 42px 32px;
  background-color: var(--white);
  max-width: 380px;
  width: 100%;
}

.programs__block h3 {
  font-weight: 700;
  font-size: 20px;
  line-height: 120%;
  color: var(--color-text);
}

.programs__map {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.map__image {
  background: var(--pixel);
  width: 780px;
  height: 455px;
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  position: relative;
}

.map_country {
  background-color: #fff;
  position: absolute;
  font-size: 11px;
  display: block;
  padding: 5px 25px 5px 10px;
  box-shadow: 1px 1px 4px #ecd7d7;
  transform: scale(1);
  transition: 0.5s all;
  cursor: pointer;
  z-index: 1;
}

.map_country:hover {
  transform: scale(1.1);
  transition: 0.5s all;
  z-index: 3;
}

.map_country:before {
  content: "";
  width: 2px;
  height: 100%;
  position: absolute;
  left: 0px;
  top: 0px;
  display: block;
  background-color: var(--orange);
}

.map_country:after {
  content: "";
  position: absolute;
  background-size: 100%;
  width: 14px;
  height: 14px;
  right: 6px;
  top: 6px;
  display: block;
  background-repeat: no-repeat;
}

.kn {
  left: 31%;
  top: 36%;
}

.pl {
  left: 42%;
  top: 39%;
}
.fr {
  left: 35%;
  top: 49%;
}
.sr {
  left: 44%;
  top: 52%;
}
.bg {
  left: 56%;
  top: 45%;
}
.tr {
  left: 57%;
  top: 54%;
}

.cl {
  left: 30%;
  top: 86%;
}

.ro {
  left: 54%;
  top: 38%;
}

.kn:after {
  background-image: url("https://assistpoint.ru/wp-content/themes/assistpointp/image/canada.svg");
}
.pl:after {
  background-image: url("https://assistpoint.ru/wp-content/themes/assistpointp/image/poland.svg");
}
.fr:after {
  background-image: url("https://assistpoint.ru/wp-content/themes/assistpointp/image/france.svg");
}
.sr:after {
  background-image: url("https://assistpoint.ru/wp-content/themes/assistpointp/image/serbia.svg");
}
.bg:after {
  background-image: url("https://assistpoint.ru/wp-content/themes/assistpointp/image/bulgaria.svg");
}
.tr:after {
  background-image: url("https://assistpoint.ru/wp-content/themes/assistpointp/image/turkey.svg");
}
.cl:after {
  background-image: url("https://assistpoint.ru/wp-content/themes/assistpointp/image/chile.svg");
}
.ro:after {
  background-image: url("https://assistpoint.ru/wp-content/themes/assistpointp/image/romania.svg");
}

.programs__block p {
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: var(--color-text);
  margin-top: 16px;
}

.programs__block button {
  margin-top: 30px;
}

.tmblock {
  padding: 50px 0px;
  position: relative;
}

.tmblock:before {
  content: "";
  width: 100%;
  height: 300px;
  display: block;
  position: absolute;
  background-color: #edf0f5;
  left: 0;
  bottom: 0px;
  z-index: -1;
}

.tmblock__wrapper {
  display: flex;
  flex-direction: column;
}
.tmblock__h2 {
  font-weight: 700;
  margin-bottom: 10px;
}
.tmblock__desc {
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  text-align: center;
  color: var(--white);
}
.tmblock__wrap {
  display: flex;
  gap: 40px 20px;
  margin-top: 115px;
}
.tmblock__item_full {
  display: flex;
  width: 100%;
  align-items: end;
}

.tmblock__item_full .tmblock__img {
  width: 380px;
}

.tmblock__item_short {
  position: relative;
  width: 380px;
  height: 355px;
  background: var(--dark-violet);
  border-radius: 3px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.tmblock__item_short:before {
  content: "";
  width: 100%;
  height: 6px;
  background-color: var(--orange);
  position: absolute;
  bottom: -2px;
  left: 0px;
  display: block;
}

.tmblock__img {
  width: 165px;
  height: 165px;
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-image: var(--pixel);
  position: absolute;
  border-radius: 50%;
  background-color: var(--orange);
  top: -18%;
}

.tmblock__block {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.tmblock__block::after {
  content: "";
  height: 100%;
  width: 6px;
  background-color: var(--golden_accent);
  display: block;
  position: absolute;
  right: -6px;
  top: 0px;
}

.tmblock__name {
  font-weight: 700;
  font-size: 24px;
  line-height: 120%;
  text-align: center;
  color: #ffffff;
  margin-bottom: 12px;
  font-family: var(--lora);
  margin-top: 50px;
}

.tmblock__item_short {
  position: relative;
}

.tmblock__spec {
  font-weight: 400;
  font-size: 18px;
  line-height: 120%;
  color: var(--orange);
  font-style: italic;
  text-align: center;
  margin-bottom: 16px;
}

.cpblock {
  padding: 50px 0px 80px 0px;
}
.cpblock__h2 {
  font-weight: 700;
  margin-bottom: 40px;
  position: relative;
}

.cpblock__h2:before,
.subline:before {
  position: absolute;
  content: "";
  width: 200px;
  height: 4px;
  background-color: var(--orange);
  left: 50%;
  transform: translateX(-50%);
  bottom: -18px;
}
.subline:before {
  bottom: -30px;
}
.cpblock__wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap-reverse;
}
.cpblock__text {
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: var(--color-text);
  max-width: 780px;
  width: 100%;
  text-align: center;
}
.content-author .cpblock__text {
  max-width: 780px !important;
}

.content-author .cpblock__text p > img {
  width: 100%;
  height: auto;
}

.cpblock__text_ {
  width: 50%;
}
.lsblock {
  padding: 50px 0px;
}
.lsblock__h2 {
  margin-bottom: 40px;
}
.lsblock__wrapper {
  display: flex;
  flex-direction: column;
}

.lsblock__wrap {
  display: flex;
  justify-content: space-around;
  gap: 30px 20px;
}

.lsblock__item {
  width: 380px;
  background-color: var(--dark-violet);
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  padding: 30px 20px 40px;
  position: relative;
}

.lsblock__item:before {
  content: "";
  width: 100%;
  height: 6px;
  background-color: var(--orange);
  position: absolute;
  top: -2px;
  left: 0px;
  display: block;
}

.lsblock__headling {
  font-weight: 700;
  font-size: 24px;
  line-height: 120%;
  text-align: center;
  color: var(--white);
  margin-bottom: 15px;
}

.lsblock__icon {
  width: 125px;
  height: 125px;
  display: block;
  background: var(--pixel);
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  margin-bottom: 27px;
}

.lsblock__text {
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  text-align: center;
  color: var(--white);
}

.single__achment .lsblock__wrap {
  flex-wrap: wrap;
}

/* posts */

.posts {
  padding: 50px 0px 120px;
  background-color: #edf0f5;
  position: relative;
}

.posts__category {
  background-color: var(--white);
}

.posts__category .posts__h2 {
  max-width: 780px;
  width: 100%;
  margin-bottom: 90px;
  position: relative;
}

.posts__category .posts__wrapper {
  align-items: center;
}

.posts__category .posts__wrap {
  gap: 30px 20px;
  align-items: flex-start;
  width: 100%;
}

.posts__category .mainPost {
  max-width: calc(100% / 2 - 13px);
}

.posts__archive {
  padding: 60px 0px 70px;
}

.posts__h2,
.article__h2 {
  margin-bottom: 40px;
}

.posts__h2 > h2 {
  font-weight: 700;
}

.posts__wrapper {
  display: flex;
  flex-direction: column;
}

.posts__wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px 10px;
}

.mainPost {
  position: relative;
  background-position: 50% 50%;
  max-width: calc(100% / 2 - 7px);
  width: 100%;
  background-color: var(--dark-violet);
  min-height: 450px;
}

.mainPost__data {
  display: flex;
  flex-wrap: wrap;
  font-style: italic;
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  color: #d68360;
  margin-bottom: 10px;
}

.posts__item_img {
  background-image: var(--pixel);
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 252px;
  cursor: pointer;
}

.mainPost__content {
  padding: 15px 20px 25px;
  bottom: 0px;
  left: 0px;
  width: 100%;
  height: auto;
}

.mainPost__title > a {
  display: block;
  font-weight: 700;
  font-size: 18px;
  line-height: 130%;
  color: var(--white);
  margin-bottom: 8px;
  text-align: left;
  font-family: var(--lora);
  transition: 0.5s color;
}

.mainPost__title > a:hover {
  color: var(--orange);
  transition: 0.5s color;
}

.mainPost__desc {
  font-weight: 400;
  font-size: 15px;
  line-height: 130%;
  color: var(--white);
  text-align: left;
}

.mainPost__desc a {
  display: inline-flex;
  align-items: center;
  color: var(--white);
  font-weight: 700;
  margin-left: 2px;
}

.mainPost__arrow_white {
  width: 16px;
  height: 16px;
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  margin-left: 4px;
  display: block;
}

.page-programs__mainPost {
  min-height: 400px;
}

.page-programs__content {
  padding: 15px 20px 5px;
}

.page-programs__content .mainPost__title a {
  font-size: 22px;
}

.minorPost {
  padding: 15px;
  background-color: var(--dark-violet);
  transition: 0.5s all;
  max-width: calc(100% / 2 - 7px);
  width: 100%;
}

.minorPost__title > a {
  font-weight: 700;
  font-size: 20px;
  line-height: 120%;
  color: var(--white);
  margin-bottom: 10px;
  display: block;
  font-family: var(--lora);
  transition: 0.5s color;
}

.minorPost__title > a:hover {
  color: var(--orange);
  transition: 0.5s color;
}

.minorPost__data {
  display: flex;
  flex-wrap: wrap;
  font-style: italic;
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  color: #d68360;
  margin-bottom: 10px;
}

.minorPost__date,
.minorPost__author {
  display: flex;
  align-items: center;
  position: relative;
}

.minorPost__icon {
  width: 14px;
  height: 14px;
  background-image: var(--pixel);
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
}

.minorPost__author_divide:before {
  content: "";
  /* position: absolute;
    left: 0px;
    top: 0px; */
  height: 100%;
  width: 1px;
  background-color: #96784b;
  display: block;
  margin-right: 12px;
}

.minorPost__date p,
.minorPost__author p {
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  color: var(--orange);
}

.minorPost__desc {
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: var(--white);
}
.posts__link {
  margin: 0 auto;
}

.posts__link_programs {
  margin: 40px auto 0px;
  display: flex;
  justify-content: center;
}

.posts__link a {
  font-weight: 700;
  font-size: 18px;
  line-height: 22px;
  color: var(--main_green);
  display: flex;
  align-items: center;
}

.posts__link a:hover {
  text-decoration: underline;
}

.home_form > p {
  max-width: 450px;
  width: 100%;
  padding: unset;
  background-color: unset;
  font-weight: 700;
  font-size: 24px;
  line-height: 140%;
  color: var(--white);
  text-align: left;
  margin-bottom: 40px;
}

.footer {
  display: flex;
  flex-direction: column;
  background: #4e4365;
  position: relative;
}

.footer:before {
  content: "";
  width: 100%;
  height: 6px;
  display: block;
  background-color: var(--orange);
  position: absolute;
  left: 0px;
  top: -3px;
  z-index: 3;
}

.footer__contact_bg,
.footer__copyright {
  background-color: var(--dark-violet);
}

.footer__contact {
     display: flex;
    padding: 40px 0px 45px;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    flex-direction: row;
}

.footer__social {
  display: flex;
  align-items: center;
  gap: 0px 10px;
      max-width: 255px;
    width: 100%;
}
.footer__icon{
cursor:pointer;
}

.footer__phone {
  display: flex;
  gap: 0px 15px;
}

.footer__phone li,
.footer__email {
  display: flex;
  gap: 0px 8px;
}

.footer__phone li a,
.footer__email a,
.footer__social p {
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: var(--white);
}

.footer__icon {
  display: block;
  width: 20px;
  height: 20px;
  background: var(--pixel);
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
}

.footer__phone {
  display: flex;
}

.footer__wrap {
  padding: 25px 0px 15px;
  display: flex;
  justify-content: space-between;
  align-self: start;
}

.footer__programs {
  max-width: 300px;
  width: 100%;
  text-align: left;
  padding: 3px 0px 0px 24px;
  border-left: 1px solid var(--orange);
}

.footer__headlimg {
  font-family: var(--lora);
  font-weight: 700;
  font-size: 20px;
  line-height: 140%;
  color: var(--white);
}

.footer__programs li {
  margin-top: 16px;
}

.footer__programs li a,
.footer__programs li {
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: var(--white);
}

.footer__programs li a:hover,
.footer__phone li a:hover,
.footer__email a:hover {
  font-weight: 700;
}

.footer__logo {
  max-width: 246px;
  height: 55px;
  background: var(--pixel);
  background-size: 100%;
  background-repeat: no-repeat;
  margin-right: 60px;
  width: 100%;
}

.footer__wrap > *:last-child {
  max-width: 280px;
  padding: 3px 0px 0px 25px;
}

.footer__copyright {
  padding: 18px 0px 26px;
  font-weight: 400;
  font-size: 14px;
  line-height: 19px;
  color: var(--white);
  text-align: center;
}

.footer__contact_icon li {
  position: relative;
}

.footer__contact_icon li::before {
  content: "";
  width: 17px;
  height: 17px;
  display: block;
  background-image: url("https://assistpoint.ru/wp-content/themes/assistpointp/image/location.svg");
  position: absolute;
  left: -20px;
  top: 2px;
}

/* content in programs */

.program-single__content .cpblock__text,
.program-schedule__content .schedule__desc {
  font-size: 18px;
  line-height: 150%;
  max-width: 600px;
}

/* list in programs*/

.list {
  padding: 90px 0px 50px;
  position: relative;
}

.list__h2 {
  margin-bottom: 65px;
  position: relative;
}

.list__h2:before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 4px;
  background-color: var(--orange);
  bottom: -24px;
}

.list:before {
  content: "";
  padding: 90px 0px 50px;
  position: absolute;
  left: 0px;
  top: 0px;
  display: block;
  width: 100%;
  height: 65%;
  background: #edf0f5;
  z-index: -1;
}

.list__response:before {
  display: none;
}

.list__wrapper {
  display: flex;
  flex-direction: column;
}

.list__wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px 0px;
}

.list__item {
  max-width: 780px;
  width: 100%;
  background-color: var(--dark-violet);
  padding: 20px;
  display: grid;
  grid-template-columns: 60px 1fr;
  grid-template-rows: auto;
  align-self: center;
}

.list__item {
  padding: 30px 30px 40px;
}

.list__response .list__item {
  background-color: #edf0f5;
  grid-template-columns: 85px 1fr;
}

.list__number {
  grid-column: 1/2;
  grid-row: 1/4;
  color: var(--white);
  padding: 0 10px;
  border-right: 1px solid var(--orange);
  display: flex;
  justify-content: center;
  align-items: center;
}

.list__number p {
  font-weight: 400;
  font-size: 44px;
  line-height: 140%;
  text-align: center;
}

.list__headling {
  grid-column: 3/4;
  grid-row: 1/2;
  font-weight: 700;
  font-size: 24px;
  line-height: 120%;
  color: var(--white);
  margin-bottom: 10px;
  margin-left: 20px;
  font-family: var(--lora);
}

.list__response .list__headling {
  font-family: var(--nunito);
  font-size: 16px;
  color: var(--dark-violet);
  text-transform: uppercase;
  font-weight: 700;
}

.list__desc {
  grid-column: 3/4;
  grid-row: 3/4;
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: var(--white);
  margin-left: 20px;
}

.list__response .list__desc {
  font-family: var(--nunito);
  font-size: 16px;
  color: var(--color-text);
}

.list__author {
  grid-column: 1/2;
  grid-row: 1/4;
  width: 85px;
  height: 85px;
  background-image: var(--pixel);
  background-position: 50% 50%;
  background-size: cover;
  background-repeat: no-repeat;
}

.list__response .list__author {
  border-radius: 50%;
}

.list__btn {
  margin-top: 30px;
  display: flex;
  justify-content: center;
}

.list__btn a {
  padding: 13px 25px;
}

/* schedule (list) */

.pt100 {
  padding-top: 100px;
}

.schedule {
  padding: 50px 0px;
}

.schedule__wrapper {
  flex-direction: column;
  display: flex;
  justify-content: center;
}

.schedule__h2 {
  margin-bottom: 24px;
}

.schedule__desc {
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  text-align: center;
  color: var(--color-text);
  max-width: 780px;
  width: 100%;
  margin: 0px auto 40px;
}

.schedule__wrap {
  display: flex;
  justify-content: space-evenly;
}

.schedule__lst {
  padding: 30px 20px 40px 50px;
  max-width: 580px;
  width: 100%;
  background-color: #edf0f5;
  position: relative;
  list-style-type: none;
}

.schedule__lst:before {
  content: "";
  width: 100%;
  height: 4px;
  background-color: var(--orange);
  display: block;
  position: absolute;
  left: 0px;
  top: -2px;
}

.schedule__lst li {
  position: relative;
  font-weight: 700;
  font-size: 18px;
  line-height: 120%;
  color: var(--color-text);
  margin-left: 18px;
}

.schedule__lst li + li {
  margin-top: 25px;
}

.schedule__lst li:before {
  content: "";
  position: absolute;
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 10px;
  border: 2px solid var(--orange);
  left: -18px;
  top: 6px;
}

/* review */

.review {
  padding: 50px 0px 100px;
}

.review__wrapper {
  display: flex;
  flex-direction: column;
}

.review__h2 {
  margin-bottom: 50px;
  position: relative;
}

.review__h2:before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 4px;
  background-color: var(--orange);
  bottom: -24px;
}

.review__desc {
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  text-align: center;
  color: var(--color-text);
  margin: 0px auto 35px;
  max-width: 780px;
  width: 100%;
}

.review__wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px 0px;
}

.review__item {
  position: relative;
  max-width: 780px;
  width: 100%;
  background-color: #edf0f5;
  border-radius: 0px 0px 3px 3px;
  padding: 18px 18px 30px;
}

.review__content span {
  font-weight: 700;
  font-size: 14px;
  line-height: 140%;
  color: var(--dark-violet);
  margin-bottom: 5px;
}

.review__content p {
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: var(--color-text);
}

.review__content_up p {
  font-family: var(--lora);
  font-weight: 700;
}

.review__content_up {
  margin-bottom: 20px;
}

.review__item:before {
  content: "";
  position: absolute;
  top: -2px;
  left: 0px;
  width: 100%;
  height: 4px;
  background-color: var(--orange);
  display: block;
}

.review__single {
  padding-bottom: 10px;
}

.review__single {
  display: none;
}

/* single page */

.prform__single {
  height: 423px;
  display: flex;
  align-items: center;
  overflow: visible;
}

.prform__single .prform__content > h1 {
  margin-bottom: 26px;
}

.prform__single .prform__wrapper {
  position: relative;
}

.prform__single .prform__author {
  max-width: 380px;
  width: 100%;
  padding: 96px 20px 31px;
  background: var(--dark-violet);
  display: flex;
  flex-direction: column;
  position: absolute;
  right: 0px;
  top: 0%;
}

.prform__single .prform__content::after {
  width: 0%;
}

.prform__single .prform__content {
  max-width: 780px;
}

.prform__single .prform__content::before {
  width: 73%;
}

.prform__single .prform__image {
  width: 120px;
  height: 120px;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url("https://assistpoint.ru/wp-content/themes/assistpointp/image/kurenchovjpg.jpg");
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 50%;
}

.prform__title {
  font-weight: 700;
  font-size: 24px;
  line-height: 120%;
  text-align: center;
  color: var(--white);
  font-family: var(--lora);
  margin-bottom: 10px;
}

.prform__subtitle {
  font-style: italic;
  font-weight: 400;
  font-size: 18px;
  line-height: 120%;
  text-align: center;
  color: var(--orange);
  margin-bottom: 27px;
}

.prform__desc {
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  text-align: center;
  color: var(--white);
  margin-bottom: 50px;
}

.prform__hint {
  font-weight: 700;
  font-size: 18px;
  line-height: 120%;
  text-align: center;
  color: var(--white);
  font-family: var(--lora);
}

.prform__author:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 6px;
  background-color: var(--orange);
  bottom: -3px;
  left: 0px;
  display: block;
}

.prform__breadcrumbs a,
.prform__breadcrumbs span {
  color: #ff986d;
}
.prform .home_form {
  position: relative;
}
.prform .home_form::before {
  width: 124px;
  height: 77px;
  content: "";
  position: absolute;
  background-image: url(https://assistpoint.ru/wp-content/uploads/2022/12/arrow_right.png);
  left: -45%;
  top: 70%;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
}
.prform__breadcrumbs a:hover {
  text-decoration: underline;
}
.prform__content .prform__nav {
  color: var(--white);
  margin-right: 10px;
}
.top_rating {
  width: 235px;
}

.content {
  padding: 60px 0px 0px;
}
.content__wrapper {
  display: flex;
  gap: 0px 20px;
}

.content__article {
  max-width: 780px;
  overflow: auto;
}

.content__article .contents {
  padding: 10px 30px 35px;
  background-color: #edf0f5;
  position: relative;
  margin-bottom: 25px;
}

.content__article .contents:before {
  content: "Содержание";
  font-weight: 700;
  font-size: 24px;
  line-height: 32px;
  color: #5b5855;
  font-family: var(--lora);
}

.content__article .contents li a {
  color: var(--body);
  text-decoration: none;
}

.content__article .contents li a:hover {
  text-decoration: underline;
}

.content__article .contents ol li {
  margin-bottom: -10px;
}

.content__sidebar,
.cat__sidebar {
  max-width: 380px;
  width: 100%;
  height: auto;
}

.content__sidebar input[type="submit"] {
  animation: play 1.4s ease infinite;
}

@keyframes glowing {
  0% {
    box-shadow: 0 0 3px #d68360;
  }
  50% {
    box-shadow: 0 0 10px #d75e2a;
  }
  100% {
    box-shadow: 0 0 3px #a75938;
  }
}

@keyframes play {
  0% {
    box-shadow: none;
  }
  50% {
    box-shadow: 0 0 0 8px rgb(223 115 70 / 22%);
  }
}

.content__resource div {
  font-weight: 700;
  font-size: 28px;
  line-height: 120%;
  color: var(--color-text);
  text-align: center;
  margin: 40px 0px 15px;
  font-family: var(--lora);
}

.content__resource ul {
  padding: 34px 30px 27px;
  background: #edf0f5;
  border-radius: 4px;
}

.content__resource ul li,
.content__resource ul li a {
  font-weight: 700;
  font-size: 18px !important;
  line-height: 120%;
  color: var(--color-text);
}

.content__resource ul li + li {
  margin-top: 25px;
}

.content__article p,
.content__article ul,
.content__article ol,
.content__article h2,
.content__article h3,
.content__article h4,
.content__article h5,
.content__article h6,
.content__article blockquote {
  max-width: 780px;
  width: 100%;
}

.content__article h3,
.content__article h4,
.content__article h5,
.content__article h6 {
  margin-bottom: 15px;
}
.content__article p {
  margin-bottom: 20px;
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
  color: var(--color-text);
}

.content__article > img,
.content__article p > img {
  width: 100%;
  height: max-content;
  margin: 5px 0px;
}

.content__article a {
  color: blue;
  text-decoration: none;
}

.content__article ul li {
  list-style-type: none;
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
  color: var(--color-text);
  position: relative;
  padding-left: 20px;
}

.content__article ul {
  margin-bottom: 20px;
}

.content__article ul li + li {
  margin-top: 10px;
}

.content__article ul li::before {
  content: " ";
  display: inline-block;
  margin-right: 6px;
  width: 6px;
  height: 6px;
  border: 3px solid var(--orange);
  border-radius: 50%;
  position: absolute;
  left: 0px;
  top: 5px;
}

.content__article h2 {
  font-weight: 700;
  color: var(--color-text);
  margin-top: 40px;
  margin-bottom: 20px;
  display: inline-block;
  font-size: 28px;
  line-height: 120%;
  font-family: var(--lora);
}

.content__article ol li {
  list-style-type: none;
  color: var(--color-text);
  padding-left: 40px;
  position: relative;
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
}

.content__article ol li + li {
  margin-top: 20px;
}

.content__article ol {
  margin: 20px 0px 35px;
  counter-reset: point 0;
}

.contents ol {
  margin: 13px 0px;
  counter-reset: point 0;
}

.contents ol li {
  list-style-type: none;
  padding-left: 23px;
  text-decoration: underline;
}

.content__article ol li::before {
  content: counter(point) ".";
  counter-increment: point;
  font-weight: 700;
  font-size: 16px;
  height: 24px;
  padding: 0px 6px;
  line-height: 110%;
  color: var(--white);
  background-color: var(--orange);
  position: absolute;
  left: -1px;
  top: 3px;
  display: flex;
  align-items: center;
  border-radius: 3px;
}

.contents ol li::before {
  content: "";
  width: 6px;
  height: 6px;
  border: 3px solid var(--orange);
  border-radius: 50%;
  position: absolute;
  left: 0px;
  top: 5px;
  padding: unset;
  background-color: unset;
}

.content__article blockquote {
  padding: 45px 35px 30px 35px;
  background-color: #edf0f5;
  position: relative;
  margin: 30px 0px 20px;
  display: inline-block;
}

.content__article blockquote p {
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: #39464a;
}

.content__article blockquote::before {
  content: "";
  width: 44px;
  height: 44px;
  background-image: url("https://assistpoint.ru/wp-content/themes/assistpointp/image/quote_as.svg");
  position: absolute;
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  left: 30px;
  top: -20px;
}

.content__article blockquote::after {
  content: "";
  width: 44px;
  height: 44px;
  background-image: url("https://assistpoint.ru/wp-content/themes/assistpointp/image/quote_as.svg");
  position: absolute;
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  right: 30px;
  bottom: -20px;
}

.content__article .youtube {
  display: block;
  width: 100%;
  height: 478px;
  margin: 20px 0 0 0;
}

.content__article table {
  display: table;
  text-align: center;
  border-collapse: collapse;
  width: 100%;
  margin: 30px 0 30px 0;
}

.content__article table tr td {
  border: 1px solid;
  padding: 7px 20px;
}

.table__wrapper {
  width: 100%;
  overflow: auto;
}

.content__article table.table2 {
  display: block;
  float: left;
  text-align: center;
  border-collapse: collapse;
  width: 100%;
  margin: 30px 0 30px 0;
}

.content__article table.table2 tr td {
  border: 1px solid;
  padding: 7px 20px;
}

.content__sidebar .prform__form {
  margin-left: 0%;
  position: sticky;
  top: 10px;
  height: max-content;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.content__popular,
.content__popular ul {
  display: flex;
  flex-direction: column;
}
.content__popular ul {
  gap: 15px;
}

.content__popular {
  padding: 20px 0 20px 35px;
  background: rgba(239, 243, 248, 0.95);
}
.content__popular p {
  margin-bottom: 15px;
  color: var(--dark-gray);
  font-weight: 700;
}

.content__popular ul li {
  display: flex;
}

.content__popular ul li:before {
  content: "";
  width: 18px;
  height: 21px;
  background-image: url(https://assistpoint.ru/wp-content/themes/assistpointp/img/contries.svg);
  background-size: 65px;
  background-position: -5% 50%;
  background-repeat: no-repeat;
  display: block;
  margin-right: 5px;
}

.content__popular ul li.rom:before {
  background-position: -5% 50%;
}
.content__popular ul li.bul:before {
  background-position: 104% 50%;
}
.content__popular ul li.pol:before {
  background-position: 32% 50%;
}
.content__popular ul li.fra:before {
  background-position: 67% 50%;
}

.content__popular a {
  color: var(--color-text);
}

.content__sidebar .home_form {
  margin-left: 0%;
  margin-top: 15px;
}

/* end single page */

/* article*/

.article {
  padding: 60px 0px 50px;
  position: relative;
}

.article:before {
  content: "";
  width: 100%;
  height: 300px;
  position: absolute;
  left: 0px;
  top: 0px;
  background-color: #edf0f5;
  display: block;
  z-index: -1;
}

.article__wrapper {
  display: flex;
  flex-direction: column;
}

.article__h3 {
  font-weight: 700;
  font-size: 30px;
  line-height: 140%;
  color: #15383c;
  margin-bottom: 30px;
  text-align: center;
}

.article__wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 40px 20px;
  filter: drop-shadow(0px 5px 80px rgba(161, 189, 225, 0.21));
}

.article__item {
  background-color: var(--dark-violet);
  max-width: 380px;
  width: 100%;
  min-height: 400px;
  border-radius: 3px;
}

.article__img {
  position: relative;
  width: 100%;
  height: 220px;
  background-image: var(--pixel);
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  cursor: pointer;
}

.article__content {
  padding: 15px 15px 30px;
}

.article_single::before {
  display: none;
}

.article__title a,
.article__title span {
  font-weight: 700;
  font-size: 20px;
  line-height: 140%;
  color: var(--white);
  font-family: var(--lora);
}

.article__title a:hover {
  color: var(--orange);
  transition: 0.5s color;
}

.article__data {
  display: flex;
  margin-top: 8px;
  margin-bottom: 10px;
  gap: 10px;
}

.article__data > div {
  font-style: italic;
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  color: var(--orange);
  display: flex;
}

.article__date_size {
  display: inline-block;
  width: 14px;
  height: 14px;
  background-image: var(--pixel);
  background-size: 14px;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  margin-right: 3px;
}

.article__desc {
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: var(--white);
}

.article__tags {
  display: flex;
  position: absolute;
  left: 15px;
  bottom: 8px;
  background: #9c7130;
  opacity: 0.9;
  backdrop-filter: blur(300px);
  border-radius: 20px 0px;
  padding: 11px 12px;
}

.article__tags a,
.article__tags p {
  font-weight: 700;
  font-size: 12px;
  line-height: 14px;
  color: var(--white);
  text-transform: uppercase;
}

/* program page */

.prform__program .prform__content p {
  font-size: 16px;
  font-weight: 400;
  line-height: 140%;
  text-align: left;
  color: var(--golden_accent);
  max-width: 580px;
}

.prform__program .prform__content h1 {
  font-weight: 700;
  font-size: 36px;
  line-height: 130%;
  color: var(--main_green);
  max-width: 580px;
}

.prform__program .prform__bg img {
  width: 65%;
  height: 500px;
  object-fit: cover;
}

.mt0 {
  margin-top: 0px !important;
}
.mt05 {
  margin-top: 5px !important;
}
.mt10 {
  margin-top: 10px !important;
}
.mt15 {
  margin-top: 15px !important;
}
.mt20 {
  margin-top: 20px !important;
}
.mt25 {
  margin-top: 25px !important;
}
.mt30 {
  margin-top: 30px !important;
}
.mb0 {
  margin-bottom: 0px !important;
}
.mb05 {
  margin-bottom: 5px !important;
}
.mb10 {
  margin-bottom: 10px !important;
}
.mb15 {
  margin-bottom: 15px !important;
}
.mb20 {
  margin-bottom: 20px !important;
}
.mb25 {
  margin-bottom: 25px !important;
}
.mb30 {
  margin-bottom: 30px !important;
}

blockquote {
  position: relative;
  padding: 30px 20px 30px 75px;
  background-color: var(--accent_green);
  margin-bottom: 20px;
}

blockquote > div:first-child {
  position: absolute;
  top: 50%;
  left: 24px;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  background-image: var(--pixel);
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
}

blockquote p:last-child {
  margin-bottom: 0px;
}

.wh272 {
  max-width: 272px;
  width: 100%;
}

.content__article .adv__img {
  opacity: 0.3;
}

/* end program page */

/* page about */

.prform__about .prform__content > p {
  font-weight: 400;
  font-size: 15px;
  line-height: 140%;
  color: var(--body);
}

.prform__about .prform__content {
  padding: 30px 0px 153px;
}

.prform__about .prform__content > p + p {
  margin-top: 20px;
}

.prform__about .prform__rec {
  height: 80px;
}

.about {
  padding: 100px 0px 70px;
}
.about .prform__wrapper {
  display: flex;
  gap: 0 20px;
  align-items: center;
  justify-content: center;
}
.about .prform__content {
  max-width: 780px;
  width: 100%;
  padding: 0px;
}
.about .prform__content::after {
  display: none;
}

.about .prform__content::before {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 54px;
  width: 200px;
  height: 4px;
  background: var(--orange);
}

.about .prform__content h1 {
  font-weight: 700;
  font-size: 32px;
  line-height: 120%;
  text-align: center;
  color: var(--white);
  margin-bottom: 37px;
}
.about .prform__content p {
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  text-align: center;
  color: var(--white);
  max-width: 100%;
}

.about .prform__bg img {
  top: -20%;
}

.contact {
  padding: 50px 0px 100px;
}

.contact__h2 {
  margin-bottom: 40px;
}

.contact__wrapper,
.contact__wrap {
  display: flex;
  flex-direction: column;
}
.contact__wrap {
  gap: 40px;
}

.contact__office {
  display: flex;
  height: 260px;
  width: 100%;
  border: 1px solid var(--secondary_gray);
}

.contact__map {
  width: 25%;
  height: 100%;
  background-size: cover;
  background-image: var(--pixel);
  background-repeat: no-repeat;
  background-position: 50% 50%;
}
.contact__info {
  width: 35%;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
}

.contact__city {
  font-weight: 700;
  font-size: 24px;
  line-height: 140%;
  color: var(--secondary_green);
  margin-bottom: 18px;
}
.contact__image {
  width: 40%;
  height: 100%;
  background-size: cover;
  background-image: var(--pixel);
  background-repeat: no-repeat;
  background-position: 50% 50%;
}

.contact__size {
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: var(--body);
  display: flex;
  display: inline-block;
}

.contact__size > p,
.contact__size > a {
  display: inline-block;
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: var(--body);
  max-width: calc(100% - 30px);
}

.contact__size + .contact__size {
  margin-top: 12px;
}

.contact__icon {
  width: 14px;
  height: 14px;
  background-size: cover;
  background-image: var(--pixel);
  background-repeat: no-repeat;
  background-position: 50% 50%;
  display: inline-block;
  margin-right: 6px;
}

/* end page about */

/* slider over image */

.slider_over {
  display: none;
  justify-content: center;
  align-items: center;
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background-color: #41355af5;
  z-index: 9;
}

.img_over {
  height: calc(100% - 100px);
}

.slider_close {
  color: var(--white);
  position: absolute;
  right: 0px;
  top: 0px;
  padding: 0px 20px;
  font-size: 60px;
  cursor: pointer;
}

.slider_close:hover {
  color: var(--orange);
}

/* cat */

.cat {
  padding: 100px 0px;
}

.cat__h1 {
  margin-bottom: 45px;
}

.cat__h1 h1 {
  font-weight: 700;
  font-size: 38px;
  line-height: 120%;
  color: var(--main_green);
}

.cat__wrapper,
.cat__nav {
  display: flex;
  width: 100%;
  margin-bottom: 20px;
}

.cat__wrapper {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
}

.cat__posts {
  display: flex;
  flex-direction: column;
  max-width: 880px;
  width: 100%;
  gap: 20px;
}

.cat__item {
  display: flex;
  min-height: 260px;
  background: var(--white);
  transition: 0.5s all;
  box-shadow: 0px 4px 0px rgba(0, 0, 0, 0);
}

.cat__item:hover {
  transition: 0.5s all;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.25);
}

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

.cat__img {
  display: block;
  width: 380px;
  height: 260px;
  background-image: var(--pixel);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%;
}

.cat__items {
  display: flex;
  flex-direction: column;
  gap: 20px;
  filter: drop-shadow(0px 5px 80px rgba(161, 189, 225, 0.21));
}

.cat__search {
  display: block;
  width: calc(100% / 2 - 12px);
}

.cat__search form > div {
  position: relative;
}

.cat__search svg {
  margin-top: 8px;
}

.cat__search form {
  position: relative;
}

.cat__search button {
  position: absolute;
  left: 0px;
  top: 0px;
  background: transparent;
  border: none;
}

.cat__search input {
  width: 100%;
  border: none;
  border-radius: 4px;
  padding: 9px 26px;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #8997a6;
  background-color: #edf0f5;
}

.cat__search input.btn__icon {
  background-image: url("https://assistpoint.ru/wp-content/themes/assistpointp/image/search_icons.svg");
  width: 40px;
  height: 40px;
  position: absolute;
  bottom: 0px;
  right: 4px;
  background-repeat: no-repeat;
  cursor: pointer;
  background-position: 50% 46%;
  background-size: 60%;
}

.screen-reader-text {
  font-weight: 400;
  font-size: 14px;
  line-height: 143%;
  color: #5b5855;
  margin-bottom: 4px;
  display: block;
}

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

.cat__pagination .current,
.cat__pagination .page-numbers {
  width: 40px;
  height: 40px;
  font-weight: 400;
  font-size: 18px;
  line-height: 120%;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
}

.cat__pagination a.page-numbers {
  font-weight: 400;
  font-size: 18px;
  line-height: 120%;
  color: var(--color-text);
}

.cat__pagination a.page-numbers:hover {
  text-decoration: underline;
}

.cat__pagination .current {
  color: var(--white);
  background: var(--orange);
}

.cat__pagination .prev,
.cat__pagination .next {
  font-size: 34px !important;
  padding-bottom: 4px;
  border: none;
  width: 20px !important;
  color: var(--color-text);
}

/* end cat */

.sliderblock {
  padding: 50px 0px;
}
.sliderblock__wrapper {
  display: flex;
  flex-direction: column;
  position: relative;
}

.slider__arrow {
  width: 48px;
  height: 48px;
  background: var(--pixel);
  position: absolute;
  display: block;
  background-repeat: no-repeat;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  filter: brightness(1);
  transition: 0.1s all;
  cursor: pointer;
}
.slider__arrow_left {
  left: -25px;
}

.slider__arrow_right {
  right: -25px;
  transform: rotate(180deg) translateY(40%);
}

.slider__arrow_right:hover,
.slider__arrow_left:hover {
  filter: brightness(1.2);
  transition: 0.1s all;
}

.sliderblock__wrap {
  display: block;
  margin-top: 30px;
  margin-bottom: 20px;
  transform: translateX(0px);
}
.slider__wrap {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.sliderblock__img {
  max-width: 280px;
  width: 100%;
  background-image: url(data:image/gif;base64,R0lGODlhAQABAIAAAP///////yH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==);
  background-size: 90%;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  height: 130px;
  cursor: pointer;
  position: relative;
  background-color: var(--gray);
  border-radius: 3px;
  display: inline-block;
}

.sliderblock__img {
  margin: 0px 10px;
}

.sliderblock_about .sliderblock__img {
  height: 240px;
}

/* author */

.author {
  padding: 70px 0px 120px;
}

.author__h2 {
  margin-bottom: 30px;
}

.author__profile,
.author__content {
  background-color: var(--dark-violet);
  position: relative;
}

.author__profile {
  max-width: 380px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.author__content {
  padding: 55px 30px 50px;
  max-width: 780px;
  width: 100%;
}

.author__content p {
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: var(--white);
}

.author__content p + p {
  margin-top: 25px;
}

.author__image {
  width: 165px;
  height: 165px;
  background: var(--pixel);
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -30%;
}

.author__name {
  font-weight: 700;
  font-size: 24px;
  line-height: 120%;
  text-align: center;
  color: var(--white);
  font-family: var(--lora);
  margin-top: 70px;
}

.author__desc {
  font-style: italic;
  font-weight: 400;
  font-size: 18px;
  line-height: 120%;
  text-align: center;
  color: #d68360;
  margin-top: 12px;
}

.author__facebook {
  margin: 10px auto;
  display: block;
  width: 30px;
  height: 30px;
  background: var(--pixel);
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
}

.author__email {
  margin-top: 10px;
  color: #d68360;
}

.author__email:hover {
  text-decoration: underline;
}

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

/* offices */

.offices {
  padding: 100px 130px;
}

.offices__h2 {
  margin-bottom: 40px;
}

.offices__wrap {
  display: flex;
  flex-direction: column;
  gap: 40px 0px;
}

.offices__contact {
  display: flex;
  padding: 25px 40px 38px;
  background-color: #edf0f5;
  flex-wrap: wrap;
  gap: 17px 38px;
  max-width: 600px;
  width: 100%;
}

.offices__phone,
.offices__mail,
.offices__address {
  display: flex;
  flex-direction: column;
}

.offices__phone,
.offices__mail {
  flex: 1 200px;
}

.offices__phone a,
.offices__mail a {
  font-weight: 700;
  font-size: 16px;
  line-height: 150%;
  color: var(--color-text);
}

.offices__phone span {
  font-weight: 700;
  font-size: 12px;
  line-height: 16px;
  color: #39464a;
}

.offices__phone a + a,
.offices__mail a + a {
  margin-top: 12px;
}

.offices__address,
.offices__city {
  flex: 1 100%;
}

.offices__city {
  display: flex;
  align-items: center;
}

.offices__item {
  display: flex;
}

.offices__header {
  font-weight: 700;
  font-size: 20px;
  line-height: 160%;
  color: var(--color-text);
  margin-bottom: 16px;
  font-family: var(--lora);
}

.offices__img {
  width: 657px;
  height: 351px;
  background: var(--pixel);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%;
}

.offices__sign {
  width: 41px;
  height: 49px;
  background: var(--pixel);
  background-size: cover;
  background-repeat: no-repeat;
  margin-right: 12px;
}

.offices__headling {
  font-weight: 700;
  font-size: 24px;
  line-height: 133%;
  color: var(--dark-violet);
  text-transform: uppercase;
  font-family: var(--lora);
}

.vote-block {
  display: flex;
  width: 150px;
  margin: 0 0 0 0px;
  overflow: hidden;
  float: left;
  vertical-align: middle;
  position: relative;
  min-height: 35px;
  flex-direction: column;
  align-items: flex-end;
}
.vote-block ol.show-current {
  position: relative;
  padding: 0px !important;
  margin: 3px 0px 10px 0px !important;
}
.rating-text {
  width: 155px;
  display: block;
  text-align: left;
  color: #fff;
}

body .hide {
  display: none;
}

body .show {
  display: flex;
}

.content_in ol {
  margin: 30px 0px 10px;
}

.content_in h1 {
  margin-bottom: 10px;
}

.content_in h3 {
  margin: 20px 0px 10px;
}

.content_in {
  margin-bottom: 90px;
}

.ad_offer {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  padding: 27px 35px;
  background: #edf0f5;
  border-radius: 4px;
  max-width: 100%;
  gap: 30px;
  margin-bottom: 15px;
}
.ad_image {
  height: 80px;
  display: flex;
  flex: 0 1 63px;
  background-image: var(--pixel);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50%;
}
.ad_text {
  flex: 1 1;
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: #39464a;
}

.vote-block {
  display: block;
  width: 150px;
  margin: 0 0 0 0px;
  overflow: hidden;
  float: left;
  vertical-align: middle;
  position: relative;
  min-height: 35px;
}
.vote-block .ratingol {
  list-style: none;
  margin: 0 10px 0 0;
  padding: 0;
  height: 15px;
  float: left;
  vertical-align: middle;
  background: none !important;
}
.vote-block .ratingol:hover li {
  background-image: url("https://assistpoint.ru/wp-content/themes/assistpointp/image/newstar.png");
}
.vote-block .ratingol li {
  display: block;
  width: 30px;
  height: 19px;
  float: right;
  text-indent: -9999px;
  cursor: pointer;
  margin-bottom: 0px !important;
}
.vote-block .ratingol li:hover,
.vote-block .ratingol li:hover ~ li {
  background-position: 0 -19px;
}
.vote-block.disabled .ratingol li.current {
  display: block;
  z-index: 10;
}
.vote-block .ratingol li.active,
.vote-block .rating li.active ~ li {
  background-position: 0 -38px;
}
.vote-block li.current {
  display: none;
}
.vote-block ol.show-current {
  position: relative;
  padding: 0px !important;
  margin: 3px 0px 10px 0px !important;
}
.vote-block ol.show-current li {
  cursor: default;
  z-index: 2;
  position: relative;
}
.vote-block ol.show-current li.current {
  filter: brightness(115%);
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  z-index: 1;
  background-position: 0 0;
  background-repeat: repeat-x;
  background-image: url("https://assistpoint.ru/wp-content/themes/assistpointp/image/newstar.png");
}
.vote-block ol.show-current li.current span {
  display: block;
  height: 19px;
  width: 0;
  background: inherit;
  background-position: 0 -38px;
}

/* mobile style */

/*--------------------------------------------------------------
## Forms
--------------------------------------------------------------*/

.commentForm {
  margin-top: 50px;
}

.commentForm .title-block {
  padding: 20px 0px;
  border-top: 1px solid #d68360;
  border-bottom: 1px solid #d68360;
  font-weight: 700;
}

.commentForm input[type="text"],
.commentForm input[type="email"],
.commentForm textarea {
  display: block;
  width: 100%;
  font-size: 1rem;
  padding: 0.375rem 1rem;
  line-height: 1.625rem;
  color: #495057;
  background-color: #ffffff;
  border: 1px solid #e3e5e7;
  border-radius: 0;
  -webkit-transition: background-color 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out;
}

.commentForm input[type="text"]:focus,
.commentForm input[type="email"]:focus,
textarea:focus {
  background-color: #ffffff;
  -webkit-box-shadow: none;
  box-shadow: none;
  outline: 0;
}

.commentForm button,
.commentForm input[type="button"],
.commentForm input[type="submit"],
.commentForm .button {
  cursor: pointer;
  display: inline-block;
  font-weight: 400;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border: 1px solid transparent;
  background-color: var(--orange);
  color: white;
  -webkit-transition: opacity 0.15s ease-in-out;
  transition: opacity 0.15s ease-in-out;
  padding: 0.375rem 1rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: 0;
}

.commentForm button:hover,
.commentForm button:focus,
.commentForm input[type="button"]:hover,
.commentForm input[type="button"]:focus,
.commentForm input[type="submit"]:hover,
.commentForm input[type="submit"]:focus,
.commentForm .button:hover,
.commentForm .button:focus {
  text-decoration: none;
  opacity: 0.75;
  color: white;
}

.commentForm button:focus,
.commentForm input[type="button"]:focus,
.commentForm input[type="submit"]:focus,
.commentForm .button:focus {
  outline: 0;
}

.commentForm .button-transparent {
  background: transparent;
  color: #000000;
}

.commentForm .button-transparent:hover,
.commentForm .button-transparent:focus {
  color: #6c757d;
}

.commentForm .post-password-form {
  padding: 40px;
  background: #f8f9fa;
}

.commentForm .post-password-form label {
  margin-bottom: 0;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.commentForm .post-password-form input[type="password"] {
  background-color: #fff;
  min-height: 40px;
}

.commentForm .post-password-form input[type="submit"] {
  padding: 0 2rem;
  min-height: 40px;
  height: 100%;
  border-radius: 0;
}

.commentForm .post-password-form > p:first-child {
  font-size: 1.25rem;
  margin-bottom: 2rem;
}

.commentForm .post-password-form > p:last-child {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  margin-bottom: 0;
}

.commentForm .cs-input-group {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  width: 100%;
}

.commentForm .cs-input-group input[type="text"],
.commentForm .cs-input-group input[type="email"] {
  position: relative;
  z-index: 2;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  width: 1%;
  margin-bottom: 0;
}

.commentForm .cs-input-group button {
  line-height: 1.5rem;
}

.commentForm .cs-input-group .search-submit {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.commentForm .search-form {
  -webkit-transition: 0.2s ease box-shadow;
  transition: 0.2s ease box-shadow;
  border-radius: 0;
}

.commentForm .comment-form p label {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: gray;
}

.commentForm .post-comments .comment-notes {
  margin-bottom: 1.5rem;
  font-size: 14px;
  margin-top: 0.5rem;
}

.commentForm .post-comments {
  display: none;
  margin-top: 3rem;
  padding-top: 1rem;
  border-top: 1px #e9ecef solid;
}

.commentForm .post-comments .title-block {
  text-align: left;
  text-align: left;
  font-weight: 700;
  border-bottom: 1px solid #e9ecef;
  padding-bottom: 10px;
}

.commentForm .post-comments-simple {
  display: block;
}

.commentForm .title-comment-reply {
  margin-bottom: 1.5rem;
  text-align: left;
}

.commentForm .title-comment-reply:after {
  margin-left: 0;
}

.commentForm .post-comments {
  margin-top: 3rem;
  overflow: hidden;
}

.commentForm .comment-list + .comment-respond,
.commentForm .comment-navigation + .comment-respond {
  margin-top: 1.5rem;
  margin-bottom: 0;
}

.commentForm .comment-body + .comment-respond,
.commentForm .comment-list + .comment-respond {
  padding-top: 3rem;
  border-top: 1px #e9ecef solid;
  background: rgba(239, 243, 248, 0.95);
  padding-right: 20px;
  padding-left: 20px;
  padding-bottom: 1.5rem;
  display: block;
  float: left;
}

.commentForm .comment-list {
  padding-left: 0;
  list-style: none;
  margin: 0;
}

.commentForm .comment-list article,
.commentForm .comment-list .pingback,
.commentForm .comment-list .trackback {
  padding: 1.5rem 0;
}

.commentForm .comment-list > li > div {
  padding: 1.5rem 0;
}

.commentForm .comment-list .children {
  list-style: none;
  padding: 0;
  margin: 0;
}

.commentForm .comment-list .children > li {
  padding-left: 20px;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  border-left: 1px solid #c3ddcc;
}

.commentForm .comment-body {
  margin-bottom: 20px;
}

.commentForm .says {
  display: none;
}
.commentForm .comment-list li::before {
  display: none !important;
}
.commentForm .comment-list .fn a {
  color: gray;
}
.commentForm .comment-meta a {
  color: gray;
  font-size: 14px;
}
.commentForm .reply a {
  color: #d68360;
  font-size: 16px;
  text-decoration: underline;
}
.commentForm .comment-reply-title {
  font-weight: 700;
}

@media (min-width: 1020px) {
  .commentForm .comment-list .children > li {
    padding-left: 40px;
  }
}

@media (max-width: 1199.98px) {
  .commentForm
    .comment-list
    .children
    > li
    > .children
    > li
    > .children
    > li
    > .children
    > li
    > .children
    > li {
    padding-left: 0;
  }
}

.commentForm .comment-author .avatar {
  float: left;
  position: relative;
  width: 60px;
  height: 60px;
  margin-right: 20px;
  border-radius: 50%;
}

.commentForm .comment-author .fn {
  font-size: 1rem;
}

.commentForm .bypostauthor > article .fn:after {
  position: relative;
  margin-left: 0.25rem;
  font-family: "cs-icons";
  content: "\e90b";
}

.commentForm .comment-meta {
  margin-bottom: 1rem;
}

.commentForm .comment-meta::after {
  display: block;
  clear: both;
  content: "";
}

.commentForm .comment-metadata .edit-link,
.commentForm .pingback .edit-link {
  display: inline-block;
}

.commentForm .comment-content {
  font-size: 0.875rem;
}

.commentForm .comment-content ul,
.commentForm .comment-content ol {
  margin: 0 0 1.5rem 1rem;
}

.commentForm .comment-content li > ul,
.commentForm .comment-content li > ol {
  margin-bottom: 0;
}

.commentForm .comment-notes,
.commentForm .comment-awaiting-moderation,
.commentForm .logged-in-as,
.commentForm .form-allowed-tags {
  font-size: 0.875rem;
}

.commentForm .no-comments {
  margin: 1rem 0 0;
}

.commentForm .comment-form-cookies-consent label {
  display: inline;
  margin-left: 0.5rem;
}

@media (min-width: 600px) {
  .commentForm .post-comments .comment-form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -20px;
    margin-left: -20px;
  }
  .commentForm .post-comments .comment-form-comment {
    margin-bottom: 1.5rem;
  }
  .commentForm .post-comments .comment-notes,
  .commentForm .post-comments .comment-form-comment,
  .commentForm .post-comments .logged-in-as {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
    position: relative;
    width: 100%;
    padding-right: 20px;
    padding-left: 20px;
    margin-bottom: 1.5rem;
  }
  .commentForm .post-comments .comment-form-author,
  .commentForm .post-comments .comment-form-email,
  .commentForm .post-comments .comment-form-url {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.3333333333%;
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
    position: relative;
    width: 100%;
    padding-right: 20px;
    padding-left: 20px;
    margin-bottom: 1.5rem;
  }
  .commentForm .post-comments .comment-form-cookies-consent {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
    position: relative;
    width: 100%;
    padding-right: 20px;
    padding-left: 20px;
  }
}

.commentForm .form-submit {
  margin: 0;
  display: block;
  float: left;
  width: 100%;
}

@media (min-width: 600px) {
  .commentForm .form-submit {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
    position: relative;
    width: 100%;
    padding-right: 20px;
    padding-left: 20px;
  }
}

.commentForm .required {
  color: #dc3545;
}

.commentForm .title-comment-reply small {
  font-size: 100%;
}

.commentForm .title-comment-reply small a {
  float: right;
  overflow: hidden;
  width: 24px;
  height: 24px;
}

.commentForm .title-comment-reply small a:before {
  float: left;
  position: relative;
  font-family: "cs-icons";
  font-size: 24px;
  content: "\e923";
}

.commentForm .post-comments-show {
  margin-top: 3rem;
  text-align: center;
}

.commentForm .post-comments-show button {
  margin: 0 auto;
  padding: 0.75rem 3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.commentForm .post-comments-show button:after {
  display: inline-block;
  margin-left: 0.5rem;
  font-family: "cs-icons";
  font-size: 0.75rem;
  content: "\e90c";
}

.commentForm .comment-awaiting-moderation {
  font-size: 16px;
  line-height: 125%;
  display: block;
  font-weight: 700;
}
/*--------------------------------------------------------------
## Not found
--------------------------------------------------------------*/

.commentForm .content-not-found {
  margin: 0 auto;
  text-align: center;
}

.commentForm .comment-form-author {
  width: 300px;
  display: block;
  float: left;
  margin-right: 30px;
}

.commentForm .comment-form-email {
  width: 300px;
  display: block;
  float: left;
}
.pseudo_ny::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  max-width: 300px;
  width: 100%;
  background-image: url(/wp-content/themes/assistpointp/img/pseudo_nyyy.png);
  background-repeat: no-repeat;
  background-size: contain;
  aspect-ratio: 291/186;
}
.pseudo_ny form {
  position: relative;
  z-index: 1;
}
@media (min-width: 600px) {
  .commentForm .content-not-found {
    max-width: 600px;
  }
}

@media (min-width: 720px) {
  .commentForm .content-not-found {
    max-width: 720px;
  }
}

@media (min-width: 1020px) {
  .commentForm .content-not-found {
    max-width: 1020px;
  }
}

@media (min-width: 1200px) {
  .commentForm .content-not-found {
    max-width: 1200px;
  }
}

.commentForm .content-not-found .cs-input-group .search-submit {
  min-width: 160px;
}

.commentForm .content-not-found .cs-input-group input[type="search"] {
  line-height: 2rem;
}

.commentForm .page-header-has-description + .content-not-found {
  margin-top: 40px;
}

@media (max-width: 576px) {
  .commentForm .comment-body + .comment-respond,
  .commentForm .comment-list + .comment-respond {
    width: 100%;
  }
  .commentForm .comment-form-author,
  .commentForm .comment-form-email {
    width: 100%;
  }
}

/*--------------------------------------------------------------
## End Forms
--------------------------------------------------------------*/

@media (max-width: 1200px) {
  .map {
    overflow: hidden;
  }
  .header__wrapper {
    gap: 0 20px;
  }
  .programs__tab {
    padding: 0px 20px 0px 20px;
  }
  .program__text {
    padding: 20px 20px 35px;
  }
  .footer__phone li a,
  .footer__email a,
  .footer__social p {
    font-size: 14px;
  }
  .footer__logo {
    margin-right: 25px;
  }
  .offices {
    padding: 100px 40px;
  }
  .prform__single .prform__content {
    max-width: 580px;
  }
  .prform__single .prform__author {
    top: 0%;
  }
  .content__sidebar .home_form {
    margin-left: 0px;
    margin-top: 0px;
  }
  .prform__desc {
    margin-bottom: 25px;
  }
  .header__wrapper li > a {
    font-size: 14px;
  }
  .prform__bg img {
    top: 0;
  }
  .sliderblock {
    overflow: hidden;
  }
}

@media (max-width: 1000px) {
  .prform .home_form::before {
    left: -43%;
    top: 67%;
    rotate: 5deg;
  }
}
@media (max-width: 900px) {
  .popup__form .home_form::after {
    top: 78%;
    right: -5%;
    width: 80px;
    height: 40px;
  }
  .prform .home_form::before {
    left: -33%;
    top: 68%;
    width: 110px;
    height: 67px;
  }
}
@media (max-width: 800px) {
  .prform .home_form::before {
    left: -33%;
    top: 74%;
    width: 90px;
    height: 49px;
  }
}
@media (max-width: 992px) {
  .header__wrapper li > a {
    font-size: 16px;
  }
  .article__wrap .article__item:last-child {
    display: none;
  }
  .item__hover::before {
    background-position: 105% 50%;
    right: calc((100% / 2) - (265px / 2));
    top: -3px;
  }
  .home_form {
    padding: 30px 20px 35px;
    max-width: 360px;
  }
  .header {
    position: absolute;
    width: 100%;
    top: 58px;
    display: none;
    border-top: 1px solid rgba(255, 255, 255, 0.205);
  }
  .headerbg {
    background-color: var(--dark-violet);
  }
  .header__contacts {
    padding: 75px 0px 95px;
    height: calc(100vh - 58px);
  }
  .header__top .footer__phone {
    flex-direction: column;
  }
  .header__top .footer__social {
    order: 2;
  }
  .header__logo a {
    left: 0px;
    top: -35px;
  }
  .header__contacts .container {
    height: 100%;
    padding: 0px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .header__contacts .header__top {
    align-content: space-between;
    height: 70%;
  }
  .header__nav {
    padding: 9px 0px 9px;
    border-bottom: none;
    margin: 0px 0px 0px;
  }

  .header__nav .header__btn {
    display: none;
  }

  .header__nav .anim {
    background-position: 139% 50%;
    transition: 0.5s all;
  }

  .footer__contact {
    justify-content: flex-start;
    gap: 20px 66px;
    padding: 20px 0px 20px;
  }
  .footer__phone {
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
    gap: 40px 25px;
  }
  .header__wrapper {
    display: flex;
    flex-direction: column;
    gap: 48px 0px;
  }
  .header__wrapper li > a {
    color: var(--white);
    padding-right: 40px;
    padding-left: 40px;
  }
  .header__wrap {
    width: calc(100% + 30px);
    margin-left: -20px;
    display: block;
    position: absolute;
    height: calc(100vh - 58px);
    left: 0px;
    top: 58px;
    padding: 45px 0px 85px;
    background-color: var(--dark-violet);
  }
  .header__menu {
    padding: 0px 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    height: 100%;
  }

  .header__icons {
    display: none;
  }
  .header__btn_menu {
    width: 40px;
    height: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    position: relative;
  }
  .header__btn_menu span {
    height: 2px;
    background-color: var(--orange);
    width: 80%;
    left: 0px;
    transition: 0.2s all;
  }
  .header__btn_menu span:first-child {
    position: absolute;
    width: 100%;
    top: 0px;
  }
  .header__btn_menu span:last-child {
    position: absolute;
    width: 60%;
    bottom: 0px;
  }
  .header__nav .anim span {
    background-color: transparent;
    transition: 0.2s all;
  }
  .header__nav .anim span:first-child {
    transform: rotate(45deg);
    top: 20px;
    background-color: var(--orange);
  }
  .header__nav .anim span:last-child {
    width: 100%;
    transform: rotate(-45deg);
    bottom: 18px;
    background-color: var(--orange);
  }
  .header__btn_call {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--orange);
    border-radius: 4px;
  }
  .header__btn_call {
    background-image: url(https://assistpoint.ru/wp-content/themes/assistpointp/image/btn_contact.svg);
    background-size: 150%;
    background-position: -50% 50%;
    background-repeat: no-repeat;
    transition: 0.5s all;
  }
  .home_form {
    margin-left: 0%;
  }
  .header__wrap {
    display: none;
    border-top: 1px solid rgba(255, 255, 255, 0.205);
  }
  .prform__content > h1 {
    font-size: 28px;
  }
  .prform__content p {
    font-size: 18px;
  }
  .title__h2 > h2 {
    font-size: 24px;
  }
  .programs__tab {
    font-size: 14px;
    padding: 10px 15px 10px 15px;
  }
  .programs__content .programs__tabs {
    margin-bottom: 42px;
  }
  .programs__map {
    flex-direction: column-reverse;
    overflow: hidden;
  }
  .programs__block {
    max-width: 100%;
    margin-top: 40px;
  }
  .programs__block button {
    margin-left: auto;
    margin-right: auto;
  }
  .programs__block h3 {
    text-align: center;
  }
  .programs__block p {
    padding: 0 13%;
  }
  .programs {
    padding: 80px 0px 20px;
  }
  .article {
    padding: 20px 0px 30px;
  }
  .program__image,
  .program__img {
    height: 125px;
  }
  .program__title a {
    font-size: 14px;
    margin-bottom: 10px;
  }
  .program__option p {
    font-size: 12px;
  }
  .program__option p > span {
    font-size: 12px;
  }
  .program__text {
    padding: 12px 12px 37px;
  }
  .programs__item {
    min-height: auto;
  }
  .program__arrow {
    background-size: 75%;
    bottom: 15px;
  }
  .program__option p {
    margin-bottom: 4px;
  }
  .cpblock {
    padding: 30px 0px 30px 0px;
  }
  .lsblock {
    padding: 30px 0px;
  }
  .lsblock__headling {
    font-size: 15px;
  }
  .lsblock__text {
    font-size: 12px;
  }
  .lsblock__item {
    padding: 20px 12px 26px;
  }
  .lsblock__icon {
    width: 95px;
    height: 95px;
  }
  .tmblock {
    padding: 30px 0px;
  }
  .tmblock__name {
    font-size: 20px;
  }
  .tmblock__spec {
    font-size: 15px;
    margin-bottom: 14px;
  }
  .tmblock__desc {
    font-size: 12px;
  }
  .tmblock__img {
    width: 95px;
    height: 95px;
    top: -18%;
  }
  .tmblock__item_short {
    height: auto;
  }
  .tmblock:before {
    height: 37%;
  }
  .tmblock__wrap {
    margin-top: 70px;
  }
  .posts {
    padding: 30px 0px 60px;
  }
  .posts__item_img {
    height: 155px;
  }
  .mainPost__title > a,
  .minorPost__title > span {
    font-size: 16px;
  }
  .mainPost__content {
    padding: 20px 20px 25px 15px;
  }
  .page-programs__content {
    padding: 15px 20px 5px;
  }
  .mainPost__data,
  .minorPost__data {
    font-size: 14px;
  }
  .mainPost__desc,
  .minorPost__desc {
    font-size: 12px;
    line-height: 140%;
  }
  .posts__wrap {
    gap: 15px 10px;
  }
  .footer__logo {
    display: none;
  }
  .footer__wrap {
    padding: 35px 0px 40px;
  }
  .footer__headlimg {
    font-size: 16px;
  }
  .footer__programs li a {
    font-size: 15px;
  }
  .notline {
    border-left: none;
  }
  .header__item {
    padding: 2px 0px 2px;
    height: 25px;
    overflow: hidden;
    transition: 0.5s height;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .item__hover:hover {
    padding: 2px 0px 2px;
    height: 315px;
    overflow: hidden;
    transition: 0.5s height;
  }
  .header__wrapper > li::after {
    display: none;
  }
  .header__submenu {
    background-color: var(--dark-violet);
    position: relative;
    width: 100%;
    padding: 0px 20px 20px;
    left: 0px;
    top: 0;
  }
  .item__hover:hover ul {
    display: block;
    height: 100%;
    overflow: hidden;
    transition: 0.5s all;
  }
  .item__hover ul {
    display: block;
    height: 0%;
    overflow: hidden;
    transition: 0.5s all;
  }
  .header__submenu {
    margin-top: 15px;
    text-align: left;
    max-width: 350px;
  }
  .header__submenu li > a {
    padding-right: 0px;
    padding-left: 0px;
  }
  .author__profile {
    max-width: 236px;
    justify-content: flex-start;
    padding-top: 60px;
    padding-bottom: 20px;
  }
  .author__name {
    font-size: 22px;
    margin-top: 45px;
  }
  .author__desc {
    font-size: 16px;
  }
  .author__content p {
    font-size: 14px;
  }
  .author__wrap {
    gap: 0px 16px;
  }
  .author__content {
    padding: 25px;
  }
  .offices__contact {
    padding: 25px 15px 30px;
  }
  .offices__img {
    height: 475px;
  }
  .prform__title {
    font-size: 22px;
  }
  .prform__subtitle {
    font-size: 16px;
    margin-bottom: 15px;
  }
  .prform__desc {
    font-size: 14px;
  }
  .prform__single .prform__author {
    max-width: 280px;
  }
  .prform__single .prform__image {
    width: 95px;
    height: 95px;
  }
  .prform__single .prform__author {
    padding: 60px 20px 31px;
  }
  .prform__single .prform__content {
    max-width: 360px;
  }
  .prform__single .prform__content::before {
    width: 100%;
  }
  .prform__single .prform__content::after {
    width: 60%;
  }
  .content__sidebar {
    display: none;
  }
  .article__item {
    width: calc(100% / 2 - 15px);
  }
  .content__wrapper {
    justify-content: center;
  }
  .article__wrap {
    justify-content: center;
  }
  .prform__wrapper {
    padding-left: 7%;
  }
  .sliderblock {
    overflow: hidden;
  }
  .mainPost {
    min-height: 350px;
  }
  .page-programs__mainPost {
    min-height: 310px;
  }
  .img_over {
    height: 75%;
  }
  .prform-program .prform__headling {
    font-size: 28px;
  }
  .prform__wrapper {
    padding-left: 2%;
  }
  .title__h2 > h1 {
    font-size: 26px;
  }
  .program-single__content .cpblock__text {
    font-size: 16px;
  }
  .schedule__lst li {
    font-size: 16px;
  }
  .list__headling {
    font-size: 20px;
  }
  .list__desc {
    font-size: 14px;
  }
  .header__logo_new_year img {
    margin-top: -20px !important;
  }
}

@media (max-width: 768px) {
  .prform .home_form::before {
    display: none;
  }
  .popup__form .home_form::after {
    display: none;
  }
  .prform__rating,
  .prform__read {
    display: none !important;
  }
  .page-programs__content .mainPost__title a {
    font-size: 18px;
  }
  .offices__contact {
    max-width: 100%;
  }
  .footer__contact {
    flex-wrap: wrap;
  }
  .lsblock__item {
    width: 235px;
  }
  .programs__tab + .programs__tab {
    border-left: none;
  }
  .prform__bg {
    height: 700px;
    display: flex;
  }
  .map {
    display: none;
  }
  .prform__wrapper {
    flex-direction: column;
    padding-top: 45px;
  }
  .programs__content .programs__tabs {
    flex-direction: column;
    padding: 25px 0px;
    margin-bottom: 5px;
  }
  .programs__tab {
    padding: 10px 0px 10px 0px;
  }
  .programs__tab {
    margin: 0px 35px;
  }
  .article__wrap {
    flex-wrap: wrap;
    justify-content: center;
  }
  .programs__item {
    max-width: 320px;
  }
  .article__wrap {
    gap: 25px 25px;
  }
  .lsblock__wrap {
    flex-wrap: wrap;
  }
  .lsblock__item {
    width: 320px;
  }
  .tmblock__wrap {
    flex-wrap: wrap;
    justify-content: center;
    gap: 60px 20px;
  }
  .tmblock__item_short {
    width: 320px;
  }
  .prform_footer {
    padding-bottom: 45px;
  }
  .prform_footer .prform__bg,
  .prform__bg img {
    height: 700px;
    width: 100%;
    object-fit: cover;
  }
  .footer__programs {
    padding: 3px 0px 0px 10px;
  }
  .programs__tab {
    border-bottom: 1px solid var(--orange);
  }
  .schedule__wrap {
    flex-direction: column;
    gap: 20px 0;
  }
  .offices__item {
    flex-direction: column-reverse;
  }
  .offices__img {
    width: 100%;
    height: 184px;
  }
  .author__wrap {
    flex-direction: column;
  }
  .author__profile {
    max-width: 100%;
  }
  .author__image {
    width: 120px;
    height: 120px;
    top: -15%;
  }
  .author__h2 {
    margin-bottom: 83px;
  }
  .list__author {
    grid-row: 1/2;
    width: 60px;
    height: 60px;
  }
  .list__response .list__headling {
    grid-column: 2/4;
    margin-bottom: 0px;
    margin-left: 0px;
  }
  .about {
    padding: 65px 0px 65px;
  }
  .list__response .list__item {
    gap: 8px 13px;
    grid-template-columns: 65px 1fr;
    padding: 10px 15px 25px;
    align-items: center;
  }
  .prform__wrapper {
    padding: 44px 0px;
  }
  .content__sidebar,
  .cat__sidebar {
    display: none;
  }
  .prform__single .prform__wrapper,
  .prform__single .prform__author {
    position: relative;
  }
  .prform__single .prform__wrapper {
    gap: 80px 0px;
  }
  .prform__single {
    height: auto;
    overflow: hidden;
  }
  .prform__single .prform__content > h1 {
    margin-bottom: 24px;
  }
  .prform__single .prform__author {
    max-width: 365px;
  }
  .content__resource div {
    margin: 30px 0px 15px;
  }
  .review {
    padding: 0px 0px 100px;
  }
  .popup__wrapper {
    max-width: 360px;
    flex-direction: column-reverse;
  }
  .popup__img {
    width: 100%;
    height: 145px;
  }
  .popup__content {
    padding: 20px 20px 10px 20px;
    bottom: 0px;
  }
  .popup__title {
    font-size: 20px;
  }
  .close {
    width: 45px;
    height: 45px;
    right: 4px;
    top: -26px;
  }
  .popup__form .home_form {
    padding: 25px 25px;
  }
  .close::before,
  .close::after {
    left: 14px;
    top: 22px;
  }
  .img_over {
    height: auto;
    width: 100%;
  }
  .list {
    padding: 50px 0px 50px;
  }
  .schedule__wrap {
    align-items: center;
  }
}

@media (max-width: 576px) {
  .page-program__options {
    padding: 0px 20px 15px;
  }
  .author__profile {
    padding-bottom: 0px;
  }
  .home_form form label p {
    font-size: 12px;
  }
  .prform_footer .prform__bg,
  .prform__bg img {
    height: 800px;
  }
  .tmblock__h2 {
    margin-bottom: 35px;
  }
  .programs {
    padding: 35px 0px 20px;
  }
  .prform__single .prform__wrapper {
    gap: 20px 0px;
  }
  /* .container {
        padding: 0px 20px;
    } */
  .footer__wrap {
    flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 45px 5px;
  }
  .footer__programs {
    border-left: none;
  }
  .prform__content > h1 {
    font-size: 24px;
  }
  .prform__content p {
    font-weight: 400;
  }
  .home_form form p {
    font-size: 16px;
  }
  .title__h2 > h2 {
    font-size: 22px;
  }
  .programs__title {
    margin-bottom: 25px;
  }
  .programs__block {
    margin-top: 28px;
  }
  .programs__block {
    padding: 45px 30px 30px 30px;
  }
  .programs__block p {
    padding: 0%;
  }
  .program__image,
  .program__img {
    height: 200px;
  }
  .program__title a {
    font-size: 22px;
    margin-bottom: 20px;
  }
  .program__option p,
  .program__option p > span {
    font-size: 12px;
    font-size: 16px;
    margin-bottom: 12px;
  }
  .cpblock__text {
    font-size: 14px;
  }
  .lsblock__headling {
    font-size: 18px;
  }
  .lsblock__text {
    font-size: 14px;
  }
  .single__achment .lsblock__icon {
    display: none;
  }
  .list__headling {
    font-size: 20px;
    margin-left: 15px;
    grid-column: 2/4;
  }
  .list__item {
    padding: 25px 15px 30px;
    grid-template-columns: 35px 1fr;
    align-items: center;
  }
  .list__number {
    grid-row: 1/2;
    padding: 0px;
  }
  .list__desc {
    grid-column: 1/4;
    font-size: 14px;
    margin-left: 0px;
    margin-top: 10px;
  }
  .schedule__lst {
    padding: 30px 20px 40px 30px;
  }
  .schedule__desc {
    font-size: 14px;
  }
  .program-schedule__content .schedule__desc {
    font-size: 16px;
  }
  .schedule__lst li {
    font-size: 16px;
    margin-left: 0px;
  }
  .review__desc {
    font-size: 14px;
  }
  .review__content p {
    font-size: 14px;
  }
  .tmblock__img {
    width: 120px;
    height: 120px;
    top: -24%;
  }
  .tmblock__name {
    font-size: 22px;
    margin-bottom: 10px;
  }
  .tmblock__spec {
    font-size: 18px;
    margin-bottom: 16px;
  }
  .tmblock__desc {
    font-size: 14px;
    padding: 20px 20px 45px;
  }
  .tmblock__wrap {
    gap: 100px 20px;
  }
  .mainPost,
  .minorPost {
    max-width: 320px;
    min-height: auto;
  }
  .posts__item_img {
    height: 140px;
  }
  .mainPost__title > a,
  .minorPost__title > span {
    font-size: 20px;
  }
  .mainPost__data,
  .minorPost__data {
    font-size: 16px;
  }
  .mainPost__desc,
  .minorPost__desc {
    font-size: 14px;
  }
  .prform_footer .home_form form > p {
    font-size: 20px;
  }
  .footer .footer__phone {
    gap: 25px 25px;
  }
  .minorPost {
    padding: 15px 15px 25px;
  }
  .posts__wrap {
    justify-content: center;
    gap: 10px 10px;
  }
  .about .prform__content p {
    font-size: 14px;
  }
  .about .prform__content::before {
    top: 44px;
  }
  .about .prform__content h1 {
    font-size: 24px;
  }
  .prform_footer {
    padding-top: 45px;
  }
  .offices {
    padding: 60px 0px;
  }
  .list__response .list__desc {
    font-size: 14px;
  }
  .list__response {
    padding: 30px 0px 30px;
  }
  .author {
    padding: 30px 0px 60px;
  }
  .posts__category .mainPost {
    max-width: 100%;
  }
  .cat__search {
    width: 100%;
  }
  .article__img {
    width: 100%;
    height: 140px;
  }
  .prform__single .prform__content::after {
    width: 0%;
  }
  .prform__rating,
  .prform__read {
    display: flex !important;
  }
  .top_rating {
    flex-direction: column;
  }
  .prform__content div {
    margin-top: 15px;
  }
  .prform__content div + div {
    margin-top: 10px;
  }
  .prform__single {
    overflow: visible;
  }
  .prform__single {
    background-color: unset;
  }

  .prform__single .prform__author {
    position: relative;
    top: 75px;
  }
  .content__article h2 {
    font-size: 22px;
  }
  .content__article h2 {
    margin-top: 30px;
  }
  .adv_block {
    padding: 25px 10px;
  }
  .content__article p,
  .content__article blockquote p,
  .content__article ol li,
  .content__article ul li {
    font-size: 18px;
  }
  .content__article p,
  .content__article blockquote p {
    padding-left: 10px;
  }
  .content__article blockquote {
    padding: 40px 15px 40px 15px;
  }
  .content__resource ul li {
    font-size: 16px !important;
  }
  .review__single .container {
    padding: 0px;
  }
  .top_rating {
    width: 300px !important;
  }
  .review__single {
    padding: 0px 0px 30px;
  }
  .prform__content div {
    font-size: 16px;
  }
  .prform__content div span {
    font-size: 16px;
  }
  .article__item {
    width: 100%;
  }
  .img_over {
    height: auto;
    width: 100%;
  }
  .ad_offer {
    flex-direction: column;
  }
}
/*  footer popular */
.footer__popular,
.footer__popular ul {
  /*display: -webkit-inline-box;*/
  flex-direction: column;
}
.footer__popular ul {
  gap: 15px;
  display: flex;
  flex-direction: initial;
  flex-wrap: wrap;
}

.footer__popular {
  padding: 20px 0 20px 10px;
  /*  background: rgba(239, 243, 248, 0.95); */
}
.footer__popular p {
  margin-bottom: 15px;
  color: #fff;
  font-weight: 700;
}

.footer__popular ul li {
  display: flex;
}

.footer__popular ul li:before {
  content: "";
  width: 18px;
  height: 21px;
  background-image: url(https://assistpoint.ru/wp-content/themes/assistpointp/img/contries.svg);
  background-size: 65px;
  background-position: -5% 50%;
  background-repeat: no-repeat;
  display: block;
  margin-right: 5px;
}

.footer__popular ul li.rom:before {
  background-position: -5% 50%;
}
.footer__popular ul li.bul:before {
  background-position: 104% 50%;
}
.footer__popular ul li.pol:before {
  background-position: 32% 50%;
}
.footer__popular ul li.fra:before {
  background-position: 67% 50%;
}

.footer__popular a {
  color: #fff;
}
.sender-btn {
  padding: 14px 15px;
  max-width: 324px;
  width: 100%;
  background-color: var(--orange);
  color: #fff;
  border: none;
  margin: 0 auto 0;
  font-weight: 700;
  font-size: 15px;
  line-height: 18px;
  transition: 0.1s background-color;
  cursor: pointer;
  animation: play 1.4s ease infinite;
}
.footer_check a {
  cursor: pointer;
  position: relative;
}

.footer_check a:before {
  content: "";
  background-image: url(https://assistpoint.ru/wp-content/themes/assistpointp/img/check.png);
  display: inline-block;
  width: 16px;
  height: 20px;
  background-size: cover;
  position: absolute;
  left: -20px;
  top: 1px;
}
.licenses {
  display: block;
  width: 80%;
  margin: auto;
  padding: 15px 0;
  font-size: 18px;
  line-height: 27px;
}
.fsvg a {
  color: #efefef;
}
.strelka-right {
  padding-top: 5px;
  width: 15px;
  height: 15px;
  cursor: pointer;
}
.strelka-right polygon {
  fill: #d68360;
  transition: fill 0.5s ease-out;
}
.strelka-right-4:hover polygon {
  fill: #e7b6a0;
}
.quick {
  background-color: #ffcc00;
  border-radius: 8%;
  color: #000000;
  font-size: 12px;
  padding: 4px;
  margin-left: 5px;
}
.garantli {
  max-width: 1200px;
  width: 80%;
  margin: auto;
}
.youtubpr {
  display: flex;
  max-width: 850px;
  width: 100%;
  height: 0;
  position: relative;
  padding-bottom: 41%;
  background-image: var(--pixel);
  background-size: cover;
  background-position: 50% 50%;
  margin: 20px auto;
}

.youtubpr iframe {
  height: 100%;
  background-color: gray;
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
}
.program-item a {
  flex-wrap: wrap;
}
.program-item ul {
  width: 100%;
}
@media (max-width: 576px) {
  .youtubpr {
    padding-bottom: 56%;
  }
}

.cpblock_img {
  width: 447px;
  height: 437px;
  display: block;
}
.cpblock_img_ {
  width: 50%;
}
.cpblock_img_width {
  width: 655px;
  height: 400px;
}

.cpblock_img_sm {
  width: 347px;
  height: 337px;
}

@media (max-width: 768px) {
  .cpblock_img_width {
    width: 100%;
    height: 300px;
  }
}

@media (max-width: 576px) {
  .cpblock_img {
    width: 100%;
    height: 250px;
  }
  .cpblock_img_width {
    height: 220px;
  }
}
