@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: local(""), url("../fonts/inter-v12-latin_cyrillic-regular.woff2") format("woff2"), url("../fonts/inter-v12-latin_cyrillic-regular.woff") format("woff"); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: local(""), url("../fonts/inter-v12-latin_cyrillic-500.woff2") format("woff2"), url("../fonts/inter-v12-latin_cyrillic-500.woff") format("woff"); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: local(""), url("../fonts/inter-v12-latin_cyrillic-600.woff2") format("woff2"), url("../fonts/inter-v12-latin_cyrillic-600.woff") format("woff"); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: local(""), url("../fonts/inter-v12-latin_cyrillic-700.woff2") format("woff2"), url("../fonts/inter-v12-latin_cyrillic-700.woff") format("woff"); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
* {
  -webkit-tap-highlight-color: transparent;
}

a:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #000;
}

::-moz-focus-inner {
  border: 0;
  outline: 0;
}

html {
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  overflow: hidden;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  font-style: normal;
  font-weight: 400;
  color: #2C294B;
  line-height: 143%;
  background-color: #F5F6F7;
}
body.noscroll {
  overflow: hidden;
}
@media only screen and (min-width: 1024px) {
  body.noscroll {
    padding: 0 calc(1.2rem - (100vw - 100%)) 0 0;
  }
}

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

* {
  position: relative;
}

*:focus {
  outline: none;
}

html {
  font-size: 10px;
  scroll-behavior: smooth;
}
html.noscroll {
  overflow: hidden;
}

::-webkit-scrollbar-track {
  background: #D7E5F0;
}

::-webkit-scrollbar-thumb {
  background: #fff;
  border-radius: 1.2rem;
}

::-webkit-scrollbar {
  width: 1rem;
}

body,
html {
  height: 100%;
  font-family: "Inter", sans-serif;
}

ul {
  list-style: none;
}

.hidden {
  display: none !important;
}

main {
  flex: 1 0 auto;
  overflow: hidden;
  overflow-y: auto;
  padding-bottom: 14rem;
}
@media only screen and (min-width: 1024px) {
  main {
    padding-bottom: 15rem;
    overflow: clip;
    overflow: visible;
  }
}

.container {
  margin: 0 auto;
  width: 100%;
  max-width: 144rem;
  padding: 0 1.5rem;
  z-index: 2;
}
@media only screen and (min-width: 1024px) {
  .container {
    padding: 0 2.8rem;
  }
}
@media only screen and (min-width: 1280px) {
  .container {
    padding: 0 8rem;
  }
}

section {
  overflow: visible;
  z-index: 1;
  transition: all 0.3s linear;
}
section.hide {
  opacity: 0;
}

.bg {
  position: absolute;
  border-radius: 50%;
  line-height: 0;
  font-size: 0;
  color: transparent;
}

label {
  margin-bottom: 0;
}

button,
input,
textarea,
select,
option {
  outline: none;
  background-color: transparent;
  border: none;
  margin: 0;
  padding: 0;
  font-family: "Inter", sans-serif;
}
button:hover,
input:hover,
textarea:hover,
select:hover,
option:hover {
  outline: none;
  cursor: pointer;
}

textarea {
  resize: none;
}

a {
  text-decoration: none;
  color: #2C294B;
}
a:hover {
  text-decoration: none;
  cursor: pointer;
}

svg,
img,
picture {
  width: 100%;
  height: auto;
}

.wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.header {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1.6rem 0;
  z-index: 10;
  transition: background-color ease-in-out 0.3s;
}
@media only screen and (min-width: 1024px) {
  .header {
    padding: 2.4rem 0;
  }
}
.header.hidden {
  transform: translateY(-100%);
}
.header:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  background: #fff;
  opacity: 0;
  box-shadow: 0px 0px 20px rgba(94, 98, 120, 0.05);
  transition: all 0.3s linear;
}
.header.active {
  transition-delay: unset;
  background-color: #fff;
}
@media only screen and (min-width: 1024px) {
  .header.active {
    padding-right: 1.04rem;
  }
}
.header.active:before {
  opacity: 1;
}
.header.active .logo img:last-child {
  opacity: 1;
}
.header.active .hamburger__box {
  z-index: 2;
}
.header.active .hamburger__box-btn {
  background-color: #2C294B;
}
.header.active .hamburger__box-btn:before, .header.active .hamburger__box-btn:after {
  background-color: #2C294B;
}
@media only screen and (min-width: 1024px) {
  .header.active .nav ul li:hover a {
    color: #5A4FDB;
  }
}
.header.active .nav ul li a {
  color: #2C294B;
}
.header.active .btn.btn__header.language-switcher,
.header.active .btn.btn__header.add-course {
  background-color: rgba(90, 79, 219, 0.1);
}
@media only screen and (min-width: 1024px) {
  .header.active .btn.btn__header.language-switcher:hover,
.header.active .btn.btn__header.add-course:hover {
    background-color: #D6D5F1;
    box-shadow: 0rem 0rem 3rem rgba(94, 98, 120, 0.1);
  }
}
.header.active .btn.btn__header.language-switcher .btn__text {
  color: #2C294B;
}
.header.active .btn.btn__header.add-course .btn__text {
  color: #5A4FDB;
}
.header.header-fixed {
  transition-delay: unset;
  background-color: #fff;
}
.header.header-fixed .logo img:last-child {
  opacity: 1;
}
.header.header-fixed .hamburger__box-btn {
  background-color: #2C294B;
}
.header.header-fixed .hamburger__box-btn:before, .header.header-fixed .hamburger__box-btn:after {
  background-color: #2C294B;
}
@media only screen and (min-width: 1024px) {
  .header.header-fixed .nav ul li:hover a {
    color: #5A4FDB;
  }
}
.header.header-fixed .nav ul li a {
  color: #2C294B;
}
.header.header-fixed .btn.btn__header.language-switcher,
.header.header-fixed .btn.btn__header.add-course {
  background-color: rgba(90, 79, 219, 0.1);
}
@media only screen and (min-width: 1024px) {
  .header.header-fixed .btn.btn__header.language-switcher:hover,
.header.header-fixed .btn.btn__header.add-course:hover {
    background-color: #D6D5F1;
    box-shadow: 0rem 0rem 3rem rgba(94, 98, 120, 0.1);
  }
}
.header.header-fixed .btn.btn__header.language-switcher .btn__text {
  color: #2C294B;
}
.header.header-fixed .btn.btn__header.add-course .btn__text {
  color: #5A4FDB;
}
.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media only screen and (min-width: 1024px) {
  .header .nav__wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
    width: 65%;
    height: auto;
  }
}
.header .nav__wrap .btn__wrap {
  z-index: 2;
  display: none;
}
@media only screen and (min-width: 1024px) {
  .header .nav__wrap .btn__wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    width: auto;
    height: auto;
  }
}
.header .nav {
  display: none;
}
@media only screen and (min-width: 1024px) {
  .header .nav {
    display: block;
  }
}
.header .nav ul {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media only screen and (min-width: 1024px) {
  .header .nav ul li:hover a {
    color: #FFC700;
  }
}
@media only screen and (min-width: 1024px) {
  .header .nav ul li {
    margin-right: 2.4rem;
  }
}
@media only screen and (min-width: 1280px) {
  .header .nav ul li {
    margin-right: 4rem;
  }
}
.header .nav ul li.current-menu-item a {
  color: #5A4FDB;
  cursor: text;
}
.header .nav ul li a {
  font-weight: 600;
  font-size: 1.5rem;
  line-height: 100.4%;
  color: #fff;
}
@media only screen and (min-width: 1024px) {
  .header .nav ul li a {
    transition: all 0.3s linear;
    line-height: 1.7rem;
    font-size: 1.4rem;
  }
}
@media only screen and (min-width: 1280px) {
  .header .nav ul li a {
    line-height: 1.8rem;
    font-size: 1.5rem;
  }
}

.logo {
  display: block;
  width: 29vw;
  max-width: 14.4rem;
}
.logo img {
  height: 100%;
  display: block;
}
.logo img:last-child {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  opacity: 0;
  transition: all 0.3s linear;
}

.nav {
  display: flex;
  transition: all 0.5s linear;
}
@media only screen and (min-width: 1024px) {
  .nav {
    width: 62%;
    display: flex;
    justify-content: center;
    flex-direction: row;
    align-items: center;
  }
}
.nav ul li a {
  font-size: 1.2rem;
}
@media only screen and (min-width: 1280px) {
  .nav ul li a {
    font-size: 1.5rem;
  }
}

.btn {
  padding: 1.6rem 2.8rem;
  min-width: 64vw;
  transition: all 0.3s linear;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 0.15rem solid #5A4FDB;
  border-radius: 8.72727px;
}
@media only screen and (min-width: 1024px) {
  .btn {
    min-width: 16.5rem;
  }
  .btn:hover {
    background: #5A4FDB;
  }
  .btn:hover .btn__text {
    color: #fff;
    transition: all 0.3s linear;
  }
}
.btn .btn__text {
  font-weight: 600;
  font-size: 1.6rem;
  line-height: 1.9rem;
  color: #2C294B;
}
.btn.btn__header {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.65rem 1.2rem;
  margin-left: 3.8rem;
  min-width: unset;
  background-color: #5A4FDB;
}
@media only screen and (min-width: 1024px) {
  .btn.btn__header {
    margin-left: 2.6rem;
    padding: 1.2rem 1.5rem;
    min-width: unset;
  }
  .btn.btn__header .btn__text {
    line-height: 1.7rem;
    font-size: 1.4rem;
  }
}
@media only screen and (min-width: 1024px) {
  .btn.btn__header:hover {
    background: #4940B3;
    border-color: #4940B3;
  }
}
.btn.btn__header .btn__text {
  line-height: 1.6rem;
  font-size: 1.2rem;
  color: #fff;
}
@media only screen and (min-width: 1024px) {
  .btn.btn__header .btn__text {
    line-height: 1.7rem;
    font-size: 1.4rem;
  }
}
.btn.btn__header.language-switcher {
  margin-left: 1.6rem;
  padding: 1.1rem 1.3rem;
}
@media only screen and (min-width: 1024px) {
  .btn.btn__header.language-switcher {
    margin-left: 0.8rem;
  }
}
@media only screen and (min-width: 1280px) {
  .btn.btn__header.language-switcher {
    margin-left: 1.6rem;
  }
}
.btn.btn__header.language-switcher .btn__text {
  text-transform: uppercase;
}
@media only screen and (min-width: 1024px) {
  .btn.btn__header.language-switcher .btn__text {
    line-height: 1.5rem;
    font-size: 1.2rem;
  }
}
.btn.btn__header.language-switcher, .btn.btn__header.add-course {
  border-color: transparent;
  background-color: rgba(255, 255, 255, 0.2);
}
@media only screen and (min-width: 1024px) {
  .btn.btn__header.language-switcher:hover, .btn.btn__header.add-course:hover {
    background-color: rgba(255, 255, 255, 0.1);
  }
}
.btn.btn__header.language-switcher .btn__text, .btn.btn__header.add-course .btn__text {
  color: #fff;
}
.btn.btn__header.add-course {
  margin-left: 0;
}
@media only screen and (min-width: 1024px) {
  .btn.btn__header.add-course {
    padding: 1.2rem 1.8rem;
  }
}
@media only screen and (min-width: 1280px) {
  .btn.btn__header.add-course {
    padding: 1.1rem 2.1rem;
  }
}
.btn.btn__header.add-course .btn__text {
  line-height: 1.7rem;
  font-size: 1.4rem;
}
.btn.btn-category.active .arrow {
  transform: translateY(-0.2rem) rotate(45deg);
}
.btn.detail {
  min-width: unset;
  padding: 1.3rem 3.1rem;
  background-color: #5A4FDB;
  border-radius: 1.2rem;
}
@media only screen and (min-width: 1024px) {
  .btn.detail {
    padding-left: 2.4rem;
    padding-right: 2.4rem;
  }
  .btn.detail:hover {
    background-color: #4940B2;
  }
}
.btn.detail .btn__text {
  color: #fff;
}

.btn__wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: auto;
}

