@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:ital,wght@0,400;0,700;1,400;1,700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Philosopher:ital,wght@0,400;0,700;1,400;1,700&display=swap");
@font-face {
  font-display: swap;
  font-family: "OpenSans";
  src: url("..//fonts/OpenSans/OpenSans-Regular.woff2");
  src: url("../fonts/OpenSans/OpenSans-Regular.woff") format("woff"), url("../fonts/OpenSans/OpenSans-Regular.woff2") format("woff2"), url("../fonts/OpenSans/OpenSans-Regular.ttf") format("truetype"), url("..//fonts/OpenSans/OpenSans-Regular.eot") format("eot");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-display: swap;
  font-family: "OpenSans";
  src: url("../fonts/OpenSans/OpenSans-Italic.woff2");
  src: url("../fonts/OpenSans/OpenSans-Italic.woff2") format("woff2"), url("../fonts/OpenSans/OpenSans-Italic.woff") format("woff"), url("../fonts/OpenSans/OpenSans-Italic.ttf") format("truetype"), url("../fonts/OpenSans/OpenSans-Italic.eot") format("eot");
  font-weight: 400;
  font-style: italic;
}
@font-face {
  font-display: swap;
  font-family: "OpenSans";
  src: url("../fonts/OpenSans/OpenSans-Bold.woff2");
  src: url("../fonts/OpenSans/OpenSans-Bold.woff2") format("woff2"), url("../fonts/OpenSans/OpenSans-Bold.woff") format("woff"), url("../fonts/OpenSans/OpenSans-Bold.ttf") format("truetype"), url("../fonts/OpenSans/OpenSans-Bold.eot") format("eot");
  font-weight: 700;
  font-style: normal;
}
/* классы и стили общие для всего проекта */
* {
  box-sizing: border-box;
}

html,
body {
  font-family: "IBM Plex Sans", sans-serif, "OpenSans", "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
  color: #032a3f;
  -webkit-font-smoothing: antialiased;
  background-color: #fff;
}

body {
  min-height: 100vh;
  width: 100%;
  overflow-x: hidden;
  margin: 0 auto;
}

.wrapper {
  background-color: #fff;
}

*:before,
*:after {
  padding: 0;
  margin: 0;
  border: 0;
  -o-box-sizing: border-box;
  box-sizing: border-box;
}

html,
body {
  height: 100vh;
  background-color: #aedcf4;
  margin: 0;
}

.blue-link {
  color: #2988BC;
}

.blue-link {
  color: #2988BC;
  font-weight: 600;
  text-decoration: underline;
}

.blue-link:hover {
  color: #ED8C72;
  text-decoration-color: #ED8C72;
}

body._lock {
  overflow: hidden;
}

.wrapper-burger {
  min-height: 100%;
}

.header-burger-container {
  max-width: 100vw;
  margin: 0px auto;
  display: flex;
  padding: 10px 20px 0px 0px;
  align-items: center;
  align-content: center;
  justify-content: space-between;
  height: 60px;
}

.header-burger {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background-color: #fff;
  padding-left: 6px;
}
.header-burger__logo_link {
  border-radius: 6px;
  background-color: #fff;
  position: relative;
  z-index: 5;
  width: 70px;
}
.header-burger__logo_img {
  border-radius: 6px;
  background-color: #fff;
  position: relative;
  z-index: 5;
  width: 70px;
}
.header-burger__channel-box {
  display: flex;
  z-index: 102;
  color: #2988BC;
  flex-direction: column;
  font-family: "Philosopher", sans-serif;
  justify-content: center;
  align-items: center;
}
.header-burger__channel-box_diadzetka-link {
  cursor: pointer;
  color: #2988BC;
  text-decoration: none;
}

.menu-burger__icon {
  display: none;
}

.menu-burger__list {
  position: relative;
  margin: 30px 0 0 -30px;
  display: flex;
  flex-direction: column;
  list-style: none;
}

.menu-burger__list > li {
  position: relative;
  margin: 0 0 0 10px;
}

.menu-burger__link {
  font-size: 30px;
  border-bottom: solid 0.6px #F4EADE;
  margin-bottom: 6px;
  padding-bottom: 6px;
  text-decoration: none;
}

.menu-burger__link:hover {
  border-bottom: solid 3px #2988BC;
}

.menu-burger__sub-list {
  position: absolute;
  top: 100%;
  right: 0;
  padding: 20px;
  min-width: 200px;
  text-decoration: none;
  list-style: none;
}

.menu-burger__sub-list li {
  margin: 0px 10px 20px 0px;
}

.menu-burger__sub-list li:last-child {
  margin: 0;
}

.menu-burger__sub-link {
  color: #aedcf4;
  margin-top: 20px;
}

a.menu-burger__sub-link {
  margin-top: 20px;
}

.menu-burger__sub-link:hover {
  text-decoration: underline;
}

.menu-burger__arrow {
  display: none;
}

/*-----*/
body._pc .menu-burger__list > li:hover .menu-burger__sub-list {
  opacity: 1;
  visibility: visible;
  transform: translate(0px, 0px);
  pointer-events: all;
}

body._touch .menu-burger__list > li {
  display: flex;
}

body._touch .menu-burger__link {
  flex: 1 1 auto;
}

body._touch .menu-burger__arrow {
  display: block;
  width: 0;
  height: 0;
  transition: transform 0.3s ease 0s;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 15px solid #F4EADE;
}

body._touch .menu-burger__arrow:hover {
  transform: scale(1.3);
  border-top: 20px solid #2988BC;
}

body._touch .menu-burger__list > li._active .menu-burger__sub-list {
  opacity: 1;
  visibility: visible;
  transform: translate(0px, 0px);
  pointer-events: all;
}

body._touch .menu-burger__list li._active .menu-burger__sub-link {
  margin: 20px 0 20px 0;
  font-size: 20px;
  padding-bottom: 20px;
}

body._touch .menu-burger__list > li._active .menu-burger__arrow {
  transform: rotate(-90deg);
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 20px solid #2988BC;
}

