.menu__button a {color:#fff;}

@charset "UTF-8";
/*======================= Основной шрифт =======================*/
@import url("https://fonts.googleapis.com/css2?family=PT+Sans:ital,wght@0,400;0,700;1,400;1,700&display=swap");
/*======================= Переменные =======================*/
/*======================= Базовые стили =======================*/
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: #ffffff;
  color: #000000;
  font-family: "PT Sans", sans-serif;
  font-size: 1rem;
  margin: 0;
  overflow-x: hidden;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

img {
  width: 100%;
  height: auto;
}

button {
  font-family: "PT Sans", sans-serif;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

button:hover {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
  -webkit-filter: brightness(0.95);
  filter: brightness(0.95);
}

/*======================= Шапка =======================*/
.navbar {
  padding-top: 30px;
  padding-bottom: 30px;
}

.navbar__logo img {
  height: 121px;
  width: 121px;
  -webkit-transition: .3s;
  transition: .3s;
}

.navbar__logo img:hover {
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}

.navbar__toggler {
  border: none;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0;
  height: 25px;
  width: 25px;
}

.navbar__toggler:hover {
  transform: none;
}

.navbar__toggler:focus {
  box-shadow: none;
}

.navbar__line {
  background: #737373;
  height: 1px;
  width: 100%;
  transition: .3s;
}

.navbar__toggler[aria-expanded='true'] .navbar__line:nth-child(1) {
  transform: translateY(12px) rotate(-45deg);
}

.navbar__toggler[aria-expanded='true'] .navbar__line:nth-child(2) {
  transform: translateX(-100%);
  opacity: 0;
}

.navbar__toggler[aria-expanded='true'] .navbar__line:nth-child(3) {
  transform: translateY(-12px) rotate(45deg);
}

.navbar__links {
  margin-left: 20px;
}

.navbar__item {
  color: #009639;
  font-size: 1.1rem;
  padding: 10px 19px;
  -webkit-transition: .5s;
  transition: .5s;
}

.navbar__item:hover {
  background: #009639;
  color: #ffffff;
}

.navbar__item.active {
  background: #009639;
  color: #ffffff;
  font-weight: bold;
  padding: 10px 52px;
}

.navbar__item:nth-child(4) {
	display: none;
}

.navbar__phone {
  color: #009639;
  font-size: 2rem;
}

.navbar__phone:hover {
  color: #009639;
}

.navbar__search {
  background: #edf4fb;
  height: 60px;
  padding: 0;
}

.navbar__search input {
  background: none;
  border: none;
  color: #a1cbed;
  font-size: 1.1rem;
  font-style: italic;
  padding: 10px 20px;
  height: 100%;
  width: 100%;
}

.navbar__search input:focus {
  border: none;
}

.navbar__search input::-webkit-input-placeholder {
  color: #a1cbed;
  font-size: 1.1rem;
  font-style: italic;
}

.navbar__search input:-ms-input-placeholder {
  color: #a1cbed;
  font-size: 1.1rem;
  font-style: italic;
}

.navbar__search input::-ms-input-placeholder {
  color: #a1cbed;
  font-size: 1.1rem;
  font-style: italic;
}

.navbar__search input::placeholder {
  color: #a1cbed;
  font-size: 1.1rem;
  font-style: italic;
}

.navbar__search button {
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  height: 100%;
}

.navbar__search button img {
  height: 39px;
  width: 35px;
}

.menu {
  padding-top: 64px;
}

.menu__padding {
  height: 64px;
}

.menu__limiter {
  padding-top: 64px;
  margin-top: -64px;
}

.menu__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
}

@media screen and (min-width: 1200px) {
	.menu {
		position: sticky;
		top: -68px;
		z-index: 10;
	}

	.menu__item.active::before {
	  background-image: url(../img/menu_check.svg);
	  background-repeat: no-repeat;
	  background-position: center;
	  background-size: cover;
	  border-radius: 50%;
	  content: '';
	  height: 40px;
	  width: 40px;
	  position: absolute;
	  left: 50%;
	  transform: translateX(-50%);
	  top: -52px;
	  z-index: 1;
	}
	
	.menu__item.active:nth-child(2)::before {
	  background-color: #43b02a;
	}
	
	.menu__item.active:nth-child(3)::before {
	  background-color: #009639;
	}
	
	.menu__item.active:nth-child(4)::before {
	  background-color: #6cace4;
	}
	
	.menu__item.active:nth-child(5)::before {
	  background-color: #a1cbed;
	}
	
	.menu__item.active:nth-child(6)::before {
	  background-color: #eb6631;
	}
	
	.menu__item.active:nth-child(7)::before {
	  background-color: #47ae64;
	}
}

.menu__item {
  position: relative;
  width: 207.33px;
}

.menu__item:not(:last-child) {
  margin-right: 10px;
}

.menu__button {
  background: none;
  border: none;
  color: #ffffff;
  cursor: pointer;
  padding: 20px;
  position: relative;
  width: 100%;
}

.menu__button::before {
  content: '';
  position: absolute;
  bottom: 100%;
  left: 0;
  height: 100%;
  width: 100%;
}

.menu__button:hover {
  -webkit-transform: none;
  transform: none;
}

.menu__button#first {
  background-color: #43b02a;
}