.logo__wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  z-index: 2;
}

.arrow {
  margin-left: 0.8rem;
  line-height: 0;
  font-size: 0;
  color: transparent;
  transition: all 0.3s linear;
  border: solid #fff;
  border-width: 0 0.3rem 0.3rem 0;
  display: inline-block;
  padding: 0.3rem;
  transform: rotate(-45deg);
  transition: all 0.3s linear;
}
@media only screen and (min-width: 1024px) {
  .arrow {
    margin-left: 1rem;
  }
}

.hamburger__box {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 3.2rem;
  height: 2.2rem;
  margin-left: 2.4rem;
  cursor: pointer;
  pointer-events: auto;
  transition-duration: 0.5s;
  z-index: 5;
}
@media only screen and (min-width: 1024px) {
  .hamburger__box {
    display: none;
  }
}
.hamburger__box-btn {
  position: absolute;
  width: 100%;
  height: 0.2rem;
  top: 50%;
  left: 50%;
  background: #fff;
  transform: translate(-50%, -50%);
  transition: all 0.4s linear;
  pointer-events: none;
}
.hamburger__box-btn:before, .hamburger__box-btn:after {
  content: "";
  height: 0.2rem;
  background: #fff;
  position: absolute;
  right: 0;
  transition: all 0.4s linear;
}
.hamburger__box-btn:before {
  top: -0.8rem;
  width: 100%;
}
.hamburger__box-btn:after {
  top: 0.8rem;
  width: 100%;
}
.hamburger__box.active .hamburger__box-btn {
  background: rgba(255, 255, 255, 0);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0);
  width: 2.3rem;
}
.hamburger__box.active .hamburger__box-btn:before {
  top: 0;
  transform: rotate(45deg);
  width: 2.3rem;
}
.hamburger__box.active .hamburger__box-btn:after {
  top: 0;
  width: 2.3rem;
  transform: rotate(135deg);
}

.mob__menu-wrap {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  width: 100%;
  height: 100vh;
  overflow-y: auto;
  padding: 3.2rem 2rem 12rem;
  transform: translateX(100%);
  transition: all 0.5s linear;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  background-color: #fff;
  scrollbar-color: #5A4FDB;
  scrollbar-width: thin;
  overscroll-behavior: contain;
  z-index: -1;
}
.mob__menu-wrap::-webkit-scrollbar-track {
  background: #fff;
}
.mob__menu-wrap::-webkit-scrollbar {
  width: 5px;
  background-color: #fff;
}
.mob__menu-wrap::-webkit-scrollbar-thumb {
  background-color: #5A4FDB;
  border-radius: 10px;
}
.mob__menu-wrap.active {
  transform: translateX(0);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.mob__menu-wrap .nav-mob {
  padding: 3.2rem 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: auto;
  flex-direction: column;
}
.mob__menu-wrap .nav-mob ul {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.mob__menu-wrap .nav-mob ul li {
  margin-bottom: 3.2rem;
}
.mob__menu-wrap .nav-mob ul li:last-of-type {
  margin-bottom: 0;
}
.mob__menu-wrap .nav-mob ul li a {
  font-weight: 600;
  font-size: 2.8rem;
  line-height: 110%;
  color: #2C294B;
}
.mob__menu-wrap .btn__wrap {
  z-index: 2;
}
.mob__menu-wrap .btn__wrap-course {
  margin-bottom: 8rem;
}
.mob__menu-wrap .btn.btn__header.add-course {
  padding: 1.2rem 1rem;
  width: 18rem;
}
.mob__menu-wrap .btn.btn__header.language-switcher {
  margin-left: 0;
}
.mob__menu-wrap .social {
  background: #EFEDFB;
}
.mob__menu-wrap .social__wrapper {
  margin-bottom: 2rem;
}
.mob__menu-wrap .mail-wrap {
  text-align: center;
  line-height: 171%;
  font-size: 1.4rem;
  color: #9594A5;
}
.mob__menu-wrap .mail {
  margin-left: 0.8rem;
  color: #2C294B;
  line-height: 150%;
  font-size: 1.6rem;
}

.search__form-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: auto;
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(0.5rem);
  border-radius: 2rem;
}

.search-form {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  width: 100%;
  height: auto;
  margin: 0.8rem;
  flex-direction: row;
  box-shadow: 0rem 4rem 1.6rem rgba(101, 117, 139, 0.01), 0rem 2.3rem 1.4rem rgba(101, 117, 139, 0.03), 0rem 1rem 1rem rgba(101, 117, 139, 0.04), 0rem 0.3rem 0.6rem rgba(101, 117, 139, 0.05), 0rem 0rem 0rem rgba(101, 117, 139, 0.05);
  background-color: #fff;
  border-radius: 1.2rem;
  padding: 0.7rem;
}
@media only screen and (min-width: 1024px) {
  .search-form {
    margin: 1rem;
  }
}

.search-field {
  width: 80%;
  height: auto;
  padding: 0 1.6rem;
  display: block;
}
.search-field:focus::placeholder {
  opacity: 0;
}
.search-field::placeholder {
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 1.7rem;
  color: rgba(44, 41, 75, 0.3);
  transition: all 0.3s linear;
}
@media only screen and (min-width: 1024px) {
  .search-field::placeholder {
    line-height: 1.8rem;
    font-size: 1.5rem;
  }
}
.search-field:-webkit-autofill {
  -webkit-text-fill-color: #2C294B !important;
  -webkit-animation-name: autofill;
  -webkit-animation-fill-mode: both;
  -webkit-box-shadow: 0 0 0px 100px #fff inset;
  color: #2C294B !important;
}
.search-field::-webkit-search-decoration, .search-field::-webkit-search-cancel-button, .search-field::-webkit-search-results-button, .search-field::-webkit-search-results-decoration {
  display: none;
}

.submit__btn-cont.desk {
  display: none;
}
@media only screen and (min-width: 1024px) {
  .submit__btn-cont.desk {
    display: block;
    font-weight: 700;
    font-size: 1.5rem;
    line-height: 1.8rem;
    color: #000;
  }
}
.submit__btn-cont.mob {
  display: flex;
  justify-content: center;
  align-items: center;
}
.submit__btn-cont.mob svg {
  max-width: 2.8rem;
}
@media only screen and (min-width: 1024px) {
  .submit__btn-cont.mob {
    display: none;
  }
}

.search-submit {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 5rem;
  height: 5rem;
  background-color: #FFC700;
  border-radius: 1.2rem;
  transition: all 0.3s linear;
}
@media only screen and (min-width: 1024px) {
  .search-submit {
    padding: 1.6rem 2rem;
    width: auto;
    height: auto;
    min-width: 17.4rem;
  }
  .search-submit:hover {
    background-color: #FFD84D;
  }
}

.section {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  transition: all 0.3s linear;
}
.section.transparent {
  opacity: 0;
}

.social__wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}
.social__wrapper-mob {
  margin-top: 4.8rem;
}
@media only screen and (min-width: 1024px) {
  .social__wrapper-mob {
    display: none;
  }
}
.social__wrapper-desk {
  display: none;
}
@media only screen and (min-width: 1024px) {
  .social__wrapper-desk {
    display: flex;
    margin-top: 2.8rem;
  }
}