@media screen and (max-width: 768px) {
  .menu-burger__icon {
    z-index: 5;
    display: block;
    position: relative;
    width: 34px;
    height: 22px;
    cursor: pointer;
  }
  .menu-burger__icon span,
  .menu-burger__icon::before,
  .menu-burger__icon::after {
    left: 0;
    position: absolute;
    height: 10%;
    width: 100%;
    transition: all 0.3s ease 0s;
    background-color: #62B4E0;
  }
  .menu-burger__icon::before,
  .menu-burger__icon::after {
    content: "";
  }
  .menu-burger__icon::before {
    top: 0;
  }
  .menu-burger__icon::after {
    bottom: 0;
  }
  .menu-burger__icon span {
    top: 50%;
    transform: scale(1) translate(0px, -50%);
  }
  .menu-burger__icon._active span {
    transform: scale(0) translate(0px, -50%);
  }
  .menu-burger__icon._active::before {
    top: 50%;
    transform: rotate(-45deg) translate(0px, -50%);
  }
  .menu-burger__icon._active::after {
    bottom: 50%;
    transform: rotate(45deg) translate(0px, 50%);
  }
  .menu-burger__body {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    transform: translate(-100% 0px);
    background-color: #7dc1e5;
    padding: 80px 30px 30px 10px;
    transition: all 0.3s ease 0s;
    overflow: auto;
    align-content: center;
  }
  .menu-burger__body._active {
    left: 0;
    /* transform: translate(0px 0px); */
  }
  .menu-burger__body::before {
    content: "";
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    background-color: #fff;
    z-index: 2;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .menu-burger__body::before {
    height: 80px;
  }
}
@media screen and (max-width: 768px) and (max-width: 576px) {
  .menu-burger__body::before {
    height: 80px;
  }
}
@media screen and (max-width: 768px) {
  .menu-burger__list > li {
    flex-wrap: wrap;
    margin: 0 0 10px 0;
  }
  .menu-burger__list > li:last-child {
    margin-bottom: 0;
  }
  .menu-burger__list > li._active .menu-burger__sub-list {
    display: block;
    background-color: #aedcf4;
    margin-left: 20px;
  }
  .menu-burger .menu-burger__link {
    font-size: 20px;
    color: #032a3f;
  }
  .menu-burger__sub-list {
    position: relative;
    background-color: #032a3f;
    flex: 1 1 100%;
    margin: 10px 0 0px 0;
    display: none;
  }
  .menu-burger__sub-link {
    font-size: 22px;
    color: #032a3f;
    text-decoration: none;
    margin-top: 20px;
    padding-bottom: 200px;
    background-color: #aedcf4;
  }
}
.container-header {
  width: 100vw;
  max-width: 2160px;
  height: 90px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  font-family: "Philosopher", sans-serif;
  position: fixed;
  top: 0;
  left: 0;
  box-shadow: 8px 0 0 0 #fff, 0 0 14px 0 rgba(0, 0, 0, 0.25);
  z-index: 150;
  background-color: #fff;
  padding-right: 20px;
  padding-left: 10px;
}
@media screen and (min-width: 992px) {
  .container-header {
    height: 90px;
  }
}
@media screen and (max-width: 992px) {
  .container-header {
    height: 90px;
  }
}
@media screen and (max-width: 768px) {
  .container-header {
    height: 120px;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr;
    background-color: #fff;
  }
}
@media screen and (max-width: 576px) {
  .container-header {
    height: 80px;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr;
    background-color: #fff;
  }
}
@media screen and (min-width: 992px) {
  .container-header__wrapper-burger {
    display: none;
  }
}
@media screen and (max-width: 992px) {
  .container-header__wrapper-burger {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .container-header__wrapper-burger {
    display: block;
  }
}
@media screen and (max-width: 576px) {
  .container-header__wrapper-burger {
    display: block;
  }
}
.container-header__logo {
  background-color: #fff;
  border-radius: 6px;
  height: 80px;
}
@media screen and (max-width: 768px) {
  .container-header__logo {
    display: none;
  }
}
@media screen and (max-width: 576px) {
  .container-header__logo {
    display: none;
  }
}
.container-header__logo_img {
  height: 80px;
  border-radius: 6px;
}
@media screen and (max-width: 992px) {
  .container-header__logo_img {
    height: 80px;
  }
}
@media screen and (max-width: 768px) {
  .container-header__logo_img {
    display: none;
  }
}
@media screen and (max-width: 576px) {
  .container-header__logo_img {
    display: none;
  }
}
.container-header__logo_link {
  height: 116px;
  border-radius: 6px;
}
@media screen and (max-width: 992px) {
  .container-header__logo_link {
    height: 110px;
  }
}
@media screen and (max-width: 768px) {
  .container-header__logo_link {
    display: none;
  }
}
@media screen and (max-width: 576px) {
  .container-header__logo_link {
    display: none;
  }
}
.container-header__logo_img:hover {
  border: solid 1px #ED8C72;
}
.container-header__dialydi-header {
  display: flex;
  justify-content: center;
  text-align: center;
  align-items: center;
}
@media screen and (max-width: 992px) {
  .container-header__dialydi-header {
    margin-left: 1vw;
    margin-right: 1vw;
  }
}
@media screen and (max-width: 768px) {
  .container-header__dialydi-header {
    display: none;
  }
}
@media screen and (max-width: 576px) {
  .container-header__dialydi-header {
    display: none;
  }
}
.container-header__dialydi-header_dialydi-name {
  color: #2988BC;
  font-size: 18px;
  font-family: "Philosopher", sans-serif;
  font-stretch: extra-expanded;
  display: flex;
  flex-wrap: wrap;
  text-decoration: none;
}
@media screen and (max-width: 992px) {
  .container-header__dialydi-header_dialydi-name {
    font-size: 18px;
  }
}
@media screen and (max-width: 768px) {
  .container-header__dialydi-header_dialydi-name {
    display: none;
  }
}
@media screen and (max-width: 576px) {
  .container-header__dialydi-header_dialydi-name {
    display: none;
  }
}
.container-header__dialydi-header_dialydi-name:hover {
  border: solid 1px #ED8C72;
  padding: 10px;
  border-radius: 6px;
}
.container-header__social-links-with-button-complex {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
}
.container-header__social-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  font-size: 18px;
  font-family: "Philosopher", sans-serif;
}
@media screen and (max-width: 576px) {
  .container-header__social-links {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .container-header__social-links {
    display: none;
  }
}
@media screen and (max-width: 992px) {
  .container-header__social-links {
    font-size: 18px;
  }
}
.container-header__social-links_channel-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  background-color: #fff;
  color: #2988BC;
  padding: 6px;
  border-radius: 6px;
  max-height: 80px;
  width: 140px;
}
@media screen and (max-width: 768px) {
  .container-header__social-links_channel-box {
    display: none;
  }
}
.container-header__social-links_channel-box:hover {
  border: solid 1px #ED8C72;
}
.container-header__social-links_school-link {
  text-decoration: none;
  text-align: center;
  color: #2988BC;
}
.container-header__social-links_diadzetka-link {
  text-decoration: none;
  text-align: center;
  color: #2988BC;
}
.container-header__button-complex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .container-header__button-complex {
    display: none;
  }
}
@media screen and (max-width: 576px) {
  .container-header__button-complex {
    display: none;
  }
}
.container-header__social-links-with-button-complex {
  display: flex;
  margin-right: 20px;
}
.container-header__container-mobile {
  width: 100vw;
  height: 80px;
  position: fixed;
  top: 0px;
  left: 0px;
  margin-top: 0px;
  font-family: "Philosopher", sans-serif;
  background-color: #62B4E0;
  box-shadow: 8px 0 0 0 #fff, 0 0 14px 0 rgba(0, 0, 0, 0.25);
  z-index: 10;
  padding-right: 20px;
  padding-left: 10px;
}
@media screen and (min-width: 992px) {
  .container-header__container-mobile {
    display: none;
  }
}
@media screen and (max-width: 992px) {
  .container-header__container-mobile {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .container-header__container-mobile {
    margin-top: 70px;
    height: 60px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    z-index: 10;
  }
}
@media screen and (max-width: 576px) {
  .container-header__container-mobile {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    margin-top: 70px;
    z-index: 10;
  }
}
.container-header .container-header__container-mobile._inactive {
  display: none;
}
@media screen and (min-width: 992px) {
  .container-header .container-mobile {
    display: none;
  }
}
@media screen and (max-width: 992px) {
  .container-header .container-mobile {
    display: none;
  }
}
.container-header .container-mobile__dialydi-mobile {
  display: flex;
  justify-content: stretch;
  align-items: center;
}
@media screen and (min-width: 992px) {
  .container-header .container-mobile__dialydi-mobile {
    display: none;
  }
}
@media screen and (max-width: 992px) {
  .container-header .container-mobile__dialydi-mobile {
    display: none;
  }
}
.container-header .container-mobile__dialydi-mobile_dialydi-name {
  color: #fff;
  font-family: "Philosopher", sans-serif;
  font-stretch: extra-expanded;
  display: flex;
  flex-wrap: wrap;
  text-decoration: none;
}
@media screen and (max-width: 768px) {
  .container-header .container-mobile__dialydi-mobile_dialydi-name {
    display: flex;
    font-size: 18px;
  }
}
@media screen and (max-width: 576px) {
  .container-header .container-mobile__dialydi-mobile_dialydi-name {
    display: flex;
    font-size: 16px;
  }
}
.container-header .container-mobile__dialydi-mobile_dialydi-name:hover {
  text-decoration: underline;
}
.container-header .container-mobile__button-mobile_search {
  display: flex;
}
.container-header .button-header {
  display: flex;
}
.container-header .button-header_donate {
  margin-left: 20px;
  margin-right: 10px;
  font-weight: bold;
}
.container-header .button-header_search {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  align-items: center;
  margin-left: 20px;
}

/* Всплывающая форма-скрыта по умолчанию */
.form-popup_mobile {
  display: none;
  position: fixed;
  top: 0px;
  right: 0px;
  left: 0px;
  padding-top: 20px;
  padding-bottom: 20px;
  z-index: 103;
  background-color: #62B4E0;
  opacity: 1;
  height: 100vw;
}
.form-popup_desktop {
  display: none;
  position: fixed;
  top: 0px;
  right: 0px;
  left: 0px;
  padding-top: 20px;
  padding-bottom: 20px;
  z-index: 500;
  background-color: #62B4E0;
  opacity: 1;
  height: 280px;
}

.button {
  background-color: #FBD36C;
  border: solid 1px #FBD36C;
  height: 40px;
  border-radius: 6px;
  font-family: "Philosopher", sans-serif;
  font-size: 18px;
  width: 140px;
  position: relative;
}
.button__button-donate {
  width: 320px;
  height: 48px;
}
@media screen and (min-width: 992px) {
  .button__button-donate {
    width: 200px;
    font-size: 18px;
  }
}
@media screen and (max-width: 992px) {
  .button__button-donate {
    width: 200px;
    font-size: 18px;
  }
}
@media screen and (max-width: 768px) {
  .button__button-donate {
    width: 160px;
    font-size: 18px;
  }
}
@media screen and (max-width: 576px) {
  .button__button-donate {
    width: 130px;
    font-size: 16px;
  }
}
.button__button-search {
  margin-left: 10px;
  margin-right: 10px;
}
.button__button-search_lupa {
  width: 30px;
}
.button__button-search_mobile {
  width: auto;
  margin-left: 6px;
}
.button__button-search_button-close-search {
  width: 40px;
  height: 40px;
  background-color: #62B4E0;
  color: #fff;
  margin-right: 20px;
  position: fixed;
  right: -94%;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .button__button-search_button-close-search {
    left: 20px;
    margin-top: 20px;
  }
}
.button__button-search_button-close-search:hover {
  width: 40px;
  height: 40px;
  background-color: #ED8C72;
  border-color: #ED8C72;
  color: #fff;
}
.button__button-search-sm {
  margin-left: 10px;
  margin-right: 10px;
  background-color: #62B4E0;
}
.button__button-search-sm_button-search-lupa {
  width: auto;
}
.button__button-search-sm_button-search-lupa:hover {
  background-color: #ED8C72;
  border-color: #ED8C72;
}
.button__button-search-sm_lupa-sm {
  width: 30px;
}
@media screen and (max-width: 768px) {
  .button__button-search-sm_lupa-sm {
    display: block;
  }
}
@media screen and (max-width: 576px) {
  .button__button-search-sm_lupa-sm {
    display: block;
  }
}

.small-button {
  align-items: center;
  justify-content: center;
  font-weight: 400;
  color: #fff;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  background-color: #2988BC;
  border: 1px solid #2988BC;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: 6px;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  position: relative;
}

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

.small-button :not(:disabled)::before {
  content: "";
  width: 1rem;
  height: 1rem;
}

.small-button:focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 0.5);
}

.input {
  height: 40px;
}
@media screen and (min-width: 576px) {
  .input {
    width: 50vw;
  }
}

.button:hover {
  transform: scale(1.05);
  box-shadow: 0 0 3px 0 #FBD36C inset, 0 0 2px 2px #FBD36C;
}

.icon__youtube {
  width: 30px;
  height: 30px;
}

@media screen and (max-width: 768px) {
  .main-menu {
    display: none;
  }
}
@media screen and (max-width: 576px) {
  .main-menu {
    display: none;
  }
}

.container-nav {
  width: 240px;
  height: calc(100vh - 90px);
  line-height: 1.3;
  font-family: "Philosopher", sans-serif;
  font-size: 16px;
  position: fixed;
  top: 90px;
  left: 0px;
  box-shadow: 8px 0 14px 0 rgba(0, 0, 0, 0.25);
  text-decoration: none;
  z-index: 120;
}
@media screen and (max-width: 769px) {
  .container-nav {
    display: none;
  }
}