.menu__button#first::before {
  background-color: rgba(67, 176, 42, 0.45);
}

.menu__button#first + .menu__dropdown {
  background-color: rgba(67, 176, 42, 0.85);
}

.menu__button#second {
  background-color: #009639;
}

.menu__button#second::before {
  background-color: rgba(0, 150, 57, 0.45);
}

.menu__button#second + .menu__dropdown {
  background-color: rgba(0, 150, 57, 0.85);
}

.menu__button#third {
  background-color: #6cace4;
}

.menu__button#third::before {
  background-color: rgba(108, 172, 228, 0.45);
}

.menu__button#third + .menu__dropdown {
  background-color: rgba(108, 172, 228, 0.85);
}

.menu__button#fourth {
  background-color: #a1cbed;
}

.menu__button#fourth::before {
  background-color: rgba(161, 203, 237, 0.45);
}

.menu__button#fourth + .menu__dropdown {
  background-color: rgba(161, 203, 237, 0.85);
}

.menu__button#fivth {
  background-color: #eb6631;
}

.menu__button#fivth::before {
  background-color: rgba(235, 102, 49, 0.45);
}

.menu__button#fivth + .menu__dropdown {
  background-color: rgba(235, 102, 49, 0.85);
}

.menu__button#sixth {
  background-color: #47ae64;
}

.menu__button#sixth::before {
  background-color: rgba(71, 174, 100, 0.45);
}

.menu__button#sixth + .menu__dropdown {
  background-color: rgba(71, 174, 100, 0.85);
}

.menu__button#raspisanie {
	animation:pulse 0.5s infinite alternate;
	background-color: #eb6631;
}

@keyframes pulse {
  from { box-shadow:0px 0px 5px 3px rgba(235, 102, 49, 1); }
  to { box-shadow:0px 0px 10px 5px rgba(235, 102, 49, 1); }
}

.menu__dropdown {
  display: none;
  position: absolute;
  top: 100%;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  z-index: 10;
}

.menu__dropdown a {
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  display: block;
  width: 207.33px;
}

.menu__dropdown a:hover {
  background-color: rgba(0, 0, 0, 0.3);
}

.title {
  color: #009639;
  font-size: 2.35rem;
  margin: 50px 0 30px;
}

.footer {
  background-color: #009639;
}

.footer__row {
  padding: 50px 0 125px;
}

.footer__name {
  width: 100%;
}

.footer__name img {
  height: 83px;
  width: 83px;
  -webkit-transition: .3s;
  transition: .3s;
}

.footer__name img:hover {
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}

.footer__name p {
  color: #ffffff;
  font-size: 1.08rem;
  font-weight: bold;
  margin-left: 25px;
  line-height: 125%;
}

.footer__tagline {
  color: #ffffff;
  font-size: 2.5rem;
  line-height: 110%;
  width: 100%;
}

.footer__links {
  width: 100%;
}