.mail {
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 2.4rem;
  color: #fff;
  transition: all 0.3s linear;
  border-bottom: 1px solid transparent;
}
@media only screen and (min-width: 1024px) {
  .mail:hover {
    color: #FFC700;
    border-bottom-color: #FFC700;
  }
}
.mail-wrap {
  margin-bottom: 2.4rem;
}

.social {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 4.8rem;
  height: 4.8rem;
  transition: all 0.3s linear;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.2);
}
@media only screen and (min-width: 1024px) {
  .social:hover {
    background-color: #413E5D;
  }
}
.social:not(:first-child) {
  margin-left: 0.8rem;
}
.social img {
  max-width: 2rem;
}

.category__close-btn {
  width: 3.6rem;
  height: 3.6rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 8rem;
  right: 2.4rem;
  background: #F4F4F9;
  z-index: 5;
  opacity: 0;
  transition: all 0.2s linear;
  transition-delay: 0.13s;
}
@media only screen and (min-width: 1024px) {
  .category__close-btn {
    top: 10rem;
  }
}
.category__close-btn:before, .category__close-btn:after {
  display: block;
  content: "";
  width: 2.4rem;
  height: 0.2rem;
  background: #2C294B;
  border-radius: 5px;
  position: absolute;
}
.category__close-btn:before {
  transform: rotate(-45deg);
}
.category__close-btn:after {
  transform: rotate(45deg);
}

.btn-category:before {
  display: block;
  content: "";
  width: 18px;
  height: 18px;
  background: #F4F4F9;
  -webkit-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
  position: absolute;
  border-radius: 3px;
  bottom: 0;
  left: calc(50% - 9px);
  opacity: 0;
  transition: all 0.4s;
  transition-delay: 0.1s;
  z-index: -1;
}
.btn-category.active:before {
  opacity: 1;
  bottom: -127%;
}
@media only screen and (min-width: 600px) {
  .btn-category.active:before {
    bottom: -137%;
  }
}
@media only screen and (min-width: 1024px) {
  .btn-category.active:before {
    bottom: -108%;
  }
}
@media only screen and (min-width: 1280px) {
  .btn-category.active:before {
    bottom: -103%;
  }
}