@media screen and (min-width: 768px) {
  ul {
    list-style: none;
    margin-top: 20px;
    padding-left: 20px;
    padding-right: 20px;
    background-color: #62B4E0;
  }
  ul:first-child {
    margin-top: 0;
    padding-top: 10px;
  }
  ul li {
    position: relative;
    border-bottom: solid 1px #fff;
  }
  ul li:first-child {
    border-top: solid 1px #fff;
  }
  ul li:hover {
    background-color: #aedcf4;
    padding-top: 1px;
    padding-bottom: 1px;
  }
  ul li:hover ul {
    display: block;
    padding: 10px;
    background-color: #aedcf4;
  }
  ul li:hover ul li ul {
    display: none;
  }
  ul li a {
    color: #032a3f;
    padding: 6px 8px 6px 8px;
    display: block;
    text-decoration: none;
  }
  ul li a:hover {
    background-color: #62B4E0;
    color: #fff;
    cursor: pointer;
  }
  ul li ul li:hover ul {
    display: block;
  }
  ul li ul {
    position: absolute;
    left: 201px;
    top: -22px;
    display: none;
    width: 280px;
    padding-right: 30px;
    background-color: #aedcf4;
  }
}
.container-main {
  margin-top: 90px;
  margin-left: 240px;
  z-index: 1;
  width: calc(100% - 240px);
  max-width: 1920px;
  background-color: #fff;
}
@media screen and (min-width: 992px) {
  .container-main {
    margin-top: 90px;
    margin-left: 240px;
    width: calc(100% - 240px);
  }
}
@media screen and (max-width: 992px) {
  .container-main {
    margin-top: 90px;
    margin-left: 240px;
    width: calc(100% - 240px);
  }
}
@media screen and (max-width: 768px) {
  .container-main {
    width: 100%;
    display: block;
    margin-left: 0px;
    margin-top: 120px;
  }
}
@media screen and (max-width: 576px) {
  .container-main {
    width: 100%;
    display: block;
    margin-left: 0px;
    margin-top: 120px;
  }
}
.container-main__main {
  overflow: hidden;
  font-family: "IBM Plex Sans", sans-serif, "OpenSans", "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
}
.container-main__main_photo {
  width: 100%;
  box-shadow: 8px 0 14px 0 rgba(0, 0, 0, 0.25);
  padding: 20px;
  margin: 20px;
}
@media screen and (min-width: 992px) {
  .container-main__main_photo {
    padding: 10px;
    margin: 20px 20px 20px 20px;
  }
}
@media screen and (max-width: 992px) {
  .container-main__main_photo {
    padding: 10px;
    margin: 20px 20px 20px 20opx;
  }
}
@media screen and (max-width: 768px) {
  .container-main__main_photo {
    width: 100%;
  }
}
@media screen and (max-width: 576px) {
  .container-main__main_photo {
    width: 100%;
  }
}
.container-main__main_info-desktop {
  width: 40%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  margin-bottom: -50px;
  height: -moz-fit-content;
  height: fit-content;
  color: #032a3f;
}
@media screen and (max-width: 768px) {
  .container-main__main_info-desktop {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .container-main__main_info-desktop {
    width: 100%;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 576px) {
  .container-main__main_info-desktop {
    width: 100%;
    margin-bottom: 20px;
  }
}

.photo {
  width: 100%;
}

.info__confucii {
  padding-left: 40px;
  padding-right: 40px;
  padding-top: 40px;
  margin-top: 0px;
  color: #032a3f;
  font-family: "Philosopher", sans-serif;
  font-size: 26px;
}
@media screen and (max-width: 992px) {
  .info__confucii {
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 20px;
  }
}
@media screen and (max-width: 768px) {
  .info__confucii {
    width: 100%;
    position: relative;
    margin: 0 auto;
    padding-left: 20px;
    display: flex;
    flex-direction: column;
    text-align: flex-start;
    font-size: 18px;
  }
}
@media screen and (max-width: 576px) {
  .info__confucii {
    width: 100%;
    position: relative;
    margin: 0 auto;
    padding-left: 20px;
    display: flex;
    flex-direction: column;
    text-align: flex-start;
    font-size: 18px;
  }
}
.info__confucii_name {
  right: 90px;
  font-size: 26px;
}
@media screen and (max-width: 992px) {
  .info__confucii_name {
    right: 50px;
  }
}
@media screen and (max-width: 768px) {
  .info__confucii_name {
    right: 50px;
    font-size: 18px;
    display: flex;
    justify-content: flex-end;
  }
}
@media screen and (max-width: 576px) {
  .info__confucii_name {
    right: 50px;
    font-size: 18px;
    display: flex;
    justify-content: flex-end;
  }
}

.swiper {
  width: 100%;
  height: 500px;
  margin-top: 20px;
}
@media screen and (min-width: 1900px) {
  .swiper {
    margin-top: 0px;
    height: 650px;
  }
}
@media screen and (max-width: 1400px) {
  .swiper {
    margin-top: 80px;
    height: 500px;
  }
}
@media screen and (max-width: 1100px) {
  .swiper {
    margin-top: 80px;
    height: 400px;
  }
}
@media screen and (max-width: 992px) {
  .swiper {
    margin-top: 80px;
    height: 400px;
  }
}
@media screen and (max-width: 768px) {
  .swiper {
    margin-top: 100px;
    height: 620px;
  }
}
@media screen and (max-width: 576px) {
  .swiper {
    margin-top: 130px;
    height: 520px;
  }
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background-color: #F4EADE;
  display: grid;
  grid-template-columns: 55% 45%;
}
@media screen and (max-width: 768px) {
  .swiper-slide {
    display: block;
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

.slide001 {
  width: 100%;
  display: flex;
  align-items: center;
}
@media screen and (min-width: 1400px) {
  .slide001 {
    height: 100%;
    width: auto;
    padding-left: 0px;
  }
}
@media screen and (max-width: 768px) {
  .slide001 {
    width: 100%;
    padding-left: 0px;
  }
}

.slide0 {
  width: 100%;
  display: flex;
  align-items: center;
}
@media screen and (min-width: 1400px) {
  .slide0 {
    height: 100%;
    width: auto;
    padding-left: 0px;
  }
}
@media screen and (max-width: 768px) {
  .slide0 {
    width: 100%;
    padding-left: 0px;
  }
}

.slide1 {
  width: 100%;
  display: flex;
  align-items: center;
}
@media screen and (min-width: 1400px) {
  .slide1 {
    height: 100%;
    width: auto;
    padding-left: 0px;
  }
}
@media screen and (max-width: 768px) {
  .slide1 {
    width: 100%;
    padding-left: 0px;
  }
}

.slide2 {
  display: flex;
  align-items: center;
}
@media screen and (min-width: 1400px) {
  .slide2 {
    height: 100%;
    width: auto;
    padding-left: 0px;
  }
}
@media screen and (max-width: 768px) {
  .slide2 {
    width: 100%;
    padding-left: 0px;
  }
}

.slide3 {
  display: flex;
  align-items: center;
}
@media screen and (min-width: 1400px) {
  .slide3 {
    width: 100%;
    padding-left: 0px;
  }
}
@media screen and (max-width: 768px) {
  .slide3 {
    width: 100%;
    padding-left: 0px;
  }
}

@media screen and (max-width: 768px) {
  .slider-img_mobile {
    display: block;
  }
}
@media screen and (min-width: 768px) {
  .slider-img_mobile {
    display: none;
  }
}

@media screen and (min-width: 768px) {
  .slider-img_desktop {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .slider-img_desktop {
    display: none;
  }
}

.dia-news-desktop {
  display: flex;
  flex-direction: column;
  background-color: #F4EADE;
  color: #032a3f;
  justify-content: space-around;
  font-size: 18px;
  font-family: "Philosopher", sans-serif;
  line-height: 1.4;
  padding: 0 20px 0 20px;
  text-decoration: none;
}
@media screen and (min-width: 1900px) {
  .dia-news-desktop {
    font-size: 26px;
    margin-right: 100px;
  }
}
@media screen and (max-width: 1900px) {
  .dia-news-desktop {
    font-size: 18px;
    margin-right: 30px;
  }
}
@media screen and (max-width: 1400px) {
  .dia-news-desktop {
    font-size: 18px;
  }
}
@media screen and (max-width: 992px) {
  .dia-news-desktop {
    font-size: 18px;
  }
}
@media screen and (max-width: 768px) {
  .dia-news-desktop {
    display: none;
  }
}

.dia-news-mobile {
  display: flex;
  flex-direction: column;
  background-color: #F4EADE;
  color: #032a3f;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  line-height: 1.48;
  font-family: "Philosopher", sans-serif;
  max-width: 100%;
  padding: 0px 20px 20px 20px;
}
@media screen and (min-width: 768px) {
  .dia-news-mobile {
    display: none;
  }
}
@media screen and (max-width: 576px) {
  .dia-news-mobile {
    height: 210px;
    font-size: 16px;
  }
}

.dia-news-item:hover {
  text-decoration: underline;
}

.dia-news-item:visited {
  color: #032a3f;
}

.dia-news-item {
  font-family: "Philosopher", sans-serif;
  color: #032a3f;
  text-align: center;
  text-decoration: none;
}

.slider-button {
  background-color: #FBD36C;
  border: solid 1px #FBD36C;
  border-radius: 6px;
  width: 220px;
  height: 48px;
  position: absolute;
  right: 20px;
  bottom: 10px;
  color: #032a3f;
  font-size: 18px;
  font-family: "Philosopher", sans-serif;
  box-shadow: 8px 0 14px 0 rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  align-content: center;
}
@media screen and (max-width: 768px) {
  .slider-button {
    right: 24px;
    height: 48px;
    width: 180px;
  }
}
@media screen and (max-width: 576px) {
  .slider-button {
    right: 24px;
    height: 48px;
    width: 150px;
  }
}

.slider-button:hover {
  cursor: pointer;
  scale: 1.05;
}

.swiper-slide img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 6px;
}
@media screen and (max-width: 768px) {
  .swiper-slide img {
    margin-left: 0px;
  }
}

.swiper-button-next {
  left: auto;
  cursor: pointer;
}

.swiper-button-prev {
  right: auto;
  cursor: pointer;
}

.black-link {
  color: #032a3f;
}

.black-link:hover {
  color: #032a3f;
  text-decoration: underline;
}

.scroll-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
}
@media screen and (min-width: 1200px) {
  .scroll-to-top {
    left: 1900px;
  }
}

#scrollButton {
  font-size: 26px;
  background-color: #62B4E0;
  opacity: 90%;
  color: #032a3f;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  cursor: pointer;
  display: none;
}
@media screen and (min-width: 576px) {
  #scrollButton {
    opacity: 90%;
  }
}

#scrollButton.active {
  display: flex;
  justify-content: center;
  align-items: center;
}

.articles {
  margin-left: 240px;
  z-index: 1;
  width: calc(100% - 240px);
  background-color: #fff;
  max-width: 1920px;
}
@media screen and (min-width: 992px) {
  .articles {
    margin-left: 240px;
    width: calc(100% - 240px);
  }
}
@media screen and (max-width: 992px) {
  .articles {
    margin-left: 240px;
    width: calc(100% - 240px);
  }
}
@media screen and (max-width: 768px) {
  .articles {
    width: 100%;
    margin-left: 0px;
  }
}
@media screen and (max-width: 576px) {
  .articles {
    width: 100%;
    margin-left: 0px;
  }
}

