@charset "UTF-8";
/* Цвета */
:root {
  --color1: #eebb12;
}

.color1 {
  color: var(--color1);
}

.bg1 {
  background-color: #070707;
}

.bg2 {
  background-color: #111;
}

/* Шапка */
header {
  height: 75vh;
  background: url(../images/header_background.png), #111;
}

.header_btn,
.buying_btn {
  width: 200px;
  height: 50px;
  font-weight: 500;
}

/* О курсе */
.about__icon_circle {
  margin: 0 auto 15px;
  width: 70px;
  height: 70px;
  border: 3px solid var(--color1);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
}

.about__caption::after {
  content: "";
  display: block;
  margin: 15px auto;
  width: 25%;
  height: 3px;
  background-color: var(--color1);
}

.about__video {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
}

.about__video iframe,
.about__video object,
.about__video embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Программа курса */
/* Переопределяем цвет для активного аккордиона */
.accordion {
  --bs-accordion-active-bg: var(--color1);
  --bs-accordion-btn-focus-box-shadow: 0 0 0 0.1rem var(--color1);
}

.accordion-button:not(.collapsed) {
  color: var(--bs-black);
  font-weight: bold;
}

/* FAQ */
.faq__link:hover {
  opacity: 0.8;
}

/* Footer */
.footer__socials--icons {
  display: flex;
  align-items: center;
  gap: 3%;
  font-size: 18px;
  cursor: pointer;
}

.footer__socials--icons a {
  text-decoration: none;
  border-bottom: 1px solid var(--color1);
}/*# sourceMappingURL=style.css.map */