.category__menu {
  position: fixed;
  left: 0;
  bottom: 0;
  top: -150vh;
  width: 100%;
  width: 100%;
  height: 100vh;
  overflow-y: auto;
  padding: 7.5rem 2rem 6rem;
  transition: all 0.5s linear;
  background-color: #F4F4F9;
  box-shadow: 0px 3.5rem 5rem rgba(94, 98, 120, 0.15);
  scrollbar-color: #5A4FDB;
  scrollbar-width: thin;
  overscroll-behavior: contain;
  z-index: 1;
}
.category__menu::-webkit-scrollbar-track {
  background: #F4F4F9;
}
.category__menu::-webkit-scrollbar {
  width: 5px;
  background-color: #F4F4F9;
}
.category__menu::-webkit-scrollbar-thumb {
  background-color: #5A4FDB;
  border-radius: 10px;
}
.category__menu.active {
  top: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.category__menu.active .category__close-btn {
  opacity: 1;
}
.category__menu .category__menu-title {
  display: block;
  padding: 0 2rem;
  font-weight: 700;
  font-size: 2rem;
  line-height: 2.4rem;
  color: #2C294B;
  transition: all 0.3s linear;
}
.category__menu .category__menu-title.open, .category__menu .category__menu-title.active, .category__menu .category__menu-title.open a, .category__menu .category__menu-title.active a {
  color: #5A4FDB;
}
.category__menu li {
  margin-bottom: 1rem;
  font-weight: 600;
  font-size: 1.4rem;
  line-height: 180%;
  color: #2C294B;
}
.category__menu-mob .category__menu-content {
  margin: 0 -2rem;
  padding-bottom: 6rem;
}
.category__menu-mob .category__menu-item {
  margin-bottom: 1.6rem;
  padding-bottom: 1.6rem;
  border-bottom: 1px solid rgba(44, 41, 75, 0.1);
}
.category__menu-mob .category__menu-title.open:after {
  transform: rotate(45deg) translateY(-50%);
  border-color: #5A4FDB;
  right: 2.4rem;
}
.category__menu-mob .category__menu-title:after {
  content: "";
  margin-left: 1.2rem;
  margin-right: 1.2rem;
  border: solid #2C294B;
  border-width: 0 0.2rem 0.2rem 0;
  display: inline-block;
  font-size: 0;
  line-height: 0;
  padding: 0.3rem;
  position: absolute;
  right: 2rem;
  top: 50%;
  transform: rotate(-45deg) translateY(-50%);
  transition: all 0.3s linear;
}
.category__menu-mob .category__menu-descr {
  margin-top: 1.6rem;
  padding-bottom: 1.2rem;
  padding-left: 3.7rem;
}
.category__menu-desk {
  bottom: auto;
  height: auto;
  max-height: 55.7rem;
}
.category__menu-desk .tabs__items {
  position: sticky;
  top: 0;
  flex-shrink: 0;
}
.category__menu-desk .tabs__items a {
  transition: all 0.3s linear;
}
@media only screen and (min-width: 1024px) {
  .category__menu-desk .tabs__items a:hover {
    color: #5A4FDB;
  }
}
.category__menu-desk .category__menu-tabs {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
}
@media only screen and (min-width: 1440px) {
  .category__menu-desk .category__menu-tabs {
    gap: 6rem;
  }
}
.category__menu-desk .category__menu-descr {
  display: none;
  columns: 2;
  column-gap: 4rem;
}
@media only screen and (min-width: 1280px) {
  .category__menu-desk .category__menu-descr {
    column-gap: 8rem;
  }
}
@media only screen and (min-width: 1440px) {
  .category__menu-desk .category__menu-descr {
    column-gap: 11.5rem;
  }
}
.category__menu-desk .category__menu-descr.active {
  display: block;
}
.category__menu-desk .category__menu-title {
  padding: 0 8rem 0 0;
  margin-bottom: 2.4rem;
  font-size: 2.4rem;
  line-height: 1.2;
}
@media only screen and (min-width: 1280px) {
  .category__menu-desk .category__menu-title {
    font-size: 2.6rem;
    padding-right: 13rem;
  }
}
@media only screen and (min-width: 1440px) {
  .category__menu-desk .category__menu-title {
    padding-right: 17rem;
    font-size: 2.8rem;
  }
}
.category__menu-desk .category__menu-title:after {
  display: block;
  content: "";
  width: 7.6rem;
  height: 0.15rem;
  background: #5A4FDB;
  position: absolute;
  top: calc(50% - 1px);
  border-radius: 2px;
  right: 0;
  opacity: 0;
  transition: all 0.3s linear;
}
@media only screen and (min-width: 1280px) {
  .category__menu-desk .category__menu-title:after {
    width: 11.6rem;
  }
}
@media only screen and (min-width: 1440px) {
  .category__menu-desk .category__menu-title:after {
    width: 15.6rem;
  }
}
.category__menu-desk .category__menu-title.active {
  color: #5A4FDB;
}
.category__menu-desk .category__menu-title.active:after {
  opacity: 1;
}
.category__menu-desk li {
  font-size: 1.5rem;
}
@media only screen and (min-width: 1024px) {
  .category__menu-desk li a {
    transition: all 0.3s linear;
  }
  .category__menu-desk li a:hover {
    color: #5A4FDB;
  }
}
@media only screen and (min-width: 1280px) {
  .category__menu-desk li {
    font-size: 1.6rem;
  }
}

.footer {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: auto;
  padding: 4rem 0;
  flex-shrink: 0;
  background-color: #2C294B;
}
.footer .content__center {
  margin-top: 4.8rem;
}
.footer p {
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 2.4rem;
  color: #9594A5;
}
.footer .logo {
  width: 18.8rem;
  max-width: none;
}
@media only screen and (min-width: 1024px) {
  .footer .logo {
    position: absolute;
    top: 0;
    left: 0;
  }
}
.footer .content__top {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
@media only screen and (min-width: 1024px) {
  .footer .content__top {
    align-items: flex-end;
    text-align: left;
  }
}
.footer .content__top .content__wrapper {
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  padding-top: 3.2rem;
}
@media only screen and (min-width: 1024px) {
  .footer .content__top .content__wrapper {
    padding-top: 0;
    width: 100%;
  }
}
.footer .content__top .wrapper {
  display: flex;
  flex-direction: column;
}
@media only screen and (min-width: 1024px) {
  .footer .content__top .wrapper {
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: flex-end;
  }
}
@media only screen and (min-width: 1024px) {
  .footer .content__top .nav__wrapper {
    display: flex;
    flex-direction: column-reverse;
    align-items: flex-end;
    width: 72%;
  }
}
@media only screen and (min-width: 1280px) {
  .footer .content__top .nav__wrapper {
    width: 66%;
    max-width: 77rem;
  }
}
.footer .description__wrapper {
  margin-top: 4.8rem;
}
@media only screen and (min-width: 1024px) {
  .footer .description__wrapper {
    text-align: right;
    margin-top: 0;
  }
}
.footer .content__bottom {
  margin-top: 2.4rem;
}
.footer .nav {
  display: flex;
  flex-direction: column;
}
@media only screen and (min-width: 1024px) {
  .footer .nav {
    margin-top: 4.1rem;
    flex-direction: row;
    width: auto;
  }
}
@media only screen and (min-width: 1024px) {
  .footer .nav .menu {
    display: flex;
    flex-direction: row;
    align-items: center;
  }
}
.footer .nav .menu li {
  margin-top: 2.4rem;
}
.footer .nav .menu li:first-of-type {
  margin-top: 0;
}
@media only screen and (min-width: 1024px) {
  .footer .nav .menu li {
    margin-top: 0;
  }
  .footer .nav .menu li:not(:first-child) {
    margin-left: 2rem;
  }
}
@media only screen and (min-width: 1024px) and (min-width: 1280px) {
  .footer .nav .menu li:not(:first-child) {
    margin-left: 3.2rem;
  }
}
@media only screen and (min-width: 1024px) {
  .footer .nav .menu li:hover a {
    color: #FFC700;
  }
}
.footer .nav .menu li a {
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 1.7rem;
  color: #fff;
  transition: all 0.3s linear;
}
@media only screen and (min-width: 1024px) {
  .footer .nav .menu li a {
    font-size: 1.2rem;
  }
}
@media only screen and (min-width: 1280px) {
  .footer .nav .menu li a {
    font-size: 1.4rem;
  }
}
.footer .social img {
  filter: brightness(0) invert(1);
}
.footer__btn {
  min-width: auto;
  max-width: 26.5rem;
  width: 100%;
  border-color: #fff;
  margin: 0 auto;
}
@media only screen and (min-width: 1024px) {
  .footer__btn {
    margin: 0;
  }
  .footer__btn:hover {
    background-color: #FFC700;
    border-color: #FFC700;
  }
  .footer__btn:hover .btn__text {
    color: #2C294B;
  }
}
.footer__btn .btn__text {
  color: #fff;
}

.term__wrapper {
  margin-top: 2.4rem;
  display: flex;
  flex-direction: column;
}
@media only screen and (min-width: 1024px) {
  .term__wrapper {
    margin-top: 0;
    flex-direction: row;
  }
}
.term__wrapper .term {
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 1.7rem;
  color: #fff;
}
@media only screen and (min-width: 1024px) {
  .term__wrapper .term {
    margin-left: 2rem;
    font-size: 1.2rem;
  }
}
@media only screen and (min-width: 1024px) {
  .term__wrapper .term {
    transition: all 0.3s linear;
  }
  .term__wrapper .term:hover {
    color: #FFC700;
  }
}
@media only screen and (min-width: 1280px) {
  .term__wrapper .term {
    margin-left: 3.2rem;
    font-size: 1.4rem;
  }
}
.term__wrapper .term:nth-child(2) {
  margin-top: 2.4rem;
}
@media only screen and (min-width: 1024px) {
  .term__wrapper .term:nth-child(2) {
    margin-top: 0;
  }
}

.copyright__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  padding-top: 2.4rem;
  border-top: 0.1rem solid rgba(255, 255, 255, 0.2);
}
@media only screen and (min-width: 1024px) {
  .copyright__wrapper {
    flex-direction: row;
  }
}

.copyright,
.made__in {
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1.7rem;
  color: rgba(255, 255, 255, 0.6);
}

.copyright {
  display: block;
  margin-top: 1.2rem;
  opacity: 0.5;
}
@media only screen and (min-width: 1024px) {
  .copyright {
    margin-top: 0;
  }
}

.made__in {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
}

.made__in-link {
  font-weight: 600;
  font-size: 1.4rem;
  line-height: 1.7rem;
  color: #FFC700;
  transition: all 0.3s linear;
}
@media only screen and (min-width: 1024px) {
  .made__in-link:hover {
    color: #fff;
  }
}

.h1 {
  font-weight: 600;
  font-size: 2.8rem;
  line-height: 3.08rem;
  color: #fff;
}
@media only screen and (min-width: 768px) {
  .h1 {
    line-height: 110%;
    font-size: 3.4rem;
  }
}
@media only screen and (min-width: 1024px) {
  .h1 {
    font-size: 4.8rem;
  }
}

.title {
  font-weight: 500;
  font-size: 2.6rem;
  line-height: 3.1rem;
  color: #2C294B;
  letter-spacing: -0.02em;
}
@media only screen and (min-width: 1024px) {
  .title {
    line-height: 3.9rem;
    font-size: 3.2rem;
  }
}

.subtitle {
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 1.7rem;
  color: #fff;
}

.text,
.text p,
.text span {
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 160%;
  color: #2C294B;
}
@media only screen and (min-width: 1024px) {
  .text,
.text p,
.text span {
    line-height: 160%;
    font-size: 1.6rem;
  }
}

.post__title {
  font-weight: 700;
  font-size: 1.8rem;
  line-height: 2.4rem;
  color: #2C294B;
}
@media only screen and (min-width: 1024px) {
  .post__title {
    line-height: 2.9rem;
    font-size: 2.4rem;
  }
}
.post__title.school__title {
  font-size: 2rem;
  font-weight: 700;
}
@media only screen and (min-width: 1024px) {
  .post__title.school__title {
    line-height: 2.4rem;
    font-size: 2rem;
  }
}
@media only screen and (min-width: 1024px) {
  .post__title.news__title {
    line-height: 2.8rem;
    font-size: 2rem;
  }
}

.sponsore__title {
  opacity: 0.5;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
  font-size: 1.3rem;
  line-height: 1.6rem;
  color: #2C294B;
}

.home .title__wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
  height: auto;
}
.home .title__wrap h1,
.home .title__wrap .title,
.home .title__wrap .subtitle {
  text-align: center;
  max-width: 61.4rem;
}

.textarea h1,
.textarea h2,
.textarea h3,
.textarea h4,
.textarea h5,
.textarea h6,
.form__agreement h1,
.form__agreement h2,
.form__agreement h3,
.form__agreement h4,
.form__agreement h5,
.form__agreement h6 {
  margin-top: 3.2rem;
  font-weight: 700;
  font-size: 1.8rem;
  line-height: 110%;
  color: #2C294B;
}
@media only screen and (min-width: 1024px) {
  .textarea h1,
.textarea h2,
.textarea h3,
.textarea h4,
.textarea h5,
.textarea h6,
.form__agreement h1,
.form__agreement h2,
.form__agreement h3,
.form__agreement h4,
.form__agreement h5,
.form__agreement h6 {
    margin-top: 4rem;
    line-height: 110%;
    font-size: 2.4rem;
  }
}
.textarea p,
.textarea span,
.textarea li,
.textarea a,
.form__agreement p,
.form__agreement span,
.form__agreement li,
.form__agreement a {
  margin-top: 1.6rem;
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 170%;
  color: #2C294B;
}
@media only screen and (min-width: 1024px) {
  .textarea p,
.textarea span,
.textarea li,
.textarea a,
.form__agreement p,
.form__agreement span,
.form__agreement li,
.form__agreement a {
    line-height: 180%;
    font-size: 1.5rem;
  }
}
.textarea ul,
.textarea ol,
.form__agreement ul,
.form__agreement ol {
  margin-top: 0.8rem;
  padding-left: 1rem;
}
@media only screen and (min-width: 1024px) {
  .textarea ul,
.textarea ol,
.form__agreement ul,
.form__agreement ol {
    margin-top: 0.4rem;
  }
}
.textarea ul,
.form__agreement ul {
  list-style: disc;
}
.textarea ol,
.form__agreement ol {
  list-style: decimal;
}
.textarea p a,
.form__agreement p a {
  margin-top: 0;
}
.textarea a,
.form__agreement a {
  color: #2771FF;
}