.white-background-desktop_about {
  background-color: #fff;
  margin-bottom: 20px;
  border-radius: 6px;
  margin-left: 2%;
  margin-right: 2%;
  padding: 30px;
  box-shadow: 8px 0 0 0 #fff, 0 0 14px 0 rgba(0, 0, 0, 0.25);
}
@media screen and (max-width: 992px) {
  .white-background-desktop_about {
    margin-left: 2%;
    margin-right: 2%;
  }
}
@media screen and (max-width: 768px) {
  .white-background-desktop_about {
    display: none;
  }
}
.white-background-desktop_important {
  background-color: #fff;
  border-radius: 6px;
  margin-left: 2%;
  margin-right: 2%;
  padding: 30px;
  box-shadow: 8px 0 0 0 #fff, 0 0 14px 0 rgba(0, 0, 0, 0.25);
}
@media screen and (max-width: 992px) {
  .white-background-desktop_important {
    margin-left: 2%;
    margin-right: 2%;
  }
}
@media screen and (max-width: 768px) {
  .white-background-desktop_important {
    display: none;
  }
}
.white-background-desktop_voices {
  background-color: #fff;
  border-radius: 6px;
  margin-left: 2%;
  margin-right: 2%;
  padding: 30px;
  box-shadow: 8px 0 0 0 #fff, 0 0 14px 0 rgba(0, 0, 0, 0.25);
}
@media screen and (max-width: 992px) {
  .white-background-desktop_voices {
    margin-left: 2%;
    margin-right: 2%;
  }
}
@media screen and (max-width: 768px) {
  .white-background-desktop_voices {
    display: none;
  }
}

.article__community-describe {
  color: #032a3f;
  padding-right: 20px;
  padding-left: 20px;
  padding-bottom: 20px;
  padding-top: 20px;
  line-height: 1.5;
  font-family: "IBM Plex Sans", sans-serif, "OpenSans", "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
  font-size: 16px;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 768px) {
  .article__community-describe {
    font-size: 16px;
    padding-bottom: 0px;
  }
}
.article__subscribe {
  display: block;
  margin-top: 20px;
}
.article__viber-contact {
  display: flex;
  flex-direction: column;
  height: auto;
  background-color: #F5CDBA;
  color: #032a3f;
  margin-top: 20px;
  margin-bottom: 20px;
  padding: 32px;
  text-decoration: none;
  font-size: 18px;
  box-shadow: 8px 0 0 0 #fff, 0 0 14px 0 rgba(0, 0, 0, 0.25);
  width: 80%;
  margin-left: 20%;
}
.article__viber-contact_saharok {
  color: #2988BC;
  text-decoration: underline;
}
.article__viber-contact_saharok:hover {
  color: #032a3f;
  text-decoration: underline;
}
.article__diaschool {
  color: #032a3f;
  background-color: #9ACEEB;
  font-family: "Philosopher", sans-serif;
  text-align: center;
  padding: 20px;
}
@media screen and (min-width: 768px) {
  .article__diaschool {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .article__diaschool {
    margin-top: 10px;
    margin-bottom: 10px;
    font-size: 22px;
  }
}
.article__diaschool_youtube-link {
  width: 100%;
  color: #032a3f;
  text-decoration: none;
  border-radius: 4px;
  padding: 10px;
  margin-top: 20px;
  background-color: #FBD36C;
  border: solid 1px #FBD36C;
  font-size: 18px;
}
.article__diaschool_youtube-link:hover {
  scale: 1.03;
}
.article__links {
  display: flex;
  margin-top: 20px;
  margin-top: 20px;
  align-items: center;
  box-shadow: 8px 0 0 0 #fff, 0 0 14px 0 rgba(0, 0, 0, 0.25);
}
@media screen and (min-width: 768px) {
  .article__links {
    display: none;
  }
}
.article__links_first {
  margin-top: 10px;
  padding: 1px 28px 20px 20px;
  background-color: #F4EADE;
  color: #032a3f;
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .article__links_first {
    display: none;
  }
}
.article__links_second {
  margin-top: 20px;
  margin-bottom: 20px;
  padding: 20px 28px 20px 20px;
  background-color: #9ACEEB;
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .article__links_second {
    display: none;
  }
}
.article__four-boxes-desktop {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 20px;
  margin-bottom: 20px;
  margin-left: 2%;
  margin-right: 2%;
  text-align: center;
  text-decoration: none;
  font-family: "Philosopher", sans-serif;
}
@media screen and (max-width: 992px) {
  .article__four-boxes-desktop {
    display: flex;
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 768px) {
  .article__four-boxes-desktop {
    display: none;
  }
}
.article__four-boxes-desktop_diaschool-desktop, .article__four-boxes-desktop_teachers-desktop, .article__four-boxes-desktop_dianews-desktop, .article__four-boxes-desktop_diaproducts-desktop {
  width: 22%;
  background-color: #fff;
  color: #2988BC;
  padding: 10px;
  font-size: 18px;
  box-shadow: 8px 0 0 0 #fff, 0 0 14px 0 rgba(0, 0, 0, 0.25);
  border-radius: 6px;
}
@media screen and (max-width: 992px) {
  .article__four-boxes-desktop_diaschool-desktop, .article__four-boxes-desktop_teachers-desktop, .article__four-boxes-desktop_dianews-desktop, .article__four-boxes-desktop_diaproducts-desktop {
    width: 48%;
  }
}
@media screen and (max-width: 992px) {
  .article__four-boxes-desktop_dianews-desktop, .article__four-boxes-desktop_diaproducts-desktop {
    margin-top: 20px;
  }
}
.article__two-boxes-desktop {
  display: flex;
  justify-content: space-between;
  margin-left: 2%;
  margin-right: 2%;
  padding: 20px;
  text-align: center;
  box-shadow: 8px 0 0 0 #fff, 0 0 14px 0 rgba(0, 0, 0, 0.25);
  border-radius: 6px;
}
@media screen and (max-width: 768px) {
  .article__two-boxes-desktop {
    display: none;
  }
}
.article__two-boxes-desktop_partners-desktop, .article__two-boxes-desktop_oursovet-desktop {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
  width: 48%;
  height: auto;
  min-height: 200px;
  background-color: #F5CDBA;
  color: #032a3f;
  padding: 10px;
  font-size: 22px;
  font-family: "Philosopher", sans-serif;
  box-shadow: 8px 0 0 0 #fff, 0 0 14px 0 rgba(0, 0, 0, 0.25);
  border-radius: 6px;
}
@media screen and (min-width: 992px) {
  .article__two-boxes-desktop_partners-desktop, .article__two-boxes-desktop_oursovet-desktop {
    font-size: 22px;
  }
}
.article__two-boxes-desktop_partners-desktop:hover, .article__two-boxes-desktop_oursovet-desktop:hover {
  text-decoration: underline;
}

.img-wrapper {
  width: 100%;
  margin: 2px;
}

.img-container {
  height: 0;
  position: relative;
  overflow: hidden;
  padding-bottom: 74%;
}

.responsive-img {
  width: 100%;
  height: auto;
  position: absolute;
  bottom: 20px;
}

.responsive-img:hover {
  cursor: pointer;
}

.centered {
  position: absolute;
  top: -50%;
  left: -50%;
  right: -50%;
  bottom: -50%;
  margin: auto;
}

.medics {
  height: 0;
  position: relative;
  overflow: hidden;
  padding-bottom: 60%;
}

.article-border {
  border: solid 1px #ED8C72;
  padding: 10px;
  margin-left: 20px;
  margin-right: 20px;
  margin-bottom: 20px;
}

.anons-icons {
  height: 80px;
  margin-right: 6px;
}

.link-style_four {
  color: #2988BC;
}
.link-style_four:hover {
  cursor: pointer;
  color: #032a3f;
}
.link-style_three {
  color: #2988BC;
  text-decoration: none;
}

.no-decor {
  text-decoration: none;
}

.link-name {
  background-color: #fff;
  height: 60px;
}

#more-about {
  display: none;
}

#more-understand {
  display: none;
}

#more-voices {
  display: none;
}