.footer__links + .footer__links {
  margin-top: 50px;
}

.footer__link {
  color: #ffffff;
  display: block;
  font-size: 1.08rem;
  line-height: 144%;
}

.footer__link:hover {
  color: #d6d6d6;
}

.footer__link.active {
  font-weight: bold;
}

.footer__address {
  color: #ffffff;
  font-size: 1.08rem;
  width: 100%;
}

.footer__address a {
  color: #ffffff;
  font-weight: bold;
}

.footer__additional {
  width: 100%;
}

.footer__messanger + .footer__messanger {
  margin-left: 25px;
}

.footer__messanger img {
  height: 55px;
  width: 55px;
  -webkit-transition: .3s;
  transition: .3s;
}

.footer__messanger img:hover {
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}

.footer__divider {
  border-bottom: 1px solid #ffffff;
  margin: 50px 0 20px;
}

.footer__copyright {
  color: #ffffff;
  font-size: 1.08rem;
}

@media (min-width: 1400px) {
  .navbar__container {
    max-width: unset;
  }
}

@media (min-width: 1600px) {
  .navbar__container {
    max-width: 1600px;
  }
  .navbar__search {
    width: 500px;
  }
}

@media (max-width: 1399.98px) {
  .navbar__logo img {
    height: 80px;
    width: 80px;
  }

  .navbar__item.active {
    padding: 10px 36px;
  }

  .navbar__phone {
    font-size: 1.8rem;
  }

  .menu__item {
    width: 177.66px;
  }

  .menu__button {
    height: 100%;
  }

  .menu__dropdown {
    width: 100%;
  }

  .menu__dropdown a {
    width: unset;
  }
}

@media (min-width: 1199.99px) {
  .menu__item:hover > .menu__dropdown {
    display: block;
  }
}

@media (max-width: 800px) {
  .navbar__links {
    margin-left: 7px;
  }
  .navbar__phone {
    font-size: 1.2rem;
  }
  .menu__row {
    flex-direction: column;
  }
  .menu__item {
    margin-top: 10px;
    width: 100%;
  }
  .menu__dropdown.active {
    display: block;
    position: static;
  }
  .menu__button {
    padding: 10px 0;
  }
  .menu__button::before {
    content: unset;
  }
  .footer__tagline {
    margin-bottom: 20px;
    text-align: right;
  }
  .footer__links.top {
    display: flex;
    justify-content: space-evenly;
  }
  .footer__links.bottom {
    display: flex;
    justify-content: space-between;
  }
  .footer__links + .footer__links {
    margin-top: 20px;
  }
  .footer__link {
    text-align: center;
  }
  .footer__contacts {
    margin-top: 20px;
  }
  .footer__contacts * {
    text-align: center;
  }
  .footer__address {
    margin-top: 20px;
    order: 1;
  }
  .footer__messangers {
    text-align: center;
    width: 100%;
  }
  .footer__additional {
    order: 2;
  }
  .footer__divider {
    margin-top: 20px;
  }
  .footer__copyright {
    text-align: center;
  }
}

@media (max-width: 1120px) {
  .navbar__phone {
    display: none;
  }
}

@media (max-width: 991.98px) {
  html {
    font-size: 14px;
  }
  .navbar {
    padding-top: 15px;
    padding-bottom: 15px;
  }
  .navbar__collapse > * {
    margin-top: 10px;
  }
  .navbar__logo img {
    height: 50px;
    width: 50px;
  }
  .navbar__links {
    margin-left: 0;
  }
  .navbar__item.active {
    display: none;
  }
  .navbar__phone {
    display: block;
    padding-left: 15px;
  }
  .navbar__search {
    height: unset;
    margin-top: 15px;
  }
  .navbar__search button img {
    height: 19.5px;
    width: 17.5px;
  }
}

@media (max-width: 950px) {
  .menu__item.active .menu__button::before {
    background-size: contain;
  }
}