@media only screen and (min-width: 1024px) {
  .form__agreement {
    margin-top: 1.6rem;
  }
}
.form__agreement p,
.form__agreement span,
.form__agreement li,
.form__agreement a {
  margin-top: 2rem;
  font-weight: 400;
  font-size: 1.2rem;
  line-height: 143%;
  color: #2C294B;
}
.form__agreement a {
  color: #2771FF;
}

.slider__btn-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
}

.swiper .swiper-pagination,
.swiper .swiper-button-next,
.swiper .swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper .swiper-button-prev {
  position: static;
  top: unset;
  right: unset;
  left: unset;
  bottom: unset;
  z-index: 1;
}
.swiper .swiper-button-prev.swiper-button-lock,
.swiper .swiper-button-next.swiper-button-lock {
  display: none;
}
.swiper .swiper-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  flex-wrap: wrap;
  max-width: 22rem;
}
.swiper .swiper-pagination.swiper-pagination-bullets.swiper-pagination-horizontal {
  width: auto;
  height: auto;
}
.swiper .swiper-pagination.swiper-pagination-bullets.swiper-pagination-horizontal .swiper-pagination-bullet {
  width: 1rem;
  height: 1rem;
  margin-right: 0;
  margin-top: 1rem;
  background-color: transparent;
  border: 0.1rem solid #5A4FDB;
  transition: all 0.2s linear;
}
@media only screen and (min-width: 1024px) {
  .swiper .swiper-pagination.swiper-pagination-bullets.swiper-pagination-horizontal .swiper-pagination-bullet {
    width: 1.2rem;
    height: 1.2rem;
  }
}
.swiper .swiper-pagination.swiper-pagination-bullets.swiper-pagination-horizontal .swiper-pagination-bullet:first-child {
  margin-left: 0;
}
.swiper .swiper-pagination.swiper-pagination-bullets.swiper-pagination-horizontal .swiper-pagination-bullet:not(:first-child) {
  margin-left: 1rem;
}
.swiper .swiper-pagination.swiper-pagination-bullets.swiper-pagination-horizontal .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #5A4FDB;
}
.swiper .swiper-button-next,
.swiper .swiper-button-prev {
  width: 4.8rem;
  height: 4.8rem;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 0;
  border-radius: 1.2rem;
  background-color: rgba(90, 79, 219, 0.1);
  transition: all 0.2s linear;
}
@media only screen and (min-width: 1024px) {
  .swiper .swiper-button-next:hover,
.swiper .swiper-button-prev:hover {
    background-color: #D6D5F1;
  }
}
.swiper .swiper-button-next:after, .swiper .swiper-button-next:before,
.swiper .swiper-button-prev:after,
.swiper .swiper-button-prev:before {
  content: unset;
}
.swiper .swiper-button-next.swiper-button-disabled,
.swiper .swiper-button-prev.swiper-button-disabled {
  opacity: 1;
  box-shadow: unset;
  background-color: rgba(39, 113, 255, 0.2);
}
.swiper .swiper-button-next .arrow,
.swiper .swiper-button-prev .arrow {
  margin-left: 0;
  margin-top: 0;
  border-width: 0 0.2rem 0.2rem 0;
  padding: 0.3rem;
  border-color: #5A4FDB;
}
.swiper .swiper-button-prev .arrow {
  transform: scale(-1, 1) rotate(-45deg);
}
.swiper .swiper-button-next {
  margin-left: 0.8rem;
}

.screen-reader-response {
  display: none;
}

.wpcf7-response-output {
  display: none;
}

.subcategory {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0.4rem;
  padding: 1rem;
  border: 0.786241px solid rgba(44, 41, 75, 0.25);
  border-radius: 6.28993px;
}
@media only screen and (min-width: 1024px) {
  .subcategory {
    padding: 1.1rem 1.2rem;
    transition: all 0.3s linear;
  }
  .subcategory:hover {
    background-color: #E6E5F4;
    border-color: #E6E5F4;
  }
}
.subcategory span {
  font-weight: 500;
  font-size: 1.2rem;
  line-height: 1.5rem;
  color: #2C294B;
}
@media only screen and (min-width: 1024px) {
  .subcategory span {
    line-height: 1.7rem;
    font-size: 1.4rem;
  }
}

.rating__wrap {
  display: flex;
  align-items: center;
  flex-direction: row;
}

.rating__block {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  gap: 0.6rem;
}
.rating__block:not(:first-child) {
  margin-left: 0.6rem;
}

.star {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 1.5rem;
  height: 1.5rem;
  background-image: url("../img/icon-star-empty.svg");
  background-size: cover;
  background-repeat: no-repeat;
}
.star .fill,
.star .half {
  position: absolute;
  top: 0;
  left: 0;
  width: 1.5rem;
  height: 1.5rem;
  display: none;
  line-height: 0;
  font-size: 0;
  color: transparent;
  background-size: cover;
  background-repeat: no-repeat;
}
.star .fill.active,
.star .half.active {
  display: block;
  z-index: 2;
}
.star .fill {
  background-image: url("../img/icon-star-fill.svg");
}
.star .half {
  width: 0.85rem;
  background-image: url("../img/icon-star-half.svg");
}

.raiting__num {
  margin-left: 1rem;
  font-weight: 600;
  font-size: 1.4rem;
  line-height: 1.7rem;
  color: #2C294B;
}

.card {
  transition: all 0.2s linear;
}
.card:hover {
  box-shadow: 0rem 0rem 3rem rgba(94, 98, 120, 0.1), 0rem 0rem 2rem rgba(94, 98, 120, 0.02);
}

.raiting__num,
.card__description {
  opacity: 0.8;
}

.card__description {
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 180%;
  color: #2C294B;
  -webkit-line-clamp: 4;
  display: block;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card__link {
  z-index: 1;
  font-weight: 600;
  font-size: 1.5rem;
  line-height: 1.8rem;
  color: #5A4FDB;
}
@media only screen and (min-width: 1024px) {
  .card__link {
    transition: all 0.3s linear;
  }
  .card__link:hover {
    text-decoration: underline;
  }
}

.total__reviews {
  font-weight: 600;
  font-size: 1.6rem;
  line-height: 1.9rem;
  color: #5A4FDB;
  transition: all 0.3s linear;
  border-bottom: 2px solid transparent;
  z-index: 2;
}
@media only screen and (min-width: 1024px) {
  .total__reviews:hover {
    color: #4940B2;
    border-bottom-color: #4940B2;
  }
}

.sale__stick {
  display: none;
  position: absolute;
  top: 1rem;
  right: -5.5rem;
  padding: 0.65rem 1.5rem;
  background: linear-gradient(0deg, #FF9900, #FF9900), #fff;
  border-radius: 0.8rem;
}
.sale__stick span {
  font-weight: 600;
  font-size: 1.2rem;
  line-height: 1.5rem;
  color: #fff;
}
@media only screen and (min-width: 1024px) {
  .sale__stick {
    top: 0.8rem;
    right: unset;
    left: -0.8rem;
  }
}

[data-card=sale] .sale__stick {
  display: flex;
  justify-content: center;
  align-items: center;
}
[data-card=sale] .price-sale {
  display: block;
}
[data-card=sale] .price {
  font-weight: 500;
  font-size: 1.2rem;
  line-height: 1.92rem;
  color: #2C294B;
  opacity: 0.6;
}
@media only screen and (min-width: 1024px) {
  [data-card=sale] .price {
    line-height: 2.4rem;
    font-size: 1.5rem;
  }
}
[data-card=sale] .price::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, -50%, 0);
  width: 100%;
  height: 0.1rem;
  z-index: 2;
  background-color: #FF9900;
}
@media only screen and (min-width: 1024px) {
  [data-card=sale] .price::before {
    height: 0.15rem;
  }
}

.price__wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.price,
.price-sale {
  width: fit-content;
  height: auto;
}

