@charset "UTF-8";
/* fonts start */
@import url("https://fonts.googleapis.com/css2?family=Jost:wght@300;400;500;600;700&family=Anonymous+Pro:wght@400;700&display=swap");
@font-face {
  font-family: "Furore";
  src: url("../../fonts/Furore.otf") format("opentype");
}
:root {
  --anonymous: "Anonymous Pro", sans-serif;
}

/* fonts end */
/* settings start */
body {
  font-family: "Jost", sans-serif;
  color: #101010;
}

@media (min-width: 1200px) {
  .container-xxl,
.container-xl,
.container-lg,
.container-md,
.container-sm,
.container {
    max-width: 1364px;
  }
}
#preloader {
  position: fixed;
  z-index: 100;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #101010;
  display: flex;
  align-items: center;
  justify-content: center;
  --animate-duration: 0.5s;
}
#preloader .sk-chasing-dots {
  width: 6em;
  height: 6em;
  position: relative;
  margin: auto;
  text-align: center;
  animation: sk-chasing-dots-rotate 2s infinite linear;
}
#preloader .sk-chasing-dots .sk-child {
  width: 3em;
  height: 3em;
  display: inline-block;
  position: absolute;
  top: 0;
  background-color: #FF7C48;
  border-radius: 100%;
  animation: sk-chasing-dots-bounce 2s infinite ease-in-out;
}
#preloader .sk-chasing-dots .sk-dot-2 {
  top: auto;
  bottom: 0;
  animation-delay: 1s;
}
@keyframes sk-chasing-dots-rotate {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes sk-chasing-dots-bounce {
  0%, 100% {
    transform: scale(0);
  }
  50% {
    transform: scale(1);
  }
}

/* settings end */
/* elements */
.rebrain-accordion .accordion-item {
  background: transparent;
  border: 0;
  margin-bottom: 20px;
  position: relative;
}
.rebrain-accordion .accordion-item .accordion-button {
  border-radius: 0;
}
.rebrain-accordion .accordion-button {
  font-family: "Furore", sans-serif;
  background: transparent;
  border: 2px solid #2b2b2b;
  color: #eeedec;
  font-size: 1rem;
  line-height: 18px;
  letter-spacing: -0.2px;
  padding: 20px 90px 22px 27px;
  transition: all 0.3s ease;
  z-index: 2;
}
.rebrain-accordion .accordion-button br {
  display: none;
}
.rebrain-accordion .accordion-button span {
  position: relative;
  z-index: 2;
}
.rebrain-accordion .accordion-button:after {
  color: #FF7C48;
  content: ">>>";
  font-size: 1rem;
  line-height: 18px;
  position: absolute;
  right: 30px;
  top: 20px;
  top: calc(50% - 10px);
  transition: all 0.3s ease;
  z-index: 2;
  background: transparent;
  width: 29px;
}
.rebrain-accordion .accordion-button:before {
  content: "";
  background: #FF7C48;
  display: block;
  height: calc(100% + 4px);
  left: -2px;
  position: absolute;
  top: -2px;
  transition: 0.4s ease-out;
  width: 0;
}
.rebrain-accordion .accordion-button:focus {
  box-shadow: none;
}
.rebrain-accordion .accordion-button:hover:not(.accordion-button_disabled) {
  border-color: transparent;
  color: #101010;
}
.rebrain-accordion .accordion-button:hover:not(.accordion-button_disabled):before {
  width: calc(100% + 4px);
}
.rebrain-accordion .accordion-button:hover:not(.accordion-button_disabled):after {
  color: #101010;
}
.rebrain-accordion .accordion-button:not(.collapsed) {
  border-color: transparent;
  color: #101010;
}
.rebrain-accordion .accordion-button:not(.collapsed):before {
  width: calc(100% + 4px);
}
.rebrain-accordion .accordion-button:not(.collapsed):after {
  color: #101010;
}
.rebrain-accordion .accordion-button_disabled {
  cursor: auto;
}
.rebrain-accordion .accordion-button_disabled:after {
  display: none;
}
.rebrain-accordion .accordion-body {
  padding: 28px 27px 28px 27px;
  border: 2px solid #2b2b2b;
}
.rebrain-accordion .accordion-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.rebrain-accordion .accordion-list li {
  margin-bottom: 8px;
  font-size: 1rem;
  line-height: 21px;
  color: #ababab;
  position: relative;
  padding-left: 24px;
}
.rebrain-accordion .accordion-list li:before {
  content: "";
  width: 16px;
  height: 21px;
  display: inline-block;
  position: absolute;
  left: 0;
  top: 0;
  background: url("../../images/rabbitmq/icons/advantage-list-icon.svg") no-repeat center/contain;
}
.rebrain-accordion .accordion-list li:last-child {
  margin-bottom: 0;
}
.rebrain-accordion .accordion-text {
  font-weight: 400;
  font-size: 1rem;
  line-height: 21px;
  color: #ababab;
}

@media (min-width: 0px) and (max-width: 767px) {
  .rebrain-accordion .accordion-button {
    font-size: 13px;
    line-height: 15px;
    padding: 10px 110px 10px 8px;
    letter-spacing: 0;
  }
  .rebrain-accordion .accordion-button:after {
    font-size: 13px;
    line-height: 15px;
    right: 8px;
    top: calc(50% - 7px);
    width: 24px;
    height: 16px;
  }
  .rebrain-accordion .accordion-button br {
    display: inline-block;
  }
  .rebrain-accordion .accordion-item {
    margin-bottom: 10px;
  }
  .rebrain-accordion .accordion-body {
    padding: 18px 15px;
  }
  .rebrain-accordion .accordion-list li {
    font-size: 0.875rem;
  }
}
@media (min-width: 0px) and (max-width: 350px) {
  .rebrain-accordion .accordion-button {
    padding: 10px 50px 10px 8px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .rebrain-accordion .accordion-button br {
    display: inline-block;
  }
}
.small-title {
  font-family: "Furore", sans-serif;
  font-size: 1.625rem;
  line-height: 30px;
  color: #5e5e5e;
  letter-spacing: -0.5px;
  margin-bottom: 41px;
}

@media (min-width: 0px) and (max-width: 767px) {
  .small-title {
    font-size: 1.125rem;
    line-height: 21px;
    letter-spacing: -0.2px;
  }
  .small-title br {
    display: none;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .small-title br {
    display: none;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .small-title br {
    display: none;
  }
}
.actions {
  display: flex;
  justify-content: center;
  margin: 143px 0 0;
  padding-left: 36px;
}

.actions__btn_consult {
  font-family: "Furore", sans-serif;
  display: block;
  text-transform: uppercase;
  font-size: 1rem;
  line-height: 18px;
  letter-spacing: -0.01em;
  color: #ffffff;
  background-color: #101010;
  padding: 21px 34px 21px 36px;
  border: 0;
  clip-path: polygon(0% 0%, calc(100% - 4px) 0%, calc(100% - 4px) 16px, 100% calc(25% + 4px), 100% calc(75% - 4px), calc(100% - 4px) calc(100% - 16px), calc(100% - 4px) 100%, 0% 100%, 0% calc(75% + 1px), 4px calc(75% - 3px), 4px calc(25% + 3px), 0% calc(25% - 1px));
}

.actions__btn-bg_consult {
  background-color: #ffffff;
  padding: 2px;
  display: inline-block;
  text-decoration: none;
  clip-path: polygon(0% 0%, calc(100% - 4px) 0%, calc(100% - 4px) 16px, 100% calc(25% + 4px), 100% calc(75% - 4px), calc(100% - 4px) calc(100% - 16px), calc(100% - 4px) 100%, 0% 100%, 0% 75%, 4px calc(75% - 4px), 4px calc(25% + 4px), 0% 25%);
}

.actions__btn-wrapper_consult {
  position: relative;
  display: inline-block;
  margin: 0 12px 0 0;
}
.actions__btn-wrapper_consult:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #FFFF57;
  opacity: 0.6;
  display: block;
  transition: 0.3s ease;
  clip-path: polygon(0% 0%, calc(100% - 4px) 0%, calc(100% - 4px) 16px, 100% calc(25% + 4px), 100% calc(75% - 4px), calc(100% - 4px) calc(100% - 16px), calc(100% - 4px) 100%, 0% 100%, 0% 75%, 4px calc(75% - 4px), 4px calc(25% + 4px), 0% 25%);
}
.actions__btn-wrapper_consult:hover:before {
  top: 8px;
  left: 8px;
}

.actions__btn-wrapper_start {
  margin: 0 0 0 0;
  display: inline-block;
  position: relative;
}
.actions__btn-wrapper_start:hover .actions__btn-bg_start {
  background-color: #FF7C48;
  top: 8px;
  left: 8px;
}

.actions__btn-bg_start {
  background-color: #101010;
  padding: 2px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: 0.4s ease;
  clip-path: polygon(0% 0%, calc(100% - 18px) 0%, 100% 18px, 100% 100%, 0% 100%, 0% 75%, 4px calc(75% - 4px), 4px calc(25% + 4px), 0% 25%);
}
.actions__btn-bg_start::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: #101010;
  clip-path: polygon(0% 0%, calc(100% - 18px) 0%, 100% 18px, 100% 100%, 0% 100%, 0% 75%, 4px calc(75% - 4px), 4px calc(25% + 4px), 0% 25%);
}

.actions__btn_start {
  font-family: "Furore", sans-serif;
  border: 0;
  cursor: pointer;
  background-color: #ffffff;
  display: flex;
  padding: 23px 27px 23px 29px;
  border: 0;
  font-style: normal;
  font-weight: normal;
  font-size: 1rem;
  line-height: 18px;
  color: #101010;
  text-align: center;
  margin: 0;
  text-decoration: none;
  display: inline-block;
  letter-spacing: -0.1px;
  position: relative;
  transition: 0.4s ease-out;
  clip-path: polygon(0% 0%, calc(100% - 18px) 0%, 100% 18px, 100% 100%, 0% 100%, 0% 75%, 4px calc(75% - 4px), 4px calc(25% + 4px), 0% 25%);
}
.actions__btn_start:after {
  content: "";
  width: 0;
  height: 100%;
  background: #FF7C48;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  transition: 0.4s ease-out;
}
.actions__btn_start:before {
  content: "записаться на практикум >>>";
  position: relative;
  z-index: 1;
  color: #151515;
}
.actions__btn_start:hover:after {
  width: 100%;
}
.actions__btn_start:focus {
  outline: none;
}

@media (min-width: 0px) and (max-width: 767px) {
  .actions {
    margin: 19px 0 0;
    padding: 0 8px 0 0;
    flex-direction: column;
  }

  .actions__btn-wrapper_consult {
    margin: 0 0 12px;
    width: 100%;
  }

  .actions__btn-bg_consult {
    display: block;
  }

  .actions__btn_consult {
    font-size: 13px;
    line-height: 15px;
    letter-spacing: 0;
    width: 100%;
    padding: 21px 24px 24px 26px;
  }

  .actions__btn-wrapper_start {
    width: 100%;
  }

  .actions__btn_start {
    font-size: 13px;
    line-height: 15px;
    letter-spacing: 0;
    width: 100%;
    padding: 23px 43px 26px 44px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .actions {
    margin: 19px 0 0;
    padding: 0 8px 0 0;
    justify-content: flex-start;
  }

  .actions__btn_consult {
    font-size: 13px;
    line-height: 15px;
    letter-spacing: 0;
    width: 100%;
    padding: 21px 24px 24px 26px;
  }

  .actions__btn_start {
    font-size: 13px;
    line-height: 15px;
    letter-spacing: 0;
    width: 100%;
    padding: 23px 43px 26px 44px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .actions {
    margin-top: 100px;
  }
}
.white-hacking {
  display: flex;
  align-items: flex-start;
}

.white-hacking-logo {
  position: relative;
  font-family: "Furore", sans-serif;
  font-size: 6.25rem;
  line-height: 100px;
  margin: 0 0 30px 5px;
  letter-spacing: -0.03em;
  text-shadow: -3px 4px 9px rgba(255, 248, 91, 0.5);
  color: #FF7C48;
}
.white-hacking-logo span {
  position: absolute;
  left: 2px;
  top: -2px;
  z-index: 5;
  -webkit-text-fill-color: #101010;
  -webkit-text-stroke-width: 1.5px;
  -webkit-text-stroke-color: #FF7C48;
  text-shadow: none;
}

.white-hacking-label {
  font-family: "Furore", sans-serif;
  font-size: 1.625rem;
  line-height: 30px;
  color: #eeedec;
  letter-spacing: -0.01em;
  display: inline-block;
  margin: 114px 0 0 25px;
}

@media (min-width: 0px) and (max-width: 767px) {
  .white-hacking {
    flex-direction: column;
    margin-bottom: 20px;
  }

  .white-hacking-logo {
    font-size: 60px;
    line-height: 60px;
    margin: 0 0 10px;
    letter-spacing: -0.5px;
  }

  .white-hacking-label {
    margin: 0;
    font-size: 1.125rem;
    line-height: 21px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .white-hacking {
    flex-direction: column;
    margin-bottom: 30px;
  }

  .white-hacking-logo {
    margin: 0 0 10px;
  }

  .white-hacking-label {
    margin: 0;
  }
}
/* sections */
.header {
  font-family: "Work Sans", sans-serif;
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  transition: 0.3s ease;
}
.header .nav-link {
  font-family: "Furore", sans-serif;
  font-weight: normal;
  font-size: 1rem;
  line-height: 18px;
  letter-spacing: -0.01em;
  color: #5e5e5e;
  border: 1px solid #5e5e5e;
  border-left: 0;
  padding: 4px 17.5px 6px;
  transition: 0.3s ease;
}
.header .nav-link:hover {
  color: #101010;
  background: #eeedec;
  border-color: #eeedec;
}
.header .nav-link:focus {
  outline: none;
}
.header .nav-link.active {
  color: #101010;
  background: #eeedec;
  border-color: #eeedec;
}
.header .site-lang {
  border: 1px solid #5e5e5e;
}
.header .navbar-nav {
  flex-direction: row;
}
.header .dropdown-toggle:after {
  display: none;
}
.header .dropdown-toggle.show {
  color: #101010;
  background: #eeedec;
  border-color: #eeedec;
}
.header .dropdown-menu {
  border: 0;
  border-radius: 0px;
  overflow: hidden;
}
.header .dropdown-item.active,
.header .dropdown-item:active {
  background-color: #0b3777;
}
.header:after {
  background: #101010;
  content: "";
  display: block;
  height: 100%;
  position: absolute;
  z-index: -1;
  left: 0;
  top: 0;
  width: 100%;
}

.header__bar {
  padding: 15px 0;
  display: flex;
  transition: 0.2s ease;
}

.header__logo {
  border: 1px solid #5e5e5e;
  padding: 2px 17px 2px;
  height: 30px;
}

.header__right {
  display: flex;
  align-items: center;
  margin-left: auto;
}

.site-lang_dropdown-menu {
  min-width: 50px;
}

.account-link {
  font-family: "Furore", sans-serif;
  font-weight: normal;
  font-size: 1rem;
  line-height: 18px;
  letter-spacing: -0.01em;
  color: #5e5e5e;
  border: 1px solid #5e5e5e;
  padding: 4px 17px 6px;
  transition: 0.3s ease;
  text-decoration: none;
}
.account-link:hover {
  color: #101010;
  background: #eeedec;
  border-color: #eeedec;
}
.account-link:focus {
  outline: none;
}

.header-fixed .header__bar {
  padding: 10px 0;
}

.link-hide {
  display: none;
}

.greeting-mini {
  background: var(--background-primary);
  padding: 162px 0 97px 0;
}

.greeting-mini__block-mobile {
  display: none;
}

.greeting-mini__title {
  font-family: var(--furore);
  color: var(--text-primary);
  font-size: 5rem;
  line-height: 88px;
  letter-spacing: -0.03em;
  white-space: nowrap;
  margin-bottom: 18px;
}

.greeting-mini__label {
  font-family: var(--furore);
  color: var(--text-primary);
  font-weight: 400;
  font-size: 26px;
  line-height: 1.154;
  letter-spacing: -0.01em;
  margin: 0 0 0 20px;
  display: inline-block;
  vertical-align: top;
}

.greeting-mini__logo.workshop {
  background: #FF7C48;
}
.greeting-mini__logo.workshop img {
  margin: 0 17px 0 5px;
  max-width: 100%;
  max-height: 100%;
}

.greeting-mini__list {
  margin: 50px 0 101px 153px;
  color: var(--text-primary);
}

.greeting-mini__cert {
  max-width: 560px;
  margin: 118px 0 0 -15px;
}

.greeting-mini__btn {
  max-width: 442px;
  margin: 0 0 0 150px;
}
.greeting-mini__btn.primary .button-text::after {
  background-color: #FF7C48;
}
.greeting-mini__btn.primary:hover .button-bg {
  background-color: #FF7C48;
}

.greeting-mini__video {
  margin: 58px 0 0 -16px;
}

.tech {
  background: var(--background-primary);
  padding: 103px 0 99px;
}

.big-title_tech {
  margin-bottom: 50px;
}

.tech-grid {
  display: grid;
  grid-template-columns: 360px 360px auto auto;
  grid-template-areas: "first first second second" "first first third third";
  gap: 30px;
}

.tech__block {
  border: 2px solid #2b2b2b;
  padding: 30px 40px;
  display: flex;
  flex-direction: column;
}

.tech__block-title {
  font-family: var(--furore);
  color: #FF7C48;
  font-size: 80px;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}

.tech__block-text {
  font-size: 25px;
  line-height: 1.2;
  font-weight: 400;
  color: #eeedec;
  margin: 0;
}

.tech__block-subtitle {
  font-family: var(--furore);
  color: var(--additional);
  font-size: 16px;
  line-height: 18px;
  letter-spacing: -0.01em;
  text-align: right;
  position: absolute;
  top: 18px;
  right: 28px;
  margin: 0;
  max-width: 150px;
}

.tech__block_first {
  grid-area: first;
  width: 100%;
  padding: 29px 38px 48px;
  justify-content: flex-end;
}
.tech__block_first .tech__block-text {
  max-width: 495px;
  font-weight: 500;
}

.tech__block_second {
  grid-area: second;
  padding: 39px 35px 31px 28px;
  justify-content: flex-start;
  min-height: 220px;
  height: 220px;
}
.tech__block_second .tech__block-title {
  font-size: 26px;
  line-height: 30px;
  letter-spacing: -0.01em;
}
.tech__block_second .tech__block-text {
  font-size: 16px;
  line-height: 1.3;
  max-width: 386px;
}

.tech__block_third {
  grid-area: third;
  min-height: 220px;
  height: 220px;
  padding: 30px 19px 18px;
  align-items: center;
}

.what {
  background: var(--background-primary);
  padding: 100px 0 100px;
}

.what__title {
  font-family: var(--furore);
  color: var(--text-primary);
  font-weight: 400;
  font-size: 45px;
  line-height: 1;
  letter-spacing: -0.01em;
  margin-bottom: 41px;
}
.what__title span {
  color: #FF7C48;
}

.what__cards {
  display: grid;
  grid-template-columns: repeat(4, 300px);
  gap: 30px;
  max-width: 1290px;
  margin-left: 25px;
}

.what__card {
  min-height: 300px;
  display: flex;
  align-content: center;
  justify-content: center;
}
.what__card .r-card-bg {
  justify-content: flex-start;
  padding: 25px 22px 25px 12px;
  height: auto;
}

.what__card-heading {
  font-family: var(--furore);
  color: #FF7C48;
  font-size: 26px;
  line-height: 1.154;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}

.what__card-text {
  color: var(--text-primary);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.3;
}

.advantages-mini {
  padding: 117px 0 100px;
  background-color: #101010;
}

.big-title_advantages-mini {
  margin-bottom: 50px;
}

.advantages-mini__list {
  margin: 0 0 0 390px;
  padding: 0;
  list-style: none;
}
.advantages-mini__list li {
  margin-bottom: 30px;
}
.advantages-mini__list li:last-child {
  margin-bottom: 0;
}

.advantages-mini__item {
  width: 300px;
  height: 300px;
  padding: 6px 4px 6px 4px;
  margin-bottom: 40px;
}

.advantages-mini__item-wrapper {
  background: #eeedec;
  height: 100%;
  width: 100%;
  padding: 24px 12px 10px;
  display: inline-flex;
  flex-direction: column;
  clip-path: polygon(0% 6px, 80px 6px, 86px 0%, 100% 0%, 100% calc(100% - 6px), calc(100% - 80px) calc(100% - 6px), calc(100% - 86px) 100%, 0% 100%);
}

.advantages-mini__item-title {
  font-weight: 500;
  font-size: 25px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.advantages-mini__item-num {
  font-family: "Furore", sans-serif;
  margin: auto 0 0;
  font-size: 45px;
  line-height: 45px;
  -webkit-text-fill-color: #eeedec;
  -webkit-text-stroke-width: 3px;
  -webkit-text-stroke-color: #101010;
  letter-spacing: 1px;
}

.advantages-mini__item_green {
  background-color: #FF7C48;
  margin: 0;
}

.advantages-mini__item-wrapper_green {
  background-color: #101010;
  justify-content: center;
  padding-top: 13px;
}

.advantages-mini__item-title_green {
  color: #FF7C48;
  font-family: var(--furore);
  font-size: 1.625rem;
  line-height: 30px;
  text-align: center;
}

.advantages-mini__info {
  color: var(--text-secondary);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.3;
  letter-spacing: -0.02em;
  display: inline-block;
  padding: 11px 0 0;
  max-width: 430px;
}

.workshop {
  background-color: #101010;
  padding: 98px 0 38px;
}

.big-title_workshop {
  margin-bottom: 100px;
}

.workshop__subtitle {
  color: #ababab;
  font-weight: 400;
  font-size: 1rem;
  line-height: 21px;
  margin-bottom: 8px;
  position: relative;
  padding-left: 25px;
}
.workshop__subtitle::before {
  content: "";
  width: 16px;
  height: 21px;
  display: inline-block;
  position: absolute;
  left: 0;
  top: 0;
  background: url("../../images/rabbitmq/icons/orange-list-icon.svg") no-repeat 0 0/contain;
}

.workshop__subtitle_mobile {
  display: none;
}

.workshop__chapter-item {
  font-family: "Furore", sans-serif;
  font-weight: normal;
  font-size: 2.8125rem;
  line-height: 45px;
  letter-spacing: -0.5px;
  -webkit-text-fill-color: #101010;
  -webkit-text-stroke-width: 1.5px;
  -webkit-text-stroke-color: var(--text-primary);
  margin-bottom: 50px;
  position: relative;
  padding-top: 28px;
}
.workshop__chapter-item::before {
  content: "";
  display: block;
  height: 8px;
  width: 100%;
  background: #2b2b2b;
  position: absolute;
  top: 0;
  left: 0;
  clip-path: polygon(0% 0%, 100% 0%, 100% 2px, 88px 2px, 80px 100%, 0% 100%);
}
.workshop__chapter-item.filled {
  -webkit-text-fill-color: var(--text-primary);
  -webkit-text-stroke-width: 0;
}
.workshop__chapter-item span {
  font-family: var(--anonymous);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.3;
  letter-spacing: -0.02em;
  display: block;
  color: #ABABAB;
  margin: 20px 0 0;
  padding-left: 24px;
  position: relative;
}
.workshop__chapter-item span::before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 21px;
  background: url("../../images/rabbitmq/icons/red-icon.png") no-repeat 0 0;
  position: absolute;
  left: -1px;
  top: 0;
}

.program {
  background-color: #101010;
  padding: 70px 0 63px;
}

.big-title_program {
  margin-bottom: 50px;
}

.program__subtitle {
  font-family: var(--furore);
  color: var(--text-primary);
  font-size: 45px;
  line-height: 1;
  letter-spacing: -0.01em;
  margin-bottom: 50px;
}
.program__subtitle span {
  color: #FFFF57;
}

.program__accordion .accordion-button:after {
  color: #FF7C48;
}
.program__accordion .accordion-button::before {
  background-color: #FF7C48;
}

.program__info {
  font-weight: 400;
  font-size: 25px;
  line-height: 1.2;
  margin: 40px 0 50px;
  color: #ffffff;
  letter-spacing: -0.03em;
  max-width: 830px;
}
.program__info span {
  display: block;
  margin-bottom: 10px;
}
.program__info span:last-child {
  margin-bottom: 0;
}

.small-title__program {
  color: #FF7C48;
  letter-spacing: -0.01em;
}

.reviews {
  padding: 139px 0 83px;
  background-color: #101010;
}

.reviews__title {
  font-family: "Furore", sans-serif;
  font-size: 80px;
  line-height: 88px;
  letter-spacing: -2.5px;
  margin-bottom: 80px;
  color: #eeedec;
}

.reviews__block {
  width: 300px;
  height: 300px;
  padding: 6px 4px;
  background-color: #2b2b2b;
  margin-bottom: 40px;
}

.reviews__block-bg {
  width: 100%;
  height: 100%;
  background-color: #101010;
  padding: 24px 15px 8px 11px;
  display: inline-flex;
  flex-direction: column;
  justify-content: space-between;
  clip-path: polygon(0% 6px, 80px 6px, 86px 0%, 100% 0%, 100% calc(100% - 6px), calc(100% - 80px) calc(100% - 6px), calc(100% - 86px) 100%, 0% 100%);
}

.reviews__block-text {
  font-weight: 500;
  font-size: 1.5625rem;
  line-height: 30px;
  color: #ababab;
  margin: 0;
}

.reviews__block-num {
  font-family: "Furore", sans-serif;
  font-size: 45px;
  line-height: 100%;
  margin: 0;
  letter-spacing: -0.5px;
  -webkit-text-fill-color: #101010;
  -webkit-text-stroke-width: 2.5px;
  -webkit-text-stroke-color: #ff5757;
}

/* authors */
.authors {
  padding: 112px 0 90px;
  background-color: #101010;
}

.authors__title {
  font-family: "Furore", sans-serif;
  font-weight: normal;
  font-size: 1.625rem;
  line-height: 30px;
  letter-spacing: -0.01em;
  color: #5e5e5e;
}

.authors__company-title {
  font-family: "Furore", sans-serif;
  letter-spacing: -0.01em;
  font-weight: normal;
  font-size: 1.625rem;
  line-height: 30px;
  color: #6aec6a;
  margin-bottom: 18px;
}

.authors__company-text {
  font-weight: normal;
  font-size: 1rem;
  line-height: 21px;
  color: #ababab;
  max-width: 291px;
  margin-bottom: 10px;
}
.authors__company-text span {
  color: #eeedec;
}

.comment {
  background-color: #101010;
  padding: 100px 0 100px;
}

.big-title_comment {
  margin-bottom: 82px;
}

.comment__container {
  display: flex;
  flex-wrap: wrap;
}

.comment__item {
  color: #faf9f8;
  padding: 0;
  margin: 0 40px 28px 0;
  position: relative;
  max-width: 400px;
  border: 2px solid #2b2b2b;
  padding: 29px 16px 28px 14px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.comment__item-title {
  font-family: "Furore", sans-serif;
  font-weight: normal;
  font-size: 1.625rem;
  line-height: 30px;
  letter-spacing: -0.01em;
  line-height: 30px;
  color: #5e5e5e;
  margin-bottom: 12px;
}

.comment__item-job {
  font-family: "Furore", sans-serif;
  color: #FF7C48;
  font-weight: normal;
  font-size: 1rem;
  line-height: 18px;
  letter-spacing: -0.01em;
  margin: 0 0 4px;
}

.comment__item-nick {
  font-family: "Furore", sans-serif;
  color: #eeedec;
  font-weight: normal;
  font-size: 1rem;
  line-height: 18px;
  letter-spacing: -0.01em;
  margin: 0 0 20px;
}

.comment__item-text {
  font-family: "Jost", sans-serif;
  font-weight: normal;
  font-size: 16px;
  line-height: 21px;
  transition: max-height 0.35s ease-out;
  max-height: 106px;
  margin: 0 0 47px 0;
  letter-spacing: 0;
  color: #ababab;
  overflow: hidden;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  -webkit-line-clamp: 4;
  display: -webkit-box;
}
.comment__item-text.active {
  -webkit-line-clamp: unset;
  max-height: 1000px;
  display: list-item;
}
.comment__item-text.active + .comment__item-btn:before {
  content: "СКРЫТЬ";
}
.comment__item-text.active + .comment__item-btn:after {
  content: "<<<";
  margin-left: 8px;
}

.comment__item-btn {
  font-family: "Furore", sans-serif;
  color: #ffffff;
  font-style: normal;
  font-weight: normal;
  font-size: 1rem;
  line-height: 18px;
  background-color: transparent;
  border: 0;
  align-items: center;
  padding: 0;
  margin: auto 0 0 0;
  text-transform: uppercase;
  transition: color 0.3s ease;
  letter-spacing: -0.3px;
}
.comment__item-btn:hover {
  color: #FF7C48;
}
.comment__item-btn:before {
  content: "читать полный отзыв";
}
.comment__item-btn:after {
  content: ">>>";
  margin-left: 8px;
}
.comment__item-btn:focus {
  outline: none;
}

.comment__more-btn {
  font-family: "Furore", sans-serif;
  background: #101010;
  border: 0;
  width: 100%;
  max-width: 100%;
  display: block;
  font-weight: normal;
  font-size: 1rem;
  line-height: 18px;
  color: #fff;
  letter-spacing: 0.3px;
  padding: 21px 40px;
  position: relative;
  transition: 0.4s ease-out;
  clip-path: polygon(4px 0%, calc(100% - 4px) 0%, calc(100% - 4px) 16px, 100% 20px, 100% calc(100% - 20px), calc(100% - 4px) calc(100% - 16px), calc(100% - 4px) 100%, 4px 100%, 4px calc(100% - 16px), 0% calc(100% - 20px), 0% 20px, 4px 16px);
}
.comment__more-btn:before {
  content: "СКРЫТь <<<";
  position: relative;
  z-index: 2;
}
.comment__more-btn:after {
  content: "";
  width: 0%;
  height: 100%;
  background: #101010;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  transition: 0.4s ease-out;
}
.comment__more-btn.collapsed:before {
  content: "показать все отзывы о практикуме >>>";
}
.comment__more-btn:focus {
  outline: none;
}

.comment__more-btn-wrapper {
  margin: 0 0 0 150px;
  position: relative;
  margin: 22px 0 0 0;
  max-width: 830px;
  display: block;
}
.comment__more-btn-wrapper:hover .comment__more-btn-hover {
  top: 8px;
  left: 8px;
}

.comment__more-btn-bg {
  padding: 2px;
  transition: 0.4s ease-out;
  background-color: #ffffff;
  display: block;
  width: 100%;
  position: relative;
  clip-path: polygon(4px 0%, calc(100% - 4px) 0%, calc(100% - 4px) 16px, 100% 20px, 100% calc(100% - 20px), calc(100% - 4px) calc(100% - 16px), calc(100% - 4px) 100%, 4px 100%, 4px calc(100% - 16px), 0% calc(100% - 20px), 0% 20px, 4px 16px);
}
.comment__more-btn-bg:hover .comment__more-btn:after {
  width: 100%;
}

.comment__more-btn-hover {
  background-color: #FFFF57;
  opacity: 0.6;
  padding: 2px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: 0.4s ease;
  clip-path: polygon(4px 0%, calc(100% - 4px) 0%, calc(100% - 4px) 16px, 100% 20px, 100% calc(100% - 20px), calc(100% - 4px) calc(100% - 16px), calc(100% - 4px) 100%, 4px 100%, 4px calc(100% - 16px), 0% calc(100% - 20px), 0% 20px, 4px 16px);
}

.authors {
  padding: 112px 0 50px;
  background-color: #101010;
}

.big-title_authors {
  margin-bottom: 80px;
}

.authors__item {
  margin-bottom: 50px;
  display: flex;
}

.authors__item_second {
  padding-left: 35px;
}

.authors__item-img {
  background: var(--background-secondary);
  min-width: 240px;
  width: 240px;
  height: 340px;
  margin-right: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.authors__item-img img {
  max-width: 100%;
  max-height: 100%;
}

.authors__item-info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.authors__item-img_icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #2b2b2b;
}

.authors__item-title {
  font-family: "Furore", sans-serif;
  font-size: 1.625rem;
  line-height: 30px;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
  color: #eeedec;
}
.authors__item-title span {
  color: #FF7C48;
  margin-bottom: 4px;
  margin-top: 1px;
  display: inline-block;
}

.authors__item-text {
  color: var(--text-primary);
  font-size: 16px;
  line-height: 1.3;
  letter-spacing: -0.02em;
  margin: 0 0 -5px;
  max-width: 318px;
  margin-bottom: auto;
}

.authors__item-text_fevlake {
  max-width: 250px;
}

.authors__item-text_ozerov {
  max-width: 240px;
}

.authors__item-exp {
  font-family: "Furore", sans-serif;
  color: #eeedec;
  font-size: 1rem;
  line-height: 18px;
  letter-spacing: -0.01em;
  margin: auto 0 0;
}
.authors__item-exp span {
  color: #ababab;
  display: inline-block;
  margin-top: 4px;
}

.price-mini {
  background-color: #101010;
  padding: 110px 0 50px;
}

.price-mini__title {
  font-family: "Furore", sans-serif;
  font-size: 5rem;
  line-height: 88px;
  letter-spacing: -0.03em;
  color: #eeedec;
  white-space: nowrap;
  margin-bottom: 19px;
}

.price-mini__block {
  margin: 0 0 89px 150px;
}

.price-mini__price-title {
  font-family: "Furore", sans-serif;
  color: #ababab;
  letter-spacing: -0.01em;
  font-weight: normal;
  font-size: 45px;
  line-height: 45px;
  margin-bottom: 10px;
}

.price-mini__price-cost {
  font-family: "Furore", sans-serif;
  font-weight: normal;
  font-size: 2.8125rem;
  line-height: 45px;
  color: #eeedec;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
}
.price-mini__price-cost span {
  text-decoration: line-through;
  color: #5e5e5e;
  margin-left: 10px;
  font-size: 1.625rem;
  line-height: 30px;
}

.price-mini__lifetime {
  font-family: "Furore", sans-serif;
  font-weight: normal;
  font-size: 1.625rem;
  line-height: 30px;
  color: #FF7C48;
  letter-spacing: -0.01em;
  margin: 0 0 77px 193px;
}

.price-mini__wrapper {
  width: 800px;
  margin: 0 0 60px 150px;
}

.price-mini__logo.workshop {
  padding: 0.5px 29px 11.5px 32px;
  position: relative;
  background: #FF7C48;
}
.price-mini__logo.workshop img {
  margin-right: 18px;
}

.price-mini__btn {
  max-width: 442px;
}
.price-mini__btn.primary .button-text::after {
  background-color: #FF7C48;
}
.price-mini__btn.primary:hover .button-bg {
  background-color: #FF7C48;
}

.price-mini__logo-icon {
  display: inline-block;
  width: 50px;
  height: 50px;
  background: url("../../images/rabbitmq/icons/praktik-logo.svg") no-repeat center/contain;
  margin-right: 18px;
  margin-bottom: 4px;
}

.price-mini__logo-label {
  font-family: "Furore", sans-serif;
  font-size: 1.625rem;
  line-height: 30px;
  color: #eeedec;
  letter-spacing: -0.01em;
  display: inline-block;
  vertical-align: top;
  margin: 3px 0 0 14px;
}

.price-mini__cerf {
  margin: 168px 0 26px -16px;
  display: block;
  max-width: 560px;
}

.price-mini__cerf_mobile {
  display: none;
}

.price-mini__carf-info {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.3;
  color: var(--text-secondary);
  margin-left: -16px;
}

.footer {
  background: #101010;
  padding: 0 0 30px;
}

.footer-divider {
  height: 8px;
  position: relative;
  margin-bottom: 42px;
}
.footer-divider:after {
  content: "";
  display: block;
  height: 8px;
  width: 100%;
  background: #2b2b2b;
  position: absolute;
  top: 0;
  left: 0;
  clip-path: polygon(0% 0%, 100% 0%, 100% 2px, 88px 2px, 80px 100%, 0% 100%);
}

.footer__title {
  font-family: "Furore", sans-serif;
  color: #5e5e5e;
  letter-spacing: -0.01em;
  font-weight: normal;
  font-size: 1.625rem;
  line-height: 30px;
  margin: 9px 0 20px;
}

.footer__contact {
  margin: 0 0 80px;
  padding: 107px 0 0;
  list-style: none;
}
.footer__contact li {
  margin-bottom: 20px;
}
.footer__contact li:last-child {
  margin-bottom: 0;
}
.footer__contact a {
  font-family: "Furore", sans-serif;
  font-weight: normal;
  font-size: 80px;
  line-height: 88px;
  letter-spacing: -0.03em;
  text-decoration: none;
  -webkit-text-fill-color: #101010;
  -webkit-text-stroke-width: 2px;
  -webkit-text-stroke-color: #fff;
  transition: all 0.3s ease;
  position: relative;
  white-space: nowrap;
}
.footer__contact a:hover {
  -webkit-text-stroke-color: rgba(255, 255, 255, 0);
}
.footer__contact a:hover:after {
  opacity: 1;
}
.footer__contact a:after {
  -webkit-text-fill-color: #fff;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  transition: 0.3s ease;
}

.telegram-text:after {
  content: "TELEGRAM";
}

.facebook-text:after {
  content: "FACEBOOK";
}

.mail-text:after {
  content: "info@rebrainme.com";
}

.phone-text:after {
  content: "+7 499 116-34-68";
}

.footer__links {
  padding: 0;
  margin: 0 0 17px -16px;
  list-style: none;
}
.footer__links li {
  margin-bottom: 3px;
}
.footer__links li:last-child {
  margin-bottom: 0;
}
.footer__links a {
  color: #ababab;
  text-decoration: none;
  font-weight: normal;
  font-size: 1rem;
  line-height: 21px;
  letter-spacing: -0.02em;
  transition: 0.3s ease;
}
.footer__links a:hover {
  color: #FF7C48;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin: 0;
}

.copyright {
  color: #5e5e5e;
  font-weight: normal;
  font-size: 1rem;
  line-height: 21px;
  margin: 0 0 211px -16px;
}

.requisites {
  color: #5e5e5e;
  font-weight: normal;
  font-size: 1rem;
  line-height: 21px;
  margin: 0 0 0 -16px;
}

.rebrain-modal .modal-dialog {
  max-width: 560px;
}
.rebrain-modal .modal-content {
  border: 2px solid #eeedec;
  background-color: #101010;
  border-radius: 0;
}
.rebrain-modal .modal-header {
  border: 0;
  padding: 48px 28px 20px;
  flex-direction: column;
}
.rebrain-modal .modal-title {
  font-family: "Furore", sans-serif;
  text-align: center;
  color: #eeedec;
  font-size: 45px;
  line-height: 45px;
  letter-spacing: -0.01em;
}
.rebrain-modal .modal-subtitle {
  color: #ababab;
  font-size: 25px;
  line-height: 25px;
  font-weight: 400;
  letter-spacing: -0.01em;
  text-align: center;
  margin: 20px 0 0;
}
.rebrain-modal .btn-close {
  position: absolute;
  top: 18px;
  right: 18px;
  background: url("../../images/rabbitmq/icons/close-icon.svg") no-repeat center;
  opacity: 1;
}
.rebrain-modal .btn-close:focus {
  box-shadow: none;
}
.rebrain-modal .modal-body {
  padding: 20px 28px 32px;
}
.rebrain-modal .modal-input-group {
  margin-bottom: 20px;
}
.rebrain-modal .modal-input-group label {
  font-family: "Furore", sans-serif;
  width: 100%;
  color: #ababab;
  font-size: 1rem;
  line-height: 18px;
  letter-spacing: -0.01em;
  padding: 6px 10px;
}
.rebrain-modal .modal-input-group .error-message {
  color: #FF5757;
}
.rebrain-modal .modal-input-group .error-message + .modal-input {
  color: #FF5757;
}
.rebrain-modal .modal-input-group .success-message {
  color: #FF7C48;
}
.rebrain-modal .modal-input {
  font-weight: 400;
  font-size: 1rem;
  line-height: 21px;
  color: #ffffff;
  border: 0;
  background-color: #101010;
  padding: 6px 8px 5px;
  border: 2px solid #2b2b2b;
  width: 100%;
}
.rebrain-modal .modal-input:focus {
  outline: none;
}
.rebrain-modal .modal-step {
  font-family: "Furore", sans-serif;
  font-size: 16px;
  line-height: 18px;
  letter-spacing: -0.01em;
  color: #2b2b2b;
  position: absolute;
  display: inline-block;
  top: 18px;
  left: 18px;
}
.rebrain-modal .modal-back {
  font-family: "Furore", sans-serif;
  font-size: 16px;
  line-height: 18px;
  letter-spacing: -0.01em;
  color: #2b2b2b;
  position: absolute;
  display: inline-block;
  top: 18px;
  right: 18px;
  cursor: pointer;
  transition: color 0.3s ease;
}
.rebrain-modal .modal-back:hover {
  color: #FF7C48;
}
.rebrain-modal .hide {
  display: none;
}
.rebrain-modal .modal-social {
  padding: 0;
  list-style: none;
  display: flex;
  justify-content: center;
}
.rebrain-modal .modal-social li {
  margin: 0 10px;
  width: 100%;
  max-width: 220px;
}
.rebrain-modal .modal-social li.single {
  max-width: 250px;
}
.rebrain-modal .modal-social li.single a {
  padding: 76px 0 76px;
}
.rebrain-modal .modal-social a {
  border: 2px solid #ababab;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-family: "Furore", sans-serif;
  text-decoration: none;
  color: #ababab;
  font-size: 26px;
  line-height: 30px;
  letter-spacing: -0.01em;
  text-align: center;
  width: 100%;
  padding: 58px 0 38px;
  transition: 0.3s ease;
  cursor: pointer;
}
.rebrain-modal .modal-social a:hover {
  color: #FF7C48;
  border-color: #FF7C48;
}
.rebrain-modal .modal-social a:hover .modal-step__icon svg rect.hovered,
.rebrain-modal .modal-social a:hover .modal-step__icon svg circle.hovered,
.rebrain-modal .modal-social a:hover .modal-step__icon svg path.hovered {
  fill: #FF7C48;
}
.rebrain-modal .modal-step__icon {
  height: 100px;
  width: 100px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.rebrain-modal .modal-step__icon svg rect.hovered,
.rebrain-modal .modal-step__icon svg circle.hovered,
.rebrain-modal .modal-step__icon svg path.hovered {
  transition: 0.3s ease;
}

.step-two-modal .modal-header {
  padding-top: 98px;
}
.step-two-modal .modal-body {
  padding-bottom: 113px;
}

.rebrain-btn_modal {
  width: 99%;
  margin-top: 56px;
  margin-bottom: 24px;
}
.rebrain-btn_modal .rebrain-btn__btn::before {
  content: "далее >>>";
}

.modal-checkbox input {
  position: absolute;
  z-index: -1;
  opacity: 0;
  margin: 10px 0 0 20px;
}
.modal-checkbox .checkbox__text {
  position: relative;
  padding: 0 0 0 42px;
  cursor: pointer;
  font-size: 16px;
  line-height: 21px;
  color: #ababab;
}
.modal-checkbox .checkbox__text a {
  color: #ababab;
}
.modal-checkbox .checkbox__text a:hover {
  text-decoration: none;
}
.modal-checkbox .checkbox__text:before {
  content: "";
  position: absolute;
  top: calc(50% - 16px);
  left: 0;
  width: 32px;
  height: 32px;
  background: url("../../images/rabbitmq/icons/checkbox-bg.svg") no-repeat center;
  transition: 0.2s;
}
.modal-checkbox .checkbox__text:after {
  content: "";
  position: absolute;
  top: calc(50% - 10px);
  left: 6px;
  width: 20px;
  height: 20px;
  background: #fff;
  opacity: 0;
  clip-path: polygon(0 0, calc(100% - 5px) 0, 100% 5px, 100% 100%, 0 100%);
  transition: 0.2s;
}
.modal-checkbox input:checked + .checkbox__text:after {
  opacity: 1;
}

.modal-loader {
  background-color: #101010;
  position: fixed;
  z-index: 150;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  display: none;
}

.modal-loader.visible {
  display: flex;
}

.modal-loader__title {
  font-family: "Furore", sans-serif;
  font-size: 100px;
  line-height: 100px;
  text-align: center;
  letter-spacing: -0.03em;
  -webkit-text-fill-color: #101010;
  -webkit-text-stroke-width: 1.5px;
  -webkit-text-stroke-color: #eeedec;
  position: absolute;
}
.modal-loader__title:after {
  content: ".";
  animation: dotsAnim 3s ease infinite;
  position: absolute;
}

@keyframes dotsAnim {
  0% {
    content: ".";
  }
  33% {
    content: "..";
  }
  66% {
    content: "...";
  }
}
@media (min-width: 0px) and (max-width: 767px) {
  .rebrain-modal .modal-title {
    font-size: 28px;
    line-height: 28px;
  }
  .rebrain-modal .modal-subtitle {
    font-size: 18px;
    line-height: 21px;
    margin-top: 10px;
  }
  .rebrain-modal .modal-header {
    padding: 48px 18px 20px;
  }
  .rebrain-modal .modal-body {
    padding: 20px 18px 20px;
  }
  .rebrain-modal .modal-back {
    font-size: 14px;
    line-height: 16px;
  }
  .rebrain-modal .modal-step {
    font-size: 14px;
    line-height: 16px;
  }
  .rebrain-modal .modal-social {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .rebrain-modal .modal-social li {
    margin: 0 0 15px;
  }
  .rebrain-modal .modal-social a {
    padding: 28px 0 28px;
  }

  .rebrain-btn_modal {
    margin-top: 30px;
  }

  .modal-checkbox .checkbox__text {
    font-size: 14px;
  }

  .modal-loader svg {
    max-width: 250px;
  }

  .modal-loader__title {
    font-size: 40px;
    line-height: 50px;
  }
}
.learned {
  background-color: #101010;
  padding: 50px 0 91px;
}

.learned__title {
  font-family: "Furore", sans-serif;
  font-size: 45px;
  line-height: 1;
  color: var(--text-primary);
  letter-spacing: -0.01em;
  font-weight: normal;
  margin-bottom: 81px;
}
.learned__title span {
  color: #FF7C48;
}

.small-title__learned {
  margin: 10px 0 0;
}

.learned__item {
  position: relative;
  font-size: 25px;
  line-height: 1.2;
  font-weight: 500;
  margin-bottom: 50px;
  padding: 28px 10px 0 0;
  color: var(--text-primary);
}
.learned__item:before {
  content: "";
  display: block;
  height: 8px;
  width: 100%;
  background: #2b2b2b;
  position: absolute;
  top: 0;
  left: 0;
  clip-path: polygon(0 0, 100% 0, 100% 2px, 88px 2px, 80px 100%, 0 100%);
}

.learned__item_indent {
  margin-top: 9px;
}

.learned__mastering {
  font-family: "Furore", sans-serif;
  color: #FFFF57;
  font-size: 26px;
  line-height: 1.154;
  letter-spacing: -0.01em;
}

.learned__masterings {
  padding-top: 32px;
}

.learned__block {
  margin-bottom: 30px;
}

.learned__subtitle {
  color: var(--text-secondary);
  font-family: var(--furore);
  font-size: 26px;
  line-height: 1.154;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
}

.learned__text {
  color: var(--text-primary);
  font-weight: 500;
  font-size: 25px;
  line-height: 1.2;
  max-width: 660px;
  margin-bottom: 9px;
}
.learned__text span {
  color: #FF7C48;
}

/* blocks */
.marquee {
  width: 100%;
  height: 120px;
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  padding-bottom: 7px;
  color: #5e5e5e;
  background: url("../../images/rabbitmq/coming-soon-line.png") repeat-x 0 43px;
  background-color: #fff;
  animation: marquee 8s linear infinite;
}
.marquee span {
  color: #101010;
}

@keyframes marquee {
  0% {
    background-position: 0 43px;
  }
  100% {
    background-position: -2441px 43px;
  }
}
@media (min-width: 0px) and (max-width: 767px) {
  .marquee {
    height: 80px;
    background: url("../../images/rabbitmq/coming-soon-line-mobile.png") repeat-x 0 31px;
    background-color: #fff;
    animation: marquee 8s linear infinite;
  }

  @keyframes marquee {
    0% {
      background-position: 0 31px;
    }
    100% {
      background-position: -1641px 31px;
    }
  }
}
.cooki {
  border: 2px solid #eeedec;
  border-bottom: 0;
  background-color: #101010;
  padding: 29px 28px 22px;
  position: fixed;
  z-index: 50;
  bottom: 0;
  right: 150px;
  width: 560px;
  transform: translateY(0);
  animation: animCoo 0.5s linear;
}

@keyframes animCoo {
  0% {
    transform: translateY(100%);
  }
  100% {
    transform: translateY(0);
  }
}
.cooki__title {
  font-family: "Furore", sans-serif;
  font-size: 45px;
  line-height: 45px;
  margin-bottom: 11px;
  letter-spacing: -0.01em;
  color: #eeedec;
}

.cooki__text {
  color: #ababab;
  font-size: 1rem;
  line-height: 21px;
  max-width: 480px;
  margin-bottom: 30px;
}

.cooki__btns {
  display: flex;
}

.cooki__yes {
  margin: 0 12px 0 0;
  display: inline-block;
  position: relative;
}
.cooki__yes:hover .cooki__yes-bg {
  background-color: #FF7C48;
  top: 8px;
  left: 8px;
}

.cooki__yes-bg {
  background-color: #101010;
  padding: 2px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: 0.4s ease;
  clip-path: polygon(0% 0%, 100% 0%, 100% 25%, calc(100% - 4px) calc(25% + 4px), calc(100% - 4px) calc(75% - 4px), 100% 75%, 100% 100%, 16px 100%, 0% calc(100% - 16px));
}
.cooki__yes-bg::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: #101010;
  clip-path: polygon(0% 0%, 100% 0%, 100% 25%, calc(100% - 4px) calc(25% + 4px), calc(100% - 4px) calc(75% - 4px), 100% 75%, 100% 100%, 16px 100%, 0% calc(100% - 16px));
}

.cooki__yes-btn {
  font-family: "Furore", sans-serif;
  border: 0;
  cursor: pointer;
  background-color: #ffffff;
  display: flex;
  padding: 23px 33px 23px 34px;
  border: 0;
  font-style: normal;
  font-weight: normal;
  font-size: 1rem;
  line-height: 18px;
  color: #101010;
  text-align: center;
  margin: 0;
  text-decoration: none;
  display: inline-block;
  letter-spacing: -0.1px;
  position: relative;
  transition: 0.4s ease-out;
  width: 242px;
  clip-path: polygon(0% 0%, 100% 0%, 100% 25%, calc(100% - 4px) calc(25% + 4px), calc(100% - 4px) calc(75% - 4px), 100% 75%, 100% 100%, 16px 100%, 0% calc(100% - 16px));
}
.cooki__yes-btn:after {
  content: "";
  width: 0;
  height: 100%;
  background: #FF7C48;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  transition: 0.4s ease-out;
}
.cooki__yes-btn:before {
  content: "ок, согласен!";
  position: relative;
  z-index: 1;
  color: #151515;
}
.cooki__yes-btn:hover:after {
  width: 100%;
}
.cooki__yes-btn:focus {
  outline: none;
}

.cooki__no {
  position: relative;
  display: inline-block;
  margin: 0 12px 0 0;
}
.cooki__no:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #FFFF57;
  opacity: 0.6;
  display: block;
  transition: 0.3s ease;
  clip-path: polygon(4px 0%, 100% 0%, 100% 25%, calc(100% - 4px) calc(25% + 4px), calc(100% - 4px) calc(75% - 4px), 100% 75%, 100% 100%, 4px 100%, 4px 75%, 0px calc(75% - 4px), 0px calc(25% + 4px), 4px 25%);
}
.cooki__no:hover:before {
  top: 8px;
  left: 8px;
}

.cooki__no-bg {
  background-color: #ffffff;
  padding: 2px;
  display: inline-block;
  text-decoration: none;
  border: 0;
  clip-path: polygon(4px 0%, 100% 0%, 100% 25%, calc(100% - 4px) calc(25% + 4px), calc(100% - 4px) calc(75% - 4px), 100% 75%, 100% 100%, 4px 100%, 4px 75%, 0px calc(75% - 4px), 0px calc(25% + 4px), 4px 25%);
}

.cooki__no-btn {
  font-family: "Furore", sans-serif;
  display: block;
  text-transform: uppercase;
  font-size: 1rem;
  line-height: 18px;
  letter-spacing: -0.01em;
  color: #ffffff;
  background-color: #101010;
  padding: 21px 34px 21px 36px;
  border: 0;
  width: 238px;
  clip-path: polygon(4px 0%, 100% 0%, 100% calc(25% - 1px), calc(100% - 4px) calc(25% + 3px), calc(100% - 4px) calc(75% - 3px), 100% calc(75% + 1px), 100% 100%, 4px 100%, 4px 75%, 0px calc(75% - 4px), 0px calc(25% + 4px), 4px 25%);
}

@media (min-width: 0px) and (max-width: 767px) {
  .cooki {
    left: 0;
    max-width: 100%;
    padding: 15px;
    max-width: 400px;
  }

  .cooki__title {
    font-size: 25px;
    line-height: 25px;
  }

  .cooki__text {
    font-size: 0.875rem;
    margin-bottom: 20px;
  }

  .cooki__yes-btn {
    font-size: 0.875rem;
    width: auto;
    padding: 13px 13px 13px 14px;
  }

  .cooki__no-btn {
    font-size: 0.875rem;
    width: auto;
    padding: 11px 13px 11px 14px;
  }

  .cooki__no:hover:before {
    top: 0;
    left: 0;
  }

  .cooki__yes .cooki__yes-bg {
    display: none;
  }
  .cooki__yes:hover .cooki__yes-bg {
    background-color: #101010;
    top: 0;
    left: 0;
  }
  .cooki__yes:hover .cooki__yes-btn:after {
    width: 0;
  }
}
@media (min-width: 768px) and (max-width: 992px) {
  .cooki {
    right: 50px;
    max-width: 100%;
    padding: 15px;
    max-width: 400px;
  }

  .cooki__title {
    font-size: 25px;
    line-height: 25px;
  }

  .cooki__text {
    font-size: 0.875rem;
    margin-bottom: 20px;
  }

  .cooki__yes-btn {
    font-size: 0.875rem;
    width: auto;
    padding: 13px 13px 13px 14px;
  }

  .cooki__no-btn {
    font-size: 0.875rem;
    width: auto;
    padding: 11px 13px 11px 14px;
  }

  .cooki__no:hover:before {
    top: 0;
    left: 0;
  }

  .cooki__yes .cooki__yes-bg {
    display: none;
  }
  .cooki__yes:hover .cooki__yes-bg {
    background-color: #101010;
    top: 0;
    left: 0;
  }
  .cooki__yes:hover .cooki__yes-btn:after {
    width: 0;
  }
}
.discount-link .discount-link-bg {
  background: #FFFF57;
}
.discount-link .discount-link-text span {
  color: #FFFF57;
}
.discount-link .discount-link-text::after {
  background: #FFFF57;
}
.discount-link:hover:not(.disabled) .discount-link-text {
  background: #FFFF57;
}

@media (min-width: 0px) and (max-width: 991px) {
  .discount-link {
    display: none;
  }
}
/* sections */
@media (min-width: 0px) and (max-width: 767px) {
  /* header */
  .header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 10;
  }
  .header .navbar-nav {
    display: none;
  }

  .account-link {
    font-size: 0.875rem;
    padding: 4px 9px 6px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  /* header */
  .header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 10;
  }
  .header .navbar-nav {
    display: none;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  /* header */
  .header .nav-link {
    font-size: 0.8125rem;
    line-height: 15px;
    padding: 4px 8.5px 6px;
  }

  .header__logo {
    padding: 0px 12px 2px;
    height: 27px;
  }

  .account-link {
    font-size: 0.8125rem;
    line-height: 15px;
  }
}
@media (min-width: 0px) and (max-width: 767px) {
  .greeting-mini {
    padding: 160px 0 61px 0;
  }

  .greeting-mini__title {
    margin: 0 0 16px;
    font-size: 45px;
    letter-spacing: -0.01em;
    line-height: 1;
  }

  .greeting-mini__label {
    margin: 0 0 30px;
    font-size: 1.125rem;
    line-height: 21px;
  }

  .greeting-mini__advantages {
    margin: 52px 0 40px;
  }
  .greeting-mini__advantages li {
    text-transform: none;
    margin-bottom: 8px;
    padding-left: 24px;
  }

  .greeting-mini__list {
    margin: 32px 0 100px;
  }

  .greeting-mini__cert {
    max-width: 100%;
    margin: 0;
  }

  .greeting-mini__btn {
    margin: 0;
  }

  .greeting-mini__video {
    margin: 48px 0 0;
  }

  .greeting-mini__logo.workshop {
    padding: 0.5px 13px 5.5px 16px;
    margin-bottom: 10px;
  }
  .greeting-mini__logo.workshop img {
    max-width: 25px;
    margin: 0 15px 0 2px;
  }
}
@media (min-width: 0px) and (max-width: 370px) {
  .greeting-mini__title {
    font-size: 40px;
  }

  .greeting-mini__logo.workshop {
    font-size: 35px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .greeting-mini {
    padding: 111px 0 50px 0;
  }

  .greeting-mini__title {
    margin: 0 0 15px;
    font-size: 3.5rem;
    line-height: 64px;
    white-space: normal;
  }

  .greeting-mini__label {
    display: block;
    margin: 10px 0 30px;
  }

  .greeting-mini__list {
    margin: 0 0 50px;
  }

  .greeting-mini__btn {
    margin: 0;
  }

  .greeting-mini__advantages {
    margin: 30px 0 40px;
  }
  .greeting-mini__advantages li {
    text-transform: none;
    margin-bottom: 8px;
    padding-left: 24px;
  }

  .greeting-mini__cert {
    max-width: 100%;
    margin: 0;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .greeting-mini__label {
    margin: 10px 0 20px;
    display: block;
  }

  .greeting-mini__advantages {
    margin: 0 0 30px;
  }

  .greeting-mini__cert {
    max-width: 100%;
  }

  .greeting-mini__list {
    margin: 0 0 50px;
  }

  .greeting-mini__btn {
    margin-left: 0;
  }

  .greeting-mini__video {
    margin-top: 120px;
  }

  .greeting-mini__logo.workshop {
    font-size: 60px;
  }
}
@media (min-width: 1200px) and (max-width: 1370px) {
  .greeting-mini__cert {
    max-width: 100%;
  }

  .practice-title.workshop {
    font-size: 60px;
  }

  .greeting-mini__label {
    margin-bottom: 40px;
    margin: 20px 0 40px 40px;
  }

  .greeting-mini__list {
    margin-left: 40px;
  }

  .greeting-mini__btn {
    margin-left: 40px;
  }

  .greeting-mini__video {
    margin: 165px 0 0 -116px;
  }
}
@media (min-width: 0px) and (max-width: 767px) {
  .tech {
    padding: 40px 0 30px;
  }

  .big-title_tech {
    margin-bottom: 30px;
  }

  .tech-grid {
    grid-template-columns: none;
    grid-template-areas: "first" "second" "third";
    width: 100%;
    gap: 0;
  }

  .tech__block {
    width: 100%;
    padding: 18px 5px 17px 10px;
    margin-bottom: 20px;
  }

  .tech__block_first .tech__block-text {
    max-width: 100%;
    letter-spacing: -0.02em;
  }
  .tech__block_first img {
    max-width: 100%;
  }

  .tech__block_second {
    height: auto;
  }
  .tech__block_second .tech__block-text {
    letter-spacing: -0.02em;
  }
  .tech__block_second .tech__block-title {
    font-size: 18px;
    line-height: 21px;
    letter-spacing: -0.01em;
    margin-bottom: 10px;
  }

  .tech__block_third {
    height: auto;
    min-height: auto;
    min-width: auto;
  }

  .tech__block-subtitle {
    position: static;
    font-size: 13px;
    line-height: 15px;
    max-width: none;
    text-align: left;
    margin: 24px 0 0;
  }

  .tech__block-title {
    font-size: 18px;
    line-height: 21px;
    letter-spacing: -0.01em;
    margin-bottom: 10px;
  }

  .tech__block-text {
    font-weight: 400;
    font-size: 1rem;
    line-height: 21px;
    letter-spacing: 0;
  }
}
@media (min-width: 0px) and (max-width: 350px) {
  .big-title {
    font-size: 25px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .tech {
    padding: 40px 0 30px;
  }

  .tech-grid {
    grid-template-columns: none;
    grid-template-areas: "first" "second" "third";
    width: 100%;
    gap: 0;
  }

  .tech__block {
    width: 100%;
    padding: 20px 10px 18px 20px;
    margin-bottom: 20px;
  }

  .tech__block_first .tech__block-text {
    max-width: 300px;
  }

  .tech__block_second {
    height: auto;
  }
  .tech__block_second .tech__block-title {
    font-size: 40px;
    line-height: 44px;
    letter-spacing: -0.03em;
    margin-bottom: 8px;
  }
  .tech__block_second .tech__block-text {
    font-size: 1rem;
    line-height: 21px;
    letter-spacing: 0;
    max-width: 350px;
  }

  .tech__block_third {
    height: auto;
    min-height: auto;
  }

  .tech__block_four {
    display: none;
  }

  .tech__block-title {
    font-size: 40px;
    line-height: 44px;
    letter-spacing: -0.03em;
    margin-bottom: 8px;
  }

  .tech__block-text {
    font-weight: 400;
    font-size: 1rem;
    line-height: 21px;
    letter-spacing: 0;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .tech-grid {
    gap: 20px;
    grid-template-columns: 260px 140px 1fr 1fr;
  }

  .tech__block_first {
    padding-top: 40px;
  }
  .tech__block_first .tech__block-title {
    font-size: 40px;
    max-width: 500px;
  }

  .tech__block_third {
    padding: 33px 16px 18px 18px;
    width: auto;
  }

  .tech__block_second {
    padding: 19px 18px 39px 15px;
  }
  .tech__block_second .tech__block-text {
    max-width: 360px;
  }

  .tech__block-text {
    font-size: 22px;
  }

  .tech__block_four {
    width: auto;
  }
  .tech__block_four img {
    max-width: 60px;
  }
}
@media (min-width: 1200px) and (max-width: 1400px) {
  .tech-grid {
    gap: 30px;
    grid-template-columns: 300px 300px auto auto;
  }

  .tech__block_first {
    padding-top: 40px;
  }
  .tech__block_first .tech__block-title {
    font-size: 40px;
    max-width: 500px;
  }

  .tech__block_third {
    padding: 33px 16px 18px 18px;
    width: auto;
  }

  .tech__block_second {
    padding: 19px 18px 39px 15px;
  }
  .tech__block_second .tech__block-text {
    max-width: 360px;
  }

  .tech__block-text {
    font-size: 22px;
  }

  .tech__block_four {
    width: auto;
  }
  .tech__block_four img {
    max-width: 60px;
  }
}
@media (min-width: 0px) and (max-width: 767px) {
  .what {
    padding: 69px 0 59px;
  }

  .what__title {
    font-size: 30px;
    max-width: 360px;
    margin-bottom: 29px;
  }

  .what__cards {
    gap: 10px;
    grid-template-columns: auto;
    grid-template-areas: "what_card_1 what_card_2" "what_card_4 what_card_4" "what_card_3 what_card_6" "what_card_8 what_card_8" "what_card_5 what_card_5" "what_card_7 what_card_7";
    margin: 0;
  }

  .what__card:nth-child(1) {
    grid-area: what_card_1;
    min-height: 200px;
  }
  .what__card:nth-child(2) {
    grid-area: what_card_2;
    min-height: 200px;
  }
  .what__card:nth-child(3) {
    grid-area: what_card_3;
    min-height: 200px;
  }
  .what__card:nth-child(4) {
    grid-area: what_card_4;
    min-height: 200px;
  }
  .what__card:nth-child(5) {
    grid-area: what_card_5;
    min-height: 200px;
  }
  .what__card:nth-child(6) {
    grid-area: what_card_6;
    min-height: 110px;
  }
  .what__card:nth-child(7) {
    grid-area: what_card_7;
    min-height: 200px;
  }
  .what__card:nth-child(8) {
    grid-area: what_card_8;
    min-height: 200px;
  }
  .what__card .r-card-bg {
    padding: 24px 6px 0;
  }

  .what__card-heading {
    font-size: 18px;
    line-height: 21px;
    margin-bottom: 9px;
  }

  .what__card-text {
    font-size: 16px;
    line-height: 1.3;
  }
  .what__card-text br {
    display: none;
  }
}
@media (min-width: 0px) and (max-width: 378px) {
  .what__card-text {
    font-size: 14px;
    margin-bottom: 10px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .what__title br {
    display: none;
  }

  .what__cards {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .what__card-text {
    font-size: 18px;
  }

  .what__card {
    min-height: 350px;
  }
  .what__card:nth-child(7) {
    display: none;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .what__cards {
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
  }

  .what__card-text {
    font-size: 18px;
  }

  .what__card-heading {
    font-size: 40px;
    line-height: 1;
    max-width: 100%;
  }

  .what__card {
    min-height: 350px;
  }
}
@media (min-width: 1200px) and (max-width: 1350px) {
  .what__cards {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }

  .what__card {
    min-height: 320px;
  }

  .what__card-text {
    font-size: 20px;
  }
}
@media (min-width: 0px) and (max-width: 767px) {
  .advantages-mini {
    padding: 46px 0 50px;
  }

  .big-title_advantages-mini {
    margin-bottom: 29px;
  }

  .advantages-mini__item {
    max-width: 370px;
    width: 100%;
    height: 180px;
    margin: 0 auto 10px;
  }

  .advantages-mini__item_green {
    height: 180px;
  }

  .advantages-mini__item-title {
    letter-spacing: -0.02em;
    font-size: 15px;
    line-height: 1.3;
  }

  .advantages-mini__item-title_green {
    letter-spacing: -0.8px;
  }

  .advantages-mini__item-num {
    font-size: 26px;
    line-height: 30px;
    -webkit-text-stroke-width: 0;
    -webkit-text-fill-color: var(--background-primary);
  }

  .advantages-mini__info {
    transform: none;
    display: block;
  }
  .advantages-mini__info br {
    display: none;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .advantages-mini {
    padding: 46px 0 30px;
  }

  .advantages-mini__item {
    max-width: 370px;
    width: 100%;
    height: 240px;
    margin: 0 auto 20px;
  }

  .advantages-mini__item_green {
    height: 300px;
  }

  .advantages-mini__item-title {
    letter-spacing: -0.3px;
  }

  .advantages-mini__info {
    transform: none;
    display: block;
  }
  .advantages-mini__info br {
    display: none;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .advantages-mini {
    padding: 58px 0 50px;
  }

  .advantages-mini__item {
    max-width: 370px;
    width: 100%;
    height: 240px;
    margin: 0 auto 20px;
  }

  .advantages-mini__item_green {
    height: 300px;
  }

  .advantages-mini__item-title {
    letter-spacing: -0.3px;
  }

  .advantages-mini__info {
    transform: none;
    display: block;
  }
  .advantages-mini__info br {
    display: none;
  }
}
@media (min-width: 1200px) and (max-width: 1350px) {
  .advantages-mini {
    padding: 58px 0 50px;
  }

  .advantages-mini__item {
    max-width: 370px;
    width: 100%;
    height: 300px;
    margin: 0 auto 20px;
  }

  .advantages-mini__item_green {
    height: 300px;
  }

  .advantages-mini__item-title {
    letter-spacing: -0.3px;
  }
}
@media (min-width: 0px) and (max-width: 767px) {
  .workshop {
    padding: 40px 0 20px;
  }

  .big-title_workshop {
    margin-bottom: 40px;
  }

  .workshop__chapter-item {
    font-size: 30px;
    line-height: 30px;
    -webkit-text-stroke-width: 1px;
    margin-bottom: 20px;
    letter-spacing: 0px;
  }
  .workshop__chapter-item.filled {
    font-size: 18px;
    line-height: 21px;
    letter-spacing: -0.01em;
  }
  .workshop__chapter-item span {
    margin-top: 14px;
  }
  .workshop__chapter-item br {
    display: none;
  }

  .workshop__subtitle {
    margin-bottom: 24px;
  }
  .workshop__subtitle br {
    display: none;
  }
}
@media (min-width: 0px) and (max-width: 350px) {
  .workshop__chapter-item {
    font-size: 25px;
    line-height: 25px;
    -webkit-text-stroke-width: 0.8px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .workshop {
    padding: 40px 0 50px;
  }

  .big-title_workshop {
    margin-bottom: 40px;
  }

  .workshop__subtitle {
    margin-bottom: 24px;
  }
  .workshop__subtitle br {
    display: none;
  }

  .workshop__chapter-item br {
    display: none;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .big-title_workshop {
    margin-bottom: 50px;
  }

  .workshop__subtitle {
    display: none;
  }

  .workshop__subtitle_mobile {
    display: block;
    margin-top: 10px;
  }
}
@media (min-width: 0px) and (max-width: 767px) {
  .program {
    padding: 48px 0 27px;
  }

  .big-title_program {
    margin-bottom: 30px;
  }

  .program__accordion .accordion-button {
    min-height: 40px;
    padding: 10px 40px 10px 8px;
  }
  .program__accordion .accordion-button span {
    align-self: flex-start;
  }
  .program__accordion .accordion-button:after {
    right: 13px;
  }

  .program__subtitle {
    font-size: 30px;
    line-height: 1;
    margin-bottom: 30px;
  }
  .program__subtitle br {
    display: none;
  }

  .small-title__program {
    margin-bottom: 20px;
  }

  .program__info {
    font-size: 16px;
    line-height: 1.2;
    margin: 31px 0 27px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .program__subtitle br {
    display: none;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .program__subtitle br {
    display: none;
  }
}
@media (min-width: 0px) and (max-width: 767px) {
  .reviews {
    padding: 80px 0 30px;
  }

  .reviews__title {
    font-size: 30px;
    line-height: 30px;
    margin-bottom: 40px;
    letter-spacing: -0.3px;
  }

  .reviews__block {
    width: 100%;
    height: 240px;
    margin-bottom: 20px;
  }

  .reviews__block-text {
    font-weight: 400;
    font-size: 25px;
    line-height: 30px;
    letter-spacing: 0.6px;
  }

  .reviews__block-bg {
    padding: 24px 20px 9px 12px;
  }
}
@media (min-width: 0px) and (max-width: 380px) {
  .reviews__block-text {
    font-size: 20px;
    line-height: 24px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .reviews {
    padding: 80px 0 30px;
  }

  .reviews__title {
    font-size: 35px;
    line-height: 40px;
    margin-bottom: 28px;
    letter-spacing: -1.3px;
  }

  .reviews__block {
    width: 100%;
    height: 200px;
    margin-bottom: 20px;
  }

  .reviews__block-text {
    font-weight: 400;
    font-size: 1rem;
    line-height: 21px;
  }

  .reviews__block-bg {
    padding: 24px 20px 9px 12px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .reviews {
    padding: 80px 0 30px;
  }

  .reviews__title {
    font-size: 45px;
    line-height: 50px;
    margin-bottom: 28px;
    letter-spacing: -1.3px;
  }

  .reviews__block {
    width: 100%;
    height: 250px;
    margin-bottom: 20px;
  }

  .reviews__block-text {
    font-weight: 400;
    font-size: 1rem;
    line-height: 21px;
  }

  .reviews__block-bg {
    padding: 24px 20px 9px 12px;
  }
}
@media (min-width: 1200px) and (max-width: 1300px) {
  .reviews__block {
    width: 270px;
    height: 270px;
  }

  .reviews__block-text {
    font-size: 1.25rem;
    line-height: 26px;
  }
}
@media (min-width: 0px) and (max-width: 767px) {
  .comment {
    padding: 50px 0 40px;
  }

  .big-title_comment {
    padding-top: 15px;
    padding-bottom: 15px;
    margin-bottom: 40px;
  }
  .big-title_comment:before {
    position: relative;
    top: -8px;
  }

  .comment__item {
    width: 100%;
    max-width: 100%;
    margin-bottom: 19px;
  }

  .comment__item-text {
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    max-height: 105px;
    margin-bottom: 11px;
  }

  .comment__more-btn {
    font-size: 13px;
    line-height: 15px;
    padding: 21px 25px 24px 20px;
    letter-spacing: 0;
  }
  .comment__more-btn.collapsed:before {
    content: "показать все отзывы >>>";
  }

  .comment__more-btn-wrapper {
    margin: 11px 8px 0 0;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .comment {
    padding: 50px 0 40px;
  }

  .big-title_comment {
    padding-top: 15px;
    padding-bottom: 15px;
    margin-bottom: 40px;
  }
  .big-title_comment:before {
    position: relative;
    top: -8px;
  }

  .comment__item {
    width: 100%;
    max-width: 100%;
    margin-bottom: 19px;
  }

  .comment__item-text {
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    max-height: 105px;
    margin-bottom: 11px;
  }

  .comment__more-btn {
    font-size: 13px;
    line-height: 15px;
    padding: 21px 25px 24px 20px;
    letter-spacing: 0;
  }
  .comment__more-btn.collapsed:before {
    content: "показать все отзывы >>>";
  }

  .comment__more-btn-wrapper {
    margin: 11px 8px 0 0;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .comment__item {
    margin-right: 20px;
  }
}
@media (min-width: 1200px) and (max-width: 1300px) {
  .comment__item {
    margin-right: 25px;
  }
}
@media (min-width: 0px) and (max-width: 767px) {
  .authors {
    padding: 47px 0 10px;
  }

  .authors__item {
    flex-direction: column;
    margin-bottom: 23px;
  }

  .authors__item-img {
    margin: 0 0 14px;
    width: 100%;
    max-width: 410px;
    height: 290px;
  }
  .authors__item-img img {
    width: 100%;
    height: 290px;
    object-fit: cover;
  }

  .authors__item-img_top img {
    object-position: center;
  }

  .big-title_authors {
    margin-bottom: 50px;
  }

  .authors__item-title {
    font-size: 18px;
    line-height: 21px;
    letter-spacing: -0.01em;
    max-width: 300px;
    margin-bottom: 16px;
  }
  .authors__item-title span {
    margin-top: 5px;
  }

  .authors__item-text {
    max-width: 100%;
    margin-bottom: 17px;
  }

  .authors__item-img_icon img {
    width: auto;
    height: auto;
  }

  .authors__item-exp {
    font-size: 13px;
    line-height: 15px;
  }

  .authors__item_second {
    padding-left: 0;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .authors__item-info {
    justify-content: flex-start;
  }

  .authors__item_second {
    padding-left: 0;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .authors__item-info {
    justify-content: flex-start;
  }

  .authors__item_second {
    padding-left: 0;
  }
}
@media (min-width: 0px) and (max-width: 767px) {
  .price-mini {
    padding: 69px 0 30px;
  }

  .price-mini__title {
    margin: 0 0 14px;
    font-size: 2.5rem;
    line-height: 44px;
    white-space: normal;
  }

  .price-mini__logo.workshop {
    padding: 0.5px 18px 6.5px 16px;
    margin-bottom: 10px;
  }
  .price-mini__logo.workshop img {
    max-width: 25px;
  }

  .price-mini__logo-icon {
    width: 25px;
    height: 25px;
    margin-right: 15px;
    margin-bottom: 1px;
  }

  .price-mini__logo-label {
    margin: 0 0 17px 6px;
    font-size: 1.125rem;
    line-height: 21px;
  }

  .price-mini__block {
    margin: 0;
  }

  .price-mini__price-title {
    font-size: 30px;
    line-height: 30px;
    margin: 33px 0 4px;
  }

  .price-mini__price-cost {
    font-size: 30px;
    line-height: 30px;
    margin-bottom: 14px;
    padding-left: 2px;
  }
  .price-mini__price-cost span {
    margin-left: 8px;
    font-size: 1.425rem;
    white-space: nowrap;
  }

  .price-mini__lifetime {
    font-size: 1.125rem;
    line-height: 21px;
    margin: 0 0 35px;
  }

  .price-mini__btn-wrapper {
    margin-bottom: 48px;
  }

  .price-mini__cerf {
    margin: 0 0 20px;
    max-width: 100%;
  }

  .price-mini__carf-info {
    margin: 0 0 49px;
  }

  .price-mini__wrapper {
    max-width: 100%;
    margin: 0;
  }

  .price-mini__btn {
    margin-bottom: 48px;
  }
}
@media (min-width: 0px) and (max-width: 400px) {
  .comment__item-text.active {
    max-width: 1200px;
  }

  .comment__more-btn {
    padding: 21px 7px 24px 16px;
  }

  .price-mini__btn-wrapper {
    width: 100%;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .price-mini {
    padding: 50px 0 50px;
  }

  .price-mini__title {
    margin: 0 0 15px;
    font-size: 3.5rem;
    line-height: 64px;
    white-space: normal;
  }

  .price-mini__logo-icon {
    width: 30px;
    height: 30px;
  }

  .price-mini__logo-label {
    display: block;
    margin: 10px 0 26px;
  }

  .price-mini__block {
    margin: 0;
  }

  .price-mini__price-title {
    font-size: 30px;
    line-height: 30px;
    margin-bottom: 4px;
  }

  .price-mini__price-cost {
    font-size: 30px;
    line-height: 30px;
    margin-bottom: 16px;
    padding-left: 2px;
  }
  .price-mini__price-cost span {
    margin-left: 9px;
  }

  .price-mini__lifetime {
    font-size: 1.125rem;
    line-height: 21px;
    margin: 0 0 35px;
  }

  .price-mini__cerf {
    margin: 50px 0 20px;
    max-width: 100%;
  }

  .price-mini__carf-info {
    margin: 0 0 50px;
  }

  .price-mini__wrapper {
    max-width: 100%;
    margin: 0;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .price-mini__logo {
    margin: 0 0 10px;
  }

  .price-mini__logo-label {
    margin: 0 0 20px;
  }

  .price-mini__lifetime {
    margin: 0 0 57px 53px;
  }

  .price-mini__price-cost span {
    white-space: nowrap;
  }

  .price-mini__block {
    margin: 0 0 80px;
  }

  .price-mini__cerf {
    max-width: 100%;
    margin-top: 200px;
  }

  .price-mini__wrapper {
    margin: 0;
  }

  .price-mini__logo.workshop {
    font-size: 60px;
  }
}
@media (min-width: 1200px) and (max-width: 1350px) {
  .price-mini__logo {
    margin: 0 0 10px 40px;
  }

  .price-mini__logo-label {
    margin: 0 0 20px 40px;
  }

  .price-mini__lifetime {
    margin: 0 0 57px 83px;
  }

  .price-mini__block {
    margin: 0 0 80px 40px;
  }

  .price-mini__cerf {
    max-width: 100%;
    margin: 80px 0 10px -16px;
  }

  .price-mini__wrapper {
    width: 600px;
    margin: 0;
  }
}
@media (min-width: 0px) and (max-width: 767px) {
  .footer {
    padding: 0 0 40px;
  }

  .footer-divider {
    margin-bottom: 40px;
  }

  .footer__title {
    font-size: 1.125rem;
    line-height: 21px;
    margin: 0 0 20px;
  }

  .footer__contact {
    margin-bottom: 34px;
  }
  .footer__contact li {
    margin-bottom: 2px;
  }
  .footer__contact a {
    letter-spacing: 0px;
    font-size: 30px;
    line-height: 30px;
    -webkit-text-stroke-width: 1px;
  }
  .footer__contact a::after {
    top: auto;
    bottom: 0;
  }

  .footer__contact {
    padding-top: 0;
  }

  .footer__links {
    margin: 0 0 28px;
  }
  .footer__links li {
    margin-bottom: 5px;
  }

  .copyright {
    margin: 0 0 30px;
  }

  .requisites {
    margin: 0 0 50px;
  }
}
@media (min-width: 0px) and (max-width: 378px) {
  .footer__contact a {
    font-size: 25px;
    line-height: 25px;
    -webkit-text-stroke-width: 0.7px;
    letter-spacing: 0.2px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .footer {
    padding: 0 0 40px;
  }

  .footer-divider {
    margin-bottom: 40px;
  }

  .footer__contact {
    padding-top: 0;
  }

  .footer__title {
    font-size: 1.125rem;
    line-height: 21px;
    margin: 0 0 20px;
  }

  .footer__contact {
    margin-bottom: 34px;
  }
  .footer__contact li {
    margin-bottom: 2px;
  }
  .footer__contact a {
    letter-spacing: 0px;
    font-size: 30px;
    line-height: 30px;
    -webkit-text-stroke-width: 1px;
  }
  .footer__contact a::after {
    top: auto;
    bottom: 0;
  }

  .footer__links {
    margin: 0 0 28px;
  }
  .footer__links li {
    margin-bottom: 5px;
  }

  .copyright {
    margin: 0 0 30px;
  }

  .requisites {
    margin: 0 0 50px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .footer__contact a {
    font-size: 36px;
    line-height: 34px;
    -webkit-text-stroke-width: 1px;
  }

  .copyright {
    margin-bottom: 50px;
  }
}
@media (min-width: 1201px) and (max-width: 1350px) {
  .footer__contact a {
    font-size: 45px;
    line-height: 45px;
    -webkit-text-stroke-width: 1px;
  }
  .footer__contact a:after {
    top: auto;
    bottom: 0;
  }

  .copyright {
    margin-bottom: 50px;
  }
}
@media (min-width: 0px) and (max-width: 767px) {
  .learned {
    padding: 40px 0 32px;
  }

  .learned__title {
    font-size: 30px;
    line-height: 1;
    margin-bottom: 49px;
  }
  .learned__title br {
    display: none;
  }

  .small-title__learned {
    margin-bottom: 21px;
    color: #FFFF57;
  }

  .learned__item {
    font-size: 1rem;
    line-height: 21px;
    padding-right: 0;
    font-weight: 400;
    margin-bottom: 28px;
  }
  .learned__item span {
    max-width: 340px;
    display: block;
    letter-spacing: -0.02em;
  }
  .learned__item br {
    display: none;
  }

  .learned__masterings {
    padding-top: 20px;
  }

  .learned__mastering {
    font-size: 16px;
    line-height: 1.125;
    max-width: 300px;
  }

  .learned__block {
    margin-bottom: 0;
  }
}
@media (min-width: 0px) and (max-width: 380px) {
  .learned__title {
    font-size: 24px;
    line-height: 26px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .learned__title br {
    display: none;
  }
}