.read-more__about-diapeople {
  position: relative;
}
@media screen and (min-width: 768px) {
  .read-more__about-diapeople_mobile {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .read-more__about-diapeople_mobile {
    display: block;
    padding: 10px;
  }
}
@media screen and (min-width: 768px) {
  .read-more__about-diapeople_desktop {
    display: block;
    padding: 10px;
  }
}
@media screen and (max-width: 768px) {
  .read-more__about-diapeople_desktop {
    display: none;
  }
}
.read-more__for-understand {
  position: relative;
}
@media screen and (min-width: 768px) {
  .read-more__for-understand_mobile {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .read-more__for-understand_mobile {
    display: block;
    padding: 10px;
  }
}
@media screen and (min-width: 768px) {
  .read-more__for-understand_desktop {
    display: block;
    padding: 10px;
  }
}
@media screen and (max-width: 768px) {
  .read-more__for-understand_desktop {
    display: none;
  }
}
.read-more__voices {
  position: relative;
}
@media screen and (min-width: 768px) {
  .read-more__voices_mobile {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .read-more__voices_mobile {
    display: block;
    padding: 10px;
  }
}
@media screen and (min-width: 768px) {
  .read-more__voices_desktop {
    display: block;
    padding: 10px;
  }
}
@media screen and (max-width: 768px) {
  .read-more__voices_desktop {
    display: none;
  }
}

.button-open-text {
  height: 60px;
  border-radius: 6px;
  background-color: #62B4E0;
  color: #fff;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  width: 100%;
  font-family: "Philosopher", sans-serif;
  margin-bottom: 20px;
}

.button-open-text:hover {
  scale: 1.05;
}

.new {
  width: 90vw;
  color: #ED8C72;
  background-color: #fff;
  justify-content: center;
  align-items: center;
  text-align: center;
  display: block;
  border-radius: 4px;
  padding: 20px;
  box-shadow: 0 8px 0 0 #fff, 0 0 14px 0 rgba(0, 0, 0, 0.25);
}
@media screen and (min-width: 992px) {
  .new {
    width: 90vw;
  }
}
@media screen and (max-width: 992px) {
  .new {
    width: 90vw;
  }
}
@media screen and (max-width: 768px) {
  .new {
    width: 90vw;
  }
}

.new-describe {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 20px;
  border: solid #ED8C72 1px;
  border-radius: 4px;
}
.new-describe__new-photo {
  width: 20%;
}
.new-describe__new-text {
  width: 80%;
}

.event-describe {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  border: solid #ED8C72 1px;
  border-radius: 4px;
  position: relative;
}
@media screen and (min-width: 992px) {
  .event-describe__event-text {
    height: 140px;
    font-size: 22px;
  }
}
@media screen and (max-width: 992px) {
  .event-describe__event-text {
    height: 160px;
    font-size: 22px;
  }
}
@media screen and (max-width: 768px) {
  .event-describe__event-text {
    height: auto;
    font-size: 22px;
    margin-bottom: 20px;
  }
}
.event-describe__slider-prev {
  margin-bottom: 20px;
  width: 90px;
  margin-top: 40px;
  background-color: #FBD36C;
  border: solid 1px #FBD36C;
  height: 40px;
  border-radius: 6px;
  font-family: "Philosopher", sans-serif;
  font-size: 18px;
}
.event-describe__slider-prev:hover {
  scale: 1.1;
}
.event-describe__slider-next {
  margin-bottom: 20px;
  width: 90px;
  margin-top: 40px;
  background-color: #FBD36C;
  border: solid 1px #FBD36C;
  height: 40px;
  border-radius: 6px;
  font-family: "Philosopher", sans-serif;
  font-size: 18px;
}
.event-describe__slider-next:hover {
  scale: 1.1;
}

.event-describe-second {
  display: none;
}
@media screen and (max-width: 768px) {
  .event-describe-second {
    display: none;
  }
}

.link {
  display: flex;
  flex-direction: column;
  color: #032a3f;
  font-size: 26px;
  font-family: "Philosopher", sans-serif;
  background-color: white;
  text-align: center;
  align-items: center;
  border-radius: 4px;
  box-shadow: 8px 0 0 0 #fff, 0 0 14px 0 rgba(0, 0, 0, 0.25);
}
@media screen and (max-width: 768px) {
  .link {
    font-size: 18px;
  }
}
.link__for-school {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  padding: 0 10px 0 10px;
  height: 120px;
  color: #032a3f;
}
.link__dia-news {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  height: 120px;
}
.link__dia-shops {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  height: 120px;
}
.link__partners_company {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}
.link__sovet {
  display: flex;
  margin-top: 20px;
}
.link__sovet_link-sovet {
  color: #032a3f;
  text-decoration: none;
}
.link__sovet_link-sovet:hover {
  text-decoration: underline;
}

.a1-logo {
  width: 70px;
  height: 70px;
}
.a1-logo_zarga {
  width: 100px;
  height: auto;
}

.gdb2-logo {
  width: 100px;
  margin-top: 20px;
}

.link__for-school:hover, .link__dia-news:hover, .link__dia-shops:hover {
  text-decoration: underline;
}

.zarga-medica {
  color: #032a3f;
}

.zarga-medica:hover {
  text-decoration: underline;
}

.subscribe__form {
  background-color: #F5CDBA;
  display: flex;
  flex-direction: column;
  box-shadow: 8px 0 0 0 #fff, 0 0 14px 0 rgba(0, 0, 0, 0.25);
  padding: 20px;
  width: 80%;
  margin-right: 20%;
}
.subscribe__form_header {
  font-size: 26px;
  font-style: italic;
  text-align: center;
  margin: 10px;
}
.subscribe__form_input-button {
  display: flex;
  flex-direction: row;
  align-items: center;
  height: 40px;
}
@media screen and (max-width: 992px) {
  .subscribe__form_input-button {
    flex-direction: column;
    height: auto;
  }
}
@media screen and (max-width: 768px) {
  .subscribe__form_input-button {
    flex-direction: column;
    height: auto;
  }
}

.footer {
  margin-left: 240px;
  width: calc(100% - 240px);
  max-width: 1920px;
  background-color: #ED8C72;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px 20px 30px 20px;
  text-align: center;
  align-items: center;
  font-size: 18px;
  font-family: "Philosopher", sans-serif;
}
@media screen and (min-width: 992px) {
  .footer {
    margin-left: 240px;
    width: calc(100% - 240px);
    font-size: 18px;
  }
}
@media screen and (max-width: 992px) {
  .footer {
    margin-left: 240px;
    width: calc(100% - 240px);
    font-size: 18px;
  }
}
@media screen and (max-width: 768px) {
  .footer {
    width: 100%;
    margin-left: 0px;
    font-size: 22px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
}
@media screen and (max-width: 576px) {
  .footer {
    width: 100%;
    margin-left: 0px;
    font-size: 18px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
}

button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

button:not(:disabled),
[type=button]:not(:disabled),
[type=reset]:not(:disabled),
[type=submit]:not(:disabled) {
  cursor: pointer;
}

button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

input[type=radio],
input[type=checkbox] {
  box-sizing: border-box;
  padding: 0;
}

input[type=date],
input[type=time],
input[type=datetime-local],
input[type=month] {
  -webkit-appearance: listbox;
}

textarea {
  overflow: auto;
  resize: vertical;
}

.itcss__items {
  counter-reset: slide;
}

.itcss__item {
  counter-increment: slide;
}

.itcss__item > div::before {
  content: counter(slide);
  position: absolute;
  top: 10px;
  right: 20px;
  color: #fff;
  font-style: italic;
  font-size: 32px;
  font-weight: bold;
}

.cookie-consent {
  display: none;
  position: fixed;
  align-self: center;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #1d658c;
  color: #fff;
  text-align: center;
  padding: 10px;
  border-radius: 6px;
  z-index: 1000;
  font-size: 16px;
  font-family: "Philosopher", sans-serif;
}

.cookie-consent .buttons {
  margin-top: 10px;
}

.cookie-consent button {
  margin: 0 5px;
  padding: 5px 10px;
  background-color: #fff;
  border: none;
  border-radius: 6px;
  color: #1d658c;
  cursor: pointer;
}

.cookie-consent button:hover {
  background-color: #ddd;
}

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

.white-link {
  color: #fff;
}

.about-channel__image-container {
  width: 100%;
  display: flex;
  justify-content: center;
}
.about-channel__image-container_diadzetka-img {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .about-channel__image-container_diadzetka-img {
    width: 100%;
  }
}

.link-style-channel {
  color: #032a3f;
}

.link-style-channel:hover {
  cursor: pointer;
  color: #62B4E0;
}

.cookie-consent-container {
  position: fixed;
  bottom: 0;
  width: 80%;
  background-color: rgb(247, 195, 212);
  color: #032a3f;
  text-align: center;
  padding: 10px;
  z-index: 1000;
  border-radius: 6px;
  font-size: 16px;
}
@media screen and (max-width: 576px) {
  .cookie-consent-container {
    width: 100%;
  }
}

.cookie-consent-container p {
  margin: 10px 0;
}

.cookie-consent-container button {
  color: #2988BC;
  background: none;
  border: 1px solid #2988BC;
  padding: 5px 10px;
  margin: 0 5px;
  cursor: pointer;
  border-radius: 6px;
}

.join-us {
  width: 100%;
}

.navigate-page {
  display: grid;
  grid-template-columns: 50% 50%;
}
@media screen and (min-width: 1200px) {
  .navigate-page {
    grid-template-columns: 70% 30%;
  }
}
@media screen and (max-width: 576px) {
  .navigate-page {
    grid-template-columns: 100%;
    margin-top: -20px;
  }
}
.navigate-page__image-container {
  width: 100%;
  display: flex;
  justify-content: flex-end;
}
.navigate-page__image-container_image {
  width: 100%;
}
@media screen and (max-width: 576px) {
  .navigate-page__image-container_image {
    width: 100%;
  }
}

.what-is-diabete__text-container {
  width: 100%;
  margin-top: 20px;
  padding: 20px;
  font-size: 22px;
  font-family: "IBM Plex Sans", sans-serif, "OpenSans", "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
  line-height: 1.3;
}

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

.what-is-diabete__symptoms {
  display: grid;
  grid-template-columns: 50% 50%;
  align-items: center;
}
@media screen and (max-width: 576px) {
  .what-is-diabete__symptoms {
    grid-template-columns: 100%;
  }
}
.what-is-diabete__symptoms_text {
  width: 100%;
}
.what-is-diabete__symptoms_video {
  text-align: center;
}
@media screen and (max-width: 576px) {
  .what-is-diabete__symptoms_video {
    margin-top: 20px;
    margin-bottom: 20px;
  }
}
.what-is-diabete__symptoms_preview-lesson {
  width: 40%;
}
@media screen and (max-width: 992px) {
  .what-is-diabete__symptoms_preview-lesson {
    width: 60%;
  }
}
@media screen and (max-width: 576px) {
  .what-is-diabete__symptoms_preview-lesson {
    width: 100%;
  }
}
.what-is-diabete__image-container {
  max-width: 100vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 20px auto;
}
.what-is-diabete__image-container_what-is-diabete-img1 {
  width: 98%;
}
@media screen and (max-width: 576px) {
  .what-is-diabete__image-container_what-is-diabete-img1 {
    display: none;
  }
}
@media screen and (min-width: 1200px) {
  .what-is-diabete__image-container_what-is-diabete-img1 {
    width: 50%;
  }
}
.what-is-diabete__image-container_what-is-diabete-img2 {
  width: 98%;
}
@media screen and (max-width: 576px) {
  .what-is-diabete__image-container_what-is-diabete-img2 {
    display: none;
  }
}
@media screen and (min-width: 1200px) {
  .what-is-diabete__image-container_what-is-diabete-img2 {
    width: 50%;
  }
}
.what-is-diabete__image-container_what-is-diabete-img1mobile {
  width: 98%;
}
@media screen and (min-width: 576px) {
  .what-is-diabete__image-container_what-is-diabete-img1mobile {
    display: none;
  }
}
.what-is-diabete__image-container_what-is-diabete-img2mobile {
  width: 98%;
}
@media screen and (min-width: 576px) {
  .what-is-diabete__image-container_what-is-diabete-img2mobile {
    display: none;
  }
}

.preview_lesson {
  width: 50%;
}
@media screen and (max-width: 576px) {
  .preview_lesson {
    width: 100%;
  }
}
@media screen and (min-width: 1200px) {
  .preview_lesson {
    width: 30%;
  }
}
.preview_glucose-level {
  width: 30%;
}
@media screen and (max-width: 992px) {
  .preview_glucose-level {
    width: 50%;
  }
}
@media screen and (max-width: 576px) {
  .preview_glucose-level {
    width: 100%;
  }
}

.background__orange {
  background-color: rgba(247, 178, 119, 0.6);
  border-radius: 6px;
  padding: 5px;
  font-weight: bold;
}

.no-link-decor {
  text-decoration: none;
  color: #032a3f;
}

.insulin__text-container {
  width: 100%;
  padding: 5px 10px 15px 10px;
  font-size: 16px;
  font-family: "IBM Plex Sans", sans-serif, "OpenSans", "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .insulin__text-container {
    font-size: 16px;
    padding: 10px 10px 5px 10px;
  }
}

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

.insulin-articles {
  width: 100%;
  font-family: "IBM Plex Sans", sans-serif, "OpenSans", "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
}
@media screen and (max-width: 576px) {
  .insulin-articles {
    width: 100%;
  }
}
.insulin-articles__ins-article {
  background-color: #fff;
  border: solid 1px #62B4E0;
  margin: 10px 0px 10px 0px;
  padding: 0px 10px 0px 10px;
  color: #032a3f;
  text-decoration: none;
  font-size: 16px;
  line-height: 1.5;
  border-radius: 6px;
}

.lessons-preview_horizontal {
  display: grid;
  grid-template-columns: 50% 50%;
}
@media screen and (min-width: 1200px) {
  .lessons-preview_horizontal {
    grid-template-columns: 33.5% 33.5% 33.5%;
    margin-right: 0px;
  }
}
@media screen and (max-width: 768px) {
  .lessons-preview_horizontal {
    grid-template-columns: 100%;
    margin-right: 0px;
  }
}
.lessons-preview_vertical {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-right: 20px;
}
@media screen and (min-width: 1200px) {
  .lessons-preview_vertical {
    grid-template-columns: repeat(6, 1fr);
    margin-right: 20px;
  }
}
@media screen and (max-width: 768px) {
  .lessons-preview_vertical {
    grid-template-columns: repeat(2, 1fr);
    margin-right: 0px;
  }
}

.insulin__preview-lesson {
  width: 99%;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .insulin__preview-lesson {
    grid-template-columns: 100%;
    margin: 10px 0px 10px 0px;
    width: 100%;
  }
}
.insulin__preview-lesson__preview-lesson:first-child {
  margin: 0px 10px 0px 0px;
}
.insulin__preview-lesson__preview-lesson:last-child {
  margin: 0px 0px 0px 10px;
}
.insulin__images {
  display: flex;
}
@media screen and (max-width: 768px) {
  .insulin__images {
    flex-direction: column;
  }
}
.insulin__image-container {
  max-width: 100vw;
  display: flex;
  margin: 20px auto;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .insulin__image-container {
    flex-direction: column;
    margin: 10px 10px 10px 10px;
  }
}
.insulin__image-container_insulin-time-1 {
  width: 50%;
  border: solid 1px #032a3f;
}
@media screen and (max-width: 768px) {
  .insulin__image-container_insulin-time-1 {
    width: 100%;
  }
}
@media screen and (min-width: 1200px) {
  .insulin__image-container_insulin-time-1 {
    width: 50%;
  }
}
.insulin__image-container_insulin-time-2 {
  width: 50%;
  border: solid 1px #032a3f;
}
@media screen and (max-width: 768px) {
  .insulin__image-container_insulin-time-2 {
    width: 100%;
  }
}
@media screen and (min-width: 1200px) {
  .insulin__image-container_insulin-time-2 {
    width: 50%;
  }
}

.note {
  font-size: 16px;
}

#read-more-article-ins0 {
  display: none;
}

#read-more-article-ins1 {
  display: none;
}

#read-more-article-ins2 {
  display: none;
}

#read-more-article-ins3 {
  display: none;
}