.price-sale {
  display: none;
  font-weight: 700;
  font-size: 2rem;
  line-height: 2.4rem;
  color: #FF9900;
}

.price {
  font-weight: 700;
  font-size: 2rem;
  line-height: 2.4rem;
  color: #2C294B;
}

.subcategory.course {
  position: absolute;
  top: 2.8rem;
  right: 2.8rem;
  padding: 0.85rem 1.2rem;
  margin: 0;
  border-radius: 0.8rem;
  border: none;
  background-color: rgba(90, 79, 219, 0.08);
}
.subcategory.course span {
  color: #5A4FDB;
}
@media only screen and (min-width: 1024px) {
  .subcategory.course span {
    line-height: 1.5rem;
    font-size: 1.2rem;
  }
}
@media only screen and (min-width: 1024px) {
  .subcategory.course {
    top: 2.4rem;
    right: 4rem;
  }
}

.chat__icon {
  margin-right: 0.6rem;
  line-height: 0;
  font-size: 0;
  width: 1.2rem;
  height: 1rem;
  background-color: #DADADA;
  border-radius: 0.2rem;
  position: relative;
  flex-shrink: 0;
}
.chat__icon::before {
  content: "";
  display: block;
  position: absolute;
  width: 0;
  height: 0;
  right: 0;
  bottom: -0.3rem;
  border-left: 0.5rem solid transparent;
  border-right: 0.2rem solid transparent;
  border-top: 0.5rem solid #DADADA;
}

.total__reviews-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
}

.breadcrumbs__wrap {
  margin-top: 8.4rem;
  z-index: 1;
}
@media only screen and (min-width: 1024px) {
  .breadcrumbs__wrap {
    margin-top: 13.2rem;
  }
}

.rank-math-breadcrumb {
  display: flex;
}
.rank-math-breadcrumb p {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
}
.rank-math-breadcrumb p a,
.rank-math-breadcrumb p .last {
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 1.8rem;
  color: #2C294B;
}
@media only screen and (min-width: 1024px) {
  .rank-math-breadcrumb p a,
.rank-math-breadcrumb p .last {
    line-height: 2.2rem;
    font-size: 1.8rem;
  }
}
.rank-math-breadcrumb p a {
  opacity: 0.4;
}
.rank-math-breadcrumb p a:first-of-type:not(:only-of-type) + .separator {
  opacity: 0.4;
}
.rank-math-breadcrumb p .separator {
  margin-left: 1.2rem;
  margin-right: 1.2rem;
  transform: rotate(-45deg);
  border: solid #2C294B;
  border-width: 0 0.2rem 0.2rem 0;
  display: inline-block;
  font-size: 0;
  line-height: 0;
  padding: 0.26rem;
}
@media only screen and (min-width: 1024px) {
  .rank-math-breadcrumb p .separator {
    margin-left: 1.6rem;
    margin-right: 1.6rem;
  }
}

.total__services span {
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 2.6rem;
  color: #2C294B;
}

.sort {
  display: none;
  margin-right: 1.6rem;
  font-weight: 500;
  font-size: 1.3rem;
  line-height: 1.6rem;
  color: #2C294B;
  opacity: 0.5;
}
@media only screen and (min-width: 1024px) {
  .sort {
    display: inline-block;
  }
}

.sponsore__block .card__school {
  border: 0.1rem solid rgba(90, 79, 219, 0.7);
}

/* Form */
.form {
  position: relative;
}
.form__title {
  font-weight: 600;
  margin-bottom: 1.6rem;
  font-size: 3.6rem;
  line-height: 110%;
}
@media only screen and (min-width: 768px) {
  .form__title {
    font-size: 4.2rem;
  }
}
@media only screen and (min-width: 1024px) {
  .form__title {
    font-size: 4.8rem;
  }
}
.form__title-wrap {
  margin-bottom: 4rem;
}
.form__title a {
  color: #5A4FDB;
}
.form__subtitle {
  font-size: 1.4rem;
  line-height: 180%;
  color: rgba(44, 41, 75, 0.8);
}
.form__subtitle a {
  color: #5A4FDB;
  transition: all 0.3s linear;
  border-bottom: 1px solid transparent;
}
.form__subtitle a:hover {
  border-color: #5A4FDB;
}
.form__input {
  margin-bottom: 2.4rem;
  display: block;
  width: 100%;
  outline: 0;
}
.form__input .wpcf7-form-control-wrap {
  display: block;
  position: relative;
}
.form__input .wpcf7-form-control-wrap.active input,
.form__input .wpcf7-form-control-wrap.active textarea {
  border-color: rgba(44, 41, 75, 0.7);
}
.form__input .wpcf7-form-control-wrap.active input.wpcf7-not-valid,
.form__input .wpcf7-form-control-wrap.active textarea.wpcf7-not-valid {
  border-color: #E0000D;
}
.form__input .wpcf7-form-control-wrap.active + label {
  font-size: 1.2rem;
  top: -0.8rem;
  padding: 0 0.2rem;
  background: #fff;
}
.form__input input,
.form__input textarea {
  display: block;
  width: 100%;
  background: transparent;
  border: 1px solid rgba(44, 41, 75, 0.2);
  border-radius: 1.2rem;
  padding: 1.6rem;
  font-size: 1.4rem;
  line-height: 1.6rem;
  color: #2C294B;
  position: relative;
  transition: all 0.3s;
}
.form__input input.wpcf7-not-valid,
.form__input textarea.wpcf7-not-valid {
  margin-bottom: 3.2rem;
  border-color: #E0000D;
}
.form__input input {
  -webkit-box-shadow: inset 0 0 0 50px #fff;
  -webkit-text-fill-color: #2C294B;
}
.form__input textarea {
  resize: none;
  max-height: 18rem;
}
.form__input label {
  display: block;
  position: absolute;
  left: 1.6rem;
  font-size: 1.4rem;
  line-height: 1.6rem;
  top: 1.6rem;
  text-align: left;
  color: #6B6981;
  transition: 0.5s;
}
.form__input label .asterisk {
  color: #5A4FDB;
}
.form__checkbox {
  margin-bottom: 2.4rem;
  display: flex;
  align-items: flex-start;
}
.form__checkbox:last-of-type {
  margin-bottom: 4.8rem;
}
.form__checkbox-wrap {
  margin-top: 0.2rem;
  margin-right: 1.2rem;
}
.form__checkbox-input {
  position: absolute;
  z-index: -1;
  opacity: 0;
}
.form__checkbox-input:checked + .form__checkbox-label {
  background-color: #2C294B;
}
.form__checkbox-input:checked + .form__checkbox-label:before {
  opacity: 1;
}
.form__checkbox-label {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.6rem;
  height: 1.6rem;
  border: 0.1rem solid rgba(44, 41, 75, 0.3);
  background-color: transparent;
  border-radius: 0.4rem;
  cursor: pointer;
  transition: all 0.3s linear;
}
.form__checkbox-label:after {
  content: "";
  transform: rotate(45deg);
  width: 0.5rem;
  height: 0.8rem;
  border-bottom: 0.2rem solid #fff;
  border-right: 0.2rem solid #fff;
  position: absolute;
  top: calc(50% - 0.4rem);
  left: 0.5rem;
  transition: all 0.3s;
  z-index: 1;
}
.form__checkbox-text {
  text-align: left;
  font-size: 1.2rem;
  line-height: 160%;
}
@media only screen and (min-width: 1024px) {
  .form__checkbox-text {
    font-size: 1.4rem;
    line-height: 140%;
  }
}
.form__checkbox-text a {
  color: #5A4FDB;
  text-decoration: underline;
}
@media only screen and (min-width: 1024px) {
  .form__checkbox-text a:hover {
    text-decoration: none;
  }
}
.form__checkbox.error {
  margin-bottom: 3.4rem;
}
.form__checkbox.error .error-box {
  left: 0;
}
.form__submit {
  display: block;
  margin: 0 auto;
  width: auto;
  outline: 0;
  min-width: auto;
  font-size: 1.5rem;
  background: #FFC700;
  border-color: #FFC700;
  font-weight: 700;
  cursor: pointer;
  -webkit-appearance: none;
  transition: all 0.3s linear;
}
.form__submit:disabled {
  opacity: 0.5;
  cursor: initial;
}
@media only screen and (min-width: 1024px) {
  .form__submit:hover {
    background-color: #FFD84D;
    border-color: #FFD84D;
    color: #2C294B;
  }
}
.form__rating {
  margin: 4rem 0 6.4rem;
}
.form__rating-title {
  display: block;
  text-align: left;
  margin-bottom: 2rem;
  font-weight: 600;
  font-size: 16px;
  line-height: 125%;
}
.form__rating-title .asterisk {
  color: #5A4FDB;
}
.form__rating-box {
  display: flex;
  gap: 2.4rem;
  transition: all 0.3s linear;
}
.form__rating-star {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 2.8rem;
  height: 2.8rem;
  background-image: url(../img/icon-star-empty.svg);
  background-size: cover;
  background-repeat: no-repeat;
  cursor: pointer;
}
.form__rating-star .fill {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  line-height: 0;
  font-size: 0;
  color: transparent;
  background-image: url("../img/icon-star-fill.svg");
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}
.form__rating-star.enable .fill, .form__rating-star.active .fill {
  opacity: 1;
  visibility: visible;
}
.form__rating-star input {
  position: absolute;
  z-index: -1;
  opacity: 0;
}
.form__input-select {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1.6rem;
  width: 100%;
  background-color: #fff;
  border: 0.1rem solid rgba(44, 41, 75, 0.1);
  border-radius: 1.2rem;
  cursor: pointer;
  transition: all 0.3s linear;
}
.form__input-select.active span:after {
  transform: translateY(-50%) rotate(90deg);
}
.form__input-select.active .select {
  overflow-y: auto;
  max-height: 28.6rem;
}
.form__input-select.error {
  margin-bottom: 3.2rem;
  border-color: #E0000D;
}
.form__input-select .select__title {
  display: flex;
  align-items: center;
  text-align: left;
  width: 100%;
  height: auto;
  padding-right: 1.5rem;
  font-size: 1.4rem;
  line-height: 114%;
  font-weight: 400;
}
.form__input-select .select__title.default {
  color: #6B6981;
}
.form__input-select .select__title.default .asterisk {
  color: #5A4FDB;
}
.form__input-select .select__title:after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 0.4rem solid transparent;
  border-bottom: 0.4rem solid transparent;
  border-left: 0.4rem solid #2C294B;
  transition: all 0.2s linear;
}
.form__input-select .select {
  position: absolute;
  left: 0;
  bottom: -1rem;
  transform: translateY(100%);
  width: 100%;
  height: 0;
  transition: all 0.3s linear;
  background-color: #fff;
  box-shadow: 0rem 0rem 3rem rgba(94, 98, 120, 0.1);
  border-radius: 1.2rem;
  text-align: left;
  overflow: hidden;
  scrollbar-color: #5A4FDB;
  scrollbar-width: thin;
  overscroll-behavior: contain;
  z-index: 2;
}
@media only screen and (min-width: 1024px) {
  .form__input-select .select {
    max-height: 21.8rem;
  }
}
.form__input-select .select ul {
  padding: 2rem;
}
.form__input-select .select .option {
  margin-bottom: 2rem;
  padding-left: 1.3rem;
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 1.8rem;
  color: #2C294B;
  transition: all 0.2s linear;
}
.form__input-select .select .option:last-of-type {
  margin-bottom: 0;
}
.form__input-select .select .option.checked:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35rem;
  display: inline-block;
  transform: rotate(45deg);
  width: 0.5rem;
  height: 0.8rem;
  border-bottom: 0.2rem solid #2C294B;
  border-right: 0.2rem solid #2C294B;
}
.form__input-select .select::-webkit-scrollbar-track {
  background: transparent;
}
.form__input-select .select::-webkit-scrollbar {
  width: 5px;
  background-color: transparent;
}
.form__input-select .select::-webkit-scrollbar-thumb {
  background-color: #5A4FDB;
  border-radius: 10px;
}