@media (max-width: 767.98px) {
  .footer__name {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .footer__tagline {
    margin-top: 20px;
    text-align: left;
  }
  .footer__links.top {
    justify-content: space-between;
  }
  .footer__links.bottom {
    display: block;
  }
  .footer__link {
    text-align: left;
    width: auto;
  }
  .footer__address {
    text-align: left;
  }
}

@media (max-width: 420px) {
  .footer__name p {
    font-size: 1.04rem;
  }
  .footer__tagline {
    font-size: 1.7rem;
  }
  .footer__messanger img {
    height: 45px;
    width: 45px;
  }
  .footer__copyright {
    font-size: 1rem;
  }
}

.banner {
  position: relative;
}

.banner__link {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: rgba(235, 102, 49, 0.85);
  border-radius: 50%;
  color: #FFFFFF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 150px;
  width: 150px;
  position: absolute;
  left: 50%;
  transform: translateX(540px);
  bottom: 20%;
}

.banner__link:hover {
  color: #FFFFFF;
}

.banner__link p {
  font-size: 16px;
  margin: 0;
  text-align: center;
  width: 100px;
  line-height: 110%;
}

.banner__link span {
  font-weight: bold;
}

.banner__text {
  text-shadow: 0 0 10px #dddddd;
  color: #009639;
  font-size: 4rem;
  font-weight: bold;
  line-height: 100%;
  position: absolute;
  bottom: 20%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  text-align: center;
  width: 70%;
}

.banner + .menu {
  margin-top: -64px;
}

@media screen and (max-width: 1399.98px) {
  .banner__link {
    left: unset;
    right: 12px;
    transform: none;
  }
}

@media screen and (max-width: 800px) {
  .banner__text {
    bottom: 10%;
    padding: 0 12px;
    width: 100%;
  }
  .banner__link {
    bottom: 25%;
  }
}

.slider {
  padding-bottom: 100px;
  position: relative;
}

.slider__wrapper {
  position: relative;
}

.slider__filter {
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #009639;
  opacity: 0.25;
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
  cursor: pointer;
}

.slider__filter:hover {
  opacity: 0;
}

.slider__arrow img {
  height: 65px;
  width: 65px;
}

.slider .lSSlideOuter {
  overflow: visible;
  position: relative;
}

.slider .lSSlideWrapper {
  position: static;
}

.slider .lSAction img {
  height: 50px;
  width: 50px;
}

.slider .lSPrev {
  background: none;
  left: 0;
  margin-top: 0;
  opacity: 1;
  transform: translate(-50%, -50%);
  height: 50px;
  width: 50px;
}

.slider .lSNext {
  background: none;
  right: 0;
  margin-top: 0;
  opacity: 1;
  transform: translate(50%, -50%);
  height: 50px;
  width: 50px;
}

@media screen and (max-width: 800px) {
  .slider .lSNext {
    transform: translate(-10px, -50%);
  }
  .slider .lSPrev {
    transform: translate(10px, -50%);
  }
}

.digits {
  padding-bottom: 100px;
}

.digits * {
  text-align: center;
}

.digits__item img {
  -webkit-transition: .3s;
  transition: .3s;
}

.digits__item img:hover {
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}

.digits__item #digit_1 {
  height: 139px;
  width: 152px;
}

.digits__item #digit_2 {
  height: 144px;
  width: 146px;
}

.digits__item #digit_3 {
  height: 143px;
  width: 134px;
}

.digits__number {
  color: #009639;
  font-size: 3.75rem;
  font-weight: bold;
}

.digits__description {
  color: #009639;
  font-size: 2.05rem;
  line-height: 114%;
}

@media (max-width: 991.98px) {
  .navbar__item:nth-child(3) {
	display: none;
  }
  .navbar__item:nth-child(4) {
	display: block;
  }
  .banner__text {
    font-size: 3rem;
  }
  .banner__link {
    display: none;
  }
}

@media (max-width: 767.98px) {
  .digits__item + .digits__item {
    margin-top: 30px;
  }
}

@media (max-width: 600px) {
  .banner__text {
    font-size: 2rem;
  }
}

@media (max-width: 400px) {
  .banner__text {
    bottom: 10%;
    font-size: 1.3rem;
  }
}