#read-more-article-ins4 {
  display: none;
}

#read-more-article-ins5 {
  display: none;
}

#read-more-article-ins6 {
  display: none;
}

.button-read-article {
  height: 60px;
  border-radius: 6px;
  border: solid 1px #62B4E0;
  background-color: #62B4E0;
  color: #fff;
  font-size: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  width: 30%;
  font-family: "IBM Plex Sans", sans-serif, "OpenSans", "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
  margin-bottom: 20px;
}
@media screen and (max-width: 576px) {
  .button-read-article {
    width: 50%;
  }
}

.button-read-article:hover {
  scale: 1.02;
}

.text-list {
  background-color: #fff;
  border: solid 1px #fff;
  list-style: disc;
}

.text-list:hover {
  background-color: #fff;
  width: -moz-fit-content;
  width: fit-content;
}

.hypoglikemia-photo {
  float: left;
  margin-right: 15px;
  width: 40%;
  height: auto;
  border-radius: 5px;
  background-color: rgb(207, 232, 220);
}
@media screen and (max-width: 576px) {
  .hypoglikemia-photo {
    float: none;
    width: 100%;
  }
}
@media screen and (min-width: 1200px) {
  .hypoglikemia-photo {
    width: 40%;
  }
}

.glucagon_page {
  width: 49%;
}
@media screen and (max-width: 768px) {
  .glucagon_page {
    width: 100%;
  }
}

.hyperglikemia__image-container_hyperglikemia-symptoms {
  width: 100%;
  border: solid 1px #032a3f;
}
@media screen and (min-width: 1200px) {
  .hyperglikemia__image-container_hyperglikemia-symptoms {
    width: 50%;
  }
}

.food {
  display: block;
}
.food__pictures {
  width: 100%;
  padding: 0 10px 10px 10px;
  line-height: 1.5;
}
.food__pictures_food-pict-container {
  width: 100%;
  margin-top: 20px;
  border-radius: 6px;
  display: flex;
  justify-content: flex-start;
  padding-right: 10px;
  padding-left: 0px;
}
@media screen and (min-width: 1200px) {
  .food__pictures_food-pict-container {
    width: 80%;
  }
}

#read-more-article-fruits1 {
  display: none;
}

.hyperglikemia__image-container_hyperglikemia-symptoms {
  width: 100%;
  border: solid 1px #032a3f;
}
@media screen and (min-width: 1200px) {
  .hyperglikemia__image-container_hyperglikemia-symptoms {
    width: 50%;
  }
}

.food__information {
  display: grid;
  grid-template-columns: 50% 50%;
}
@media screen and (max-width: 768px) {
  .food__information {
    grid-template-columns: 100%;
  }
}
.food__information_image {
  width: 99%;
  border: solid 1px #fff;
  border-radius: 6px;
  margin-bottom: 5px;
}

.food-book-preview {
  width: 50%;
  display: inline-block;
  overflow: hidden;
}
@media screen and (max-width: 576px) {
  .food-book-preview {
    width: 100%;
    margin-bottom: 20px;
    float: none;
  }
}
@media screen and (min-width: 1200px) {
  .food-book-preview {
    width: 50%;
  }
}

.food-book-preview img {
  transition: 1s;
  display: block;
}

.food-book-preview:hover {
  transform: scale(2);
  margin-left: 80px;
  margin-top: 20px;
  margin-bottom: 20px;
  padding: 40px;
  z-index: 1000;
}

.news-container {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
}
@media screen and (max-width: 1400px) {
  .news-container {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .news-container {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 576px) {
  .news-container {
    grid-template-columns: repeat(1, 1fr);
  }
}

.news-item {
  border: 1px solid #2988BC;
  width: 100%;
  overflow: hidden;
  padding: 0.8rem 0.5rem;
  font-size: 14px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.news-item:last-child {
  margin-bottom: 0px;
}
@media screen and (max-width: 768px) {
  .news-item:last-child {
    margin-bottom: 20px;
  }
}

.news-item img {
  width: 100%;
  height: auto;
}

.news-title {
  cursor: pointer;
  font-size: 14px;
}

.news-title:hover {
  color: #2988BC;
  cursor: pointer;
}

.news-content {
  display: none;
}

.news-date {
  font-weight: 400;
}

#read-more-article-NewPeople1 {
  display: none;
}

.book-preview {
  width: 20%;
  display: inline-block;
  overflow: hidden;
}
@media screen and (max-width: 576px) {
  .book-preview {
    width: 100%;
    margin-bottom: 20px;
    float: none;
  }
}
@media screen and (min-width: 1200px) {
  .book-preview {
    width: 30%;
  }
}

.book-preview img {
  transition: 1s;
  display: block;
}

.book-preview:hover {
  transform: scale(1.5);
  margin-left: 60px;
  z-index: 200;
}
@media screen and (min-width: 1200px) {
  .book-preview:hover {
    transform: scale(1);
    margin-left: 0px;
    z-index: 200;
  }
}

.dia-school-previews {
  display: grid;
  grid-template-columns: 25% 25% 25% 25%;
}
@media screen and (max-width: 768px) {
  .dia-school-previews {
    grid-template-columns: 50% 50%;
  }
}
@media screen and (max-width: 576px) {
  .dia-school-previews {
    grid-template-columns: 100%;
  }
}
.dia-school-previews__img-container {
  width: 100%;
  padding: 3px 3px 0px 3px;
}
.dia-school-previews__img-container_img {
  width: 100%;
}

.dia-books-previews {
  display: grid;
  grid-template-columns: 50% 50%;
  gap: 24px;
  padding: px 10px 0 10px;
}
@media screen and (max-width: 768px) {
  .dia-books-previews {
    grid-template-columns: 100%;
  }
}

.psyhology__text-container {
  width: 100%;
  margin-top: 20px;
  padding: 20px;
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 22px;
  line-height: 1.5;
}

.psyhology-start__entrance-part {
  display: block;
}
.psyhology-start__entrance-part_text {
  max-width: 100%;
  padding: 0 0px 10px 0px;
  line-height: 1.5;
}
.psyhology-start__entrance-part_confucious-img-container {
  margin-top: 0px;
  border-radius: 6px;
  display: flex;
  justify-content: flex-end;
}

.confucious {
  width: 50%;
  border-radius: 6px;
  max-width: 100%;
}
@media screen and (max-width: 768px) {
  .confucious {
    width: 100%;
  }
}

.confucious-float-right {
  float: right;
  margin-left: 15px;
  width: 40%;
  border-radius: 5px;
  margin-bottom: 20px;
}
@media screen and (max-width: 576px) {
  .confucious-float-right {
    width: 100%;
    margin-bottom: 20px;
    margin-left: 0px;
    float: none;
  }
}
@media screen and (min-width: 1200px) {
  .confucious-float-right {
    width: 40%;
  }
}

.confucious-float-left {
  float: left;
  margin-right: 15px;
  width: 40%;
  border-radius: 5px;
  margin-bottom: 20px;
}
@media screen and (max-width: 576px) {
  .confucious-float-left {
    width: 100%;
    margin-bottom: 20px;
    margin-left: 0px;
    float: none;
  }
}
@media screen and (min-width: 1200px) {
  .confucious-float-left {
    width: 40%;
  }
}

.psyhology-articles {
  font-family: "IBM Plex Sans", sans-serif, "OpenSans", "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
}
.psyhology-articles__psy-article {
  background-color: #fff;
  border: solid 1px #62B4E0;
  margin: 10px 0px 10px 0px;
  padding: 0px 10px 0 10px;
  color: #032a3f;
  text-decoration: none;
  font-size: 16px;
  line-height: 1.5;
  border-radius: 6px;
}

#read-more-article1 {
  display: none;
}

#read-more-article2 {
  display: none;
}

