:root {
  --font-family: "RobotoSlab", sans-serif;
  --content-width: 1350px;
  --container-offset: 15px;
  --container-width: calc(var(--content-width) + (var(--container-offset) * 2));
  --light-color: #ffffff;
  --dark-color: #263238;
  --accent-color: #1f7dbb;
  --line-thickness: 1px;
  --glass-size: 65%;
  --icon-height: 2rem;
  --transition-speed: .45s;
  --timing-function: cubic-bezier(.66,1.51,.77,1.13);
  --icon-color: #263238;
}

/* stylelint-disable */ /* stylelint-disable */ /* stylelint-disable */
.custom-checkbox__field:checked + .custom-checkbox__content::after {
  opacity: 1;
}

.custom-checkbox__field:focus + .custom-checkbox__content::before {
  outline: 2px solid #f00;
  outline-offset: 2px;
}

.custom-checkbox__field:disabled + .custom-checkbox__content {
  opacity: 0.4;
  pointer-events: none;
}

/* stylelint-disable */ /* stylelint-disable */ /* stylelint-disable value-keyword-case */
@font-face {
  font-family: "Roboto";
  src: url("../fonts/../fonts/Roboto-Regular.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "RobotoSlab";
  src: url("../fonts/../fonts/RobotoSlab-Regular.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "RobotoSlab";
  src: url("../fonts/../fonts/RobotoSlab-Bold.woff2") format("woff2");
  font-weight: 700;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "RobotoSlab";
  src: url("../fonts/../fonts/RobotoSlab-Black.woff2") format("woff2");
  font-weight: 900;
  font-display: swap;
  font-style: normal;
}
html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

*,
*::before,
*::after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0;
}

body.lock {
  overflow: hidden;
}

.page {
  height: 100%;
  font-family: var(--font-family, sans-serif);
  -webkit-text-size-adjust: 100%;
}

.page__body {
  margin: 0;
  min-width: 320px;
  min-height: 100%;
  font-size: 16px;
}

img {
  height: auto;
  max-width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

a {
  text-decoration: none;
}

.site-container {
  overflow: hidden;
}

.is-hidden {
  display: none !important; /* stylelint-disable-line declaration-no-important */
}

.btn-reset {
  border: none;
  padding: 0;
  background-color: transparent;
  cursor: pointer;
}

.list-reset {
  list-style: none;
  margin: 0;
  padding: 0;
}

.input-reset {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  border-radius: 0;
  background-color: #fff;
}
.input-reset::-webkit-search-decoration, .input-reset::-webkit-search-cancel-button, .input-reset::-webkit-search-results-button, .input-reset::-webkit-search-results-decoration {
  display: none;
}

.visually-hidden {
  position: absolute;
  overflow: hidden;
  margin: -1px;
  border: 0;
  padding: 0;
  width: 1px;
  height: 1px;
  clip: rect(0 0 0 0);
}

.container {
  margin: 0 auto;
  padding: 0 var(--container-offset);
  max-width: var(--container-width);
}

.js-focus-visible :focus:not(.focus-visible) {
  outline: none;
}

.centered {
  text-align: center;
}

.dis-scroll {
  position: fixed;
  left: 0;
  top: 0;
  overflow: hidden;
  width: 100%;
  height: 100vh;
  -ms-scroll-chaining: none;
  overscroll-behavior: none;
}

.page--ios .dis-scroll {
  position: relative;
}

.btn-outline {
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  line-height: 20px;
  text-transform: uppercase;
  color: var(--dark-color);
  border: 1px solid var(--accent-color);
  border-radius: 5px;
  padding: 8px 0;
  background-color: transparent;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.btn-outline:hover {
  background-color: var(--accent-color);
  color: var(--light-color);
}

.btn {
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  line-height: 30px;
  text-transform: uppercase;
  color: var(--light-color);
  border: 1px solid var(--accent-color);
  background-color: var(--accent-color);
  border-radius: 5px;
  padding: 10px 0;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.btn:hover {
  background-color: transparent;
  color: var(--dark-color);
  border: 1px solid var(--accent-color);
}

.btn-back {
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  line-height: 20px;
  text-transform: uppercase;
  color: var(--accent-color);
  background-color: var(--light-color);
  padding: 10px 0;
  border: 1px solid #CDE3FF;
  border-radius: 5px;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.btn-back:hover {
  background-color: #CDE3FF;
}
.btn-back > img {
  margin-right: 10px;
}

.title {
  font-style: normal;
  font-weight: 900;
  font-size: 40px;
  line-height: 50px;
  color: var(--accent-color);
}
@media (max-width: 768px) {
  .title {
    font-size: 35px;
    line-height: 45px;
  }
}
@media (max-width: 576px) {
  .title {
    font-size: 30px;
    line-height: 40px;
  }
}

.cloud {
  width: 100%;
  height: 100vh;
  background-position: right top;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.breadcrumb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.breadcrumb-item a {
  color: var(--accent-color) !important;
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
}
.breadcrumb-item a:hover {
  text-decoration: underline;
}
.breadcrumb-item.active {
  color: var(--accent-color) !important;
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  display: block;
}
.breadcrumb-item:before {
  color: #CDE3FF !important;
}

.all_pages {
  position: fixed;
  top: 20%;
  right: 0;
  z-index: 101;
}
.all_pages:hover ul {
  right: 0;
}
.all_pages .page_point {
  padding: 10px 15px;
  background: #00d2ff;
  cursor: pointer;
  color: #fff;
}
.all_pages ul {
  background: #00D2FF;
  padding: 15px 20px;
  position: absolute;
  top: 100%;
  width: 200px;
  right: -200px;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  max-height: 450px;
  overflow-y: auto;
}
.all_pages ul li {
  list-style: none;
  margin-bottom: 15px;
  font-size: 16px;
}
.all_pages ul li a {
  color: #fff;
}

.header-profile .header__login {
  display: none;
}
@media (max-width: 768px) {
  .header-profile .header__login {
    display: block;
  }
}
.header-profile .header__profile-info {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: 15px;
  -moz-column-gap: 15px;
  column-gap: 15px;
}
.header-profile .header__profile-avatar {
  width: 40px;
  height: 40px;
}
.header-profile .header__profile-avatar img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.header-profile .header__profile-name {
  padding-right: 15px;
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  line-height: 20px;
  text-transform: uppercase;
  color: var(--dark-color);
  position: relative;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -webkit-transform: translateY(1px);
  -ms-transform: translateY(1px);
  transform: translateY(1px);
}
@media (max-width: 992px) {
  .header-profile .header__profile-name {
    padding-right: 0;
  }
}
@media (max-width: 576px) {
  .header-profile .header__profile-name {
    display: none;
  }
}
.header-profile .header__profile-name:hover {
  color: var(--accent-color);
}
.header-profile .header__profile-name:hover:after {
  border-color: 2px solid var(--accent-color);
}
.header-profile .header__profile-name:after {
  content: "";
  position: absolute;
  right: 5px;
  top: 5px;
  -webkit-transform-origin: 50% 75%;
  -ms-transform-origin: 50% 75%;
  transform-origin: 50% 75%;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  width: 6px;
  height: 6px;
  background: 2px solid var(--dark-color);
  border: 2px solid var(--dark-color);
  border-left: none;
  border-top: none;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
@media (max-width: 1400px) {
  .header-profile .header__profile-name:after {
    right: 5px;
  }
}
@media (max-width: 1200px) {
  .header-profile .header__profile-name:after {
    top: 6px;
  }
}
@media (max-width: 992px) {
  .header-profile .header__profile-name:after {
    width: 8px;
    height: 8px;
    right: -20px;
    top: 3px;
    -webkit-transition-duration: 0s;
    -o-transition-duration: 0s;
    transition-duration: 0s;
  }
}
@media (max-width: 576px) {
  .header-profile .header__profile-name:after {
    width: 6px;
    height: 6px;
    top: 8px;
    right: -10px;
  }
}
@media (max-width: 480px) {
  .header-profile .header__profile-name.active:after {
    right: -15px;
  }
}
.header-profile .header__profile-name + ul {
  padding: 0;
  margin: 0;
  list-style: none;
  position: absolute;
  right: 0;
  top: calc(100% + 10px);
  background-color: var(--light-color);
  -webkit-box-shadow: 0px 10px 30px rgba(170, 201, 243, 0.9);
  box-shadow: 0px 10px 30px rgba(170, 201, 243, 0.9);
  padding: 15px;
  border-radius: 5px;
  visibility: hidden;
  opacity: 0;
  z-index: -1;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.header-profile .header__profile-name + ul > li {
  margin-bottom: 5px !important;
}
.header-profile .header__profile-name + ul > li:last-child {
  margin-bottom: 0;
}
@media (max-height: 400px) {
  .header-profile .header__profile-name + ul > li {
    margin-bottom: 0 !important;
  }
}
.header-profile .header__profile-name + ul > li > a {
  display: inline-block;
  font-style: normal;
  font-size: 13px;
  font-weight: 700;
  line-height: 20px;
  text-transform: uppercase;
  color: var(--dark-color);
  position: relative;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.header-profile .header__profile-name + ul > li > a:hover {
  color: var(--accent-color);
}
@media (max-width: 992px) {
  .header-profile .header__profile-name + ul > li > a:hover {
    color: var(--dark-color);
  }
}
@media (max-width: 1200px) {
  .header-profile .header__profile-name + ul > li > a {
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .header-profile .header__profile-name + ul > li > a {
    font-size: 12px;
  }
}
@media (max-height: 400px) {
  .header-profile .header__profile-name + ul > li > a {
    font-size: 10px;
  }
}
@media (max-height: 400px) {
  .header-profile .header__profile-name + ul {
    overflow: auto;
  }
}
.header-profile .header__profile-name.active + ul {
  visibility: visible;
  opacity: 1;
  z-index: 10;
}
@media (max-width: 992px) {
  .header-profile .header__profile-name.active + ul {
    display: block;
  }
  .header-profile .header__profile-name.active + ul > li {
    margin-bottom: 0;
    line-height: 110%;
  }
}
.header-profile .header__profile-name.active:after {
  -webkit-transform: rotate(225deg);
  -ms-transform: rotate(225deg);
  transform: rotate(225deg);
}
.header-profile .search-icon {
  right: 143px;
}
@media (max-width: 992px) {
  .header-profile .search-icon {
    right: 200px;
  }
}
@media (max-width: 576px) {
  .header-profile .search-icon {
    right: 105px;
  }
}

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

.header {
  padding: 40px 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
@media (max-width: 992px) {
  .header {
    padding: 20px 0;
  }
}
.header__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.header__logo {
  position: relative;
  z-index: 101;
}
@media (max-width: 576px) {
  .header__logo img {
    max-width: 120px;
  }
}
.header__navigation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  -webkit-column-gap: 40px;
  -moz-column-gap: 40px;
  column-gap: 40px;
}
@media (max-width: 768px) {
  .header__navigation {
    -webkit-column-gap: 35px;
    -moz-column-gap: 35px;
    column-gap: 35px;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }
}
@media (max-width: 576px) {
  .header__navigation {
    -webkit-column-gap: 20px;
    -moz-column-gap: 20px;
    column-gap: 20px;
  }
}
.header__navigation nav {
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.header__navigation nav > ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.header__navigation nav > ul > li:nth-child(2) {
  -webkit-transform: translateY(2.5px);
  -ms-transform: translateY(2.5px);
  transform: translateY(2.5px);
  font-style: normal;
  font-size: 14px !important;
  font-weight: 700;
  line-height: 20px;
  text-transform: uppercase;
  color: var(--dark-color);
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  position: relative;
  cursor: pointer;
  padding-right: 15px;
}
@media (max-width: 1200px) {
  .header__navigation nav > ul > li:nth-child(2) {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}
@media (max-width: 992px) {
  .header__navigation nav > ul > li:nth-child(2) {
    padding-right: 0;
  }
}
.header__navigation nav > ul > li:nth-child(2):after {
  content: "";
  position: absolute;
  right: 0px;
  top: 5px;
  -webkit-transform-origin: 50% 75%;
  -ms-transform-origin: 50% 75%;
  transform-origin: 50% 75%;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  width: 6px;
  height: 6px;
  background: 2px solid var(--dark-color);
  border: 2px solid var(--dark-color);
  border-left: none;
  border-top: none;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
@media (max-width: 1200px) {
  .header__navigation nav > ul > li:nth-child(2):after {
    top: 8px;
  }
}
@media (max-width: 992px) {
  .header__navigation nav > ul > li:nth-child(2):after {
    width: 8px;
    height: 8px;
    right: -20px;
    top: 3px;
    -webkit-transition-duration: 0s;
    -o-transition-duration: 0s;
    transition-duration: 0s;
  }
}
@media (max-width: 576px) {
  .header__navigation nav > ul > li:nth-child(2):after {
    width: 6px;
    height: 6px;
    top: 8px;
    right: -10px;
  }
}
@media (max-width: 480px) {
  .header__navigation nav > ul > li:nth-child(2).active:after {
    right: -15px;
  }
}
.header__navigation nav > ul > li > ul {
  padding: 0;
  margin: 0;
  list-style: none;
  position: absolute;
  top: calc(100% + 10px);
  background-color: var(--light-color);
  -webkit-box-shadow: 0px 10px 30px rgba(170, 201, 243, 0.9);
  box-shadow: 0px 10px 30px rgba(170, 201, 243, 0.9);
  padding: 15px;
  border-radius: 5px;
  width: 160%;
  visibility: hidden;
  opacity: 0;
  z-index: -1;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
@media (max-width: 992px) {
  .header__navigation nav > ul > li > ul {
    position: static;
    width: 100%;
    text-align: center;
    display: inline;
    padding: 0;
    display: none;
    background-color: transparent !important;
    -webkit-box-shadow: none;
    box-shadow: none;
  }
}
.header__navigation nav > ul > li > ul > li {
  margin-bottom: 5px !important;
}
.header__navigation nav > ul > li > ul > li:last-child {
  margin-bottom: 0;
}
@media (max-height: 400px) {
  .header__navigation nav > ul > li > ul > li {
    margin-bottom: 0 !important;
  }
}
.header__navigation nav > ul > li > ul > li > a {
  display: inline-block;
  font-style: normal;
  font-size: 13px;
  font-weight: 700;
  line-height: 20px;
  text-transform: uppercase;
  color: var(--dark-color);
  position: relative;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.header__navigation nav > ul > li > ul > li > a:hover {
  color: var(--accent-color);
}
@media (max-width: 992px) {
  .header__navigation nav > ul > li > ul > li > a:hover {
    color: var(--dark-color);
  }
}
@media (max-width: 1200px) {
  .header__navigation nav > ul > li > ul > li > a {
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .header__navigation nav > ul > li > ul > li > a {
    font-size: 12px;
  }
}
@media (max-height: 400px) {
  .header__navigation nav > ul > li > ul > li > a {
    font-size: 10px;
  }
}
@media (max-height: 400px) {
  .header__navigation nav > ul > li > ul {
    overflow: auto;
  }
}
.header__navigation nav > ul > li.active > ul {
  visibility: visible;
  opacity: 1;
  z-index: 10;
}
@media (max-width: 992px) {
  .header__navigation nav > ul > li.active > ul {
    display: block;
  }
  .header__navigation nav > ul > li.active > ul > li {
    margin-bottom: 0;
    line-height: 110%;
  }
}
.header__navigation nav > ul > li.active:after {
  -webkit-transform: rotate(225deg);
  -ms-transform: rotate(225deg);
  transform: rotate(225deg);
}
@media (max-width: 1200px) {
  .header__navigation nav > ul > li {
    font-size: 14px !important;
    line-height: 25px !important;
  }
}
.header__navigation nav > ul > li:hover:after {
  border-color: var(--accent-color);
}
@media (max-width: 992px) {
  .header__navigation nav > ul > li:hover:after {
    border-color: var(--dark-color);
  }
}
@media (max-width: 992px) {
  .header__navigation nav > ul {
    width: 100%;
    height: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);
  }
}
@media (max-height: 400px) {
  .header__navigation nav > ul {
    -webkit-transform: translateY(0px);
    -ms-transform: translateY(0px);
    transform: translateY(0px);
  }
}
.header__navigation nav > ul > li {
  margin-right: 25px;
}
@media (max-width: 1200px) {
  .header__navigation nav > ul > li {
    margin-right: 15px;
  }
}
@media (max-width: 992px) {
  .header__navigation nav > ul > li {
    margin-right: 0;
    margin-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .header__navigation nav > ul > li {
    margin-bottom: 5px;
  }
}
@media (max-height: 400px) {
  .header__navigation nav > ul > li {
    margin-bottom: 3px;
    text-align: center;
  }
}
.header__navigation nav > ul > li > a {
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  line-height: 20px;
  text-transform: uppercase;
  color: var(--dark-color);
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.header__navigation nav > ul > li > a:hover {
  color: var(--accent-color);
}
@media (max-width: 992px) {
  .header__navigation nav > ul > li > a:hover {
    color: var(--dark-color);
  }
}
.header__navigation nav > ul > li > a.active {
  color: var(--accent-color);
}
@media (max-width: 992px) {
  .header__navigation nav > ul > li > a {
    font-size: 25px;
  }
}
@media (max-width: 576px) {
  .header__navigation nav > ul > li > a {
    font-size: 18px;
  }
}
@media (max-height: 400px) {
  .header__navigation nav > ul > li > a {
    font-size: 16px;
  }
}
@media (max-width: 992px) {
  .header__navigation nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100vh;
    z-index: 100;
    overflow-y: auto;
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
    background: #EFF6FF;
    background: -o-radial-gradient(circle, rgb(239, 246, 255) 0%, rgb(255, 255, 255) 35%, rgb(239, 246, 255) 70%);
    background: radial-gradient(circle, rgb(239, 246, 255) 0%, rgb(255, 255, 255) 35%, rgb(239, 246, 255) 70%);
  }
}
@media (max-width: 768px) {
  .header__navigation nav .header__login {
    position: absolute;
    bottom: 10%;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    margin-left: 0;
  }
}
@media (max-height: 400px) {
  .header__navigation nav .header__login {
    bottom: 5%;
    left: 90%;
    margin-left: 0;
  }
}
.header__navigation .menu--active {
  -webkit-transform: translateX(0%);
  -ms-transform: translateX(0%);
  transform: translateX(0%);
}
.header__navigation .menu--active + .search-icon {
  display: none;
}
@media (max-width: 768px) {
  .header__navigation .header__login {
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
  }
}
.header__login {
  margin-left: 35px;
  padding-left: 35px;
  padding-right: 35px;
}
@media (max-width: 1200px) {
  .header__login {
    margin-left: 20px;
  }
}
@media (max-width: 768px) {
  .header__login {
    padding: 6px 20px;
    font-size: 12px;
    line-height: 20px;
  }
}
.header .burger {
  --burger-width: 30px;
  --burger-height: 20px;
  --burger-line-height: 2px;
  position: relative;
  border: none;
  padding: 0;
  width: var(--burger-width);
  height: var(--burger-height);
  color: #000;
  background-color: transparent;
  cursor: pointer;
  display: none;
}
.header .burger::before, .header .burger::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: var(--burger-line-height);
  background-color: currentColor;
  -webkit-transition: top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  -o-transition: transform 0.3s ease-in-out, top 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
.header .burger::before {
  top: 0;
}
.header .burger::after {
  top: calc(100% - var(--burger-line-height));
}
.header .burger__line {
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: var(--burger-line-height);
  background-color: currentColor;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  -o-transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
.header .burger--active::before {
  top: 50%;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  -o-transition: transform 0.3s ease-in-out, top 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
.header .burger--active::after {
  top: 50%;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transition: top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  -o-transition: transform 0.3s ease-in-out, top 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
.header .burger--active .burger__line {
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  -o-transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
@media (max-width: 992px) {
  .header .burger {
    display: block;
    z-index: 101;
  }
}
.header.scroll {
  background-color: rgba(255, 255, 255, 0.9);
  padding: 15px 0;
  -webkit-box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.2);
}
.header .header__profile-info {
  display: none;
}

.search-icon {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: var(--icon-height);
  height: 36px;
  max-width: 710px;
  -webkit-transition: all var(--transition-speed) linear, border-color 0s linear var(--transition-speed);
  -o-transition: all var(--transition-speed) linear, border-color 0s linear var(--transition-speed);
  transition: all var(--transition-speed) linear, border-color 0s linear var(--transition-speed);
  position: absolute;
  top: 50%;
  right: 145px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 50;
  background-color: transparent !important;
  border-radius: 5px;
}
@media (max-width: 1200px) {
  .search-icon {
    right: 135px;
    max-width: 635px;
  }
}
@media (max-width: 992px) {
  .search-icon {
    right: 200px;
    max-width: 300px;
  }
}
@media (max-width: 768px) {
  .search-icon {
    right: 50px;
    z-index: 102;
  }
}
@media (max-width: 576px) {
  .search-icon {
    max-width: 250px;
  }
}
@media (max-width: 400px) {
  .search-icon {
    max-width: 190px;
  }
}
.search-icon__wrapper {
  width: var(--icon-height);
  height: var(--icon-height);
  position: absolute;
  border-radius: 100px;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto 0;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transition: all 0 linear;
  -o-transition: all 0 linear;
  transition: all 0 linear;
}
.search-icon__wrapper:hover {
  cursor: pointer;
}
.search-icon__input {
  background: var(--whiteColor);
  outline: none;
  display: block;
  border: none;
  height: 36px;
  width: calc(100% - (var(--icon-height) / 2 + 1rem));
  margin-right: 6rem;
  -webkit-transition: all var(--transition-speed) linear;
  -o-transition: all var(--transition-speed) linear;
  transition: all var(--transition-speed) linear;
  color: var(--dark-color);
  -webkit-transform: translateY(-3px);
  -ms-transform: translateY(-3px);
  transform: translateY(-3px);
  padding-left: 20px;
  padding-right: 20px;
}
.search-icon__input::-webkit-input-placeholder {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  font-size: 13px;
  line-height: 20px;
  color: #808D94;
  text-align: left;
}
.search-icon__input::-moz-placeholder {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  font-size: 13px;
  line-height: 20px;
  color: #808D94;
  text-align: left;
}
.search-icon__input:-ms-input-placeholder {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  font-size: 13px;
  line-height: 20px;
  color: #808D94;
  text-align: left;
}
.search-icon__input::-ms-input-placeholder {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  font-size: 13px;
  line-height: 20px;
  color: #808D94;
  text-align: left;
}
.search-icon__input::placeholder {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  font-size: 13px;
  line-height: 20px;
  color: #808D94;
  text-align: left;
}
.search-icon input[type=submit] {
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
}
.search-icon__glass {
  width: var(--glass-size);
  height: var(--glass-size);
  border: solid var(--line-thickness);
  border-color: var(--icon-color);
  border-radius: 100px;
  margin: 0 auto;
  position: relative;
  -webkit-transition: all var(--transition-speed) var(--timing-function) var(--transition-speed), border-color 0s linear var(--transition-speed);
  -o-transition: all var(--transition-speed) var(--timing-function) var(--transition-speed), border-color 0s linear var(--transition-speed);
  transition: all var(--transition-speed) var(--timing-function) var(--transition-speed), border-color 0s linear var(--transition-speed);
}
@media (max-width: 480px) {
  .search-icon__glass {
    width: 50%;
    height: 50%;
    position: absolute;
    top: 5px;
    left: 8px;
  }
}
.search-icon__handle {
  height: calc(100% - var(--glass-size));
  width: var(--line-thickness);
  margin: 0 auto;
  background: var(--icon-color);
  position: absolute;
  border-radius: 0 0 100px 100px;
  left: 0;
  right: 0;
  bottom: 0;
  -webkit-transition: all var(--transition-speed) var(--timing-function);
  -o-transition: all var(--transition-speed) var(--timing-function);
  transition: all var(--transition-speed) var(--timing-function);
  -webkit-transition-delay: var(--transition-speed);
  -o-transition-delay: var(--transition-speed);
  transition-delay: var(--transition-speed);
}
.search-icon__handle::after {
  content: "";
  display: block;
  position: absolute;
  width: 80%;
  height: 100%;
  border-radius: inherit;
  background: var(--icon-color);
  -webkit-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: all var(--transition-speed) var(--timing-function);
  -o-transition: all var(--transition-speed) var(--timing-function);
  transition: all var(--transition-speed) var(--timing-function);
  -webkit-transition-delay: 0s;
  -o-transition-delay: 0s;
  transition-delay: 0s;
}
.search-icon.open {
  background-color: var(--light-color) !important;
  -webkit-box-shadow: 0px 10px 30px rgba(205, 227, 255, 0.5);
  box-shadow: 0px 10px 30px rgba(205, 227, 255, 0.5);
  width: calc(100vw - 1em);
  border-color: var(--icon-color);
  -webkit-transition-delay: var(--transition-speed);
  -o-transition-delay: var(--transition-speed);
  transition-delay: var(--transition-speed);
  border: 1px solid #CDE3FF;
  background-color: var(--light-color);
}
.search-icon.open .search-icon__input {
  -webkit-transition-delay: var(--transition-speed);
  -o-transition-delay: var(--transition-speed);
  transition-delay: var(--transition-speed);
}
.search-icon.open .search-icon__glass {
  width: 100%;
  height: 100%;
  -webkit-transition: all var(--transition-speed) var(--timing-function) 0s, border-color 0s linear var(--transition-speed);
  -o-transition: all var(--transition-speed) var(--timing-function) 0s, border-color 0s linear var(--transition-speed);
  transition: all var(--transition-speed) var(--timing-function) 0s, border-color 0s linear var(--transition-speed);
  border-color: rgba(0, 0, 0, 0);
}
.search-icon.open .search-icon__handle {
  bottom: calc(50% - (100% - var(--glass-size)) / 2);
  border-radius: 100px;
  -webkit-transition-delay: 0s;
  -o-transition-delay: 0s;
  transition-delay: 0s;
}
.search-icon.open .search-icon__handle::after {
  -webkit-transition-delay: var(--transition-speed);
  -o-transition-delay: var(--transition-speed);
  transition-delay: var(--transition-speed);
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

.hero {
  padding-top: 154px;
  padding-bottom: 288px;
  background-position: right top;
  background-repeat: no-repeat;
  background-size: contain;
}
@media (max-width: 1600px) {
  .hero {
    padding-bottom: 200px;
  }
}
@media (max-width: 1400px) {
  .hero {
    padding-bottom: 170px;
  }
}
@media (max-width: 1200px) {
  .hero {
    padding-bottom: 150px;
  }
}
@media (max-width: 992px) {
  .hero {
    padding-bottom: 60px;
  }
}
@media (max-width: 768px) {
  .hero {
    padding-top: 120px;
  }
}
@media (max-width: 480px) {
  .hero {
    padding-top: 100px;
    padding-bottom: 40px;
  }
}
.hero__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: 55px;
  -moz-column-gap: 55px;
  column-gap: 55px;
}
@media (max-width: 992px) {
  .hero__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 50px;
  }
}
.hero__descr {
  max-width: 545px;
}
@media (max-width: 1200px) {
  .hero__descr {
    max-width: 40%;
  }
}
@media (max-width: 992px) {
  .hero__descr {
    max-width: 80%;
    -ms-flex-item-align: start;
    align-self: flex-start;
  }
}
@media (max-width: 768px) {
  .hero__descr {
    max-width: 100%;
    text-align: center;
  }
}
.hero__title {
  font-style: normal;
  font-weight: 900;
  font-size: 60px;
  line-height: 60px;
  color: var(--accent-color);
}
@media (max-width: 1200px) {
  .hero__title {
    font-size: 40px;
    line-height: 40px;
  }
}
@media (max-width: 576px) {
  .hero__title {
    font-size: 32px;
    line-height: 37px;
  }
}
.hero__subtitle {
  margin-top: 30px;
  font-style: normal;
  font-weight: 400;
  font-size: 24px;
  line-height: 35px;
  color: var(--dark-color);
}
@media (max-width: 1200px) {
  .hero__subtitle {
    font-size: 20px;
    line-height: 30px;
  }
}
@media (max-width: 576px) {
  .hero__subtitle {
    font-size: 18px;
    line-height: 24px;
    margin-top: 20px;
  }
}
.hero__btn {
  margin-top: 40px;
  padding-right: 113px;
  padding-left: 113px;
  display: inline-block;
}
@media (max-width: 576px) {
  .hero__btn {
    margin-top: 25px;
    padding: 6px 60px;
    font-size: 14px;
  }
}
.hero__image {
  /* &:hover {
    svg {
      path.fig-1 {
        animation: opacity 0.7s ease-in-out 0s 8;
      }
      path.fig-2 {
        transform-origin: 33.8% 20.6%;
        animation: rotate 10s ease-in-out 0.4s;
      }
      path.fig-3 {
        transform-origin: 90% 50%;
        animation: opacity 1.2s ease-in-out 1s 7;
      }
      path.fig-4 {
        transform-origin: 90% 32%;
        animation: opacity 1.2s ease-in-out 2.5s  7;
      }
      path.fig-5 {
        transform-origin: 75% 45%;
        animation: opacity 1.2s ease-in-out 4s  7;
      }
      path.fig-6 {
        transform-origin: 67% 11%;
        animation: rotate 10s ease-in-out 1s alternate;
      }
      path.red {
        outline: 1px solid red;
      }
      path.notebook {
        animation: backgroundColor 3s ease-in-out 0s 3;
      }
      path.notebook-circle {
        animation: backgroundColorCircle 3s ease-in-out 0s 3 forwards;
      }
    }
  } */
}
.hero__image svg {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.hero__image svg path.fig-1 {
  -webkit-animation: opacity 0.7s ease-in-out 0s 8;
  animation: opacity 0.7s ease-in-out 0s 8;
}
.hero__image svg path.fig-2 {
  -webkit-transform-origin: 33.8% 20.6%;
  -ms-transform-origin: 33.8% 20.6%;
  transform-origin: 33.8% 20.6%;
  -webkit-animation: rotate 10s ease-in-out 0.4s;
  animation: rotate 10s ease-in-out 0.4s;
}
.hero__image svg path.fig-3 {
  -webkit-transform-origin: 90% 50%;
  -ms-transform-origin: 90% 50%;
  transform-origin: 90% 50%;
  -webkit-animation: opacity 1.2s ease-in-out 1s 7;
  animation: opacity 1.2s ease-in-out 1s 7;
}
.hero__image svg path.fig-4 {
  -webkit-transform-origin: 90% 32%;
  -ms-transform-origin: 90% 32%;
  transform-origin: 90% 32%;
  -webkit-animation: opacity 1.2s ease-in-out 2.5s 7;
  animation: opacity 1.2s ease-in-out 2.5s 7;
}
.hero__image svg path.fig-5 {
  -webkit-transform-origin: 75% 45%;
  -ms-transform-origin: 75% 45%;
  transform-origin: 75% 45%;
  -webkit-animation: opacity 1.2s ease-in-out 4s 7;
  animation: opacity 1.2s ease-in-out 4s 7;
}
.hero__image svg path.fig-6 {
  -webkit-transform-origin: 67% 11%;
  -ms-transform-origin: 67% 11%;
  transform-origin: 67% 11%;
  -webkit-animation: rotate 10s ease-in-out 1s alternate;
  animation: rotate 10s ease-in-out 1s alternate;
}
.hero__image svg path.red {
  outline: 1px solid red;
}
.hero__image svg path.notebook {
  -webkit-animation: backgroundColor 3s ease-in-out 0s 3;
  animation: backgroundColor 3s ease-in-out 0s 3;
}
.hero__image svg path.clock {
  -webkit-animation: backgroundColorClock 3s ease-in-out 0s 3;
  animation: backgroundColorClock 3s ease-in-out 0s 3;
}
.hero__image svg path.notebook-circle {
  -webkit-animation: backgroundColorCircle 3s ease-in-out 0s 3 forwards;
  animation: backgroundColorCircle 3s ease-in-out 0s 3 forwards;
}
.hero__image svg path.fig-7 {
  -webkit-transform-origin: 37.2% 14%;
  -ms-transform-origin: 37.2% 14%;
  transform-origin: 37.2% 14%;
  -webkit-animation: rotate 10s ease-in-out 0s alternate;
  animation: rotate 10s ease-in-out 0s alternate;
}
.hero__image svg path.fig-8 {
  -webkit-transform-origin: 37.2% 14%;
  -ms-transform-origin: 37.2% 14%;
  transform-origin: 37.2% 14%;
  -webkit-animation: opacity 1.2s ease-in-out 4s 7;
  animation: opacity 1.2s ease-in-out 4s 7;
}
.hero__image svg path.fig-9 {
  -webkit-transform-origin: 90% 32%;
  -ms-transform-origin: 90% 32%;
  transform-origin: 90% 32%;
  -webkit-animation: opacity 1.2s ease-in-out 2.5s 7;
  animation: opacity 1.2s ease-in-out 2.5s 7;
}
.hero__image svg path.fig-10 {
  -webkit-transform-origin: 8% 40%;
  -ms-transform-origin: 8% 40%;
  transform-origin: 8% 40%;
  -webkit-animation: scale 2s ease-in-out 3.5s 7;
  animation: scale 2s ease-in-out 3.5s 7;
}
.hero__image svg path.fig-11 {
  -webkit-transform-origin: 90% 68%;
  -ms-transform-origin: 90% 68%;
  transform-origin: 90% 68%;
  -webkit-animation: opacity 2s ease-in-out 1.5s 7;
  animation: opacity 2s ease-in-out 1.5s 7;
}
.hero__image svg path.fig-12 {
  -webkit-transform-origin: 82.2% 33.7%;
  -ms-transform-origin: 82.2% 33.7%;
  transform-origin: 82.2% 33.7%;
  -webkit-animation: rotate 10s linear 1s;
  animation: rotate 10s linear 1s;
}
.hero__image svg path.fig-13 {
  -webkit-transform-origin: 59% 11%;
  -ms-transform-origin: 59% 11%;
  transform-origin: 59% 11%;
  -webkit-animation: scale 2s ease 1s 7 forwards;
  animation: scale 2s ease 1s 7 forwards;
}
.hero__image svg path.fig-14 {
  -webkit-animation: backgroundColorBlueToYellow 2s ease 0s 8 forwards;
  animation: backgroundColorBlueToYellow 2s ease 0s 8 forwards;
}
.hero__image svg path.fig-15 {
  -webkit-animation: backgroundColorBlueToYellow 2s ease 1s 8 forwards;
  animation: backgroundColorBlueToYellow 2s ease 1s 8 forwards;
}
.hero__image svg path.fig-16 {
  -webkit-animation: backgroundColorYellowToBlue 2s ease 0.5s 7;
  animation: backgroundColorYellowToBlue 2s ease 0.5s 7;
}
.hero__image svg path.translateX {
  -webkit-animation: translateX 2s ease 0.7s 4;
  animation: translateX 2s ease 0.7s 4;
}
@media (max-width: 992px) {
  .hero__image {
    text-align: center;
  }
  .hero__image svg {
    width: 80%;
  }
}
.hero__courses {
  padding-bottom: 150px;
}
@media (max-width: 992px) {
  .hero__courses {
    padding-bottom: 50px;
  }
}
@media (max-width: 576px) {
  .hero__courses {
    padding-bottom: 20px;
  }
}

.courses {
  padding-top: 78px;
  padding-bottom: 85px;
}
@media (max-width: 1200px) {
  .courses {
    padding-top: 40px;
  }
}
@media (max-width: 576px) {
  .courses {
    padding-bottom: 60px;
  }
}
.courses__title {
  text-align: center;
}
.courses__cards {
  padding: 0;
  margin: 0;
  list-style: none;
  margin-top: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-column-gap: 30px;
  -moz-column-gap: 30px;
  column-gap: 30px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (max-width: 1400px) {
  .courses__cards {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
@media (max-width: 992px) {
  .courses__cards {
    row-gap: 30px;
  }
}
@media (max-width: 768px) {
  .courses__cards {
    margin-top: 35px;
  }
}
.courses__item {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 25%;
  flex: 0 1 25%;
  max-width: 315px;
  background: var(--light-color);
  border: 1px solid #CDE3FF;
  border-radius: 10px;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -webkit-transform: scaleY(80%);
  -ms-transform: scaleY(80%);
  transform: scaleY(80%);
  -webkit-transform-origin: 50% 0%;
  -ms-transform-origin: 50% 0%;
  transform-origin: 50% 0%;
}
.courses__item svg path {
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
@media (max-width: 1400px) {
  .courses__item {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 33.3333333333%;
    flex: 0 1 33.3333333333%;
  }
}
@media (max-width: 992px) {
  .courses__item {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 50%;
    flex: 0 1 50%;
    -webkit-transform: scaleY(100%);
    -ms-transform: scaleY(100%);
    transform: scaleY(100%);
    -webkit-box-shadow: 0px 10px 30px rgba(205, 227, 255, 0.5);
    box-shadow: 0px 10px 30px rgba(205, 227, 255, 0.5);
  }
}
@media (max-width: 576px) {
  .courses__item {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 100%;
    flex: 0 1 100%;
    max-width: 315px;
  }
}
.courses__item:hover {
  -webkit-box-shadow: 0px 10px 30px rgba(205, 227, 255, 0.5);
  box-shadow: 0px 10px 30px rgba(205, 227, 255, 0.5);
  -webkit-transform: scale(100%);
  -ms-transform: scale(100%);
  transform: scale(100%);
}
@media (max-width: 992px) {
  .courses__item:hover {
    -webkit-box-shadow: none;
    box-shadow: none;
  }
}
.courses__item:hover .courses__btn {
  -webkit-transform: scale(1) translateY(20px);
  -ms-transform: scale(1) translateY(20px);
  transform: scale(1) translateY(20px);
}
@media (max-width: 992px) {
  .courses__item:hover .courses__btn {
    -webkit-transform: translateY(0px);
    -ms-transform: translateY(0px);
    transform: translateY(0px);
  }
}
.courses__item:hover .courses__card {
  -webkit-transform: scale(100%) translateY(-20px);
  -ms-transform: scale(100%) translateY(-20px);
  transform: scale(100%) translateY(-20px);
}
@media (max-width: 992px) {
  .courses__item:hover .courses__card {
    -webkit-transform: translateY(0px);
    -ms-transform: translateY(0px);
    transform: translateY(0px);
  }
}
.courses__item.item-1:hover .courses__card .courses__img svg, .courses__item.item-1:hover .courses__card .courses__img svg path {
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.courses__item.item-1:hover .courses__card .courses__img svg path.rotate-y, .courses__item.item-1:hover .courses__card .courses__img svg path path.rotate-y {
  -webkit-transform: scale(1.2) translate(-3px, -6px);
  -ms-transform: scale(1.2) translate(-3px, -6px);
  transform: scale(1.2) translate(-3px, -6px);
}
.courses__item.item-1:hover .courses__card .courses__img svg path.rotate-x1, .courses__item.item-1:hover .courses__card .courses__img svg path path.rotate-x1 {
  -webkit-transform: translateX(3px);
  -ms-transform: translateX(3px);
  transform: translateX(3px);
}
.courses__item.item-1:hover .courses__card .courses__img svg path.rotate-x2, .courses__item.item-1:hover .courses__card .courses__img svg path path.rotate-x2 {
  -webkit-transform: translateX(-3px);
  -ms-transform: translateX(-3px);
  transform: translateX(-3px);
}
.courses__item.item-2:hover .courses__card .courses__img svg, .courses__item.item-2:hover .courses__card .courses__img svg path {
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.courses__item.item-2:hover .courses__card .courses__img svg path.translate-left, .courses__item.item-2:hover .courses__card .courses__img svg path path.translate-left {
  -webkit-transform: translateX(-6px);
  -ms-transform: translateX(-6px);
  transform: translateX(-6px);
}
.courses__item.item-2:hover .courses__card .courses__img svg path.translate-right, .courses__item.item-2:hover .courses__card .courses__img svg path path.translate-right {
  -webkit-transform: translateX(6px);
  -ms-transform: translateX(6px);
  transform: translateX(6px);
}
.courses__item.item-2:hover .courses__card .courses__img svg path.translate-top, .courses__item.item-2:hover .courses__card .courses__img svg path path.translate-top {
  -webkit-transform: translateY(-6px);
  -ms-transform: translateY(-6px);
  transform: translateY(-6px);
}
.courses__item.item-2:hover .courses__card .courses__img svg path.translate-bottom, .courses__item.item-2:hover .courses__card .courses__img svg path path.translate-bottom {
  -webkit-transform: translateY(6px);
  -ms-transform: translateY(6px);
  transform: translateY(6px);
}
.courses__item.item-3:hover .courses__card .courses__img svg, .courses__item.item-3:hover .courses__card .courses__img svg path {
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.courses__item.item-3:hover .courses__card .courses__img svg path.translate-bottom, .courses__item.item-3:hover .courses__card .courses__img svg path path.translate-bottom {
  -webkit-transform: translateY(6px);
  -ms-transform: translateY(6px);
  transform: translateY(6px);
}
.courses__item.item-3:hover .courses__card .courses__img svg path.translate-right, .courses__item.item-3:hover .courses__card .courses__img svg path path.translate-right {
  -webkit-transform: translateX(9px);
  -ms-transform: translateX(9px);
  transform: translateX(9px);
}
.courses__item.item-3:hover .courses__card .courses__img svg path.translate-top, .courses__item.item-3:hover .courses__card .courses__img svg path path.translate-top {
  -webkit-transform: translateY(-6px);
  -ms-transform: translateY(-6px);
  transform: translateY(-6px);
}
.courses__item.item-4:hover .courses__card .courses__img svg, .courses__item.item-4:hover .courses__card .courses__img svg path {
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.courses__item.item-4:hover .courses__card .courses__img svg path.opacity, .courses__item.item-4:hover .courses__card .courses__img svg path path.opacity {
  opacity: 0.4;
}
.courses__item.item-5:hover .courses__card .courses__img svg, .courses__item.item-5:hover .courses__card .courses__img svg path {
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.courses__item.item-5:hover .courses__card .courses__img svg path.backgroundYellow, .courses__item.item-5:hover .courses__card .courses__img svg path path.backgroundYellow {
  fill: #FFDD40;
}
.courses__item.item-6:hover .courses__card .courses__img svg, .courses__item.item-6:hover .courses__card .courses__img svg path {
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.courses__item.item-6:hover .courses__card .courses__img svg path.backgroundYellow, .courses__item.item-6:hover .courses__card .courses__img svg path path.backgroundYellow {
  fill: #FFDD40;
}
.courses__item.item-6:hover .courses__card .courses__img svg path.backgroundBlue, .courses__item.item-6:hover .courses__card .courses__img svg path path.backgroundBlue {
  fill: #49B1F7;
}
.courses__item.item-7:hover .courses__card .courses__img svg, .courses__item.item-7:hover .courses__card .courses__img svg path {
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.courses__item.item-7:hover .courses__card .courses__img svg path.rotate-y, .courses__item.item-7:hover .courses__card .courses__img svg path path.rotate-y {
  -webkit-transform: scale(1.2) translate(-5px, -6px);
  -ms-transform: scale(1.2) translate(-5px, -6px);
  transform: scale(1.2) translate(-5px, -6px);
}
.courses__item.item-7:hover .courses__card .courses__img svg path.rotate-x1, .courses__item.item-7:hover .courses__card .courses__img svg path path.rotate-x1 {
  -webkit-transform: translateX(3px);
  -ms-transform: translateX(3px);
  transform: translateX(3px);
}
.courses__item.item-7:hover .courses__card .courses__img svg path.rotate-x2, .courses__item.item-7:hover .courses__card .courses__img svg path path.rotate-x2 {
  -webkit-transform: translateX(-3px);
  -ms-transform: translateX(-3px);
  transform: translateX(-3px);
}
.courses__item.item-8:hover .courses__card .courses__img svg, .courses__item.item-8:hover .courses__card .courses__img svg path {
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.courses__item.item-8:hover .courses__card .courses__img svg path.scale-x, .courses__item.item-8:hover .courses__card .courses__img svg path path.scale-x {
  -webkit-transform: scaleX(1.2);
  -ms-transform: scaleX(1.2);
  transform: scaleX(1.2);
}
.courses__item.item-8:hover .courses__card .courses__img svg path.scale-x1, .courses__item.item-8:hover .courses__card .courses__img svg path path.scale-x1 {
  -webkit-transform: scaleX(0.7) translateX(9px);
  -ms-transform: scaleX(0.7) translateX(9px);
  transform: scaleX(0.7) translateX(9px);
}
.courses__item.item-9:hover .courses__card .courses__img svg, .courses__item.item-9:hover .courses__card .courses__img svg path {
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.courses__item.item-9:hover .courses__card .courses__img svg path.backgroundLight, .courses__item.item-9:hover .courses__card .courses__img svg path path.backgroundLight {
  fill: #CDE3FF;
}
.courses__item.item-9:hover .courses__card .courses__img svg path.backgroundDark, .courses__item.item-9:hover .courses__card .courses__img svg path path.backgroundDark {
  fill: #EFF6FF;
}
.courses__item.item-10:hover .courses__card .courses__img svg, .courses__item.item-10:hover .courses__card .courses__img svg path {
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.courses__item.item-10:hover .courses__card .courses__img svg path.rotate-y, .courses__item.item-10:hover .courses__card .courses__img svg path path.rotate-y {
  -webkit-transform: scale(1.1) translate(-5px, -4px);
  -ms-transform: scale(1.1) translate(-5px, -4px);
  transform: scale(1.1) translate(-5px, -4px);
}
.courses__item.item-10:hover .courses__card .courses__img svg path.rotate-x1, .courses__item.item-10:hover .courses__card .courses__img svg path path.rotate-x1 {
  -webkit-transform: translateX(2px);
  -ms-transform: translateX(2px);
  transform: translateX(2px);
}
.courses__item.item-10:hover .courses__card .courses__img svg path.rotate-x2, .courses__item.item-10:hover .courses__card .courses__img svg path path.rotate-x2 {
  -webkit-transform: translateX(-2px);
  -ms-transform: translateX(-2px);
  transform: translateX(-2px);
}
.courses__item.item-10:hover .courses__card .courses__img svg path.backgroundHead, .courses__item.item-10:hover .courses__card .courses__img svg path path.backgroundHead {
  fill: #726f62;
}
.courses__item.item-11:hover .courses__card .courses__img svg, .courses__item.item-11:hover .courses__card .courses__img svg path {
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.courses__item.item-11:hover .courses__card .courses__img svg path.translateBottom, .courses__item.item-11:hover .courses__card .courses__img svg path path.translateBottom {
  -webkit-transform: translateY(22px);
  -ms-transform: translateY(22px);
  transform: translateY(22px);
}
.courses__item.item-11:hover .courses__card .courses__img svg path.translateTop, .courses__item.item-11:hover .courses__card .courses__img svg path path.translateTop {
  -webkit-transform: translateY(-22px);
  -ms-transform: translateY(-22px);
  transform: translateY(-22px);
}
.courses__item.item-11:hover .courses__card .courses__img svg path.translateLeft, .courses__item.item-11:hover .courses__card .courses__img svg path path.translateLeft {
  -webkit-transform: translateX(-8px);
  -ms-transform: translateX(-8px);
  transform: translateX(-8px);
}
.courses__item.item-12:hover .courses__card .courses__img svg, .courses__item.item-12:hover .courses__card .courses__img svg path {
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.courses__item.item-12:hover .courses__card .courses__img svg path.backgroundBlue, .courses__item.item-12:hover .courses__card .courses__img svg path path.backgroundBlue {
  fill: #CDE3FF;
}
.courses__item.item-12:hover .courses__card .courses__img svg path.backgroundGreen, .courses__item.item-12:hover .courses__card .courses__img svg path path.backgroundGreen {
  fill: #91C271;
}
.courses__item.item-13:hover .courses__card .courses__img svg, .courses__item.item-13:hover .courses__card .courses__img svg path {
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.courses__item.item-13:hover .courses__card .courses__img svg path.backgroundYellow, .courses__item.item-13:hover .courses__card .courses__img svg path path.backgroundYellow {
  fill: #FFC107;
}
.courses__item.item-13:hover .courses__card .courses__img svg path.backgroundOrange, .courses__item.item-13:hover .courses__card .courses__img svg path path.backgroundOrange {
  fill: #FF8760;
}
.courses__item.item-14:hover .courses__card .courses__img svg, .courses__item.item-14:hover .courses__card .courses__img svg path {
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.courses__item.item-14:hover .courses__card .courses__img svg path.backgroundYellow, .courses__item.item-14:hover .courses__card .courses__img svg path path.backgroundYellow {
  fill: #FFC107;
}
.courses__item.item-14:hover .courses__card .courses__img svg path.backgroundBlue, .courses__item.item-14:hover .courses__card .courses__img svg path path.backgroundBlue {
  fill: #b6d0e1;
}
.courses__item.item-15:hover .courses__card .courses__img svg, .courses__item.item-15:hover .courses__card .courses__img svg path {
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.courses__item.item-15:hover .courses__card .courses__img svg path.backgroundOrange, .courses__item.item-15:hover .courses__card .courses__img svg path path.backgroundOrange {
  fill: #FF8760;
}
.courses__item.item-16:hover .courses__card .courses__img svg, .courses__item.item-16:hover .courses__card .courses__img svg path {
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.courses__item.item-16:hover .courses__card .courses__img svg path.background, .courses__item.item-16:hover .courses__card .courses__img svg path path.background {
  fill: #cbefb5;
}
.courses__card {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 50px;
  cursor: pointer;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -webkit-transform: scaleY(120%) translateY(20px);
  -ms-transform: scaleY(120%) translateY(20px);
  transform: scaleY(120%) translateY(20px);
}
@media (max-width: 992px) {
  .courses__card {
    -webkit-transform: scaleY(100%) translateY(0px);
    -ms-transform: scaleY(100%) translateY(0px);
    transform: scaleY(100%) translateY(0px);
  }
}
@media (max-width: 576px) {
  .courses__card {
    padding: 40px 25px;
  }
}
@media (max-width: 480px) {
  .courses__card {
    padding: 30px 20px;
  }
}
.courses__img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 145px;
  height: 145px;
  background-color: #EFF6FF;
  border-radius: 50%;
  margin: 0 auto;
  -webkit-transition: all 0.6s ease 0s;
  -o-transition: all 0.6s ease 0s;
  transition: all 0.6s ease 0s;
}
.courses__img svg {
  width: 75px;
  height: 75px;
}
@media (max-width: 480px) {
  .courses__img {
    width: 100px;
    height: 100px;
  }
  .courses__img svg {
    width: 45px;
    height: 45px;
  }
}
.courses__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.courses__name {
  margin-top: 20px;
  font-style: normal;
  font-weight: 900;
  font-size: 30px;
  line-height: 40px;
  color: var(--dark-color);
}
@media (max-width: 480px) {
  .courses__name {
    font-size: 20px;
    line-height: 25px;
  }
}
.courses__descr {
  margin-top: 10px;
  margin-bottom: 20px;
  font-weight: 400;
  line-height: 25px;
  color: var(--dark-color);
}
@media (max-width: 480px) {
  .courses__descr {
    font-size: 14px;
    line-height: 16px;
  }
}
.courses__btn {
  margin-top: auto;
  font-weight: 700;
  font-size: 14px;
  line-height: 20px;
  text-transform: uppercase;
  color: var(--light-color);
  padding: 10px 65px;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  text-align: center;
}
@media (max-width: 992px) {
  .courses__btn {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
}
@media (max-width: 480px) {
  .courses__btn {
    font-size: 12px;
    line-height: 16px;
    width: 100%;
    padding-top: 8px;
    padding-bottom: 8px;
  }
}
.courses__btn-last {
  padding: 10px 65px;
  display: block;
  font-weight: 700;
  font-size: 14px;
  line-height: 20px;
  margin: -25px auto 0 auto;
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
}
@media (max-width: 992px) {
  .courses__btn-last {
    padding: 6px 50px;
    margin-top: 50px;
  }
}
@media (max-width: 480px) {
  .courses__btn-last {
    font-size: 12px;
    line-height: 20px;
    padding-top: 6px;
    padding-bottom: 6px;
    margin-top: 30px;
  }
}
.courses__courses .courses__name {
  font-style: normal;
  font-weight: 900;
  font-size: 20px;
  line-height: 25px;
  text-align: center;
}
.courses__courses .courses__btn {
  padding-right: 62px;
  padding-left: 62px;
}
@media (max-width: 992px) {
  .courses__courses .courses__btn {
    padding-right: 0;
    padding-left: 0;
    width: 100%;
    text-align: center;
  }
}
@media (max-width: 1200px) {
  .courses__courses {
    padding-bottom: 0;
  }
}
@media (max-width: 992px) {
  .courses__courses .courses__title:last-of-type {
    margin-top: 60px;
  }
}

.about__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: 109px;
  -moz-column-gap: 109px;
  column-gap: 109px;
}
@media (max-width: 1200px) {
  .about__wrap {
    -webkit-column-gap: 50px;
    -moz-column-gap: 50px;
    column-gap: 50px;
  }
}
@media (max-width: 992px) {
  .about__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 50px;
  }
}
@media (max-width: 576px) {
  .about__wrap {
    row-gap: 30px;
  }
}
.about__img {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 581px;
  flex: 0 1 581px;
}
.about__img svg {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.about__img svg.animate path.fig-1 {
  -webkit-animation: opacity 1.2s ease-in-out 0s 7;
  animation: opacity 1.2s ease-in-out 0s 7;
}
.about__img svg.animate path.fig-2 {
  -webkit-transform-origin: 75.6% 13.9%;
  -ms-transform-origin: 75.6% 13.9%;
  transform-origin: 75.6% 13.9%;
  -webkit-animation: rotate 10s ease-in-out 0.4s;
  animation: rotate 10s ease-in-out 0.4s;
}
.about__img svg.animate path.fig-3 {
  -webkit-transform-origin: 13% 11%;
  -ms-transform-origin: 13% 11%;
  transform-origin: 13% 11%;
  -webkit-animation: scale 2s ease-in-out 1s 3;
  animation: scale 2s ease-in-out 1s 3;
}
.about__img svg.animate path.fig-4 {
  -webkit-transform-origin: 10% 40%;
  -ms-transform-origin: 10% 40%;
  transform-origin: 10% 40%;
  -webkit-animation: opacity 1.1s ease-in-out 2.5s 4;
  animation: opacity 1.1s ease-in-out 2.5s 4;
}
.about__img svg.animate path.fig-5 {
  -webkit-transform-origin: 10% 40%;
  -ms-transform-origin: 10% 40%;
  transform-origin: 10% 40%;
  -webkit-animation: opacity 1.1s ease-in-out 2.5s 4;
  animation: opacity 1.1s ease-in-out 2.5s 4;
}
.about__img svg.animate path.red {
  outline: 1px solid red;
}
.about__img svg.animate path.notebook {
  -webkit-animation: backgroundColor 10s ease-in-out 0s;
  animation: backgroundColor 10s ease-in-out 0s;
}
.about__img svg.animate path.notebook-circle {
  -webkit-animation: backgroundColorCircle 10s ease-in-out 0s;
  animation: backgroundColorCircle 10s ease-in-out 0s;
}
@media (max-width: 1200px) {
  .about__img {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 50%;
    flex: 0 1 50%;
  }
}
@media (max-width: 992px) {
  .about__img {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 100%;
    flex: 0 1 100%;
    text-align: center;
  }
  .about__img svg {
    width: 80%;
  }
}
.about__descr {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 calc(100% - 681px);
  flex: 0 1 calc(100% - 681px);
}
@media (max-width: 1200px) {
  .about__descr {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 50%;
    flex: 0 1 50%;
  }
}
@media (max-width: 992px) {
  .about__descr {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
    -webkit-box-flex: 0;
    -ms-flex: 0 1 100%;
    flex: 0 1 100%;
  }
}
@media (max-width: 576px) {
  .about__title {
    text-align: center;
  }
}
.about__text p {
  padding: 0;
  margin: 0;
  margin-top: 20px;
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  line-height: 25px;
  color: var(--dark-color);
}
.about__btn {
  display: block;
  margin-top: 30px;
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  line-height: 20px;
  padding: 10px 52px;
}
@media (max-width: 576px) {
  .about__btn {
    text-align: center;
    margin: 30px auto;
  }
}

.testimonials {
  background-position: left top;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 160px;
  padding-bottom: 120px;
}
@media (max-width: 768px) {
  .testimonials {
    padding-top: 120px;
  }
}
@media (max-width: 576px) {
  .testimonials {
    padding-bottom: 60px;
  }
}
.testimonials__title {
  text-align: center;
  white-space: nowrap;
  max-width: 100%;
}
@media (max-width: 480px) {
  .testimonials__title {
    font-size: 22px;
    line-height: 35px;
  }
}
.testimonials__subtitle {
  text-align: center;
  font-style: normal;
  font-weight: 900;
  font-size: 24px;
  line-height: 35px;
  color: var(--accent-color);
}
@media (max-width: 576px) {
  .testimonials__subtitle {
    font-size: 18px;
  }
}
@media (max-width: 480px) {
  .testimonials__subtitle {
    font-size: 16px;
  }
}
.testimonials__slider {
  margin-top: 56px;
}
@media (max-width: 576px) {
  .testimonials__slider {
    margin-top: 30px;
  }
}
.testimonials__text {
  margin-top: 30px;
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  line-height: 25px;
  color: var(--dark-color);
}
.testimonials__info {
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: 20px;
  -moz-column-gap: 20px;
  column-gap: 20px;
}
.testimonials__avatar {
  width: 60px;
  height: 60px;
}
.testimonials__avatar img {
  width: 100%;
  height: 100%;
}
.testimonials__name {
  font-style: normal;
  font-weight: 900;
  font-size: 18px;
  line-height: 25px;
  color: var(--dark-color);
}
.testimonials__prof {
  font-style: normal;
  font-size: 16px;
  font-weight: 400;
  line-height: 25px;
  color: var(--dark-color);
}
.testimonials .swiper-wrapper {
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  height: 100%;
}
.testimonials .swiper-slide {
  padding: 50px;
  background-color: var(--light-color);
  border: 1px solid #CDE3FF;
  border-radius: 10px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  max-width: 100%;
}
@media (max-width: 1300px) {
  .testimonials .swiper-slide {
    padding: 25px;
  }
}

.selection {
  padding-top: 240px;
  padding-bottom: 250px;
}
@media (max-width: 992px) {
  .selection {
    padding-top: 150px;
    padding-bottom: 120px;
  }
}
@media (max-width: 576px) {
  .selection {
    padding-top: 120px;
  }
}
.selection__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media (max-width: 576px) {
  .selection__title {
    text-align: center;
  }
}
.selection__items {
  padding: 0;
  margin: 0;
  margin-top: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-column-gap: 30px;
  -moz-column-gap: 30px;
  column-gap: 30px;
  row-gap: 30px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .selection__items {
    margin-top: 35px;
  }
}
.selection__item {
  width: 315px;
  -ms-flex-preferred-size: 315px;
  flex-basis: 315px;
  background: var(--light-color);
  border: 1px solid #CDE3FF;
  border-radius: 10px;
  -webkit-box-shadow: 0px 10px 30px rgba(205, 227, 255, 0.5);
  box-shadow: 0px 10px 30px rgba(205, 227, 255, 0.5);
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
@media (max-width: 480px) {
  .selection__item {
    width: 100%;
  }
}
.selection__item:hover {
  -webkit-box-shadow: 0px 10px 30px rgba(171, 207, 254, 0.8);
  box-shadow: 0px 10px 30px rgba(171, 207, 254, 0.8);
}
.selection__item:first-child svg path {
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.selection__item:first-child:hover .selection__card .selection__img svg, .selection__item:first-child:hover .selection__card .selection__img svg path {
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.selection__item:first-child:hover .selection__card .selection__img svg path.scale-x1, .selection__item:first-child:hover .selection__card .selection__img svg path path.scale-x1 {
  -webkit-transform: translateX(2px);
  -ms-transform: translateX(2px);
  transform: translateX(2px);
}
.selection__item:first-child:hover .selection__card .selection__img svg path.rotate-x2, .selection__item:first-child:hover .selection__card .selection__img svg path path.rotate-x2 {
  -webkit-transform: translateX(-2px);
  -ms-transform: translateX(-2px);
  transform: translateX(-2px);
}
.selection__item:first-child:hover .selection__card .selection__img svg path.rotate-x3, .selection__item:first-child:hover .selection__card .selection__img svg path path.rotate-x3 {
  -webkit-transform: translateX(-2px);
  -ms-transform: translateX(-2px);
  transform: translateX(-2px);
}
.selection__item:first-child:hover .selection__card .selection__img svg path.backgroundWhite, .selection__item:first-child:hover .selection__card .selection__img svg path path.backgroundWhite {
  fill: var(--light-color);
}
.selection__item:last-child svg path {
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.selection__item:last-child:hover .selection__card .selection__img svg, .selection__item:last-child:hover .selection__card .selection__img svg path {
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.selection__item:last-child:hover .selection__card .selection__img svg path.backgroundYellow, .selection__item:last-child:hover .selection__card .selection__img svg path path.backgroundYellow {
  fill: #fbe376;
}
.selection__item:last-child:hover .selection__card .selection__img svg path.backgroundOrange, .selection__item:last-child:hover .selection__card .selection__img svg path path.backgroundOrange {
  fill: #ebb206;
}
.selection__item:last-child:hover .selection__card .selection__img svg path.backgroundWhite, .selection__item:last-child:hover .selection__card .selection__img svg path path.backgroundWhite {
  fill: var(--light-color);
}
.selection__card {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  cursor: pointer;
  padding: 50px 40px 45px 40px;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
@media (max-width: 576px) {
  .selection__card {
    padding: 40px 25px;
  }
}
@media (max-width: 480px) {
  .selection__card {
    padding: 30px 20px;
  }
}
.selection__img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 145px;
  height: 145px;
  background-color: #EFF6FF;
  border-radius: 50%;
  margin: 0 auto;
  -webkit-transition: all 0.6s ease 0s;
  -o-transition: all 0.6s ease 0s;
  transition: all 0.6s ease 0s;
}
.selection__img svg {
  width: 75px;
  height: 75px;
}
@media (max-width: 480px) {
  .selection__img {
    width: 100px;
    height: 100px;
  }
  .selection__img svg {
    width: 45px;
    height: 45px;
  }
}
.selection__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-flex: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.selection__name {
  margin-top: 30px;
  margin-bottom: 20px;
  font-style: normal;
  font-weight: 900;
  font-size: 24px;
  line-height: 30px;
  color: var(--dark-color);
  max-width: 100%;
}
.selection__btn {
  display: block;
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
  margin-top: auto;
  padding-right: 60px;
  padding-left: 60px;
  text-align: center;
  font-weight: 700;
  font-size: 14px;
  line-height: 20px;
}
@media (max-width: 480px) {
  .selection__btn {
    font-size: 12px;
    line-height: 16px;
    width: 100%;
    padding-top: 8px;
    padding-bottom: 8px;
  }
}
.selection__btn-last {
  display: block;
  margin: 60px auto 0 auto;
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
  padding-right: 55px;
  padding-left: 55px;
}

.lessons {
  padding-top: 240px;
  padding-bottom: 145px;
}
@media (max-width: 1200px) {
  .lessons {
    padding-top: 180px;
  }
}
@media (max-width: 992px) {
  .lessons {
    padding-top: 140px;
    padding-bottom: 100px;
  }
}
@media (max-width: 576px) {
  .lessons {
    padding-top: 120px;
    padding-bottom: 60px;
  }
}
.lessons__wrap ol {
  counter-reset: ol-numbers;
}
.lessons__wrap ol li {
  position: relative;
  padding: 20px 40px 20px 140px;
  background-color: var(--light-color);
  margin-bottom: 10px;
  border: 1px solid #CDE3FF;
  border-radius: 10px;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.lessons__wrap ol li:last-child {
  margin-bottom: 0;
}
.lessons__wrap ol li:hover {
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -webkit-box-shadow: 0px 5px 10px rgba(170, 201, 243, 0.9), 0px -5px 10px rgba(170, 201, 243, 0.4);
  box-shadow: 0px 5px 10px rgba(170, 201, 243, 0.9), 0px -5px 10px rgba(170, 201, 243, 0.4);
}
.lessons__wrap ol li:hover:before {
  background-color: #c1daf9;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
@media (max-width: 992px) {
  .lessons__wrap ol li {
    padding: 15px 25px 15px 100px;
  }
}
@media (max-width: 768px) {
  .lessons__wrap ol li {
    padding-left: 85px;
  }
}
@media (max-width: 480px) {
  .lessons__wrap ol li {
    padding-left: 60px;
  }
}
.lessons__wrap ol li:before {
  counter-increment: ol-numbers;
  content: counter(ol-numbers);
  position: absolute;
  left: 40px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  color: var(--accent-color);
  font-style: normal;
  font-weight: 900;
  font-size: 24px;
  line-height: 30px;
  text-align: center;
  width: 60px;
  height: 60px;
  background-color: #EFF6FF;
  border-radius: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
@media (max-width: 992px) {
  .lessons__wrap ol li:before {
    left: 20px;
  }
}
@media (max-width: 768px) {
  .lessons__wrap ol li:before {
    width: 45px;
    height: 45px;
    font-size: 20px;
    line-height: 25px;
  }
}
@media (max-width: 576px) {
  .lessons__wrap ol li:before {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    top: 15px;
  }
}
@media (max-width: 480px) {
  .lessons__wrap ol li:before {
    width: 30px;
    height: 30px;
    font-size: 16px;
    line-height: 22px;
    left: 15px;
  }
}
.lessons__title {
  text-align: center;
}
.lessons__text {
  margin-top: 50px;
}
.lessons__text p, .lessons__text ul {
  padding: 0;
  margin: 0;
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  line-height: 25px;
  color: var(--dark-color);
}
.lessons__text ul {
  padding-left: 30px;
}
.lessons__text p span {
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .lessons__text {
    margin-top: 30px;
  }
}
.lessons__items {
  padding: 0;
  margin: 0;
  margin-top: 30px;
  list-style: none;
}
.lessons__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 40px;
  -moz-column-gap: 40px;
  column-gap: 40px;
}
.lessons__inner > p {
  margin: 0;
  padding: 0;
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  line-height: 25px;
  color: var(--dark-color);
}
@media (max-width: 768px) {
  .lessons__inner {
    -webkit-column-gap: 25px;
    -moz-column-gap: 25px;
    column-gap: 25px;
  }
}
@media (max-width: 576px) {
  .lessons__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 20px;
  }
}
.lessons__btn {
  display: inline;
  font-family: "Roboto Slab";
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  line-height: 20px;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
  padding-left: 60px;
  padding-right: 60px;
  text-align: center;
  text-transform: uppercase;
  cursor: pointer;
}
@media (max-width: 768px) {
  .lessons__btn {
    padding-right: 30px;
    padding-left: 30px;
  }
}
@media (max-width: 576px) {
  .lessons__btn {
    -ms-flex-item-align: start;
    align-self: flex-start;
  }
}
@media (max-width: 480px) {
  .lessons__btn {
    padding-top: 6px;
    padding-bottom: 6px;
  }
}
.lessons__btn-last {
  display: block;
  margin: 60px auto 0 auto;
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
  padding-right: 55px;
  padding-left: 55px;
}
@media (max-width: 576px) {
  .lessons__btn-last {
    margin-top: 40px;
  }
}

.login {
  padding-top: 180px;
  padding-bottom: 150px;
}
@media (max-width: 992px) {
  .login {
    padding-top: 140px;
  }
}
@media (max-width: 576px) {
  .login {
    padding-bottom: 100px;
  }
}
@media (max-width: 480px) {
  .login {
    padding-top: 120px;
  }
}
.login__title {
  font-style: normal;
  font-weight: 900;
  font-size: 30px;
  line-height: 40px;
  text-align: center;
  color: var(--accent-color);
  max-width: 890px;
  margin: 0 auto;
}
.login__title-sm {
  font-style: normal;
  font-weight: 900;
  font-size: 30px;
  line-height: 40px;
  color: var(--accent-color);
}
@media (max-width: 480px) {
  .login__title-sm {
    font-size: 24px;
    line-height: 25px;
  }
}
@media (max-width: 768px) {
  .login__title {
    font-size: 24px;
    line-height: 30px;
  }
}
@media (max-width: 480px) {
  .login__title {
    font-size: 22px;
    line-height: 25px;
  }
}
.login__container {
  max-width: 1120px;
  margin: 0 auto;
}
.login__wrap {
  margin-top: 40px;
  background-color: var(--light-color);
  padding: 60px;
  border: 1px solid #CDE3FF;
  border-radius: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 992px) {
  .login__wrap {
    padding: 40px;
  }
}
@media (max-width: 768px) {
  .login__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
@media (max-width: 576px) {
  .login__wrap {
    padding: 30px 20px;
  }
}
.login__login {
  padding-right: 60px;
  border-right: 1px solid #CDE3FF;
  -webkit-box-flex: 0;
  -ms-flex: 0 1 50%;
  flex: 0 1 50%;
}
@media (max-width: 992px) {
  .login__login {
    padding-right: 40px;
  }
}
@media (max-width: 768px) {
  .login__login {
    border-right: none;
    padding-right: 0;
    border-bottom: 1px solid #CDE3FF;
    padding-bottom: 40px;
    -webkit-box-flex: 0;
    -ms-flex: 0 1 100%;
    flex: 0 1 100%;
  }
}
.login__form {
  margin-top: 45px;
}
.login__form input[type=text], .login__form input[type=password] {
  display: block;
  width: 100%;
  outline: none;
  border: none;
  padding: 15px 15px 15px 26px;
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  color: var(--dark-color);
  border-bottom: 1px solid #B9CFEB;
  border-radius: 0 !important;
}
.login__form input[type=text]::-webkit-input-placeholder, .login__form input[type=password]::-webkit-input-placeholder {
  color: rgba(118, 130, 136, 0.7);
}
.login__form input[type=text]::-moz-placeholder, .login__form input[type=password]::-moz-placeholder {
  color: rgba(118, 130, 136, 0.7);
}
.login__form input[type=text]:-ms-input-placeholder, .login__form input[type=password]:-ms-input-placeholder {
  color: rgba(118, 130, 136, 0.7);
}
.login__form input[type=text]::-ms-input-placeholder, .login__form input[type=password]::-ms-input-placeholder {
  color: rgba(118, 130, 136, 0.7);
}
.login__form input[type=text]::placeholder, .login__form input[type=password]::placeholder {
  color: rgba(118, 130, 136, 0.7);
}
.login__form input[type=text] {
  background-image: url("../img/user.svg");
  background-repeat: no-repeat;
  background-size: 16px 16px;
  background-position: left center;
}
.login__form input[type=password] {
  background-image: url("../img/unlock.svg");
  background-repeat: no-repeat;
  background-size: 16px 16px;
  background-position: left center;
}
.login__form input[type=submit] {
  margin-top: 40px;
}
@media (max-width: 480px) {
  .login__form input[type=submit] {
    width: 100%;
    text-align: center;
    padding: 6px 0;
    max-width: -webkit-max-content;
    max-width: -moz-max-content;
    max-width: max-content;
    font-size: 14px;
  }
}
@media (max-width: 576px) {
  .login__form {
    margin-top: 25px;
  }
}
.login__wrapper {
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.login__wrapper > a {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: var(--accent-color);
}
.login__wrapper > a:hover {
  text-decoration: underline;
}
@media (max-width: 480px) {
  .login__wrapper > a {
    font-size: 12px !important;
  }
}
.login__label-checkbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: var(--dark-color);
}
@media (max-width: 480px) {
  .login__label-checkbox {
    font-size: 12px;
    line-height: 18px;
  }
}
.login__label-checkbox input {
  width: 0px;
  height: 0px;
  opacity: 0;
  display: none;
}
.login__label-checkbox input:checked + span:after {
  opacity: 1;
}
.login__label-checkbox > span {
  width: 20px;
  height: 20px;
  border: 1px solid #B9CFEB;
  border-radius: 4px;
  position: relative;
  margin-right: 10px;
}
@media (max-width: 480px) {
  .login__label-checkbox > span {
    margin-right: 5px;
    width: 16px;
    height: 16px;
  }
}
.login__label-checkbox > span::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  background-color: var(--accent-color);
  border-radius: 2px;
  opacity: 0;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
@media (max-width: 480px) {
  .login__label-checkbox > span::after {
    width: 8px;
    height: 8px;
  }
}
.login__btn {
  margin-top: 60px;
  padding-right: 55px;
  padding-left: 55px;
  cursor: pointer;
  display: block;
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
}
@media (max-width: 480px) {
  .login__btn {
    max-width: 100% !important;
    text-align: center;
    padding: 6px 0;
    max-width: -webkit-max-content;
    max-width: -moz-max-content;
    max-width: max-content;
    font-size: 14px;
    margin-top: 45px;
  }
}
.login__info {
  margin-top: 30px;
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: var(--dark-color);
  padding-left: 26px;
  background-image: url("../img/info.svg");
  background-position: left center;
  background-repeat: no-repeat;
  background-size: 16px 16px;
}
.login__dont {
  padding-left: 60px;
  -webkit-box-flex: 0;
  -ms-flex: 0 1 50%;
  flex: 0 1 50%;
}
@media (max-width: 992px) {
  .login__dont {
    padding-left: 40px;
  }
}
@media (max-width: 768px) {
  .login__dont {
    padding-left: 0;
    padding-top: 40px;
    -webkit-box-flex: 0;
    -ms-flex: 0 1 100%;
    flex: 0 1 100%;
  }
}
.login__text {
  margin-top: 60px;
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
  color: var(--dark-color);
  max-width: 360px;
}
@media (max-width: 576px) {
  .login__text {
    margin-top: 40px;
  }
}
@media (max-width: 480px) {
  .login__text {
    font-size: 18px;
  }
}
.login__more-info {
  margin-top: 60px;
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
  text-align: center;
  color: var(--dark-color);
}
.login__more-info > a {
  color: var(--dark-color);
  text-decoration: underline;
  white-space: nowrap;
}
.login__more-info > a:hover {
  text-decoration: none;
}
@media (max-width: 576px) {
  .login__more-info {
    margin-top: 40px;
    font-size: 14px;
    line-height: 20px;
  }
}

.student {
  padding-top: 150px;
  padding-bottom: 170px;
}
@media (max-width: 992px) {
  .student {
    padding-bottom: 100px;
  }
}
@media (max-width: 480px) {
  .student {
    padding-bottom: 60px;
  }
}
.student__title {
  margin-top: 10px;
}
@media (max-width: 1400px) {
  .student__title {
    text-align: center;
  }
}
.student__items:first-of-type {
  padding: 0;
  margin: 0;
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-column-gap: 30px;
  -moz-column-gap: 30px;
  column-gap: 30px;
  row-gap: 30px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .student__items:first-of-type {
    margin-top: 35px;
  }
}
.student__items:first-of-type .student__item {
  width: 430px;
  -ms-flex-preferred-size: 430px;
  flex-basis: 430px;
  background: var(--light-color);
  border: 1px solid #CDE3FF;
  border-radius: 10px;
  -webkit-box-shadow: 0px 10px 30px rgba(205, 227, 255, 0.5);
  box-shadow: 0px 10px 30px rgba(205, 227, 255, 0.5);
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
@media (max-width: 480px) {
  .student__items:first-of-type .student__item {
    width: 100%;
  }
}
.student__items:first-of-type .student__item:hover {
  -webkit-box-shadow: 0px 10px 30px rgba(171, 207, 254, 0.8);
  box-shadow: 0px 10px 30px rgba(171, 207, 254, 0.8);
}
.student__items:first-of-type .student__card {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  cursor: pointer;
  padding: 50px 40px 45px 40px;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
@media (max-width: 576px) {
  .student__items:first-of-type .student__card {
    padding: 40px 25px;
  }
}
@media (max-width: 480px) {
  .student__items:first-of-type .student__card {
    padding: 30px 20px;
  }
}
.student__items:first-of-type .student__img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 145px;
  height: 145px;
  background-color: #EFF6FF;
  border-radius: 50%;
  margin: 0 auto;
  -webkit-transition: all 0.6s ease 0s;
  -o-transition: all 0.6s ease 0s;
  transition: all 0.6s ease 0s;
}
.student__items:first-of-type .student__img svg {
  width: 75px;
  height: 75px;
}
@media (max-width: 480px) {
  .student__items:first-of-type .student__img {
    width: 100px;
    height: 100px;
  }
  .student__items:first-of-type .student__img svg {
    width: 45px;
    height: 45px;
  }
}
.student__items:first-of-type .student__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-flex: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.student__items:first-of-type .student__name {
  margin-top: 30px;
  margin-bottom: 20px;
  font-style: normal;
  font-weight: 900;
  font-size: 24px;
  line-height: 30px;
  color: var(--dark-color);
  max-width: 100%;
}
.student__items:first-of-type .student__btn {
  display: block;
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
  margin-top: auto;
  padding-right: 60px;
  padding-left: 60px;
  text-align: center;
  font-weight: 700;
  font-size: 14px;
  line-height: 20px;
}
@media (max-width: 480px) {
  .student__items:first-of-type .student__btn {
    font-size: 12px;
    line-height: 16px;
    width: 100%;
    padding-top: 8px;
    padding-bottom: 8px;
  }
}
.student__items:last-child {
  padding: 0;
  margin: 0;
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-column-gap: 30px;
  -moz-column-gap: 30px;
  column-gap: 30px;
  row-gap: 30px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .student__items:last-child {
    margin-top: 35px;
  }
}
@media (max-width: 480px) {
  .student__items:last-child {
    row-gap: 20px;
  }
}
.student__items:last-child .student__item {
  width: 430px;
  -ms-flex-preferred-size: 430px;
  flex-basis: 430px;
  background: var(--light-color);
  border: 1px solid #CDE3FF;
  border-radius: 10px;
  -webkit-box-shadow: 0px 10px 30px rgba(205, 227, 255, 0.5);
  box-shadow: 0px 10px 30px rgba(205, 227, 255, 0.5);
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
@media (max-width: 480px) {
  .student__items:last-child .student__item {
    width: 100%;
  }
}
.student__items:last-child .student__item:hover {
  -webkit-box-shadow: 0px 10px 30px rgba(171, 207, 254, 0.8);
  box-shadow: 0px 10px 30px rgba(171, 207, 254, 0.8);
}
.student__items:last-child .student__card {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 30px;
  -moz-column-gap: 30px;
  column-gap: 30px;
  cursor: pointer;
  padding: 40px 50px;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
@media (max-width: 576px) {
  .student__items:last-child .student__card {
    padding: 40px 25px;
  }
}
@media (max-width: 480px) {
  .student__items:last-child .student__card {
    padding: 30px 20px;
  }
}
.student__items:last-child .student__img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  background-color: #EFF6FF;
  border-radius: 50%;
  -webkit-box-flex: 0;
  -ms-flex: 0 1 100px;
  flex: 0 1 100px;
  -webkit-transition: all 0.6s ease 0s;
  -o-transition: all 0.6s ease 0s;
  transition: all 0.6s ease 0s;
}
.student__items:last-child .student__img svg {
  width: 50px;
  height: 50px;
}
@media (max-width: 480px) {
  .student__items:last-child .student__img {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 75px;
    flex: 0 1 75px;
    width: 75px;
    height: 75px;
  }
  .student__items:last-child .student__img svg {
    width: 35px;
    height: 35px;
  }
}
.student__items:last-child .student__btn {
  display: block;
  margin-left: auto;
  text-align: center;
  font-weight: 700;
  font-size: 14px;
  line-height: 20px;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
  -webkit-box-flex: 0;
  -ms-flex: 0 1 calc(100% - 130px);
  flex: 0 1 calc(100% - 130px);
}
@media (max-width: 480px) {
  .student__items:last-child .student__btn {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 calc(100% - 105px);
    flex: 0 1 calc(100% - 105px);
    font-size: 12px;
    line-height: 16px;
    width: 100%;
    padding-top: 8px;
    padding-bottom: 8px;
  }
}
.student__item.item-1 svg, .student__item.item-1 svg path {
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.student__item.item-1:hover .student__card .student__img svg, .student__item.item-1:hover .student__card .student__img svg path {
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.student__item.item-1:hover .student__card .student__img svg path.backgroundOrange, .student__item.item-1:hover .student__card .student__img svg path path.backgroundOrange {
  fill: #f3d1c5;
}
.student__item.item-1:hover .student__card .student__img svg path.backgroundRed, .student__item.item-1:hover .student__card .student__img svg path path.backgroundRed {
  fill: rgb(241, 102, 102);
}
.student__item.item-2 svg, .student__item.item-2 svg path {
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.student__item.item-2:hover .student__card .student__img svg, .student__item.item-2:hover .student__card .student__img svg path {
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.student__item.item-2:hover .student__card .student__img svg path.translate, .student__item.item-2:hover .student__card .student__img svg path path.translate {
  -webkit-transform: translateX(-4px);
  -ms-transform: translateX(-4px);
  transform: translateX(-4px);
}
.student__item.item-3 svg, .student__item.item-3 svg path {
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.student__item.item-3:hover .student__card .student__img svg, .student__item.item-3:hover .student__card .student__img svg path {
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.student__item.item-3:hover .student__card .student__img svg path.translate, .student__item.item-3:hover .student__card .student__img svg path path.translate {
  -webkit-transform: translateX(14px);
  -ms-transform: translateX(14px);
  transform: translateX(14px);
}
.student__item.item-4 svg, .student__item.item-4 svg path {
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.student__item.item-4:hover .student__card .student__img svg, .student__item.item-4:hover .student__card .student__img svg path {
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.student__item.item-4:hover .student__card .student__img svg path.backgroundRed, .student__item.item-4:hover .student__card .student__img svg path path.backgroundRed {
  fill: #f6c7b7;
}
.student__item.item-5 svg, .student__item.item-5 svg path {
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.student__item.item-5:hover .student__card .student__img svg, .student__item.item-5:hover .student__card .student__img svg path {
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.student__item.item-5:hover .student__card .student__img svg path.translate, .student__item.item-5:hover .student__card .student__img svg path path.translate {
  -webkit-transform: translateX(-3px);
  -ms-transform: translateX(-3px);
  transform: translateX(-3px);
}
.student__item.item-6 svg, .student__item.item-6 svg path {
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.student__item.item-6:hover .student__card .student__img svg, .student__item.item-6:hover .student__card .student__img svg path {
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.student__item.item-6:hover .student__card .student__img svg path.translateXR, .student__item.item-6:hover .student__card .student__img svg path path.translateXR {
  -webkit-transform: translateX(-2px);
  -ms-transform: translateX(-2px);
  transform: translateX(-2px);
}
.student__item.item-6:hover .student__card .student__img svg path.translateXL, .student__item.item-6:hover .student__card .student__img svg path path.translateXL {
  -webkit-transform: translateX(2px);
  -ms-transform: translateX(2px);
  transform: translateX(2px);
}
.student__title-sm {
  margin-top: 60px;
  font-style: normal;
  font-weight: 900;
  font-size: 24px;
  line-height: 40px;
  color: var(--accent-color);
}
@media (max-width: 1400px) {
  .student__title-sm {
    text-align: center;
  }
}
@media (max-width: 576px) {
  .student__title-sm {
    margin-top: 40px;
  }
}

.video {
  padding-top: 150px;
  padding-bottom: 190px;
}
@media (max-width: 1200px) {
  .video {
    padding-bottom: 100px;
  }
}
@media (max-width: 768px) {
  .video {
    padding-top: 120px;
  }
}
@media (max-width: 480px) {
  .video {
    padding-bottom: 60px;
  }
}
.video__container {
  margin-top: 40px;
  text-align: center;
}
.video__container video {
  width: 100%;
  position: relative;
  z-index: 0;
}

.revision {
  padding: 150px 0;
}
@media (max-width: 768px) {
  .revision {
    padding-top: 120px;
    padding-bottom: 100px;
  }
}
.revision__title {
  margin-top: 10px;
}
@media (max-width: 1400px) {
  .revision__title {
    text-align: center;
  }
}
.revision__text {
  margin-top: 40px;
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
  color: var(--dark-color);
}
@media (max-width: 1400px) {
  .revision__text {
    text-align: center;
  }
}
@media (max-width: 576px) {
  .revision__text {
    margin-top: 25px;
    font-size: 18px;
  }
}
.revision__cards {
  padding: 0;
  margin: 0;
  margin-top: 40px;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-column-gap: 30px;
  -moz-column-gap: 30px;
  column-gap: 30px;
  row-gap: 30px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (max-width: 1400px) {
  .revision__cards {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
.revision__item {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 25%;
  flex: 0 1 25%;
  max-width: 315px;
  background: var(--light-color);
  border: 1px solid #CDE3FF;
  border-radius: 10px;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.revision__item svg path {
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.revision__item:hover {
  -webkit-box-shadow: 0px 10px 30px rgba(205, 227, 255, 0.5);
  box-shadow: 0px 10px 30px rgba(205, 227, 255, 0.5);
}
@media (max-width: 992px) {
  .revision__item:hover {
    -webkit-box-shadow: none;
    box-shadow: none;
  }
}
@media (max-width: 1400px) {
  .revision__item {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 33.3333333333%;
    flex: 0 1 33.3333333333%;
  }
}
@media (max-width: 992px) {
  .revision__item {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 50%;
    flex: 0 1 50%;
    -webkit-box-shadow: 0px 10px 30px rgba(205, 227, 255, 0.5);
    box-shadow: 0px 10px 30px rgba(205, 227, 255, 0.5);
  }
}
@media (max-width: 645px) {
  .revision__item {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 100%;
    flex: 0 1 100%;
  }
}
.revision__item.item-1 svg, .revision__item.item-1 svg path {
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.revision__item.item-1:hover .revision__card .revision__img svg, .revision__item.item-1:hover .revision__card .revision__img svg path {
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.revision__item.item-1:hover .revision__card .revision__img svg path.backgroundOrange, .revision__item.item-1:hover .revision__card .revision__img svg path path.backgroundOrange {
  fill: #f3d1c5;
}
.revision__item.item-1:hover .revision__card .revision__img svg path.backgroundRed, .revision__item.item-1:hover .revision__card .revision__img svg path path.backgroundRed {
  fill: rgb(241, 102, 102);
}
.revision__item.item-2 svg, .revision__item.item-2 svg path {
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.revision__item.item-2:hover .revision__card .revision__img svg, .revision__item.item-2:hover .revision__card .revision__img svg path {
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.revision__item.item-2:hover .revision__card .revision__img svg path.translateXR, .revision__item.item-2:hover .revision__card .revision__img svg path path.translateXR {
  -webkit-transform: translateX(-2px);
  -ms-transform: translateX(-2px);
  transform: translateX(-2px);
}
.revision__item.item-2:hover .revision__card .revision__img svg path.translateXL, .revision__item.item-2:hover .revision__card .revision__img svg path path.translateXL {
  -webkit-transform: translateX(2px);
  -ms-transform: translateX(2px);
  transform: translateX(2px);
}
.revision__item.item-3 svg, .revision__item.item-3 svg path {
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.revision__item.item-3:hover .revision__card .revision__img svg, .revision__item.item-3:hover .revision__card .revision__img svg path {
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.revision__item.item-3:hover .revision__card .revision__img svg path.backgroundRed, .revision__item.item-3:hover .revision__card .revision__img svg path path.backgroundRed {
  fill: #f6c7b7;
}
.revision__item.item-4 svg, .revision__item.item-4 svg path {
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.revision__item.item-4:hover .revision__card .revision__img svg, .revision__item.item-4:hover .revision__card .revision__img svg path {
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.revision__item.item-4:hover .revision__card .revision__img svg path.translate, .revision__item.item-4:hover .revision__card .revision__img svg path path.translate {
  -webkit-transform: translateX(-3px);
  -ms-transform: translateX(-3px);
  transform: translateX(-3px);
}
.revision__item.item-5 svg, .revision__item.item-5 svg path {
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.revision__item.item-5:hover .revision__card .revision__img svg, .revision__item.item-5:hover .revision__card .revision__img svg path {
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.revision__item.item-5:hover .revision__card .revision__img svg path.translateXR, .revision__item.item-5:hover .revision__card .revision__img svg path path.translateXR {
  -webkit-transform: translateX(3px);
  -ms-transform: translateX(3px);
  transform: translateX(3px);
}
.revision__item.item-5:hover .revision__card .revision__img svg path.translateXL, .revision__item.item-5:hover .revision__card .revision__img svg path path.translateXL {
  -webkit-transform: translateX(-3px);
  -ms-transform: translateX(-3px);
  transform: translateX(-3px);
}
.revision__item.item-6 svg, .revision__item.item-6 svg path {
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.revision__item.item-6:hover .revision__card .revision__img svg, .revision__item.item-6:hover .revision__card .revision__img svg path {
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.revision__item.item-6:hover .revision__card .revision__img svg path.translateXR, .revision__item.item-6:hover .revision__card .revision__img svg path path.translateXR {
  -webkit-transform: translateX(5px);
  -ms-transform: translateX(5px);
  transform: translateX(5px);
}
.revision__item.item-6:hover .revision__card .revision__img svg path.translateXL, .revision__item.item-6:hover .revision__card .revision__img svg path path.translateXL {
  -webkit-transform: translateX(-5px);
  -ms-transform: translateX(-5px);
  transform: translateX(-5px);
}
.revision__card {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 50px;
  cursor: pointer;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
@media (max-width: 576px) {
  .revision__card {
    padding: 40px 25px;
  }
}
@media (max-width: 480px) {
  .revision__card {
    padding: 30px 20px;
  }
}
.revision__img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 145px;
  height: 145px;
  background-color: #EFF6FF;
  border-radius: 50%;
  margin: 0 auto 30px auto;
  -webkit-transition: all 0.6s ease 0s;
  -o-transition: all 0.6s ease 0s;
  transition: all 0.6s ease 0s;
}
.revision__img svg {
  width: 75px;
  height: 75px;
}
@media (max-width: 480px) {
  .revision__img {
    width: 100px;
    height: 100px;
  }
  .revision__img svg {
    width: 45px;
    height: 45px;
  }
}
.revision__content {
  text-align: center;
}
.revision__name {
  font-style: normal;
  font-weight: 900;
  font-size: 20px;
  line-height: 25px;
  color: var(--dark-color);
}
.revision__descr {
  margin-top: 10px;
  font-style: normal;
  font-weight: 400;
  color: var(--dark-color);
}

.resources {
  padding: 150px 0;
}
@media (max-width: 768px) {
  .resources {
    padding-top: 120px;
    padding-bottom: 100px;
  }
}
.resources__title {
  margin-top: 10px;
}
@media (max-width: 1400px) {
  .resources__title {
    text-align: center;
  }
}
.resources__cards {
  padding: 0;
  margin: 0;
  margin-top: 40px;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-column-gap: 30px;
  -moz-column-gap: 30px;
  column-gap: 30px;
  row-gap: 30px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (max-width: 1400px) {
  .resources__cards {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
.resources__item {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 25%;
  flex: 0 1 25%;
  max-width: 315px;
  background: var(--light-color);
  border: 1px solid #CDE3FF;
  border-radius: 10px;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.resources__item svg path {
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.resources__item:hover {
  -webkit-box-shadow: 0px 10px 30px rgba(205, 227, 255, 0.5);
  box-shadow: 0px 10px 30px rgba(205, 227, 255, 0.5);
}
@media (max-width: 992px) {
  .resources__item:hover {
    -webkit-box-shadow: none;
    box-shadow: none;
  }
}
@media (max-width: 1400px) {
  .resources__item {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 33.3333333333%;
    flex: 0 1 33.3333333333%;
  }
}
@media (max-width: 992px) {
  .resources__item {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 50%;
    flex: 0 1 50%;
    -webkit-box-shadow: 0px 10px 30px rgba(205, 227, 255, 0.5);
    box-shadow: 0px 10px 30px rgba(205, 227, 255, 0.5);
  }
}
@media (max-width: 645px) {
  .resources__item {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 100%;
    flex: 0 1 100%;
  }
}
.resources__item.item-1 svg, .resources__item.item-1 svg path {
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.resources__item.item-1:hover .resources__card .resources__img svg, .resources__item.item-1:hover .resources__card .resources__img svg path {
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.resources__item.item-1:hover .resources__card .resources__img svg path.background, .resources__item.item-1:hover .resources__card .resources__img svg path path.background {
  fill: rgb(243, 168, 168);
}
.resources__item.item-2 svg, .resources__item.item-2 svg path {
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.resources__item.item-2:hover .resources__card .resources__img svg, .resources__item.item-2:hover .resources__card .resources__img svg path {
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.resources__item.item-2:hover .resources__card .resources__img svg path.translateXR, .resources__item.item-2:hover .resources__card .resources__img svg path path.translateXR {
  -webkit-transform: translateX(-2px);
  -ms-transform: translateX(-2px);
  transform: translateX(-2px);
}
.resources__item.item-2:hover .resources__card .resources__img svg path.translateXL, .resources__item.item-2:hover .resources__card .resources__img svg path path.translateXL {
  -webkit-transform: translateX(2px);
  -ms-transform: translateX(2px);
  transform: translateX(2px);
}
.resources__item.item-3 svg, .resources__item.item-3 svg path {
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.resources__item.item-3:hover .resources__card .resources__img svg, .resources__item.item-3:hover .resources__card .resources__img svg path {
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.resources__item.item-3:hover .resources__card .resources__img svg path.backgroundYellow, .resources__item.item-3:hover .resources__card .resources__img svg path path.backgroundYellow {
  fill: #FFC107;
}
.resources__item.item-3:hover .resources__card .resources__img svg path.backgroundBlue, .resources__item.item-3:hover .resources__card .resources__img svg path path.backgroundBlue {
  fill: #CDE3FF;
}
.resources__card {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 50px 50px 100px;
  cursor: pointer;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
@media (max-width: 576px) {
  .resources__card {
    padding: 40px 25px;
  }
}
@media (max-width: 480px) {
  .resources__card {
    padding: 30px 20px;
  }
}
.resources__img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 145px;
  height: 145px;
  background-color: #EFF6FF;
  border-radius: 50%;
  margin: 0 auto 30px auto;
  -webkit-transition: all 0.6s ease 0s;
  -o-transition: all 0.6s ease 0s;
  transition: all 0.6s ease 0s;
}
.resources__img svg {
  width: 75px;
  height: 75px;
}
@media (max-width: 480px) {
  .resources__img {
    width: 100px;
    height: 100px;
  }
  .resources__img svg {
    width: 45px;
    height: 45px;
  }
}
.resources__name {
  font-style: normal;
  font-weight: 900;
  font-size: 20px;
  line-height: 25px;
  color: var(--dark-color);
  text-align: center;
}

.about-us {
  padding-top: 270px;
  padding-bottom: 350px;
}
@media (max-width: 1400px) {
  .about-us {
    padding-top: 200px;
    padding-bottom: 200px;
  }
}
@media (max-width: 992px) {
  .about-us {
    padding-top: 150px;
    padding-bottom: 150px;
  }
}
@media (max-width: 576px) {
  .about-us {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
.about-us__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: 30px;
  -moz-column-gap: 30px;
  column-gap: 30px;
  row-gap: 40px;
}
@media (max-width: 992px) {
  .about-us__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.about-us__descr {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 calc(100% - 685px);
  flex: 0 1 calc(100% - 685px);
}
@media (max-width: 1200px) {
  .about-us__descr {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 50%;
    flex: 0 1 50%;
  }
}
@media (max-width: 992px) {
  .about-us__descr {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
    -webkit-box-flex: 0;
    -ms-flex: 0 1 100%;
    flex: 0 1 100%;
  }
}
.about-us__title {
  font-style: normal;
  font-weight: 900;
  font-size: 60px;
  line-height: 60px;
  color: var(--accent-color);
}
@media (max-width: 1200px) {
  .about-us__title {
    font-size: 40px;
    line-height: 40px;
  }
}
@media (max-width: 576px) {
  .about-us__title {
    font-size: 32px;
    line-height: 37px;
  }
}
.about-us__description {
  margin-top: 40px;
}
.about-us__description p {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 30px;
  color: var(--dark-color);
}
@media (max-width: 576px) {
  .about-us__description p {
    font-size: 16px;
    line-height: 26px;
  }
}
.about-us__description p a {
  color: var(--accent-color);
  text-decoration: underline;
}
.about-us__description p a:hover {
  text-decoration: none;
}
@media (max-width: 576px) {
  .about-us__description {
    margin-top: 20px;
  }
}
.about-us__image {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 655px;
  flex: 0 1 655px;
}
.about-us__image svg {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.about-us__image svg path.fig-1 {
  -webkit-animation: backgroundColorCircle 3s ease-in-out 0s 4;
  animation: backgroundColorCircle 3s ease-in-out 0s 4;
}
.about-us__image svg path.red {
  outline: 1px solid red;
}
.about-us__image svg path.fig-2 {
  -webkit-transform-origin: 13% 11%;
  -ms-transform-origin: 13% 11%;
  transform-origin: 13% 11%;
  -webkit-animation: scale 2s ease-in-out 1s 5;
  animation: scale 2s ease-in-out 1s 5;
}
.about-us__image svg path.fig-3 {
  -webkit-animation: opacity 2s ease-in-out 2.5s 7;
  animation: opacity 2s ease-in-out 2.5s 7;
}
.about-us__image svg path.fig-4 {
  -webkit-animation: opacity 2.5s ease-in-out 2.5s 4;
  animation: opacity 2.5s ease-in-out 2.5s 4;
}
.about-us__image svg path.fig-5 {
  -webkit-transform-origin: 67% 10%;
  -ms-transform-origin: 67% 10%;
  transform-origin: 67% 10%;
  -webkit-animation: rotate 10s ease-in-out 0.4s;
  animation: rotate 10s ease-in-out 0.4s;
}
@media (max-width: 1200px) {
  .about-us__image {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 50%;
    flex: 0 1 50%;
  }
}
@media (max-width: 992px) {
  .about-us__image {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 100%;
    flex: 0 1 100%;
    text-align: center;
  }
  .about-us__image svg {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .about-us__image svg {
    width: 80%;
  }
}

.videos {
  padding-top: 150px;
  padding-bottom: 156px;
}
@media (max-width: 768px) {
  .videos {
    padding-top: 120px;
    padding-bottom: 100px;
  }
}
.videos__wrap {
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 30px;
  -moz-column-gap: 30px;
  column-gap: 30px;
}
@media (max-width: 992px) {
  .videos__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.videos__filter {
  max-width: 315px;
  background-color: var(--light-color);
  border: 1px solid #CDE3FF;
  border-radius: 10px;
  padding: 40px 60px 40px 40px;
  -ms-flex-item-align: start;
  align-self: flex-start;
}
.videos__filter > button {
  text-align: left;
  outline: none;
  border: none;
  background-color: transparent;
  font-style: normal;
  font-weight: 900;
  font-size: 16px;
  line-height: 22px;
  color: var(--dark-color);
  margin-bottom: 15px;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.videos__filter > button:hover {
  color: var(--accent-color);
}
.videos__filter > button.active {
  color: var(--accent-color);
}
@media (max-width: 992px) {
  .videos__filter > button {
    margin: 8px 10px;
    border: 1px solid var(--accent-color);
    border-radius: 5px;
    padding: 5px 20px;
  }
}
@media (max-width: 480px) {
  .videos__filter > button {
    display: block;
    margin: 8px auto;
    width: 100%;
    text-align: center;
    padding: 5px 10px;
  }
}
@media (max-width: 992px) {
  .videos__filter {
    max-width: 100%;
    width: 100%;
    margin-bottom: 30px;
    padding: 30px;
    text-align: center;
  }
}
@media (max-width: 480px) {
  .videos__filter {
    padding: 15px;
  }
}
.videos__content {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  width: 100%;
}
.videos__block {
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.videos__subtitle {
  font-style: normal;
  font-weight: 900;
  font-size: 24px;
  line-height: 40px;
  color: var(--dark-color);
}
@media (max-width: 480px) {
  .videos__subtitle {
    font-size: 22px;
    line-height: 28px;
  }
}
.videos__list {
  padding: 0;
  margin: 0;
  list-style: none;
  margin-top: 20px;
  margin-bottom: 40px;
}
.videos__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 15px 40px;
  background-color: var(--light-color);
  border: 1px solid #CDE3FF;
  border-radius: 10px;
  margin-bottom: 10px;
  cursor: pointer;
  -webkit-column-gap: 40px;
  -moz-column-gap: 40px;
  column-gap: 40px;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.videos__item:last-child {
  margin-bottom: 0;
}
.videos__item:hover {
  -webkit-box-shadow: 0px 5px 10px rgba(205, 227, 255, 0.8);
  box-shadow: 0px 5px 10px rgba(205, 227, 255, 0.8);
}
@media (max-width: 768px) {
  .videos__item {
    padding: 15px;
  }
}
@media (max-width: 480px) {
  .videos__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 15px;
    text-align: center;
  }
}
.videos__name {
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
  color: var(--dark-color);
}
@media (max-width: 576px) {
  .videos__name {
    font-size: 16px;
    line-height: 25px;
  }
}
.videos__btn {
  font-style: normal;
  font-weight: 700;
  font-size: 12px;
  line-height: 20px;
  padding: 5px 37px;
  white-space: nowrap;
}
@media (max-width: 1200px) {
  .videos__btn {
    padding: 5px 20px;
  }
}
.videos .anime {
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  opacity: 0;
}
.videos .hide {
  -webkit-animation-name: hide;
  animation-name: hide;
  -webkit-animation-duration: 0.1s;
  animation-duration: 0.1s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
@-webkit-keyframes hide {
  0% {
    visibility: visible;
    height: 5px;
  }
  100% {
    visibility: hidden;
    width: 0;
    height: 0;
    max-width: 0;
    font-size: 0;
    margin: 0;
  }
}
@keyframes hide {
  0% {
    visibility: visible;
    height: 5px;
  }
  100% {
    visibility: hidden;
    width: 0;
    height: 0;
    max-width: 0;
    font-size: 0;
    margin: 0;
  }
}

.quiz {
  padding-top: 150px;
  padding-bottom: 150px;
}
@media (max-width: 768px) {
  .quiz {
    padding-top: 120px;
    padding-bottom: 100px;
  }
}
.quiz__wrap {
  margin-top: 40px;
  padding: 80px 15px;
  background-color: var(--light-color);
  border: 1px solid #CDE3FF;
  border-radius: 10px;
}
@media (max-width: 768px) {
  .quiz__wrap {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
@media (max-width: 576px) {
  .quiz__wrap {
    margin-top: 25px;
  }
}
@media (max-width: 480px) {
  .quiz__wrap {
    padding: 10px;
  }
}
.quiz__block {
  max-width: 845px;
  margin: 0 auto;
}

.flashcards {
  padding-top: 150px;
  padding-bottom: 150px;
}
@media (max-width: 768px) {
  .flashcards {
    padding-top: 120px;
    padding-bottom: 100px;
  }
}
.flashcards .slider-wrapper {
  border-radius: 10px;
  background-color: #D8F9FA;
  padding-top: 25px;
  padding-bottom: 25px;
  max-width: 845px;
  margin: 0 auto;
}
.flashcards__wrap {
  margin-top: 40px;
  padding: 80px 15px;
  background-color: var(--light-color);
  border: 1px solid #CDE3FF;
  border-radius: 10px;
}
@media (max-width: 768px) {
  .flashcards__wrap {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
@media (max-width: 576px) {
  .flashcards__wrap {
    margin-top: 25px;
  }
}
@media (max-width: 480px) {
  .flashcards__wrap {
    padding: 10px;
  }
}
.flashcards__slider {
  max-width: 315px;
  text-align: center;
}
.flashcards__slider-title {
  margin-bottom: 20px;
  font-size: 24px;
  font-weight: 400;
  text-transform: uppercase;
  line-height: 32px;
  color: var(--dark-color);
}
.flashcards .swiper-wrapper {
  padding-top: 30px;
  padding-bottom: 70px;
}
.flashcards .swiper-slide img {
  max-width: 185px;
}
.flashcards .swiper-button-next {
  color: var(--dark-color) !important;
}
@media (max-width: 400px) {
  .flashcards .swiper-button-next {
    right: 5px;
  }
}
.flashcards .swiper-button-prev {
  color: var(--dark-color) !important;
}
@media (max-width: 400px) {
  .flashcards .swiper-button-prev {
    left: 5px;
  }
}
.flashcards .swiper-pagination {
  font-size: 14px;
  font-family: "Roboto";
}

.contact {
  padding-top: 180px;
  padding-bottom: 150px;
}
@media (max-width: 768px) {
  .contact {
    padding-top: 120px;
    padding-bottom: 100px;
  }
}
.contact__title {
  text-align: center;
}
.contact__wrap {
  margin: 40px auto 0 auto;
  padding: 60px;
  background-color: var(--light-color);
  border: 1px solid #CDE3FF;
  border-radius: 10px;
  max-width: 1120px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 992px) {
  .contact__wrap {
    padding: 50px 40px;
  }
}
@media (max-width: 768px) {
  .contact__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
@media (max-width: 480px) {
  .contact__wrap {
    padding: 30px 15px;
  }
}
.contact__details {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 40%;
  flex: 0 1 40%;
  padding-right: 75px;
}
.contact__details address {
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 30px;
  color: #263238;
}
@media (max-width: 480px) {
  .contact__details address {
    font-size: 16px;
    line-height: 25px;
  }
}
.contact__details a {
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 30px;
  color: #263238;
}
.contact__details a:hover {
  text-decoration: underline;
}
@media (max-width: 480px) {
  .contact__details a {
    font-size: 16px;
    line-height: 25px;
  }
}
@media (max-width: 992px) {
  .contact__details {
    padding-right: 40px;
  }
}
@media (max-width: 768px) {
  .contact__details {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 100%;
    flex: 0 1 100%;
    padding-bottom: 40px;
  }
}
@media (max-width: 480px) {
  .contact__details {
    padding-bottom: 20px;
  }
}
.contact__subtitle {
  font-style: normal;
  font-weight: 900;
  font-size: 30px;
  line-height: 40px;
  color: var(--accent-color);
  margin-bottom: 40px;
}
@media (max-width: 480px) {
  .contact__subtitle {
    font-size: 22px;
    line-height: 30px;
    margin-bottom: 20px;
  }
}
.contact__form {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 60%;
  flex: 0 1 60%;
  padding-left: 60px;
  border-left: 1px solid #CDE3FF;
}
.contact__form input:not([type=submit]), .contact__form select, .contact__form textarea {
  width: 100%;
  outline: none;
  border: none;
  background-color: transparent !important;
  margin-bottom: 25px;
  border-radius: 0 !important;
}
.contact__form input:not([type=submit]), .contact__form select {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: var(--dark-color);
  padding: 15px 0;
  border-bottom: 1px solid #B9CFEB;
}
.contact__form input:not([type=submit])::-webkit-input-placeholder, .contact__form select::-webkit-input-placeholder {
  color: rgba(118, 130, 136, 0.5);
}
.contact__form input:not([type=submit])::-moz-placeholder, .contact__form select::-moz-placeholder {
  color: rgba(118, 130, 136, 0.5);
}
.contact__form input:not([type=submit]):-ms-input-placeholder, .contact__form select:-ms-input-placeholder {
  color: rgba(118, 130, 136, 0.5);
}
.contact__form input:not([type=submit])::-ms-input-placeholder, .contact__form select::-ms-input-placeholder {
  color: rgba(118, 130, 136, 0.5);
}
.contact__form input:not([type=submit])::placeholder, .contact__form select::placeholder {
  color: rgba(118, 130, 136, 0.5);
}
@media (max-width: 480px) {
  .contact__form input:not([type=submit]), .contact__form select {
    padding: 10px 0;
  }
}
.contact__form textarea {
  resize: vertical;
  border-bottom: 1px solid #B9CFEB;
  min-height: 120px;
  margin-bottom: 40px;
}
.contact__form textarea::-webkit-input-placeholder {
  color: rgba(118, 130, 136, 0.5);
}
.contact__form textarea::-moz-placeholder {
  color: rgba(118, 130, 136, 0.5);
}
.contact__form textarea:-ms-input-placeholder {
  color: rgba(118, 130, 136, 0.5);
}
.contact__form textarea::-ms-input-placeholder {
  color: rgba(118, 130, 136, 0.5);
}
.contact__form textarea::placeholder {
  color: rgba(118, 130, 136, 0.5);
}
.contact__form input[type=submit] {
  padding: 10px 60px;
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  line-height: 20px;
}
@media (max-width: 992px) {
  .contact__form {
    padding-left: 40px;
  }
}
@media (max-width: 768px) {
  .contact__form {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 100%;
    flex: 0 1 100%;
    padding-left: 0;
    border-left: 0;
    border-top: 1px solid #CDE3FF;
    padding-top: 40px;
  }
}
@media (max-width: 480px) {
  .contact__form {
    padding-top: 20px;
  }
}

.faq {
  padding-top: 180px;
  padding-bottom: 150px;
}
@media (max-width: 768px) {
  .faq {
    padding-top: 120px;
    padding-bottom: 100px;
  }
}
.faq__title {
  text-align: center;
}
.faq__wrap {
  margin: 40px auto 0 auto;
  max-width: 1120px;
}
@media (max-width: 576px) {
  .faq__wrap {
    margin-top: 25px;
  }
}

.accordion {
  border-radius: 10px !important;
}

.accordion-item {
  margin-bottom: 10px;
  border-radius: 10px;
  border: 1px solid #CDE3FF;
}

.accordion-item:first-of-type,
.accordion-item:last-of-type {
  border-top-left-radius: 10px !important;
  border-top-right-radius: 10px !important;
}

.accordion-item:last-of-type .accordion-button.collapsed {
  border-bottom-right-radius: 10px !important;
  border-bottom-left-radius: 10px !important;
  border-top-left-radius: 10px !important;
  border-top-right-radius: 10px !important;
}

.accordion-item:last-of-type {
  border-bottom-right-radius: 10px !important;
  border-bottom-left-radius: 10px !important;
}

.accordion-item:first-of-type .accordion-button {
  border-top-left-radius: 10px !important;
  border-top-right-radius: 10px !important;
}

.accordion-item:not(:first-of-type) {
  border-top: 1px solid #CDE3FF !important;
}

.accordion-button {
  font-style: normal;
  border-radius: 10px;
  font-weight: 900;
  font-size: 18px;
  line-height: 30px;
  color: var(--dark-color) !important;
  background-color: none !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  padding: 15px 20px 15px 40px;
  -webkit-column-gap: 20px;
  -moz-column-gap: 20px;
  column-gap: 20px;
}
.accordion-button:after {
  background-image: url("../img/plus.svg");
  background-size: 20px 20px;
  width: 20px !important;
  height: 20px !important;
}
@media (max-width: 768px) {
  .accordion-button:after {
    background-size: 15px 15px;
    width: 15px !important;
    height: 15px !important;
  }
}
@media (max-width: 768px) {
  .accordion-button {
    padding: 10px 20px;
    font-size: 16px;
    line-height: 22px;
  }
}
@media (max-width: 480px) {
  .accordion-button {
    font-size: 14px;
    line-height: 20px;
  }
}
.accordion-button:not(.collapsed) {
  background: none !important;
}

.accordion-button:not(.collapsed)::after {
  background-image: url("../img/minus.svg");
}

.accordion-body {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 25px;
  color: var(--dark-color);
  border-radius: 10px;
  padding: 0px 20px 20px 40px;
}
@media (max-width: 768px) {
  .accordion-body {
    font-size: 14px;
    padding: 0 20px 10px 20px;
  }
}
@media (max-width: 480px) {
  .accordion-body {
    font-size: 12px;
    line-height: 20px;
  }
}

.tabs {
  position: relative;
}

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

.tabs__content {
  display: none;
}

.tabs__content--active {
  display: block;
}

.tabs__btn--active {
  color: var(--accent-color) !important;
}

.theory {
  padding-top: 150px;
  padding-bottom: 156px;
}
@media (max-width: 768px) {
  .theory {
    padding-top: 120px;
    padding-bottom: 100px;
  }
}
.theory__wrap {
  margin-top: 40px;
}
.theory__tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 30px;
  -moz-column-gap: 30px;
  column-gap: 30px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .theory__tabs {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 30px;
  }
}
.theory__list {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 315px;
  flex: 0 1 315px;
  max-width: 315px;
  /* > ul li {
      position: relative;
      padding-left: 15px;
    }
    ol li:before {
    counter-increment: ol-numbers;
    content: counter(ol-numbers) '.';
    position: absolute;
    left: 0px;
    top: -1px;
    color: var(--dark-color);
    font-style: normal;
    font-weight: 900;
    font-size: 16px;
    line-height: 25px;
    margin-right: 5px;
    @media (max-width: 992px){
        left: 20px;
    }
    @media (max-width: 768px){
        width: 45px;
        height: 45px;
        font-size: 20px;
        line-height: 25px;
    }
    @media (max-width: 576px){
        transform: translateY(0);
        top: 15px;
    }
    @media (max-width: 480px){
        width: 30px;
        height: 30px;
        font-size: 16px;
        line-height: 22px;
        left: 15px;
    }
  } */
}
.theory__list > ul {
  list-style: none;
  padding: 0;
  margin: 0;
  background-color: var(--light-color);
  border: 1px solid #CDE3FF;
  border-radius: 10px;
  padding: 40px 60px 40px 40px;
  -ms-flex-item-align: start;
  align-self: flex-start;
}
.theory__list > ul > li > button {
  text-align: left;
  outline: none;
  border: none;
  background-color: transparent;
  font-style: normal;
  font-weight: 900;
  font-size: 16px;
  line-height: 22px;
  color: var(--dark-color);
  margin-bottom: 15px;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.theory__list > ul > li > button:hover {
  color: var(--accent-color);
}
.theory__list > ul > li > button.active {
  color: var(--accent-color);
}
@media (max-width: 992px) {
  .theory__list > ul > li > button {
    margin: 8px 10px;
    border: 1px solid var(--accent-color);
    border-radius: 5px;
    padding: 5px 20px;
    width: 210px;
    text-align: center;
  }
}
@media (max-width: 992px) {
  .theory__list > ul > li {
    margin-right: 0 !important;
  }
}
@media (max-width: 992px) {
  .theory__list > ul {
    max-width: 100%;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
@media (max-width: 480px) {
  .theory__list > ul {
    padding: 15px;
  }
}
.theory__list a {
  display: block;
  margin-top: 16px;
  text-align: center;
}
.theory__list a > span {
  color: #49B1F7;
}
@media (max-width: 992px) {
  .theory__list {
    max-width: 100%;
    width: 100%;
  }
}
.theory__content {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 calc(100% - 345px);
  flex: 0 1 calc(100% - 345px);
  padding: 40px 40px 60px;
  background-color: var(--light-color);
  border: 1px solid #CDE3FF;
  border-radius: 10px;
}
@media (max-width: 576px) {
  .theory__content {
    padding: 25px;
  }
}
.theory__name {
  font-style: normal;
  font-weight: 900;
  font-size: 24px;
  line-height: 40px;
  color: var(--dark-color);
}
.theory__text {
  margin-top: 38px;
}
.theory__text p {
  margin-bottom: 15px;
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 25px;
  color: var(--dark-color);
}
.theory__text p:last-of-type {
  margin-bottom: 0;
}
.theory__text ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
.theory__text ul li {
  position: relative;
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 25px;
  color: var(--dark-color);
  padding-left: 16px;
}
.theory__text ul li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background-color: var(--accent-color);
}
@media (max-width: 576px) {
  .theory__text {
    margin-top: 20px;
  }
}
.theory__buttons {
  margin-top: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.theory__buttons .btn-back {
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  line-height: 20px;
  text-transform: uppercase;
  padding: 10px 50px;
}
.theory__buttons .btn-back img {
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.theory__buttons .btn-back:hover img {
  -webkit-transform: translateX(-5px);
  -ms-transform: translateX(-5px);
  transform: translateX(-5px);
}
.theory__buttons .btn {
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  line-height: 20px;
  padding: 10px 50px;
}
.theory__buttons .btn img {
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.theory__buttons .btn:hover {
  background-color: var(--accent-color);
  color: var(--light-color);
}
.theory__buttons .btn:hover img {
  -webkit-transform: translateX(5px);
  -ms-transform: translateX(5px);
  transform: translateX(5px);
}
@media (max-width: 480px) {
  .theory__buttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-top: 40px;
    row-gap: 10px;
  }
  .theory__buttons button {
    width: 100%;
  }
}

.tasks {
  padding-top: 150px;
  padding-bottom: 150px;
}
@media (max-width: 768px) {
  .tasks {
    padding-top: 120px;
    padding-bottom: 100px;
  }
}
.tasks__wrap {
  margin-top: 40px;
}
.tasks__tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 30px;
  -moz-column-gap: 30px;
  column-gap: 30px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .tasks__tabs {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 30px;
  }
}
.tasks__list {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 315px;
  flex: 0 1 315px;
  max-width: 315px;
}
.tasks__list > ul {
  list-style: none;
  padding: 0;
  margin: 0;
  background-color: var(--light-color);
  border: 1px solid #CDE3FF;
  border-radius: 10px;
  padding: 40px 60px 40px 40px;
  -ms-flex-item-align: start;
  align-self: flex-start;
}
.tasks__list > ul > li > button {
  text-align: left;
  outline: none;
  border: none;
  background-color: transparent;
  font-style: normal;
  font-weight: 900;
  font-size: 16px;
  line-height: 22px;
  color: var(--dark-color);
  margin-bottom: 15px;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.tasks__list > ul > li > button:hover {
  color: var(--accent-color);
}
.tasks__list > ul > li > button.active {
  color: var(--accent-color);
}
@media (max-width: 992px) {
  .tasks__list > ul > li > button {
    margin: 8px 10px;
    border: 1px solid var(--accent-color);
    border-radius: 5px;
    padding: 5px 20px;
    width: 210px;
    text-align: center;
  }
}
@media (max-width: 992px) {
  .tasks__list > ul > li {
    margin-right: 0 !important;
  }
}
@media (max-width: 992px) {
  .tasks__list > ul {
    max-width: 100%;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
@media (max-width: 480px) {
  .tasks__list > ul {
    padding: 15px;
  }
}
@media (max-width: 992px) {
  .tasks__list {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 100%;
    flex: 0 1 100%;
    max-width: 100%;
  }
}
.tasks__contents {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 calc(100% - 345px);
  flex: 0 1 calc(100% - 345px);
}
@media (max-width: 992px) {
  .tasks__contents {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 100%;
    flex: 0 1 100%;
  }
}
.tasks__content {
  padding: 40px 40px 80px 40px;
  background-color: var(--light-color);
  border: 1px solid #CDE3FF;
  border-radius: 10px;
}
.tasks__content section.tasks__writethis {
  margin-top: 60px;
}
@media (max-width: 576px) {
  .tasks__content section.tasks__writethis {
    margin-top: 30px;
  }
}
@media (max-width: 768px) {
  .tasks__content {
    padding: 25px 15px;
  }
}
.tasks__name {
  font-style: normal;
  font-weight: 900;
  font-size: 24px;
  line-height: 40px;
  color: var(--dark-color);
  margin-bottom: 20px;
}
@media (max-width: 480px) {
  .tasks__name {
    font-size: 20px;
    line-height: 26px;
  }
}
.tasks__section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 20px;
  -moz-column-gap: 20px;
  column-gap: 20px;
}
.tasks__section div:first-child {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 60px;
  flex: 0 1 60px;
  width: 60px;
  height: 60px;
  background-color: #EFF6FF;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media (max-width: 576px) {
  .tasks__section div:first-child {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 30px;
    flex: 0 1 30px;
    width: 30px;
    height: 30px;
  }
}
@media (max-width: 480px) {
  .tasks__section div:first-child {
    display: none;
  }
}
.tasks__section div:last-child {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 calc(100% - 80px);
  flex: 0 1 calc(100% - 80px);
}
@media (max-width: 480px) {
  .tasks__section div:last-child {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 100%;
    flex: 0 1 100%;
  }
}
.tasks__section video {
  width: 100%;
  position: relative;
  z-index: 0;
}
.tasks__dothis .tasks__wrapper > a > img {
  margin: 0;
}
.tasks__btn-theory {
  font-style: normal;
  font-weight: 700;
  font-size: 12px;
  line-height: 20px;
  text-align: center;
  padding: 5px 35px;
  white-space: nowrap;
}
.tasks__description ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
.tasks__description ul > li {
  position: relative;
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 25px;
  color: var(--dark-color);
  padding-left: 16px;
}
.tasks__description ul > li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 8px;
  height: 8px;
  background-color: var(--accent-color);
}
@media (max-width: 480px) {
  .tasks__description ul > li {
    font-size: 14px;
    line-height: 20px;
  }
}
.tasks__description video {
  margin-top: 20px;
  margin-bottom: 40px;
}
.tasks__description img {
  margin-top: 20px;
  margin-bottom: 40px;
}
.tasks__title-inner {
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
  color: var(--dark-color);
  padding-bottom: 25px;
  padding-top: 10px;
  border-bottom: 1px solid #CDE3FF;
  margin-bottom: 20px;
}
@media (max-width: 576px) {
  .tasks__title-inner {
    padding-top: 0;
    padding-bottom: 15px;
  }
}
.tasks__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: 30px;
  -moz-column-gap: 30px;
  column-gap: 30px;
}
@media (max-width: 576px) {
  .tasks__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 15px;
  }
  .tasks__wrapper > ul {
    -ms-flex-item-align: start;
    align-self: flex-start;
  }
}
@media (max-width: 480px) {
  .tasks__items {
    -ms-flex-item-align: start;
    align-self: flex-start;
  }
}
.tasks__knowledge img {
  margin: 0;
  margin-top: 10px;
}
.tasks__exam {
  font-style: normal;
  font-weight: 700;
  font-size: 12px;
  line-height: 20px;
  text-align: center;
  padding: 5px 35px;
  white-space: nowrap;
}

.exam {
  padding-top: 150px;
  padding-bottom: 150px;
}
@media (max-width: 768px) {
  .exam {
    padding-top: 120px;
    padding-bottom: 100px;
  }
}
.exam__subtitle {
  margin-top: 40px;
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
  color: var(--dark-color);
}
@media (max-width: 768px) {
  .exam__subtitle {
    font-size: 18px;
    line-height: 28px;
    margin-top: 25px;
  }
}
.exam__container {
  margin-top: 40px;
  background-color: var(--light-color);
  padding: 40px 40px 60px 40px;
  border: 1px solid #CDE3FF;
  border-radius: 10px;
}
@media (max-width: 768px) {
  .exam__container {
    padding: 20px 10px;
  }
}
.exam__questions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media (max-width: 768px) {
  .exam__questions {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}
.exam__btn-quest, .exam__btn-posit {
  border: none;
  outline: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #EFF6FF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.exam__btn-quest img, .exam__btn-posit img {
  width: 20px;
  height: 20px;
}
@media (max-width: 480px) {
  .exam__btn-quest, .exam__btn-posit {
    width: 25px;
    height: 25px;
  }
  .exam__btn-quest img, .exam__btn-posit img {
    width: 15px;
    height: 15px;
  }
}
.exam__btn-quest {
  margin-right: 20px;
}
@media (max-width: 768px) {
  .exam__btn-quest {
    margin-right: 10px;
  }
}
@media (max-width: 576px) {
  .exam__btn-quest {
    min-width: 25px;
    height: 25px;
  }
  .exam__btn-quest img {
    width: 15px;
    height: 15px;
  }
}
.exam__fraction {
  font-style: normal;
  font-weight: 900;
  font-size: 24px;
  line-height: 40px;
  color: var(--accent-color);
  margin-right: 10px;
}
@media (max-width: 768px) {
  .exam__fraction {
    font-size: 20px;
    line-height: 36px;
  }
}
@media (max-width: 576px) {
  .exam__fraction {
    font-size: 16px;
    line-height: 24px;
  }
}
.exam__question {
  font-style: normal;
  font-weight: 900;
  font-size: 24px;
  line-height: 40px;
  color: var(--dark-color);
}
@media (max-width: 768px) {
  .exam__question {
    font-size: 20px;
    line-height: 36px;
  }
}
@media (max-width: 576px) {
  .exam__question {
    font-size: 16px;
    line-height: 24px;
  }
}
.exam__wrapper {
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 30px;
  -moz-column-gap: 30px;
  column-gap: 30px;
}
@media (max-width: 992px) {
  .exam__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 40px;
  }
}
@media (max-width: 576px) {
  .exam__wrapper {
    margin-top: 25px;
  }
}
.exam__block {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 50%;
  flex: 0 1 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.exam__block .exam__asks + .exam__buttons button:hover {
  background-color: var(--accent-color);
  color: var(--light-color);
}
.exam__block .exam__asks + .exam__buttons button:first-child img {
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.exam__block .exam__asks + .exam__buttons button:first-child:hover img {
  -webkit-transform: translateY(-3px);
  -ms-transform: translateY(-3px);
  transform: translateY(-3px);
}
.exam__block .exam__asks + .exam__buttons button:last-child img {
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.exam__block .exam__asks + .exam__buttons button:last-child:hover img {
  -webkit-transform: translateX(5px);
  -ms-transform: translateX(5px);
  transform: translateX(5px);
}
.exam__block .exam__theory + .exam__buttons button:first-child {
  -webkit-transform-origin: 50% 50%;
  -ms-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
}
.exam__block .exam__theory + .exam__buttons button:first-child img {
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.exam__block .exam__theory + .exam__buttons button:first-child:hover img {
  -webkit-transform: rotate(-360deg);
  -ms-transform: rotate(-360deg);
  transform: rotate(-360deg);
}
.exam__block .exam__theory + .exam__buttons button:last-child img {
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.exam__block .exam__theory + .exam__buttons button:last-child:hover img {
  -webkit-transform: translateX(-5px);
  -ms-transform: translateX(-5px);
  transform: translateX(-5px);
}
@media (max-width: 992px) {
  .exam__block {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 100%;
    flex: 0 1 100%;
  }
}
.exam__posititon {
  border: 1px solid #CDE3FF;
  border-radius: 10px;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  width: 100%;
  position: relative;
  padding: 40px 60px 60px 30px;
}
.exam__posititon p {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 25px;
  color: var(--dark-color);
}
@media (max-width: 480px) {
  .exam__posititon {
    padding: 30px 35px 30px 10px;
  }
  .exam__posititon p {
    font-size: 14px;
    line-height: 22px;
  }
}
.exam__btn-posit {
  position: absolute;
  top: 20px;
  right: 20px;
}
@media (max-width: 480px) {
  .exam__btn-posit {
    top: 10px;
    right: 10px;
  }
}
.exam__buttons {
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media (max-width: 400px) {
  .exam__buttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 10px;
  }
  .exam__buttons button {
    width: 100%;
  }
}
.exam__btn {
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  line-height: 20px;
  width: 160px;
  padding: 5px 0;
}
.exam__btn > img {
  margin-right: 10px;
}
.exam__btn-next img {
  margin-right: auto;
  margin-left: 10px;
}
.exam__asks > ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
.exam__asks > ul > li {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 25px;
  color: var(--dark-color);
  margin-bottom: 20px;
}
@media (max-width: 480px) {
  .exam__asks > ul > li {
    font-size: 14px;
    line-height: 22px;
    margin-bottom: 10px;
  }
}

.subscribe {
  padding-bottom: 105px;
}
.subscribe__wrap {
  -webkit-column-gap: 85px;
  -moz-column-gap: 85px;
  column-gap: 85px;
}
@media (max-width: 1200px) {
  .subscribe__wrap {
    -webkit-column-gap: 45px;
    -moz-column-gap: 45px;
    column-gap: 45px;
  }
}
.subscribe__descr {
  max-width: 603px;
}
@media (max-width: 1200px) {
  .subscribe__descr {
    max-width: 45%;
  }
}
@media (max-width: 992px) {
  .subscribe__descr {
    max-width: 80%;
    -ms-flex-item-align: start;
    align-self: flex-start;
  }
}
@media (max-width: 768px) {
  .subscribe__descr {
    max-width: 100%;
    text-align: center;
  }
}
@media (max-width: 480px) {
  .subscribe__title {
    font-size: 28px;
    line-height: 36px;
  }
}
.subscribe__image svg {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.subscribe__image svg path.fig-1 {
  -webkit-animation: opacity 0.7s ease-in-out 0s 8;
  animation: opacity 0.7s ease-in-out 0s 8;
}
.subscribe__image svg path.fig-3 {
  -webkit-transform-origin: 90% 50%;
  -ms-transform-origin: 90% 50%;
  transform-origin: 90% 50%;
  -webkit-animation: opacity 1.2s ease-in-out 1s 7;
  animation: opacity 1.2s ease-in-out 1s 7;
}
.subscribe__image svg path.notebook {
  -webkit-animation: backgroundColor 3s ease-in-out 0s 3;
  animation: backgroundColor 3s ease-in-out 0s 3;
}
.subscribe__image svg path.clock {
  -webkit-animation: backgroundColorClock 3s ease-in-out 0s 3;
  animation: backgroundColorClock 3s ease-in-out 0s 3;
}
.subscribe__image svg path.notebook-circle {
  -webkit-animation: backgroundColorCircle 3s ease-in-out 0s 3 forwards;
  animation: backgroundColorCircle 3s ease-in-out 0s 3 forwards;
}
.subscribe__image svg path.translateX {
  -webkit-animation: translateX 2s ease 0.7s 4;
  animation: translateX 2s ease 0.7s 4;
}
@media (max-width: 992px) {
  .subscribe__image {
    text-align: center;
  }
  .subscribe__image svg {
    width: 80%;
  }
}

.summary__title {
  text-align: center;
}
.summary__overflow {
  margin-top: 90px;
}
@media (max-width: 992px) {
  .summary__overflow {
    padding-top: 59px;
    margin-top: 40px;
  }
}
.summary__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.summary__row .summary__column-icon:nth-child(2) {
  border-left: 1px solid #CDE3FF;
}
.summary__column {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 20%;
  flex: 0 1 20%;
  text-align: center;
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: var(--light-color);
}
@media (max-width: 768px) {
  .summary__column {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 18%;
    flex: 0 1 18%;
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .summary__column img {
    width: 20px;
    height: 20px;
  }
}
@media (max-width: 576px) {
  .summary__column {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 21%;
    flex: 0 1 21%;
  }
}
@media (max-width: 400px) {
  .summary__column {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 23%;
    flex: 0 1 23%;
  }
}
.summary__column:first-child {
  background-color: #EFF6FF;
  -webkit-box-flex: 0;
  -ms-flex: 0 1 40%;
  flex: 0 1 40%;
  text-align: left;
  padding-left: 40px;
}
@media (max-width: 1200px) {
  .summary__column:first-child {
    padding-left: 20px;
    padding-right: 5px;
  }
}
@media (max-width: 768px) {
  .summary__column:first-child {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 46%;
    flex: 0 1 46%;
  }
}
@media (max-width: 576px) {
  .summary__column:first-child {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 37%;
    flex: 0 1 37%;
    padding-left: 10px;
    padding-right: 5px;
  }
}
@media (max-width: 400px) {
  .summary__column:first-child {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 31%;
    flex: 0 1 31%;
  }
}
.summary__column-head {
  border-top-left-radius: 10px;
  border: 1px solid #CDE3FF;
  border-right: none;
  padding-top: 45px;
  padding-bottom: 30px;
  font-style: normal;
  margin-top: 10px;
  font-weight: 900;
  font-size: 24px;
  line-height: 40px;
  color: var(--dark-color);
}
@media (max-width: 576px) {
  .summary__column-head {
    font-size: 18px;
    line-height: 26px;
  }
}
@media (max-width: 400px) {
  .summary__column-head {
    font-size: 15px;
  }
}
.summary__column-description {
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  color: var(--dark-color);
}
.summary__column-description-first {
  padding-top: 30px;
}
@media (max-width: 1200px) {
  .summary__column-description {
    font-size: 16px;
  }
}
@media (max-width: 576px) {
  .summary__column-description {
    font-size: 14px;
  }
}
@media (max-width: 400px) {
  .summary__column-description {
    font-size: 12px;
  }
}
.summary__img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #EFF6FF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0 auto;
  margin-top: 15px;
}
.summary__img img {
  width: 30px;
  height: 30px;
}
@media (max-width: 576px) {
  .summary__img {
    width: 40px;
    height: 40px;
  }
  .summary__img img {
    width: 20px;
    height: 20px;
  }
}
.summary__column-teacher {
  border: 1px solid #CDE3FF;
  border-top-left-radius: 10px;
}
.summary__column-teacher, .summary__column-student, .summary__column-personal {
  background-color: var(--light-color);
  -webkit-transform: scaleY(1.4) translateY(-19px);
  -ms-transform: scaleY(1.4) translateY(-19px);
  transform: scaleY(1.4) translateY(-19px);
  padding-top: 0px;
  padding-bottom: 10px;
}
.summary__column-teacher > *, .summary__column-student > *, .summary__column-personal > * {
  -webkit-transform: scaleY(0.7144);
  -ms-transform: scaleY(0.7144);
  transform: scaleY(0.7144);
}
.summary__column-teacher h3, .summary__column-student h3, .summary__column-personal h3 {
  font-style: normal;
  font-weight: 900;
  font-size: 18px;
  line-height: 25px;
  color: var(--dark-color);
}
@media (max-width: 768px) {
  .summary__column-teacher h3, .summary__column-student h3, .summary__column-personal h3 {
    font-size: 14px;
    line-height: 22px;
  }
}
@media (max-width: 576px) {
  .summary__column-teacher h3, .summary__column-student h3, .summary__column-personal h3 {
    font-size: 12px;
    line-height: 16px;
  }
}
@media (max-width: 400px) {
  .summary__column-teacher h3, .summary__column-student h3, .summary__column-personal h3 {
    font-size: 10px;
    line-height: 12px;
  }
}
.summary__column-teacher h4, .summary__column-student h4, .summary__column-personal h4 {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 25px;
  text-align: center;
  color: var(--dark-color);
}
@media (max-width: 768px) {
  .summary__column-teacher h4, .summary__column-student h4, .summary__column-personal h4 {
    font-size: 14px;
    line-height: 20px;
  }
}
@media (max-width: 576px) {
  .summary__column-teacher h4, .summary__column-student h4, .summary__column-personal h4 {
    font-size: 12px;
    line-height: 16px;
  }
}
@media (max-width: 400px) {
  .summary__column-teacher h4, .summary__column-student h4, .summary__column-personal h4 {
    font-size: 10px;
    line-height: 12px;
  }
}
@media (max-width: 768px) {
  .summary__column-teacher, .summary__column-student, .summary__column-personal {
    -webkit-transform: scaleY(1.4) translateY(-21px);
    -ms-transform: scaleY(1.4) translateY(-21px);
    transform: scaleY(1.4) translateY(-21px);
  }
}
@media (max-width: 576px) {
  .summary__column-teacher, .summary__column-student, .summary__column-personal {
    -webkit-transform: scaleY(1.4) translateY(-16px);
    -ms-transform: scaleY(1.4) translateY(-16px);
    transform: scaleY(1.4) translateY(-16px);
  }
}
.summary__column-student {
  border: 1px solid #CDE3FF;
  border-left: none;
}
.summary__column-personal {
  border: 1px solid #CDE3FF;
  border-left: none;
  border-top-right-radius: 10px;
}
.summary__column-description {
  border-left: 1px solid #CDE3FF;
}
.summary__column-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-right: 1px solid #CDE3FF;
}
.summary__column-icon-first {
  padding-top: 30px;
}
.summary__icon-beforelast {
  padding-bottom: 30px;
}
.summary__column-last {
  background-color: var(--light-color) !important;
  border-left: none;
  border-right: none;
}
.summary__column-beforelast {
  padding-bottom: 30px;
  border-bottom-left-radius: 10px;
  border-bottom: 1px solid #CDE3FF;
}
.summary__btn {
  padding-bottom: 60px;
  border: 1px solid #CDE3FF;
  border-top: none;
  border-left: none;
}
.summary__btn a {
  font-style: normal;
  font-weight: 700;
  font-size: 12px;
  line-height: 20px;
  text-align: center;
  display: block;
  padding-top: 5px;
  padding-bottom: 5px;
  width: 100%;
  max-width: 160px;
  margin: 0 auto;
}
@media (max-width: 992px) {
  .summary__btn a {
    max-width: none;
    width: 90%;
  }
}
@media (max-width: 576px) {
  .summary__btn a {
    font-size: 10px;
  }
}
@media (max-width: 400px) {
  .summary__btn a {
    font-size: 8px;
  }
}
.summary__btn-first {
  border-bottom-left-radius: 10px;
  border-left: 1px solid #CDE3FF;
}
.summary__btn-last {
  border-bottom-right-radius: 10px;
}
@media (max-width: 768px) {
  .summary__btn {
    padding-bottom: 30px;
  }
}

.school {
  padding-top: 120px;
}
@media (max-width: 768px) {
  .school {
    padding-top: 80px;
  }
}
@media (max-width: 480px) {
  .school {
    padding-top: 40px;
  }
}
.school__title {
  text-align: center;
}
.school__description {
  margin: 40px auto 0 auto;
  max-width: 600px;
  text-align: center;
}
.school__description p {
  margin: 0;
  padding: 0;
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 30px;
  color: var(--dark-color);
}
.school__description p span {
  font-weight: 900;
}
.school__cards {
  padding: 0;
  margin: 0;
  margin-top: 40px;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-column-gap: 30px;
  -moz-column-gap: 30px;
  column-gap: 30px;
  row-gap: 30px;
}
@media (max-width: 1400px) {
  .school__cards {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
@media (max-width: 768px) {
  .school__cards {
    margin-top: 35px;
  }
}
.school__item {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 25%;
  flex: 0 1 25%;
  max-width: 315px;
  background: var(--light-color);
  border: 1px solid #CDE3FF;
  border-radius: 10px;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
@media (max-width: 1400px) {
  .school__item {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 33.3333333333%;
    flex: 0 1 33.3333333333%;
  }
}
@media (max-width: 992px) {
  .school__item {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 50%;
    flex: 0 1 50%;
    -webkit-box-shadow: 0px 10px 30px rgba(205, 227, 255, 0.5);
    box-shadow: 0px 10px 30px rgba(205, 227, 255, 0.5);
  }
}
@media (max-width: 576px) {
  .school__item {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 100%;
    flex: 0 1 100%;
    max-width: 315px;
  }
}
.school__item:hover {
  -webkit-box-shadow: 0px 10px 30px rgba(205, 227, 255, 0.5);
  box-shadow: 0px 10px 30px rgba(205, 227, 255, 0.5);
}
@media (max-width: 992px) {
  .school__item:hover {
    -webkit-box-shadow: none;
    box-shadow: none;
  }
}
.school__card {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 40px;
  cursor: pointer;
  text-align: center;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
@media (max-width: 576px) {
  .school__card {
    padding: 40px 25px;
  }
}
@media (max-width: 480px) {
  .school__card {
    padding: 30px 20px;
  }
}
.school__img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 145px;
  height: 145px;
  background-color: #EFF6FF;
  border-radius: 50%;
  margin: 0 auto;
  -webkit-transition: all 0.6s ease 0s;
  -o-transition: all 0.6s ease 0s;
  transition: all 0.6s ease 0s;
}
.school__img img {
  width: 75px;
  height: 75px;
}
@media (max-width: 480px) {
  .school__img {
    width: 100px;
    height: 100px;
  }
  .school__img img {
    width: 45px;
    height: 45px;
  }
}
.school__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.school__name {
  margin-top: 30px;
  font-style: normal;
  font-weight: 800;
  font-size: 18px;
  line-height: 30px;
  color: var(--dark-color);
}
.school__descr {
  margin-top: 10px;
  margin-bottom: 30px;
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 25px;
  color: var(--dark-color);
}
.school__btn {
  margin-top: auto;
  font-weight: 700;
  font-size: 14px;
  line-height: 20px;
  text-transform: uppercase;
  color: var(--light-color);
  padding: 10px 0;
  text-align: center;
  min-width: 195px;
  max-width: 100%;
}
.school__btn img {
  margin-left: 10px;
}
.school__btn:hover {
  background-color: #4596e8;
  color: var(--light-color);
}
@media (max-width: 480px) {
  .school__btn {
    font-size: 12px;
    line-height: 16px;
    width: 100%;
    padding-top: 8px;
    padding-bottom: 8px;
  }
}
.school__full-details {
  margin: 40px auto 0 auto;
  display: block;
  text-align: center;
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 30px;
  -webkit-text-decoration-line: underline;
  text-decoration-line: underline;
  color: var(--accent-color);
}
.school__full-details:hover {
  -webkit-text-decoration-line: none;
  text-decoration-line: none;
}

.subscription {
  padding-top: 120px;
  padding-bottom: 150px;
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: cover;
}
@media (max-width: 768px) {
  .subscription {
    padding-top: 80px;
    padding-bottom: 100px;
  }
}
@media (max-width: 576px) {
  .subscription {
    padding-top: 40px;
    padding-bottom: 50px;
  }
}
.subscription__wrap {
  max-width: 890px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 60px;
  -moz-column-gap: 60px;
  column-gap: 60px;
}
.subscription__wrap .school__cards {
  margin-top: 0;
}
@media (max-width: 768px) {
  .subscription__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 40px;
  }
}
.subscription__descr {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 calc(100% - 375px);
  flex: 0 1 calc(100% - 375px);
}
.subscription__descr .school__full-details {
  text-align: left;
}
@media (max-width: 768px) {
  .subscription__descr .school__full-details {
    text-align: center;
  }
}
@media (max-width: 768px) {
  .subscription__descr {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 100%;
    flex: 0 1 100%;
  }
}
.subscription__name {
  font-style: normal;
  font-weight: 900;
  font-size: 30px;
  line-height: 40px;
  color: var(--accent-color);
  margin-bottom: 30px;
}
@media (max-width: 576px) {
  .subscription__name {
    font-size: 24px;
    line-height: 30px;
    margin-bottom: 15px;
  }
}
.subscription__text {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 calc(100% - 165px);
  flex: 0 1 calc(100% - 165px);
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 30px;
  color: var(--dark-color);
  margin-bottom: 25px;
}
@media (max-width: 768px) {
  .subscription__text {
    margin-bottom: 15px;
  }
}
@media (max-width: 576px) {
  .subscription__text {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 100%;
    flex: 0 1 100%;
  }
}
.subscription__note {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 30px;
  color: #C9513C;
  margin-bottom: 25px;
}
@media (max-width: 768px) {
  .subscription__note {
    margin-bottom: 15px;
  }
}
.subscription__card {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 315px;
  flex: 0 1 315px;
}
.subscription__card .school__item {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 100%;
  flex: 0 1 100%;
}
@media (max-width: 768px) {
  .subscription__card {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 100%;
    flex: 0 1 100%;
    max-width: 315px;
    margin: 0 auto;
  }
}
.subscription__overseas {
  margin-top: 120px;
}
.subscription__overseas .subscription__name {
  text-align: center;
}
.subscription__overseas .subscription__text p {
  margin: 0 !important;
}
.subscription__overseas .subscription__text {
  margin: 0 !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  row-gap: 15px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
@media (max-width: 768px) {
  .subscription__overseas {
    margin-top: 60px;
  }
}
@media (max-width: 480px) {
  .subscription__overseas + .school__full-details {
    font-size: 14px;
  }
}
.subscription__school {
  margin-top: 40px;
  background-color: var(--light-color);
  border: 1px solid #CDE3FF;
  border-radius: 10px;
  padding: 35px 65px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: 65px;
  -moz-column-gap: 65px;
  column-gap: 65px;
}
@media (max-width: 768px) {
  .subscription__school {
    padding: 30px 20px;
    -webkit-column-gap: 30px;
    -moz-column-gap: 30px;
    column-gap: 30px;
  }
}
.subscription__img {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 100px;
  flex: 0 1 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  background-color: #EFF6FF;
  border-radius: 50%;
  margin: 0 auto;
  -webkit-transition: all 0.6s ease 0s;
  -o-transition: all 0.6s ease 0s;
  transition: all 0.6s ease 0s;
}
.subscription__img img {
  width: 50px;
  height: 50px;
}
@media (max-width: 576px) {
  .subscription__img {
    display: none;
  }
}

.teach-lessons {
  padding-top: 150px;
  padding-bottom: 150px;
}
@media (max-width: 768px) {
  .teach-lessons {
    padding-top: 120px;
    padding-bottom: 100px;
  }
}
.teach-lessons__name {
  font-style: normal;
  font-weight: 900;
  font-size: 24px;
  line-height: 40px;
  color: var(--dark-color);
  padding-bottom: 20px;
  border-bottom: 1px solid #CDE3FF;
  margin-bottom: 20px;
}
.teach-lessons__wrap {
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 30px;
  -moz-column-gap: 30px;
  column-gap: 30px;
}
@media (max-width: 992px) {
  .teach-lessons__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 30px;
  }
}
.teach-lessons__links {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 315px;
  flex: 0 1 315px;
  max-width: 315px;
  list-style: none;
  background-color: var(--light-color);
  border: 1px solid #CDE3FF;
  border-radius: 10px;
  padding: 40px 60px 40px 40px;
  -ms-flex-item-align: start;
  align-self: flex-start;
}
.teach-lessons__links > a {
  display: block;
  text-align: left;
  background-color: transparent;
  font-style: normal;
  font-weight: 900;
  font-size: 16px;
  line-height: 22px;
  color: var(--dark-color);
  margin-bottom: 15px;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
@media (max-width: 480px) {
  .teach-lessons__links > a {
    width: 100%;
    padding-right: 0;
    padding-left: 0;
    font-size: 14px;
  }
}
.teach-lessons__links > a:hover {
  color: var(--accent-color);
}
.teach-lessons__links > a.active {
  color: var(--accent-color);
}
@media (max-width: 992px) {
  .teach-lessons__links > a {
    margin: 8px 10px;
    border: 1px solid var(--accent-color);
    border-radius: 5px;
    padding: 5px 20px;
    text-align: center;
  }
}
@media (max-width: 992px) {
  .teach-lessons__links {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 100%;
    flex: 0 1 100%;
    max-width: 100%;
    -ms-flex-item-align: stretch;
    -ms-grid-row-align: stretch;
    align-self: stretch;
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 20px 15px;
  }
}
.teach-lessons__sections {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 calc(100% - 345px);
  flex: 0 1 calc(100% - 345px);
}
.teach-lessons__lesson-theory, .teach-lessons__lesson-theory-flipped, .teach-lessons__workbook-and-answers {
  background-color: var(--light-color);
  border: 1px solid #CDE3FF;
  border-radius: 10px;
  padding: 40px;
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .teach-lessons__lesson-theory, .teach-lessons__lesson-theory-flipped, .teach-lessons__workbook-and-answers {
    padding: 30px;
  }
}
@media (max-width: 480px) {
  .teach-lessons__lesson-theory, .teach-lessons__lesson-theory-flipped, .teach-lessons__workbook-and-answers {
    padding: 20px;
  }
}
.teach-lessons__description {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-column-gap: 75px;
  -moz-column-gap: 75px;
  column-gap: 75px;
}
@media (max-width: 768px) {
  .teach-lessons__description {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.teach-lessons__description-text {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 calc(100% - 125px);
  flex: 0 1 calc(100% - 125px);
}
.teach-lessons__description-text p {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 25px;
  color: var(--dark-color);
}
.teach-lessons__description-text p a {
  color: var(--accent-color);
}
.teach-lessons__description-text p a:hover {
  -webkit-text-decoration-line: underline;
  text-decoration-line: underline;
}
.teach-lessons__file {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 40px;
  -moz-column-gap: 40px;
  column-gap: 40px;
  -webkit-box-flex: 0;
  -ms-flex: 0 1 50px;
  flex: 0 1 50px;
}
@media (max-width: 576px) {
  .teach-lessons__file {
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
  }
}
.teach-lessons__workbook-and-answers .teach-lessons__description .teach-lessons__description-text {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 calc(100% - 200px);
  flex: 0 1 calc(100% - 200px);
}
.teach-lessons__workbook-and-answers .teach-lessons__description .teach-lessons__file {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 150px;
  flex: 0 1 150px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .teach-lessons__workbook-and-answers .teach-lessons__description .teach-lessons__file {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-flex: 0;
    -ms-flex: 0 1 50px;
    flex: 0 1 50px;
  }
}
.teach-lessons__file-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.teach-lessons__file-wrap span {
  margin-top: 10px;
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  text-align: center;
  color: var(--accent-color);
}

.science {
  padding-top: 150px;
  padding-bottom: 150px;
}
@media (max-width: 768px) {
  .science {
    padding-top: 120px;
    padding-bottom: 100px;
  }
}
.science__wrap {
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 30px;
  -moz-column-gap: 30px;
  column-gap: 30px;
}
@media (max-width: 992px) {
  .science__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 30px;
  }
}
.science__links {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 315px;
  flex: 0 1 315px;
  max-width: 315px;
  list-style: none;
  background-color: var(--light-color);
  border: 1px solid #CDE3FF;
  border-radius: 10px;
  padding: 40px;
  -ms-flex-item-align: start;
  align-self: flex-start;
}
.science__links > a {
  display: block;
  text-align: left;
  font-style: normal;
  font-weight: 900;
  font-size: 16px;
  line-height: 22px;
  color: var(--dark-color);
  margin-bottom: 15px;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
@media (max-width: 480px) {
  .science__links > a {
    width: 100%;
    padding-right: 0;
    padding-left: 0;
    font-size: 14px;
  }
}
.science__links > a:hover {
  color: var(--accent-color);
}
.science__links > a.active {
  color: var(--accent-color);
}
@media (max-width: 992px) {
  .science__links > a {
    margin: 8px 10px;
    border: 1px solid var(--accent-color);
    border-radius: 5px;
    padding: 5px 20px;
    text-align: center;
  }
}
@media (max-width: 992px) {
  .science__links {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 100%;
    flex: 0 1 100%;
    max-width: 100%;
    -ms-flex-item-align: stretch;
    -ms-grid-row-align: stretch;
    align-self: stretch;
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 20px 15px;
  }
}
.science__sections {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 calc(100% - 345px);
  flex: 0 1 calc(100% - 345px);
}
.science__section {
  background-color: var(--light-color);
  border: 1px solid #CDE3FF;
  border-radius: 10px;
  padding: 40px;
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .science__section {
    padding: 30px;
  }
}
@media (max-width: 576px) {
  .science__section {
    margin-bottom: 20px;
  }
}
@media (max-width: 480px) {
  .science__section {
    padding: 20px;
  }
}
.science__name {
  margin-bottom: 30px;
  font-style: normal;
  font-weight: 900;
  font-size: 24px;
  line-height: 40px;
  color: var(--dark-color);
}
@media (max-width: 576px) {
  .science__name {
    margin-bottom: 10px;
    font-size: 20px;
    line-height: 26px;
  }
}
.science__lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  row-gap: 40px;
  -webkit-column-gap: 30px;
  -moz-column-gap: 30px;
  column-gap: 30px;
}
@media (max-width: 576px) {
  .science__lists {
    row-gap: 20px;
  }
}
.science__wrapper {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 calc(50% - 15px);
  flex: 0 1 calc(50% - 15px);
}
.science__wrapper > ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
.science__wrapper > ul > li {
  position: relative;
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 25px;
  color: var(--dark-color);
  padding-left: 16px;
}
.science__wrapper > ul > li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background-color: var(--accent-color);
}
.science__wrapper > a {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 25px;
  -webkit-text-decoration-line: underline;
  text-decoration-line: underline;
  color: var(--accent-color);
}
.science__wrapper > a:hover {
  -webkit-text-decoration-line: none;
  text-decoration-line: none;
}
@media (max-width: 576px) {
  .science__wrapper {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 100%;
    flex: 0 1 100%;
  }
}

.glossary {
  padding-top: 150px;
  padding-bottom: 150px;
}
@media (max-width: 768px) {
  .glossary {
    padding-top: 120px;
    padding-bottom: 100px;
  }
}
.glossary__wrap {
  margin-top: 40px;
}
@media (max-width: 768px) {
  .glossary__wrap {
    margin-top: 25px;
  }
}
.glossary__list {
  background-color: var(--light-color);
  border: 1px solid #CDE3FF;
  border-radius: 10px;
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-bottom: 10px;
}
.glossary__list > ul {
  padding: 0;
  margin: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media (max-width: 992px) {
  .glossary__list > ul {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
.glossary__list > ul > li > button {
  outline: none;
  border: none;
  background-color: transparent;
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
  color: var(--dark-color);
  padding: 0 3px;
}
.glossary__content {
  background-color: var(--light-color);
  border: 1px solid #CDE3FF;
  border-radius: 10px;
  padding: 60px;
}
.glossary__content-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.glossary__content-wrap a {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 25%;
  flex: 0 1 25%;
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 40px;
  color: var(--dark-color);
}
.glossary__content-wrap a:hover {
  -webkit-text-decoration-line: underline;
  text-decoration-line: underline;
  color: var(--accent-color);
}
@media (max-width: 1200px) {
  .glossary__content-wrap a {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 30%;
    flex: 0 1 30%;
    font-size: 15px;
    line-height: 35px;
  }
}
@media (max-width: 768px) {
  .glossary__content-wrap a {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 50%;
    flex: 0 1 50%;
  }
}
@media (max-width: 576px) {
  .glossary__content-wrap a {
    font-size: 12px;
    line-height: 20px;
  }
}
@media (max-width: 400px) {
  .glossary__content-wrap a {
    font-size: 16px;
    line-height: 26px;
    -webkit-box-flex: 0;
    -ms-flex: 0 1 100%;
    flex: 0 1 100%;
    text-align: center;
  }
}
@media (max-width: 1200px) {
  .glossary__content {
    padding: 40px 30px;
  }
}
@media (max-width: 576px) {
  .glossary__content {
    padding: 15px;
  }
}
.glossary__message {
  margin-top: 30px;
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 30px;
  color: var(--dark-color);
  text-align: center;
}
.glossary__message a {
  color: var(--accent-color);
}
.glossary__message a:hover {
  -webkit-text-decoration-line: underline;
  text-decoration-line: underline;
}
@media (max-width: 768px) {
  .glossary__message {
    font-size: 14px;
    line-height: 22px;
  }
}
.glossary__inner {
  background-color: var(--light-color);
  border: 1px solid #CDE3FF;
  border-radius: 10px;
  padding: 40px 40px 120px 40px;
  min-height: 580px;
  position: relative;
}
@media (max-width: 576px) {
  .glossary__inner {
    padding: 20px 20px 80px 20px;
  }
}
.glossary__name {
  font-style: normal;
  font-weight: 900;
  font-size: 24px;
  line-height: 40px;
  color: var(--dark-color);
  margin-bottom: 20px;
}
.glossary__text {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 25px;
  color: var(--dark-color);
}
.glossary__btn {
  position: absolute;
  bottom: 80px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
  padding-right: 75px;
  padding-left: 75px;
  cursor: pointer;
}
@media (max-width: 768px) {
  .glossary__btn {
    padding-right: 40px;
    padding-left: 40px;
  }
}
@media (max-width: 576px) {
  .glossary__btn {
    padding-right: 0;
    padding-left: 0;
    min-width: 60% !important;
    text-align: center;
    bottom: 20px;
  }
}
@media (max-width: 400px) {
  .glossary__btn {
    min-width: calc(100% - 30px) !important;
  }
}

.footer {
  background-color: var(--dark-color);
  padding-top: 60px;
}
.footer__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding-bottom: 50px;
}
@media (max-width: 992px) {
  .footer__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
@media (max-width: 576px) {
  .footer__wrap {
    padding-bottom: 10px;
  }
}
.footer__logos > ul {
  padding: 0;
  margin: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 40px;
}
@media (max-width: 576px) {
  .footer__logos > ul {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
.footer__logos > ul > li {
  margin-right: 15px;
  width: 30px;
  height: 30px;
}
.footer__logos > ul > li:last-child {
  margin-right: 0;
}
.footer__logos > ul > li > a {
  display: block;
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.footer__logos > ul > li > a:hover {
  -webkit-transform: translateY(-6px);
  -ms-transform: translateY(-6px);
  transform: translateY(-6px);
}
@media (max-width: 576px) {
  .footer__logos {
    text-align: center;
  }
}
.footer__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 992px) {
  .footer__links {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-top: 40px;
    max-width: 80%;
  }
}
@media (max-width: 768px) {
  .footer__links {
    max-width: 100%;
  }
}
@media (max-width: 576px) {
  .footer__links {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.footer__item {
  margin-right: 141px;
}
@media (max-width: 1200px) {
  .footer__item {
    margin-right: 100px;
  }
}
@media (max-width: 992px) {
  .footer__item {
    margin-right: 0;
  }
}
.footer__item:last-child {
  margin-right: 100px;
}
@media (max-width: 991px) {
  .footer__item:last-child {
    margin-right: 0;
  }
}
.footer__item > ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
.footer__item > ul > li {
  margin-top: 5px;
}
.footer__item > ul > li > a {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  text-transform: uppercase;
  color: var(--light-color);
  position: relative;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.footer__item > ul > li > a:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 0%;
  height: 1px;
  background-color: var(--light-color);
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.footer__item > ul > li > a:hover:after {
  width: 100%;
}
.footer__item:last-of-type > ul > li:last-child {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: var(--light-color);
  text-transform: none;
}
.footer__item:last-of-type > ul > li > a {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: var(--light-color);
  text-transform: none;
}
@media (max-width: 768px) {
  .footer__item:last-of-type {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 33.3333%;
    flex: 0 1 33.3333%;
  }
}
@media (max-width: 576px) {
  .footer__item {
    text-align: center;
  }
  .footer__item > ul {
    margin-bottom: 30px;
  }
}
.footer__title {
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 30px;
  text-transform: uppercase;
  color: var(--light-color);
}
.footer__copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media (max-width: 768px) {
  .footer__copyright {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.footer__design {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #AAAAAA;
}
.footer__design a {
  color: var(--light-color) !important;
}
.footer__design a:hover {
  color: var(--light-color) !important;
  text-decoration: underline !important;
}
@media (max-width: 768px) {
  .footer__design {
    margin-bottom: 7px;
    font-size: 12px;
    text-align: center;
  }
}
.footer__policy {
  font-family: "Roboto";
}
.footer__policy a {
  display: inline-block;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: var(--light-color) !important;
}
.footer__policy a:last-of-type {
  margin-left: 10px;
}
.footer__policy a:hover {
  color: var(--light-color) !important;
  text-decoration: underline !important;
}
@media (max-width: 768px) {
  .footer__policy a {
    font-size: 12px;
  }
}

@-webkit-keyframes rotateRound {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  50% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
  100% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
}

@keyframes rotateRound {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  50% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
  100% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
}
@-webkit-keyframes translateX {
  0% {
    -webkit-transform: translate(0);
    transform: translate(0);
  }
  50% {
    -webkit-transform: translate(8%);
    transform: translate(8%);
  }
  100% {
    -webkit-transform: translate(0);
    transform: translate(0);
  }
}
@keyframes translateX {
  0% {
    -webkit-transform: translate(0);
    transform: translate(0);
  }
  50% {
    -webkit-transform: translate(8%);
    transform: translate(8%);
  }
  100% {
    -webkit-transform: translate(0);
    transform: translate(0);
  }
}
@-webkit-keyframes backgroundColor {
  0% {
    fill: var(--light-color);
  }
  50% {
    fill: hsl(204deg, 71%, 81%);
  }
  100% {
    fill: var(--light-color);
  }
}
@keyframes backgroundColor {
  0% {
    fill: var(--light-color);
  }
  50% {
    fill: hsl(204deg, 71%, 81%);
  }
  100% {
    fill: var(--light-color);
  }
}
@-webkit-keyframes backgroundColorCircle {
  0% {
    fill: #d8d4d4;
  }
  50% {
    fill: #256e9e;
  }
  100% {
    fill: #d8d4d4;
  }
}
@keyframes backgroundColorCircle {
  0% {
    fill: #d8d4d4;
  }
  50% {
    fill: #256e9e;
  }
  100% {
    fill: #d8d4d4;
  }
}
@-webkit-keyframes backgroundColorClock {
  0% {
    fill: #CDE3FF;
  }
  50% {
    fill: #8db9f1;
  }
  100% {
    fill: #CDE3FF;
  }
}
@keyframes backgroundColorClock {
  0% {
    fill: #CDE3FF;
  }
  50% {
    fill: #8db9f1;
  }
  100% {
    fill: #CDE3FF;
  }
}
@-webkit-keyframes backgroundColorBlueToYellow {
  0% {
    fill: #1F7DBB;
  }
  50% {
    fill: #FFC73C;
  }
  100% {
    fill: #1F7DBB;
  }
}
@keyframes backgroundColorBlueToYellow {
  0% {
    fill: #1F7DBB;
  }
  50% {
    fill: #FFC73C;
  }
  100% {
    fill: #1F7DBB;
  }
}
@-webkit-keyframes backgroundColorYellowToBlue {
  0% {
    fill: #1F7DBB;
  }
  50% {
    fill: #FFC73C;
  }
  100% {
    fill: #1F7DBB;
  }
}
@keyframes backgroundColorYellowToBlue {
  0% {
    fill: #1F7DBB;
  }
  50% {
    fill: #FFC73C;
  }
  100% {
    fill: #1F7DBB;
  }
}
@-webkit-keyframes rotate {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  25% {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
  }
  50% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
  75% {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}
@keyframes rotate {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  25% {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
  }
  50% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
  75% {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}
@-webkit-keyframes scale {
  from {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  to {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes scale {
  from {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  to {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@-webkit-keyframes opacity {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0.1;
  }
  20% {
    opacity: 0.2;
  }
  30% {
    opacity: 0.3;
  }
  40% {
    opacity: 0.4;
  }
  50% {
    opacity: 0.5;
  }
  60% {
    opacity: 0.6;
  }
  70% {
    opacity: 0.7;
  }
  80% {
    opacity: 0.8;
  }
  90% {
    opacity: 0.9;
  }
  100% {
    opacity: 1;
  }
}
@keyframes opacity {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0.1;
  }
  20% {
    opacity: 0.2;
  }
  30% {
    opacity: 0.3;
  }
  40% {
    opacity: 0.4;
  }
  50% {
    opacity: 0.5;
  }
  60% {
    opacity: 0.6;
  }
  70% {
    opacity: 0.7;
  }
  80% {
    opacity: 0.8;
  }
  90% {
    opacity: 0.9;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes opacitySlowly {
  0% {
    opacity: 0.4;
  }
  25% {
    opacity: 0.6;
  }
  50% {
    opacity: 0.8;
  }
  100% {
    opacity: 1;
  }
}
@keyframes opacitySlowly {
  0% {
    opacity: 0.4;
  }
  25% {
    opacity: 0.6;
  }
  50% {
    opacity: 0.8;
  }
  100% {
    opacity: 1;
  }
}
/*# sourceMappingURL=main.css.map */