.agent {
  padding-top: 50px;
  padding-bottom: 50px;
}

.agent__title {
  font-weight: bold;
}

.agent__subtitle {
  font-weight: normal;
}

.agent__about {
  color: #708687;
  font-size: 1.55rem;
  line-height: 132%;
}

.agent__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.agent__item {
  background: #ccead7;
  position: relative;
  margin-top: 40px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  width: 420px;
}

.agent__item.active {
  -ms-flex-item-align: start;
  align-self: flex-start;
}

.agent__item.active .agent__img-wrapper {
  position: absolute;
  z-index: 1;
}

.agent__item.active .agent__footer {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: rgba(0, 150, 57, 0.85);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0 30px;
  position: relative;
  height: 126px;
  z-index: 2;
}

.agent__item.active .agent__name {
  color: #FFFFFF;
}

.agent__item.active .agent__description {
  display: none;
}

.agent__item.active .agent__dropdown {
  display: block;
}

.agent__img-wrapper {
  height: 125px;
  width: 100%;
}

.agent__img {
  cursor: pointer;
  object-fit: cover;
  height: 100%;
  width: 100%;
}

.agent__footer {
  cursor: pointer;
  padding: 20px 30px;
  height: 163px;
}

.agent__name {
  color: #009639;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 115%;
}

.agent__description {
  color: #708687;
  font-size: 1.1rem;
  line-height: 130%;
}

.agent__dropdown {
  background: rgba(0, 150, 57, 0.85);
  display: none;
  padding: 20px 40px;
}

.agent__dropdown a {
  color: #FFFFFF;
  display: block;
  font-size: 1.1rem;
  line-height: 120%;
  margin-top: 10px;
  margin-left: 15px;
  position: relative;
}

.agent__dropdown a::before {
  background-color: #FFFFFF;
  border-radius: 50%;
  content: '';
  position: absolute;
  top: 50%;
  left: -15px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  height: 5px;
  width: 5px;
}

@media (max-width: 1399.98px) {
  .agent__item {
    width: 360px;
  }
  .agent__item.active .agent__footer {
    height: 108px;
  }
}

@media (max-width: 800px) {
  .agent__items {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: space-evenly;
    -ms-flex-pack: space-evenly;
    justify-content: space-evenly;
  }
  .agent__item {
    margin-right: 10px;
    width: 420px;
  }
  .agent__item.active .agent__footer {
    height: 126px;
  }
}

@media (max-width: 470px) {
  .agent__item {
    margin-right: 0;
    width: 280px;
  }
  .agent__item.active .agent__footer {
    height: 84px;
  }
}

.course {
  padding-top: 50px;
  padding-bottom: 50px;
}

.course__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.course__menu-item {
  color: #009639;
  display: block;
  font-size: 1.1rem;
  margin-right: 30px;
}

.course__menu-item.active {
  font-weight: bold;
}

.course__title span {
  font-weight: bold;
}

.course__master {
  color: #708687;
  font-size: 1.8rem;
  line-height: 115%;
}

.course__master span {
  font-weight: bold;
}

.course__video {
  margin: 50px 0;
  max-width: 640px;
}

.course__video a > img {
  -o-object-fit: cover;
  object-fit: cover;
  max-width: 100%;
  height: auto;
  -webkit-box-shadow: 0 0 5px #ccc;
  box-shadow: 0 0 5px #ccc;
}

.course__video a, .course__video iframe {
  padding: 5px;
  display: block;
  position: relative;
}

.course__video a:after {
  width: 64px;
  height: 64px;
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -32px;
  margin-top: -32px;
  background: url(../img/player_play.png) no-repeat;
  content: '';
  opacity: 0.8;
}

.course__text {
  color: #708687;
  font-size: 1.56rem;
  line-height: 132%;
}

.course__h2 {
  color: #009639;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 115%;
  margin-top: 40px;
  margin-bottom: 25px;
}

.course__ul {
  padding: 0;
}

.course__ul li {
  color: #708687;
  font-size: 1.56rem;
  line-height: 132%;
  margin-left: 15px;
  position: relative;
}