#read-more-article3 {
  display: none;
}

#read-more-article4 {
  display: none;
}

#read-more-article5 {
  display: none;
}

#read-more-article6 {
  display: none;
}

.button-read-article {
  height: 40px;
  border-radius: 6px;
  border: solid 1px #62B4E0;
  background-color: #62B4E0;
  color: #fff;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  width: 25%;
  font-family: "IBM Plex Sans", sans-serif, "OpenSans", "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
}
@media screen and (max-width: 576px) {
  .button-read-article {
    width: 50%;
  }
}

.button-read-article:hover {
  scale: 1.02;
}

.psyh1-img {
  width: 94%;
}
@media screen and (min-width: 1200px) {
  .psyh1-img {
    width: 50%;
  }
}

.psyho {
  display: grid;
  grid-template-columns: 50% 50%;
}
@media screen and (max-width: 768px) {
  .psyho {
    grid-template-columns: 100%;
  }
}

.increase {
  height: 300px;
  width: auto;
  margin: 10px;
}

.decrease {
  height: 300px;
  width: auto;
  margin: 10px;
}

.dia-school-previews-vertical {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
}
@media screen and (max-width: 768px) {
  .dia-school-previews-vertical {
    grid-template-columns: 25% 25% 25% 25%;
  }
}
@media screen and (max-width: 576px) {
  .dia-school-previews-vertical {
    grid-template-columns: 50% 50%;
  }
}
.dia-school-previews-vertical__img-container {
  width: 100%;
  padding: 3px 3px 0px 3px;
}
.dia-school-previews-vertical__img-container_img {
  width: 100%;
}

#read-more-article-GadgSet1 {
  display: none;
}

.resize {
  width: 70%;
}

.board {
  border: 1px solid #032a3f;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 5px;
  padding: 5px;
}

.column {
  display: flex;
  flex-direction: column;
  text-align: center;
  font-size: 18px;
}
@media screen and (max-width: 768px) {
  .column {
    font-size: 16px;
  }
}

.strange-deal {
  width: 40%;
}
@media screen and (max-width: 992px) {
  .strange-deal {
    width: 50%;
  }
}
@media screen and (max-width: 576px) {
  .strange-deal {
    width: 100%;
  }
}

.comments {
  font-size: 22px;
}

.posobia-lgoty {
  max-width: 1400px;
  overflow-x: scroll;
}

.lgoty__posobia-lgoty {
  width: 80vw;
  height: 600px;
}

.voicing_pump {
  margin-left: 15px;
  width: 50%;
  border-radius: 5px;
  margin-bottom: 20px;
}
@media screen and (max-width: 576px) {
  .voicing_pump {
    width: 100%;
    margin-bottom: 20px;
    margin-left: 0px;
    float: none;
  }
}
@media screen and (min-width: 1200px) {
  .voicing_pump {
    width: 50%;
  }
}

.file-preview {
  width: 50%;
  display: inline-block;
  overflow: hidden;
}
@media screen and (max-width: 576px) {
  .file-preview {
    width: 100%;
    margin-bottom: 20px;
    float: none;
  }
}
@media screen and (min-width: 1200px) {
  .file-preview {
    width: 50%;
  }
}

.file-preview img {
  transition: 1s;
  display: block;
}

.file-preview:hover {
  transform: scale(2);
  margin-left: 40px;
  margin-right: 40px;
  margin-top: 20px;
  margin-bottom: 20px;
  padding: 20px;
  z-index: 1000;
}
@media screen and (max-width: 576px) {
  .file-preview:hover {
    transform: none;
    margin-left: 0px;
    margin-top: 0px;
    margin-bottom: 0px;
    padding: 0px;
    z-index: 1000;
  }
}

.flex {
  display: grid;
  grid-template-columns: auto;
}

.mogilev-quest {
  width: 50%;
}
@media screen and (max-width: 576px) {
  .mogilev-quest {
    width: 100%;
  }
}

.for-school__information {
  display: grid;
  grid-template-columns: 50% 50%;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .for-school__information {
    grid-template-columns: 100%;
  }
}
.for-school__information_image {
  width: 98%;
  border: solid 1px #2988BC;
  border-radius: 6px;
  margin-bottom: 10px;
  padding: 30px;
}
@media screen and (max-width: 768px) {
  .for-school__information_image {
    width: 100%;
    margin-bottom: 10px;
    padding: 10px;
  }
}

.navigate-page-image {
  width: 100%;
}

.navigate-page-img-container {
  width: 100%;
  display: flex;
}

.legend {
  font-style: italic;
  text-decoration: underline;
}

.red-text {
  color: red;
  font-weight: 600;
  clear: both;
}

.container_for_logo_and_lesson13 {
  display: grid;
  grid-template-columns: 50% 50%;
  align-items: center;
  justify-items: center;
}
@media screen and (max-width: 576px) {
  .container_for_logo_and_lesson13 {
    grid-template-columns: 100%;
  }
}

.driving_logo {
  width: 70%;
  margin-bottom: 20px;
}

.charlie {
  width: 60%;
  margin-bottom: 20px;
}
@media screen and (min-width: 1200px) {
  .charlie {
    width: 50%;
  }
}
@media screen and (max-width: 576px) {
  .charlie {
    width: 100%;
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 576px) {
  .driving-lady {
    width: 100%;
  }
}

.float-clear {
  clear: both;
}

.driving-license {
  width: 100%;
}

.medium-size {
  display: flex;
}

.lila-moss {
  width: 30%;
}
@media screen and (max-width: 576px) {
  .lila-moss {
    width: 100%;
  }
}

.dia-school-video-sourses {
  width: 100%;
  display: grid;
  grid-template-columns: 50% 50%;
  gap: 5px;
  margin-bottom: 20px;
}
@media screen and (max-width: 576px) {
  .dia-school-video-sourses {
    grid-template-columns: 100%;
  }
}
.dia-school-video-sourses__logo-container {
  width: 99%;
  display: grid;
  grid-template-columns: 50% 50%;
  border: solid 1px #2988BC;
  border-radius: 6px;
  justify-content: center;
  align-items: center;
  padding: 2px;
}
.dia-school-video-sourses__logo-container_youtube-logo {
  width: 70%;
  margin-right: 10px;
}
.dia-school-video-sourses__logo-container_vk-video-logo {
  width: 70%;
}

.dia-school-logos {
  width: 120px;
}

.dia-school-main-img {
  width: 100%;
}

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

.celiakia__add-materials {
  display: grid;
  grid-template-columns: 100%;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .celiakia__add-materials {
    grid-template-columns: 100%;
  }
}
.celiakia__add-materials_pdf-documents {
  width: 90%;
  height: 500px;
  margin-bottom: 20px;
}

#read-more-articleCeliakia1 {
  display: none;
}

#read-more-articleCeliakiaGarden {
  display: none;
}

#read-more-articleCeliakiaSchool {
  display: none;
}

#read-more-articleCeliakiaPamyatka {
  display: none;
}

#read-more-articleCeliakiaRestoran {
  display: none;
}

#read-more-articleCeliakiaBezgluten {
  display: none;
}

#read-more-articleCeliakiaSkin {
  display: none;
}

#read-more-articleWhatIsCeliakia {
  display: none;
}

#read-more-articleControlCeliakia {
  display: none;
}

.magazin_pages {
  display: grid;
  grid-template-columns: 50% 50%;
}

.magazin_page {
  width: 98%;
  border: solid 1px #62B4E0;
}

.pages__images {
  display: flex;
  justify-content: center;
}
.pages__image-container {
  width: 90%;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .pages__image-container {
    width: 96%;
  }
}
.pages__image-container_fakes {
  width: 80%;
  border: solid 1px #032a3f;
}
@media screen and (max-width: 768px) {
  .pages__image-container_fakes {
    width: 100%;
  }
}

.partners-logo {
  width: 50%;
}
@media screen and (min-width: 768px) {
  .partners-logo {
    width: 50%;
  }
}

.partners-list {
  display: grid;
  grid-template-columns: 33% 33% 33%;
  text-align: center;
  align-items: center;
  margin-top: 50px;
  margin-bottom: 100px;
}

.logo-2gdkb {
  width: 180px;
}
@media screen and (max-width: 768px) {
  .logo-2gdkb {
    width: 100px;
  }
}

.dia-shops {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 20px;
}
@media screen and (max-width: 768px) {
  .dia-shops {
    grid-template-columns: repeat(2, 1fr);
    padding: 10px;
  }
}
@media screen and (max-width: 576px) {
  .dia-shops {
    display: flex;
    margin: 0 auto;
    padding: 20px;
    width: 50%;
  }
}

.diashops-logo {
  width: 100%;
}

form {
  background-color: #f9f9f9;
  padding: 20px;
  margin: 20px;
}

.form-container {
  margin-left: 240px;
  margin-top: 120px;
  width: 50%;
}
@media screen and (max-width: 768px) {
  .form-container {
    margin-left: 0px;
    margin-top: 180px;
    width: 100%;
  }
}

.error-message {
  color: red;
  font-size: 0.9em;
  display: none;
  margin-top: 5px;
}

.error-visible {
  display: block;
}

input.is-invalid {
  border: 1px solid red;
}

.container {
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
  max-width: 560px;
}

.form__wrapper {
  position: relative;
  padding: 1rem;
  border-radius: 4px;
}

.form-row {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  margin-right: -5px;
  margin-left: -5px;
}
@media screen and (max-width: 768px) {
  .form-row {
    display: block;
  }
}

@media (min-width: 576px) {
  .form-row > .form-group {
    flex: 0 0 50%;
    max-width: 50%;
    padding-right: 5px;
    padding-left: 5px;
  }
}
.form-group {
  margin-bottom: 1rem;
}