span.wpcf7-not-valid-tip {
  position: absolute;
  font-size: 1rem;
  line-height: 1.2rem;
  top: 104%;
  color: #E0000D;
  left: 1.6rem;
  text-align: left;
  background: #fff;
}
@media only screen and (min-width: 768px) {
  span.wpcf7-not-valid-tip {
    font-size: 1.1rem;
  }
}

.wpcf7-form-control-wrap {
  display: block;
}

/* Popup */
.popup {
  width: 100%;
  height: 100%;
  overflow: auto;
  position: fixed;
  visibility: hidden;
  opacity: 0;
  top: 0;
  left: 0;
  background: rgba(244, 244, 249, 0.9);
  transition: opacity 0.5s, visibility 0.5s;
  z-index: 30;
}
.popup.active {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  visibility: visible;
  opacity: 1;
}
.popup.active .popup__content {
  transform: translateY(0);
}
.popup .bg-1 {
  bottom: -4rem;
  right: -5.8rem;
  width: 33vw;
  height: 33vw;
  max-width: 17.6rem;
  max-height: 17.6rem;
  border: 1.6rem solid rgba(90, 79, 219, 0.08);
}
@media only screen and (min-width: 768px) {
  .popup .bg-1 {
    border-width: 1rem;
  }
}
.popup .bg-2 {
  width: 3.9vw;
  height: 3.9vw;
  max-width: 2rem;
  max-height: 2rem;
  bottom: 6.1rem;
  right: 27%;
  border: 0.2rem solid #FFC700;
}
@media only screen and (min-width: 768px) {
  .popup .bg-2 {
    bottom: 10.1rem;
    right: 24%;
    border-width: 0.4rem;
  }
}
.popup .bg-3 {
  width: 6vw;
  height: 6vw;
  max-width: 3.2rem;
  max-height: 3.2rem;
  bottom: 1.4rem;
  right: 23%;
  border: 0.3rem solid #FFC700;
}
@media only screen and (min-width: 768px) {
  .popup .bg-3 {
    bottom: 2.9rem;
    right: 21%;
    border-width: 0.4rem;
  }
}
.popup .bg-4 {
  bottom: 7rem;
  left: -7.5rem;
  width: 40.5vw;
  height: 40.5vw;
  max-width: 23.8rem;
  max-height: 23.8rem;
  border: 1.2rem solid rgba(90, 79, 219, 0.08);
}
@media only screen and (min-width: 768px) {
  .popup .bg-4 {
    border-width: 1.6rem;
    bottom: -5.6rem;
    left: -11.5rem;
  }
}
.popup .bg-5 {
  width: 6vw;
  height: 6vw;
  max-width: 3.4rem;
  max-height: 3.4rem;
  top: 2.7rem;
  left: 4.1rem;
  border: 0.4rem solid #FFC700;
}
@media only screen and (min-width: 768px) {
  .popup .bg-5 {
    top: 5.9rem;
    left: 3.5rem;
  }
}
.popup-wrap {
  padding: 1.5rem 1.5rem 6rem;
  width: 100%;
}
.popup__content {
  margin: 0 auto;
  padding: 6.4rem 1.5rem 4.8rem;
  max-width: 68.4rem;
  width: 100%;
  max-height: 42rem;
  height: 100%;
  display: flex;
  align-items: center;
  flex-direction: column-reverse;
  justify-content: center;
  background: #fff;
  border-radius: 1.6rem;
  position: relative;
  text-align: center;
  box-shadow: 0rem 0rem 20px rgba(94, 98, 120, 0.02);
  transform: translateY(-40px);
  transition: transform ease 0.7s;
  overflow: hidden;
}
@media only screen and (min-width: 768px) {
  .popup__content {
    padding: 6.4rem 4rem;
  }
}
.popup__title {
  margin-bottom: 1.7rem;
  font-size: 2.8rem;
  line-height: 110%;
  font-weight: 600;
  transition: all 0.3s linear;
}
@media only screen and (min-width: 768px) {
  .popup__title {
    font-size: 3.2rem;
  }
}
@media only screen and (min-width: 968px) {
  .popup__title {
    font-size: 3.6rem;
  }
}
@media only screen and (min-width: 1024px) {
  .popup__title {
    margin-bottom: 2.4rem;
    font-size: 4.2rem;
  }
}
@media only screen and (min-width: 1280px) {
  .popup__title {
    font-size: 4.8rem;
  }
}
.popup__subtitle {
  margin-bottom: 6.4rem;
  max-width: 60rem;
  font-size: 1.5rem;
  line-height: 160%;
  text-align: center;
  position: relative;
  z-index: 2;
  transition: all 0.3s linear;
}
.popup__btn {
  padding: 1.6rem 1.8rem;
  margin: 0 auto;
  width: 19.7rem;
  background-color: #5A4FDB;
  min-width: auto;
}
@media only screen and (min-width: 1024px) {
  .popup__btn:hover {
    background-color: #4940B3;
    border-color: #4940B3;
  }
}
.popup .btn__text {
  font-size: 1.5rem;
  color: #fff;
}
.popup__close {
  width: 3.6rem;
  height: 3.6rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  cursor: pointer;
  top: 2.4rem;
  right: 2.4rem;
  transition: 0.3s;
  z-index: 5;
}
.popup__close:after, .popup__close:before {
  content: "";
  position: absolute;
  width: 2.3rem;
  height: 0.2rem;
  border-radius: 0.5rem;
  background: #2C294B;
  transition: all 1s;
}
.popup__close:after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.popup__close:before {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.popup.popup-thanks .popup__content {
  height: 42rem;
}
.popup.popup-form .popup__content {
  max-height: 65.7rem;
  max-width: 58rem;
}

#leave-popup .popup__content {
  max-height: none;
}
@media only screen and (min-width: 1024px) {
  #leave-popup .popup__content {
    max-width: 116.8rem;
  }
}
@media only screen and (min-width: 1024px) {
  #leave-popup .form__wrap {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    max-height: 40rem;
    column-gap: 4.8rem;
    margin-bottom: 5.2rem;
  }
}
@media only screen and (min-width: 1024px) {
  #leave-popup .form__input {
    width: 47%;
  }
}
@media only screen and (min-width: 1024px) {
  #leave-popup .form__input-textarea #leave-popup .form__input-email {
    margin-bottom: 0;
  }
}
@media only screen and (min-width: 1024px) {
  #leave-popup .form__input-name {
    order: 1;
  }
  #leave-popup .form__input-email {
    order: 2;
    margin-bottom: 3.2rem;
  }
  #leave-popup .form__input-textarea {
    order: 5;
    margin-bottom: 3.2rem;
  }
}
@media only screen and (min-width: 1024px) {
  #leave-popup .form__checkbox, #leave-popup .form__rating {
    width: 47%;
  }
}
@media only screen and (min-width: 1024px) {
  #leave-popup .form__checkbox {
    order: 3;
  }
  #leave-popup .form__checkbox:last-of-type {
    order: 4;
    margin-bottom: 0;
  }
}
@media only screen and (min-width: 1024px) {
  #leave-popup .form__rating {
    margin: 0;
    order: 6;
  }
}
#leave-popup .form__rating.error .form__rating-box {
  margin-bottom: 1rem;
}

