/*!*******************************************************************************************************************************!*\
  !*** css ../node_modules/css-loader/dist/cjs.js!../node_modules/sass-loader/dist/cjs.js!./layouts/mainLayout/mainLayout.scss ***!
  \*******************************************************************************************************************************/
.grid {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.header {
  padding-top: 55px;
  margin-bottom: 40px;
}
@media screen and (max-width: 479px) {
  .header {
    padding-top: 24px;
  }
}
.header__content {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 479px) {
  .header__content {
    flex-direction: column;
    align-items: stretch;
  }
}
.header__auth {
  display: flex;
  gap: 20px;
}
.header__menu {
  display: flex;
  align-items: center;
  gap: 40px;
}
@media screen and (max-width: 1199px) {
  .header__menu {
    gap: 24px;
  }
}
.header__menu-list {
  display: flex;
  align-items: center;
  gap: 45px;
}
@media screen and (max-width: 1199px) {
  .header__menu-list {
    gap: 16px;
  }
}
@media screen and (max-width: 479px) {
  .header__menu-list {
    flex-direction: column;
    align-items: center;
  }
}
@media screen and (max-width: 1023px) {
  .header__menu-list--desktop {
    display: none;
  }
}
.header__menu-link {
  font-size: 16px;
  color: var(--color-black);
  text-decoration: none;
  transition: 0.3s;
}
.header__menu-link:hover {
  opacity: 0.6;
}
.header__box {
  display: flex;
  align-items: center;
  gap: 12px;
}
@media screen and (max-width: 479px) {
  .header__box {
    justify-content: space-between;
  }
}
.header__mobile-menu {
  display: none;
  padding-top: 10px;
}
@media screen and (max-width: 479px) {
  .header__link-logo {
    margin: 0 auto 12px;
  }
}

.main {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  min-width: 0;
  padding-bottom: 100px;
}

.wrapper {
  width: 100%;
  max-width: 1540px;
  padding: 0 50px;
  margin: 0 auto;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .wrapper {
    padding: 0 20px;
  }
}

.footer__top {
  padding: 30px 0;
  background-color: var(--color-blue);
}
.footer__bottom {
  padding: 50px 0;
  background-color: var(--color-black);
}
.footer__top-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 1023px) {
  .footer__top-content {
    flex-direction: column;
    gap: 24px;
  }
}
.footer__bottom-content {
  display: flex;
  align-items: center;
  gap: 45px;
  justify-content: space-between;
}
@media screen and (max-width: 1023px) {
  .footer__bottom-content {
    flex-direction: column;
    gap: 24px;
  }
}
.footer__menu {
  display: flex;
  align-items: center;
  gap: 40px;
}
.footer__menu-list {
  display: flex;
  align-items: center;
  gap: 75px;
}
@media screen and (max-width: 1365px) {
  .footer__menu-list {
    gap: 24px;
  }
}
@media screen and (max-width: 767px) {
  .footer__menu-list {
    flex-direction: column;
  }
}
.footer__menu-link {
  font-size: 24px;
  font-weight: 500;
  color: var(--color-white);
  text-decoration: none;
  transition: 0.3s;
  text-transform: uppercase;
}
@media screen and (max-width: 1199px) {
  .footer__menu-link {
    font-size: 18px;
  }
}
.footer__menu-link:hover {
  opacity: 0.6;
}
.footer__copyright {
  font-size: 16px;
  font-weight: 500;
  color: var(--color-white);
  text-transform: uppercase;
}
@media screen and (max-width: 1023px) {
  .footer__copyright {
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  .footer .contacts {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
.footer__contacts-box {
  display: flex;
  align-items: baseline;
  gap: 30px;
}
@media screen and (max-width: 767px) {
  .footer__contacts-box {
    flex-direction: column;
    align-items: center;
  }
}
.footer__phone {
  font-size: 24px;
  font-weight: 500;
  color: var(--color-white);
  text-transform: uppercase;
  text-decoration: none;
}
@media screen and (max-width: 1199px) {
  .footer__phone {
    font-size: 18px;
  }
}
.footer__email {
  font-size: 24px;
  font-weight: 500;
  color: var(--color-white);
  text-decoration: none;
}
@media screen and (max-width: 1199px) {
  .footer__email {
    font-size: 18px;
  }
}
.footer__text {
  color: var(--color-white);
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 16px 30px;
  font-weight: 400;
  font-size: 18px;
  line-height: 25px;
  color: var(--color-white);
  text-decoration: none;
  text-align: center;
  background-color: var(--color-blue);
  border: 1px solid var(--color-blue);
  border-radius: 36px;
  box-sizing: border-box;
  cursor: pointer;
  outline: none;
  transition: 0.3s;
  -webkit-appearance: none;
}
@media screen and (max-width: 479px) {
  .button {
    padding: 8px 16px;
  }
}
.button__flex {
  display: flex;
  align-items: center;
}
.button__el:not(:last-child) {
  margin-right: 8px;
}
.button__icon {
  fill: var(--color-white);
  transition: 0.3s;
}
.button:hover {
  color: var(--color-blue);
  background-color: var(--color-white);
}
.button:hover .button__icon {
  fill: var(--color-blue);
}
.button:active {
  opacity: 0.5;
  transition: 0.1s;
}
.button:focus {
  opacity: 0.9;
  transition: 0.1s;
}
.button.disabled {
  opacity: 0.6;
  pointer-events: none;
}
.button--inverted {
  color: var(--color-blue);
  background-color: transparent;
}
.button--inverted .button__icon {
  fill: var(--color-blue);
}
.button--inverted:hover {
  color: var(--color-white);
  background-color: var(--color-blue);
}
.button--inverted:hover .button__icon {
  fill: var(--color-white);
}
.button--inverted.is-active {
  color: var(--color-white);
  background-color: var(--color-blue);
}
.button--inverted.is-active .button__icon {
  fill: var(--color-white);
}
.button--uppercase {
  text-transform: uppercase;
}

.title {
  margin-bottom: 40px;
  font-size: 40px;
  font-weight: 500;
  color: var(--color-black);
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  .title {
    margin-bottom: 24px;
    font-size: 24px;
  }
}
.title--center {
  text-align: center;
}

.text {
  color: var(--color-gray);
}
.text--fs24 {
  font-size: 24px;
}
.text--white {
  color: var(--color-white);
}

.burger {
  position: relative;
  display: none;
  width: 20px;
  height: 20px;
  background-color: transparent;
  border-radius: 50%;
  flex-shrink: 0;
  cursor: pointer;
}
@media screen and (max-width: 1023px) {
  .burger {
    display: block;
  }
}

.burger__strip,
.burger__strip:before,
.burger__strip:after {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -1px;
  margin-left: -8px;
  width: 16px;
  height: 2px;
  background-color: var(--color-blue);
}

.burger__strip:before,
.burger__strip:after {
  content: "";
  transition: 0.3s;
}

.burger__strip:before {
  transform: translateY(-5px);
}

.burger__strip:after {
  transform: translateY(5px);
}

.burger--active .burger__strip {
  height: 0;
}

.burger--active .burger__strip:before {
  transform: rotate(45deg);
}

.burger--active .burger__strip:after {
  transform: rotate(-45deg);
}

.lesson__video {
  display: block;
  margin: 0 auto 48px;
}
@media screen and (max-width: 1023px) {
  .lesson__video {
    aspect-ratio: 16/9;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

/*# sourceMappingURL=mainLayout.css.map*/