.form-control {
  display: block;
  width: 100%;
  height: calc(1.5em + 0.75rem + 2px);
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.form-control:focus {
  color: #495057;
  background-color: #fff;
  border-color: #80bdff;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

label {
  display: inline-block;
  margin-bottom: 0.5rem;
}

.invalid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 80%;
  color: #dc3545;
}

input[type=checkbox],
input[type=radio] {
  box-sizing: border-box;
  padding: 0;
}

textarea.form-control {
  overflow: auto;
  resize: vertical;
  height: auto;
}

/* Стили для секции, с помощью которой можно добавить к форме файлы */
.form-attach__label {
  margin-bottom: 0.5rem;
}

.form-attach__wrapper {
  position: relative;
  border: 2px dashed #e0e0e0;
  border-radius: 0.375rem;
  min-height: 50px;
}

.is-invalid .form-attach__wrapper {
  border-color: #dc3545;
}

.form-attach__wrapper input {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  filter: alpha(opacity=0);
  opacity: 0;
  outline: none;
  cursor: pointer;
  display: block;
}

.form-attach__description {
  text-align: center;
  padding: 1rem 0.5rem;
  color: #757575;
}

.form-attach__items {
  display: flex;
  flex-wrap: wrap;
}

.form-attach__item {
  flex: 0 0 25%;
  overflow: hidden;
  flex: 0 1 calc(25% - 0.5rem);
  margin: 0.25rem;
  font-size: 0.75rem;
  border: 1px solid #eee;
  padding: 1.625rem 0.25rem;
  border-radius: 0.25rem;
  position: relative;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.form-attach__image {
  display: block;
  max-width: 100%;
  height: auto;
  margin-top: auto;
  margin-left: auto;
  margin-right: auto;
  border: 1px solid #eee;
}

.form-attach__name {
  margin-top: auto;
  max-width: 100%;
  overflow: hidden;
  word-wrap: break-word;
  color: #757575;
  text-align: center;
}

.form-attach__size {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 3px 6px;
  font-weight: bold;
  text-align: right;
}

.form-attach__link {
  position: absolute;
  top: 0;
  right: 0;
  padding: 0 0.375rem 0.5rem;
  color: inherit;
  cursor: pointer;
  float: right;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  color: #000;
  text-shadow: 0 1px 0 #fff;
  opacity: 0.5;
}

.form-attach__item.is-valid {
  border-color: #28a745;
}

.form-attach__item.is-invalid {
  border-color: #dc3545;
}

.text-sm {
  font-size: 0.75rem;
}

.form-check {
  display: block;
  min-height: 1.5rem;
  padding-left: 1.5em;
}

.form-check-input.is-invalid,
.was-validated .form-check-input:invalid {
  border-color: #dc3545;
}

.form-check-input {
  width: 1em;
  height: 1em;
  margin-top: 0.25em;
  vertical-align: top;
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  border: 1px solid rgba(0, 0, 0, 0.25);
  border-radius: 0.25em;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-print-color-adjust: exact;
  color-adjust: exact;
}

.form-check .form-check-input {
  float: left;
}
@media screen and (min-width: 768px) {
  .form-check .form-check-input {
    margin-left: 240px;
  }
}

.form-check-input.is-invalid ~ .form-check-label,
.was-validated .form-check-input:invalid ~ .form-check-label {
  color: #dc3545;
}

.form-check-input:checked[type=checkbox] {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3l6-6'/%3e%3c/svg%3e");
}

.form-check-input:checked {
  border-color: #9e9e9e;
  background-color: #9e9e9e;
}

.form-check-label {
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .form-check-label {
    margin-left: 240px;
  }
}

.user-agreement {
  color: #2988BC;
  text-decoration: underline;
}

.user-agreement:hover {
  color: #032a3f;
  text-decoration: underline;
}

.is-invalid ~ .invalid-feedback,
.is-invalid ~ .invalid-tooltip,
.was-validated :invalid ~ .invalid-feedback,
.was-validated :invalid ~ .invalid-tooltip {
  display: block;
}

.invalid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 0.875em;
  color: #dc3545;
}

.custom-control {
  position: relative;
  display: block;
  min-height: 1.5rem;
  padding-left: 1.5rem;
}

.custom-control-input {
  position: absolute;
  z-index: -1;
  opacity: 0;
}

.custom-control-label {
  position: relative;
  margin-bottom: 0;
  vertical-align: top;
}

.custom-checkbox .custom-control-label::before {
  border-radius: 0.25rem;
}

.custom-control-label::before {
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.custom-control-label::before {
  position: absolute;
  top: 0.25rem;
  left: -1.5rem;
  display: block;
  width: 1rem;
  height: 1rem;
  pointer-events: none;
  content: "";
  background-color: #fff;
  border: #adb5bd solid 1px;
}

.custom-control-label::after {
  position: absolute;
  top: 0.25rem;
  left: -1.5rem;
  display: block;
  width: 1rem;
  height: 1rem;
  content: "";
  background: no-repeat 50%/50% 50%;
}

.custom-checkbox .custom-control-input:checked ~ .custom-control-label::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3e%3c/svg%3e");
}

.custom-control-label::after {
  position: absolute;
  top: 0.25rem;
  left: -1.5rem;
  display: block;
  width: 1rem;
  height: 1rem;
  content: "";
  background: no-repeat 50%/50% 50%;
}

.custom-control-input:checked ~ .custom-control-label::before {
  color: #fff;
  border-color: #007bff;
  background-color: #007bff;
}

.custom-control-input:focus ~ .custom-control-label::before {
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.custom-control-input:focus:not(:checked) ~ .custom-control-label::before {
  border-color: #80bdff;
}

.custom-control-input:active ~ .custom-control-label::before {
  color: #fff;
  background-color: #b3d7ff;
  border-color: #b3d7ff;
}

.form-agreement label {
  font-size: 0.875rem;
}

/* CSS для индикации полей форме при их валидности */
.form-control.is-valid {
  border-color: #28a745;
  padding-right: calc(1.5em + 0.75rem);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: center right calc(0.375em + 0.1875rem);
  background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

textarea.form-control.is-valid {
  padding-right: calc(1.5em + 0.75rem);
  background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem);
}

.form-control.is-valid:focus {
  border-color: #28a745;
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

/* CSS для индикации полей форме при их не валидности */
.form-control.is-invalid {
  border-color: #dc3545;
  padding-right: calc(1.5em + 0.75rem);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23dc3545' viewBox='-2 -2 7 7'%3e%3cpath stroke='%23dc3545' d='M0 0l3 3m0-3L0 3'/%3e%3ccircle r='.5'/%3e%3ccircle cx='3' r='.5'/%3e%3ccircle cy='3' r='.5'/%3e%3ccircle cx='3' cy='3' r='.5'/%3e%3c/svg%3E");
  background-repeat: no-repeat;
  background-position: center right calc(0.375em + 0.1875rem);
  background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

textarea.form-control.is-invalid {
  padding-right: calc(1.5em + 0.75rem);
  background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem);
}

.form-control.is-invalid:focus {
  border-color: #dc3545;
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.form-control.is-invalid ~ .invalid-feedback,
.is-invalid .invalid-feedback {
  display: block;
}

.form-submit {
  text-align: right;
}

/* CSS для кнопки submit */
button[type=submit] {
  align-items: center;
  justify-content: center;
  font-weight: 400;
  color: #fff;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  background-color: #2988BC;
  border: 1px solid #2988BC;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: 6px;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  position: relative;
}

button[type=submit]:disabled {
  opacity: 0.5;
}

button[type=submit]:not(:disabled)::before {
  content: "";
  width: 1rem;
  height: 1rem;
}

@keyframes spinner-border {
  100% {
    transform: rotate(360deg);
  }
}
button[type=submit]:disabled::before {
  content: "";
  display: inline-block;
  width: 1rem;
  height: 1rem;
  vertical-align: -0.125em;
  border: 0.2em solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  animation: 0.75s linear infinite spinner-border;
}

button[type=submit]:not(:disabled):hover {
  color: #fff;
  background-color: #ED8C72;
  border-color: #ED8C72;
}

button[type=submit]:not(:disabled):focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 0.5);
}

/* Стили для сообщения об ошибках */
.form-error {
  position: relative;
  padding: 0.5rem 1rem 0.6rem;
  margin-bottom: 1rem;
  border-radius: 0.25rem;
  color: #dc3545;
  background-color: rgba(220, 53, 69, 0.0509803922);
  border: 1px solid #dc3545;
}

.form-error_hide {
  display: none;
}

/* сообщение об успешной отправки формы */
.form-success {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  display: flex;
  text-align: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.7);
  font-size: 1.25rem;
  border-radius: 0.25rem;
}

.form-success_hide {
  display: none;
}

.form-success__message {
  position: relative;
  padding: 1rem;
  background-color: #fafafa;
}

.form-success__btn {
  font-weight: 400;
  color: #0d6efd;
  text-decoration: underline;
  border: none;
  background-color: transparent;
  display: inline;
  padding: 0;
}

#read-more-article-donate {
  display: none;
}

.donate__oferta {
  background-color: #fff;
  border: solid 1px #62B4E0;
  padding: 0px 10px 0px 10px;
  color: #032a3f;
  text-decoration: none;
  font-size: 18px;
  line-height: 1.5;
  border-radius: 6px;
}
.donate__public-oferta {
  width: 100%;
  height: 400px;
}

.oferta__name {
  text-align: center;
}
.oferta__minsk {
  display: flex;
  justify-content: space-between;
}

.white-list {
  background-color: #fff;
  list-style: none;
}

.white-list:hover {
  background-color: #fff;
}

.rekvizity {
  margin-left: 50px;
}
@media screen and (max-width: 768px) {
  .rekvizity {
    margin-left: 10px;
  }
}
@media screen and (max-width: 576px) {
  .rekvizity {
    margin-left: 0px;
  }
}

.QR-code {
  width: 80%;
}

.donate-table {
  display: grid;
  grid-template-columns: 50% 50%;
  text-align: center;
}
@media screen and (min-width: 1200px) {
  .donate-table {
    grid-template-columns: 40% 33% 25%;
  }
}
@media screen and (max-width: 768px) {
  .donate-table {
    grid-template-columns: 100%;
    margin-right: 0px;
  }
}

.donate-info {
  text-align: left;
}
.donate-info_erip {
  margin-left: 20px;
  text-align: left;
}

.medium-size-display {
  text-align: center;
}
@media screen and (min-width: 1200px) {
  .medium-size-display {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .medium-size-display {
    display: none;
  }
}

.medium-size-display-none {
  display: none;
}
@media screen and (min-width: 1200px) {
  .medium-size-display-none {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .medium-size-display-none {
    display: block;
  }
}

.QR-code-container {
  display: flex;
  justify-content: center;
}
@media screen and (min-width: 1200px) {
  .QR-code-container {
    display: flex;
    align-items: flex-start;
    justify-content: center;
  }
}

.libre-problem {
  width: 60%;
}
@media screen and (min-width: 576px) {
  .libre-problem {
    width: 30%;
  }
}
@media screen and (min-width: 768px) {
  .libre-problem {
    width: 20%;
  }
}

.simple-list {
  background-color: #fff;
  list-style-type: square;
}/*# sourceMappingURL=main-styles.css.map */