#add_review .field .error-box {
  position: absolute;
  font-size: 1rem;
  line-height: 1.2rem;
  bottom: -1.6rem;
  color: #E0000D;
  left: 1.6rem;
  opacity: 0;
  transition: all 0.3s linear;
}
@media only screen and (min-width: 768px) {
  #add_review .field .error-box {
    font-size: 1.1rem;
  }
}
#add_review .field.error input,
#add_review .field.error textarea {
  margin-bottom: 3.2rem;
  border-color: #E0000D;
}
@media only screen and (min-width: 1024px) {
  #add_review .field.error input,
#add_review .field.error textarea {
    margin-bottom: 1rem;
  }
}
#add_review .field.error .error-box {
  opacity: 1;
}
@media only screen and (min-width: 1024px) {
  #add_review .form__rating {
    margin: 0;
    order: 6;
  }
}
#add_review .form__rating .error-box {
  left: 0;
}
#add_review .form__rating.error .form__rating-box {
  margin-bottom: 1rem;
}
#add_review .form__checkbox .error-box {
  left: 0;
}

#review-popup .popup__content {
  max-height: none;
}
@media only screen and (min-width: 1024px) {
  #review-popup .popup__content {
    max-width: 116.8rem;
  }
}
@media only screen and (min-width: 1024px) {
  #review-popup .form__wrap-top {
    margin-bottom: 3.2rem;
    max-height: 23rem;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    column-gap: 4.8rem;
  }
}
@media only screen and (min-width: 1024px) {
  #review-popup .form__wrap-bottom {
    margin-bottom: 5.2rem;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: flex-start;
    column-gap: 4.8rem;
  }
}
@media only screen and (min-width: 1024px) {
  #review-popup .form__input {
    width: 47%;
  }
}
@media only screen and (min-width: 1024px) {
  #review-popup .form__input-textarea, #review-popup .form__input-email {
    margin-bottom: 0;
  }
}
@media only screen and (min-width: 1024px) {
  #review-popup .form__checkbox, #review-popup .form__rating {
    width: 47%;
  }
}
@media only screen and (min-width: 1024px) {
  #review-popup .form__checkbox:last-child {
    margin-bottom: 0;
    order: 3;
  }
}
@media only screen and (min-width: 1024px) {
  #review-popup .form__rating {
    margin: 0;
    order: 2;
  }
}

#form-popup .form__subtitle {
  max-width: 38.8rem;
  margin: 0 auto;
}

#thanks-popup .popup__content {
  flex-direction: column;
}

.btn-search,
.search__btn {
  cursor: pointer;
}

.btn-search svg path, .btn-search svg line {
  transition: 0.3s;
}
@media only screen and (min-width: 1024px) {
  .btn-search:hover svg path, .btn-search:hover svg line {
    stroke-width: 1.8px;
  }
}

.ajax-search {
  width: 100%;
  max-width: 75.4rem;
  max-height: 31rem;
  overflow-x: hidden;
  overflow-y: auto;
  font-size: 1.4rem;
  position: absolute;
  top: 100%;
  background: #fff;
  box-shadow: 0px -2px 30px rgba(94, 98, 120, 0.1);
  border-radius: 1.2rem;
  opacity: 0;
  visibility: hidden;
  z-index: 100;
  transition: all 0.5s ease;
}
.ajax-search ul {
  margin: 2rem 0;
  max-height: 21.6rem;
  overflow: auto;
  scrollbar-color: #5A4FDB;
  scrollbar-width: thin;
  overscroll-behavior: contain;
}
@media only screen and (min-width: 1024px) {
  .ajax-search ul {
    margin-top: 2.4rem;
    max-height: 20.8rem;
  }
}
.ajax-search ul::-webkit-scrollbar-track {
  background: #fff;
}
.ajax-search ul::-webkit-scrollbar {
  width: 5px;
  background-color: #fff;
}
.ajax-search ul::-webkit-scrollbar-thumb {
  background-color: #5A4FDB;
  border-radius: 3.8rem;
}
.ajax-search.active {
  opacity: 1;
  visibility: visible;
}

.ajax-search__item {
  display: flex;
  margin-bottom: 2rem;
  padding: 0 2rem;
  position: relative;
  cursor: pointer;
  list-style-type: none;
  text-align: left;
}
.ajax-search__item:last-of-type {
  margin-bottom: 0;
}

.ajax-search__link {
  font-size: 1.4rem;
  line-height: 1.2;
  font-weight: 500;
  display: flex;
  align-items: flex-start;
}
@media only screen and (min-width: 1024px) {
  .ajax-search__link {
    font-size: 1.5rem;
  }
}

.ajax-search__excerpt {
  cursor: default;
}

.ajax-search__not-found {
  padding: 2rem;
  font-size: 1.4rem;
  font-weight: 500;
  color: #5A4FDB;
}
@media only screen and (min-width: 1024px) {
  .ajax-search__not-found {
    font-size: 1.5rem;
  }
}
.ajax-search__not-found:after {
  display: block;
  content: "";
  width: 1.7rem;
  height: 1.5rem;
  position: absolute;
  top: calc(50% - 0.75rem);
  right: 2rem;
  background: url("../img/icon-arrow.svg") no-repeat center/contain;
  opacity: 0.3;
}

.search .preloader {
  padding: 1rem;
  width: 100%;
  display: none;
  background: #fff;
  box-shadow: 0px -2px 30px rgba(94, 98, 120, 0.1);
  border-radius: 1.2rem;
  position: absolute;
  top: 100%;
}

.search .preloader .loader {
  width: 4rem;
  height: 4rem;
  object-fit: contain;
  margin: 0 auto;
  display: block;
}

.search-excerpt {
  background: #2C294B;
  color: #fff;
}

.search .form__reset {
  display: flex;
  margin-right: 1.6rem;
  opacity: 0;
  transition: 0.3s;
  width: 3.6rem;
  height: 3.6rem;
  align-self: center;
  cursor: pointer;
}

.search .term__name {
  margin-right: 0.6rem;
  font-size: 1.2rem;
  line-height: 1.25;
  color: #ABA9B7;
}

.search .form__reset.active {
  opacity: 1;
}

.search .view_all_results {
  padding: 2rem;
  display: block;
  color: #5A4FDB;
  box-shadow: 0px -2px 30px rgba(94, 98, 120, 0.1);
}
@media only screen and (min-width: 1024px) {
  .search .view_all_results {
    font-size: 1.5rem;
  }
}
.search .view_all_results:after {
  display: block;
  content: "";
  width: 1.7rem;
  height: 1.5rem;
  position: absolute;
  top: calc(50% - 0.75rem);
  right: 2rem;
  background: url("../img/icon-arrow.svg") no-repeat center/contain;
}

/* Btn Load */
.btn-loading {
  min-width: 20rem;
  background: #5A4FDB;
}
.btn-loading .btn__text {
  font-size: 0 !important;
}

.btn-loading:after {
  content: "";
  border: 0.2rem solid transparent;
  border-top: 0.2rem solid #fff;
  border-radius: 50%;
  width: 3rem;
  height: 3rem;
  -webkit-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
  position: absolute;
  top: calc(50% - 1.5rem);
  left: calc(50% - 1.5rem);
}

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