.course__ul li::before {
  background: #708687;
  border-radius: 50%;
  content: '';
  height: 5px;
  width: 5px;
  position: absolute;
  top: 15px;
  left: -15px;
}

.course__button {
  background: #009639;
  border: none;
  color: #FFFFFF;
  font-size: 1.81rem;
  margin: 50px 0;
  padding: 5px;
  text-align: center;
  width: 400px;
}

.modal-window {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.modal-window.active {
  display: block;
}

.modal-window__overflow {
  background: rgba(0, 0, 0, 0.5);
  height: 100%;
  width: 100%;
}

.modal-window__form {
  background: #FFFFFF;
  border: 1px solid #000000;
  border-radius: 25px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  padding: 50px 30px;
  height: auto;
  width: 300px;
}

.modal-window__close {
  cursor: pointer;
  position: absolute;
  top: 15px;
  right: 15px;
  height: 20px;
  width: 20px;
}

.modal-window__title {
  color: #009639;
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
}

.modal-window__input {
  width: 100%;
}

.modal-window__input label {
  display: block;
}

.modal-window__input input {
  width: 100%;
}

.modal-window__submit {
  background: #009639;
  border: none;
  color: #FFFFFF;
  margin-top: 10px;
  padding: 10px;
  width: 100%;
}

@media screen and (max-width: 675px) {
  .course__button {
    margin: 30px auto;
    width: 270px;
  }
}

.vebinar {
  padding-top: 50px;
  padding-bottom: 50px;
}

.vebinar + .vebinar {
  padding-top: 0;
}

.vebinar__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.vebinar__menu-item {
  color: #009639;
  display: block;
  font-size: 1.1rem;
  margin-right: 30px;
}

.vebinar__menu-item.active {
  font-weight: bold;
}

.vebinar__title span {
  font-weight: bold;
}

.vebinar__date {
  color: #708687;
  font-size: 1.2rem;
}

.vebinar__master {
  color: #708687;
  font-size: 1.8rem;
  line-height: 115%;
}

.vebinar__master span {
  font-weight: bold;
}

.vebinar__video {
  margin: 50px 0;
  /* max-width: 640px; */
}

.vebinar__video a > img {
  -o-object-fit: cover;
  object-fit: cover;
  max-width: 100%;
  height: auto;
  -webkit-box-shadow: 0 0 5px #ccc;
  box-shadow: 0 0 5px #ccc;
}

.vebinar__video a, .vebinar__video iframe {
  padding: 5px;
  display: block;
  position: relative;
}

.vebinar__video a:after {
  width: 64px;
  height: 64px;
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -32px;
  margin-top: -32px;
  background: url(../img/player_play.png) no-repeat;
  content: '';
  opacity: 0.8;
}

.vebinar__text {
  color: #708687;
  font-size: 1.2rem;
  line-height: 132%;
}

.vebinar__h2 {
  color: #009639;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 115%;
  margin-top: 40px;
  margin-bottom: 25px;
}

.vebinar__ul {
  padding: 0;
}

.vebinar__ul li {
  color: #708687;
  font-size: 1.56rem;
  line-height: 132%;
  margin-left: 15px;
  position: relative;
}

.vebinar__ul li::before {
  background: #708687;
  border-radius: 50%;
  content: '';
  height: 5px;
  width: 5px;
  position: absolute;
  top: 15px;
  left: -15px;
}

@media screen and (max-width: 675px) {
  .vebinar__button {
    margin: 30px auto;
    width: 270px;
  }
}

.login {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  min-height: 100vh;
}

.login__wrapper {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border: 3px solid #009639;
  border-radius: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin: auto;
  padding: 30px;
  width: 300px;
}

.login__wrapper img {
  height: 100px;
  margin-bottom: 15px;
  width: 100px;
}

.login__wrapper h1 {
  color: #009639;
  font-weight: bold;
  margin-bottom: 15px;
}

.login__wrapper input {
  font-size: 1.2rem;
  height: 47px;
  margin-top: 15px;
  padding: 5px;
  width: 100%;
}

.login__wrapper input:hover {
  border-color: #009639;
}

.login__wrapper input:focus {
  outline: #009639;
}

.login__wrapper button {
  background: #009639;
  border: none;
  color: #FFFFFF;
  cursor: pointer;
  font-size: 1.81rem;
  margin-top: 15px;
  padding: 5px;
  text-align: center;
  width: 100%;
}

.default-ul {
  list-style: none;
  padding-left: 0;
}

.default-ul li {
  color: #708687;
  font-size: 1.55rem;
  padding-left: 20px;
  position: relative;
}

.default-ul li::before {
  border-radius: 50%;
  background: #708687;
  content: '';
  position: absolute;
  left: 0;
  top: 17px;
  height: 6px;
  width: 6px;
}

.default-p {
  color: #708687;
  font-size: 1.55rem;
  line-height: 132%;
}

.course-group {
  color: #009639;
  font-size: 29px;
  margin-top: 50px;
  line-height: 100%;
}

.course-group__current {
  font-weight: bold;
}

.course-buttons {
  align-items: flex-start;
  display: grid;
  grid-column-gap: 12px;
  grid-row-gap: 55px;
  grid-template-columns: repeat(3, 1fr);
  margin: 26px 0;
  position: relative;
}

.course-buttons__item {
  border: none;
  color: #fff;
  cursor: pointer;
  display: block;
  font-size: 29px;
  line-height: 100%;
  position: relative;
  text-align: center;
}

a.course-buttons__item {
  padding: 15px;
  width: 100%
}

button.course-buttons__item {
  font-size: 20px;
  padding: 15px;
  width: 100%
}

.course-buttons__item:hover {
  color: #fff;
  transform: none;
}

@media screen and (min-width: 800px) {
  .course-buttons__item:hover .course-buttons__drop {
    display: block;
  }
}

.course-buttons__btn {
  background: none;
  border: none;
  font-size: 20px;
  line-height: 100%;
  padding: 15px;
  width: 100%;
}

.course-buttons__btn:hover {
  transform: none;
}

.course-buttons__btn a {
  color: #fff;
}

.course-buttons__drop {
  background: rgba(67, 176, 42, 0.85);
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
}

@media screen and (max-width: 800px) {
  .course-buttons__drop.active {
	display: block;
	position: static;
  }
}

.course-buttons__drop a {
  color: #fff;
  display: block;
  font-size: 1rem;
  padding: 10px 20px;
}

.course-buttons__drop a:hover {
  background: rgba(0, 0, 0, .3)
}

.course-buttons__item:nth-child(1), .course-buttons__item:nth-child(3) .course-buttons__btn {
  background: #43b02a;
}

.course-buttons__item:nth-child(2) {
  background: #ec6631;
}

.course-buttons__item:nth-child(4) {
  background: #009639;
}

.course-buttons__dropdown {
  background: rgba(0, 150, 57, 0.85);
  display: none;
  grid-gap: 20px;
  grid-template-columns: repeat(3, 1fr);
  padding: 40px;
  position: absolute;
  top: 100%;
  width: 100%;
}

.course-buttons__dropdown.active {
  display: grid;
}

.course-buttons__dropdown-link {
  color: #fff;
  display: block;
  font-size: 17.33px;
  padding-left: 10px;
  position: relative;
}

.course-buttons__dropdown-link:hover {
  color: #d6d6d6;
}

.course-buttons__dropdown-link::before {
  border-radius: 50%;
  background: #fff;
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  height: 4px;
  width: 4px;
}

.course-buttons__dropdown-lecture {
  color: #fff;
  font-size: 17.33px;
  font-weight: bold;
}

.course-buttons__dropdown-link + .course-buttons__dropdown-lecture {
  margin-top: 26px;
}

.lectures {
  margin-top: 45px;
}

.lectures__title {
  color: #009639;
  font-size: 2.35rem;
}

.lectures__wrapper {
  display: grid;
  grid-column-gap: 12px;
  grid-row-gap: 26px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 0;
}

.lectures__speaker {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 10px;
  grid-column: 1 / 2;
}

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

.lectures__speaker-name {
  color: #708687;
  font-size: 25px;
  font-weight: bold;
  line-height: 1.333;
  padding: 0 16px;
}

.lectures__speaker-position {
  font-weight: normal;
}

.lectures__speaker-btn {
  align-self: flex-end;
  color: #fff;
  font-size: 29px;
  height: fit-content;
  line-height: 1;
  text-align: center;
  padding: 15px;
}

.lectures__speaker-btn:hover {
  color: #fff;
}

.lectures__speaker-btn.btn-materials {
  background: #ec6631;
}

.lectures__speaker-btn.btn-test {
  background: #43b02a;
}

.lectures__speaker-btn.btn-link {
  color: #009639;
  font-size: 18px;
  text-decoration: none;
  line-height: 1.5;
}

.lectures__link {
  background: #ccead7;
  display: block;
}

.lectures__img {
  height: 120px;
  width: 100%;
}

.lectures__img img {
  object-fit: cover;
  height: 100%;
  width: 100%;
}

.lectures__info {
  padding: 25px 30px;
}

.lectures__name {
  color: #009639;
  font-size: 29px;
  font-weight: bold;
}

.lectures__about {
  color: #708687;
  font-size: 16.66px;
  line-height: 1.25;
  margin: 25px 0 0;
}

@media (max-width: 800px) {
  .course-buttons {
    grid-template-columns: repeat(2, 1fr);
  }

  .course-buttons__dropdown {
    grid-template-columns: repeat(2, 1fr);
  }

  .lectures__wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 820px) {
  .course-buttons {
    grid-template-columns: 1fr;
    grid-row-gap: 15px;
  }

  .course-buttons__dropdown {
    grid-template-columns: 1fr;
  }

  .lectures__wrapper {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 420px) {
  .course-buttons__item {
    font-size: 18px;
  }

  .lectures__speaker-btn {
    font-size: 18px;
    grid-column: 1 / -1;
  }
}
.team .h2 b {color:#009639;font-size: 24px;font-weight:bold !important;}
.team .h3 {color:#009639  !important;font-size: 22px !important;font-weight:700;}
.pm h1, .pm h2 {
	color:#ec6631;
}
.pm h3 {color:#cfcfcf;}
.pm h4 {color:#009639;}
.pm h1, .pm h2, .pm h3, .pm h4 {
	margin: 52px 0 26px;
}

.pm p {
	margin: 26px 0;
}

.pm .agent_name {    margin-top: 0;}

p, b {font-size: 20px;}

.modal-window {
	align-items: center;
	display: none;
	justify-content: center;
}

.modal-window.active {
	display: flex !important;
}

.modal-window__overflow {
	background: rgba(0, 0, 0, 0.5);
	position: absolute;
	top: 0;
	left: 0;
    height: 100%;
    width: 100%;
}

.modal-window__lecture {
	align-items: center;
	background: #fff;
	display: grid;
	grid-template-rows: 1fr auto;
	max-height: 100%;
	padding: 30px;
	position: relative;
}

.modal-window__lecture-img {
	height: 100%;
	overflow: hidden;
}

.modal-window__lecture-img img {
	height: 100%;
	object-fit: contain;
}

.modal-window__submit {
	cursor: pointer;
	text-align: center;
}

.modal-window__submit:hover {
	color: #fff;
}

.team__info {
	display: grid;
	grid-template-rows: 1fr auto;
}

.team__info.team-hidden {
	height: 368.9px;
}

.team__content {
	overflow: hidden;
	position: relative;
}

.team__info.team-hidden .team__content::after {
	background: linear-gradient(to top, #fff, transparent);
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	height: 40px;
	width: 100%;
}

.team__spoiler {
	color: #009639 !important;
	cursor: pointer;
	font-size: 18px;
	margin-top: 10px;
}


.lectures__link:hover .agent__footer, .lectures__link:hover .agent__name{opacity:0;}


.lectures__link .agent__description{margin-top:24px;}


section.pm nav * {
	font-weight:100;
}


.maingreen{color:#009639;}


.agent__item.active .is_white{color:#fff !important;}