* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Lato", sans-serif;
}

.container {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 15px;
}

li {
  list-style: none;
}

h3 {
  font-weight: 900;
  font-size: 46px;
  line-height: 130%;
  color: #1e212c;
  margin-bottom: 60px;
}

h6 {
  font-weight: 700;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #1e212c;
  margin-bottom: 8px;
}

a {
  text-decoration: none;
  transition: 0.3s;
}

.link {
  font-weight: 700;
  font-size: 16px;
  line-height: 325%;
  letter-spacing: 0.03em;
  text-align: center;
  border-radius: 4px;
  padding: 0 40px;
  border: 1px solid #f75e05;
}

.box {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  padding-top: 20px;
  margin-bottom: 60px;
}
@media screen and (max-width: 1024px) {
  .box {
    align-items: baseline;
  }
}
@media screen and (max-width: 440px) {
  .box {
    grid-template-columns: auto;
  }
}

@media screen and (max-width: 834px) {
  .logo {
    display: inline-flex;
    order: 2;
    justify-content: center;
  }
}
@media screen and (max-width: 440px) {
  .logo {
    margin-bottom: 10px;
  }
}

.nav__link,
.login__link {
  font-weight: 700;
  font-size: 16px;
  line-height: 160%;
  color: #424551;
}

.nav__link.active {
  color: #f75e05;
}

@media screen and (max-width: 834px) {
  nav {
    --transition-time: 500ms;
    position: relative;
    width: 200px;
    height: auto;
    display: flex;
    align-items: center;
    transform: translateX(-100%);
    transition: all 800ms cubic-bezier(0.8, 0, 0.33, 1);
    z-index: 4;
    order: 1;
  }
}
nav a:hover {
  color: #f75e05;
}
nav .nav-list {
  display: flex;
  gap: 40px;
  margin-left: 60px;
}
@media screen and (max-width: 834px) {
  nav .nav-list {
    display: none;
    margin: 0;
  }
}
@media screen and (max-width: 834px) {
  nav .nav-links {
    position: absolute;
    display: block;
    top: 0;
    padding: 0 50px;
    background: #fff;
  }
}
@media screen and (max-width: 834px) {
  nav .nav-links li {
    margin-bottom: 10px;
  }
}
nav .sub-menu {
  --link-height: 60px;
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  transform: translateY(-50%);
}
nav .menu-btn {
  display: none;
}
@media screen and (max-width: 834px) {
  nav .menu-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    --icon-width: 25px;
    position: absolute;
    top: -35px;
    right: -20%;
    width: calc(var(--icon-width) + 25px);
    height: calc(var(--icon-width) + 25px);
    flex-direction: column;
    transition: all calc(100ms + var(--transition-time)) cubic-bezier(0.8, 0, 0.33, 1.25);
    cursor: pointer;
    z-index: 10;
  }
}
@media screen and (max-width: 834px) and (max-width: 440px) {
  nav .menu-btn {
    top: -10px;
  }
}
nav .menu-btn.close .line__1 {
  transform: rotate(45deg) translate(2px, -3px);
}
nav .menu-btn.close .line__2 {
  transform: rotate(-45deg);
}
nav .menu-btn.close .line__3 {
  transform: rotate(45deg) translate(-2px, 3px);
}
nav .menu-btn .line {
  width: var(--icon-width);
  background: #1e212c;
  height: 2px;
  margin: 3px 0;
  transition: all calc(var(--transition-time) + 100ms) cubic-bezier(0.9, 0, 0.33, 1);
}
nav .menu-btn .line__1 {
  width: var(--icon-width);
  transform-origin: left;
}
nav .menu-btn .line__2 {
  width: var(--icon-width);
  transform-origin: center;
}
nav .menu-btn .line__3 {
  width: var(--icon-width);
  transform-origin: right;
}
nav.nav-open {
  transform: translateX(0%);
}
nav.nav-open .menu-btn {
  right: 10%;
}
@media screen and (max-width: 440px) {
  nav.nav-open .menu-btn {
    right: 15%;
  }
}
nav.nav-open .nav-links li {
  transform: translateX(0);
  opacity: 1;
}
nav.sub-menu-open .sub-menu-btn {
  opacity: 1;
  transform: translateX(0);
  pointer-events: all;
}
nav.sub-menu-open .nav-links li {
  pointer-events: none;
  opacity: 0;
  transform: translateY(-10%);
}

.box__links {
  display: flex;
  align-items: center;
  gap: 64px;
}
@media screen and (max-width: 1024px) {
  .box__links {
    flex-direction: column;
    gap: 20px;
  }
}
@media screen and (max-width: 834px) {
  .box__links {
    order: 3;
  }
}
.box__links .btn__link {
  color: #fff;
  background: linear-gradient(45deg, #ff3f3a 0%, #f75e05 100%);
}
@media screen and (max-width: 440px) {
  .box__links .btn__link {
    display: none;
  }
}
.box__links .btn__link:hover {
  background: #fff;
  color: #f75e05;
}
.box__links .login__link {
  display: inline-flex;
  align-items: center;
}
.box__links .login__link::before {
  display: inline-block;
  content: "";
  background-image: url(../images/Profile.svg);
  width: 20px;
  height: 20px;
  margin-right: 8px;
}

.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(30, 33, 44, 0.75);
  justify-content: center;
  align-items: center;
  z-index: 20;
}

.modal-overlay.open {
  display: flex;
}

.modal {
  padding: 48px 48px 0;
}
.modal h1 {
  font-weight: 700;
  font-size: 28px;
  line-height: 150%;
  text-align: center;
  margin-bottom: 24px;
  color: #1e212c;
}
.modal .modal-text {
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  text-align: center;
  color: #787a80;
  margin-bottom: 24px;
}

.modal-wrapper {
  border: 1px solid #e5e8ed;
  max-width: 486px;
  border-radius: 4px;
  box-shadow: 0 4px 4px -4px rgba(30, 33, 44, 0.05), 0 12px 10px -6px rgba(30, 33, 44, 0.08), 0 26px 24px -10px rgba(30, 33, 44, 0.1), 0 60px 80px -20px rgba(30, 33, 44, 0.16);
  background: #fff;
  max-height: 100vh;
  overflow-y: auto;
}

.input__modal {
  max-width: 390px;
  width: 100%;
  margin-bottom: 20px;
}
.input__modal label {
  display: inline-block;
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  color: #424551;
  margin-bottom: 8px;
}
.input__modal div {
  display: flex;
  justify-content: space-between;
  border: 1px solid #d7dadd;
  border-radius: 4px;
  width: 100%;
}
.input__modal div input {
  border: none;
  width: 100%;
  padding: 11px 16px;
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  color: #1e212c;
}
.input__modal div input:focus {
  outline: none;
}
.input__modal div button {
  background: #fff;
  padding: 15px;
  border: none;
  cursor: pointer;
}
.input__modal div button::after {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  background-image: url(../images/eye.svg);
}
.input__modal input {
  border-radius: 4px;
  border: 1px solid #d7dadd;
  width: 100%;
  padding: 11px 16px;
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  color: #1e212c;
}

.check-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.check-link a {
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  color: #ff3f3a;
  margin-bottom: 24px;
}

.check-box {
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 315px;
  cursor: pointer;
  margin-bottom: 24px;
}
.check-box input[type=checkbox] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.check-box__custom {
  width: 16px;
  height: 16px;
  border: 1px solid #ff3f3a;
  border-radius: 4px;
  display: inline-block;
  background: #ff3f3a;
  position: relative;
  flex-shrink: 0;
}
.check-box input:checked + .check-box__custom::after {
  content: "";
  position: absolute;
  top: 1px;
  left: 4px;
  width: 4px;
  height: 8px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.check-box__text {
  font-weight: 400;
  font-size: 16px;
  line-height: 160%;
  color: #424551;
}

.modal-link {
  display: inline-block;
  font-size: 14px;
  line-height: 314%;
  letter-spacing: 0.04em;
  color: #fff;
  background: linear-gradient(45deg, #ff3f3a 0%, #f75e05 100%);
  padding: 0 32px;
  margin-bottom: 24px;
  width: 100%;
}
.modal-link:hover {
  background: #fff;
  color: #f75e05;
}

.modal-up,
.link-up {
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  margin-bottom: 24px;
}

.modal-up p {
  color: #424551;
}
.modal-up a {
  color: #ff3f3a;
}

.sign-social {
  border-top: 1px solid #e5e8ed;
  padding-top: 24px;
}
.sign-social p {
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  text-align: center;
  color: #787a80;
  margin-bottom: 16px;
}
.sign-social ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-bottom: 48px;
}

.modal-facebook:hover img {
  content: url(../images/facebook_hs.svg);
}

.modal-google:hover img {
  content: url(../images/google_hs.svg);
}

.modal-twitter:hover img {
  content: url(../images/twitter_hs.svg);
}

.modal-linkedin:hover img {
  content: url(../images/linkedin_hs.svg);
}

.close-btn {
  cursor: pointer;
  float: right;
  font-size: 20px;
}

.courses h6,
.courses h3 {
  text-align: center;
}

.courses__nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 60px;
}
@media screen and (max-width: 1024px) {
  .courses__nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }
}

.courses__menu {
  display: flex;
  gap: 10px;
}
@media screen and (max-width: 440px) {
  .courses__menu {
    flex-wrap: wrap;
    justify-content: center;
  }
}
.courses__menu p {
  padding: 10px 20px;
  border-radius: 4px;
  border: 1px solid transparent;
  font-weight: 700;
  font-size: 16px;
  line-height: 160%;
  cursor: pointer;
}
.courses__menu p:hover {
  border: 1px solid #ff3f3a;
}
.courses__menu p sup {
  font-weight: 900;
  font-size: 10px;
  line-height: 150%;
  margin-left: 4px;
}
.courses__menu p,
.courses__menu sup {
  text-align: center;
  transition: 0.3s;
  color: #9a9ca5;
}
.courses__menu p:hover,
.courses__menu sup:hover {
  color: #ff3f3a;
}
.courses__menu p:hover sup,
.courses__menu sup:hover sup {
  color: #ff3f3a;
}
.courses__menu .active {
  border: 1px solid #ff3f3a;
  color: #ff3f3a;
}
.courses__menu .active sup {
  color: #ff3f3a;
}

.courses__form {
  display: flex;
  align-items: center;
  border: 1px solid #d7dadd;
  border-radius: 4px;
  width: 315px;
  overflow: hidden;
}
.courses__form input {
  padding: 11px 16px;
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  color: #1e212c;
  flex: 1;
  border: none;
}
.courses__form input:focus {
  outline: none;
}
.courses__form button {
  background: transparent;
  padding: 15px;
  border: none;
  cursor: pointer;
}
.courses__form button::after {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  background-image: url(../images/magn_glass.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.courses__cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-bottom: 80px;
}

.courses__cards-item {
  max-width: 390px;
  border-radius: 4px;
  border: 1px solid #e5e8ed;
  box-shadow: 0 4px 4px -4px rgba(30, 33, 44, 0.03), 0 12px 10px -6px rgba(154, 156, 165, 0.04), 0 30px 24px -10px rgba(154, 156, 165, 0.05), 0 80px 80px -20px rgba(154, 156, 165, 0.08);
}
.courses__cards-item img {
  width: 100%;
}

.teachers__card-describe {
  padding: 24px;
}
.teachers__card-describe .proff {
  display: inline-block;
  padding: 1px 8px;
  color: #fff;
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  border-radius: 4px;
  margin-bottom: 20px;
}
.teachers__card-describe p {
  font-weight: 700;
  font-size: 20px;
  line-height: 150%;
  color: #1e212c;
  margin-bottom: 20px;
}
.teachers__card-describe span {
  display: inline-flex;
  align-items: center;
  font-size: 18px;
  line-height: 150%;
}

.marketing {
  background: #03cea4;
}

.management {
  background: #5a87fc;
}

.recruting {
  background: #f89828;
}

.design {
  background: #f52f6e;
}

.development {
  background: #7772f1;
}

.price {
  font-weight: 700;
  color: #ff4242;
}

.name {
  font-weight: 400;
  color: #787a80;
}
.name::before {
  content: "";
  border: 1px solid #787a80;
  width: 16px;
  transform: rotate(-90deg);
}

.link__bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #424551;
  font-weight: 700;
  gap: 16px;
  font-size: 16px;
  line-height: 160%;
  margin-bottom: 120px;
}
@media screen and (max-width: 440px) {
  .link__bottom {
    margin-bottom: 60px;
  }
}
.link__bottom::before {
  content: "";
  display: inline-block;
  background-image: url(../images/arrows_circle.svg);
  width: 24px;
  height: 24px;
  background-repeat: no-repeat;
}

.comment {
  background-color: #f4f5f6;
  padding: 180px 0 160px;
  margin-bottom: 120px;
}
@media screen and (max-width: 414px) {
  .comment {
    display: none;
  }
}
.comment h6,
.comment h3 {
  text-align: center;
}

.comment__item {
  max-width: 1020px;
  margin: 0 auto;
  background-color: #fff;
  padding: 64px 105px;
}
.comment__item .comment__text {
  position: relative;
  font-weight: 400;
  font-size: 20px;
  line-height: 150%;
  color: #424551;
  margin-bottom: 24px;
}
.comment__item .comment__text::before {
  content: "";
  display: inline-block;
  background-image: url(../images/braces.svg);
  width: 28px;
  height: 20px;
  position: absolute;
  top: 0;
  left: 0;
}

.comment__text,
.comment__client {
  padding-left: 58px;
}

.comment__client {
  display: flex;
  align-items: center;
  gap: 20px;
}
.comment__client p {
  font-weight: 700;
  font-size: 16px;
  line-height: 160%;
  color: #1e212c;
  margin-bottom: 4px;
}
.comment__client span {
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  color: #787a80;
}

.certificate {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 120px;
}
@media screen and (max-width: 1024px) {
  .certificate {
    flex-wrap: wrap;
    justify-content: center;
    gap: 50px;
  }
}
@media screen and (max-width: 440px) {
  .certificate {
    margin-bottom: 60px;
  }
}

.certificate__info {
  max-width: 395px;
}
@media screen and (max-width: 1024px) {
  .certificate__info {
    text-align: center;
  }
}
.certificate__info h3 {
  margin-bottom: 48px;
}
.certificate__info p {
  font-weight: 400;
  font-size: 16px;
  line-height: 160%;
  color: #424551;
  margin-bottom: 32px;
}

.certificate__logo {
  display: flex;
  align-items: center;
  gap: 40px;
}
@media screen and (max-width: 390px) {
  .certificate__logo {
    flex-wrap: wrap;
    justify-content: center;
  }
}

.certificate__photo {
  max-width: 705px;
  width: 100%;
}

.form__item {
  position: relative;
  background-color: #ffd6cf;
  padding: 120px 0 180px;
}
.form__item::before {
  content: "";
  display: inline-block;
  background-image: url(../images/pict-form.png);
  width: 354px;
  height: 254px;
  position: absolute;
  bottom: 0;
  left: 0;
  background-position: bottom;
  background-repeat: no-repeat;
}
@media screen and (max-width: 1300px) {
  .form__item::before {
    background-image: url(../images/pict-form-md.png);
    width: 244px;
    height: 170px;
  }
}
@media screen and (max-width: 768px) {
  .form__item::before {
    display: none;
  }
}
.form__item::after {
  content: "";
  display: inline-block;
  background-image: url(../images/pict-form.png);
  width: 354px;
  height: 254px;
  position: absolute;
  bottom: 0;
  right: 0;
  background-position: bottom;
  background-repeat: no-repeat;
}
@media screen and (max-width: 1300px) {
  .form__item::after {
    background-image: url(../images/pict-form-md.png);
    width: 244px;
    height: 170px;
  }
}
@media screen and (max-width: 768px) {
  .form__item::after {
    display: none;
  }
}
@media screen and (max-width: 440px) {
  .form__item {
    padding: 50px 0;
  }
}

.form__item-title {
  max-width: 810px;
  margin: 0 auto;
  text-align: center;
}
@media screen and (max-width: 360px) {
  .form__item-title h3 {
    font-size: 40px;
  }
}

.createx__form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 440px) {
  .createx__form {
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }
}
.createx__form input {
  border: 1px solid #d7dadd;
  border-radius: 4px;
  padding: 13px 16px;
  font-weight: 400;
  font-size: 16px;
  line-height: 160%;
  color: #1e212c;
  max-width: 422px;
  width: 100%;
}
@media screen and (max-width: 414px) {
  .createx__form input {
    max-width: 310px;
  }
}
.createx__form button {
  background: linear-gradient(45deg, #ff3f3a 0%, #f75e05 100%);
  color: #fff;
  transition: 0.3s;
}
.createx__form button:hover {
  background: #fff;
  color: #f75e05;
}

.wrapper {
  background: linear-gradient(to bottom, #1e212c 85.35%, #2c2f3c 14.65%);
}

.footer__wrapper {
  padding: 80px 0 60px;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 834px) {
  .footer__wrapper {
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
  }
}
@media screen and (max-width: 440px) {
  .footer__wrapper {
    margin-bottom: 70px;
  }
}

.footer__info {
  max-width: 275px;
}
.footer__info img {
  margin-bottom: 24px;
}
.footer__info p {
  font-weight: 400;
  font-size: 12px;
  line-height: 150%;
  color: #fff;
  opacity: 0.6;
  margin-bottom: 38px;
}
.footer__info ul {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer__list {
  max-width: 157px;
}
.footer__list h6 {
  color: #fff;
  margin-bottom: 12px;
}
.footer__list li {
  margin-bottom: 10px;
}
.footer__list a {
  opacity: 0.6;
  font-weight: 400;
  font-size: 16px;
  line-height: 160%;
  color: #fff;
}
.footer__list a:hover {
  opacity: 1;
}

.footer__phone,
.footer__mail {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.footer__phone::before,
.footer__mail::before {
  display: inline-block;
  content: "";
  width: 16px;
  height: 16px;
}

.footer__phone::before {
  background-image: url(../images/phone.svg);
}

.footer__mail::before {
  background-image: url(../images/envelope.svg);
}

.footer__form {
  max-width: 286px;
}
.footer__form h6 {
  color: #fff;
  margin-bottom: 24px;
}
.footer__form form {
  display: flex;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  margin-bottom: 12px;
}
.footer__form input {
  padding: 9px 12px;
  font-weight: 400;
  font-size: 12px;
  background: rgba(255, 255, 255, 0.12);
  line-height: 150%;
  opacity: 0.6;
  border: none;
  color: #fff;
  width: 100%;
}
.footer__form input:focus {
  outline: none;
}
.footer__form button {
  background: rgba(255, 255, 255, 0.12);
  padding: 10px;
  opacity: 0.6;
  border: none;
}
.footer__form small {
  font-weight: 400;
  font-size: 10px;
  line-height: 150%;
  color: #fff;
}

.facebook__link:hover img {
  content: url(../images/facebook_footer_hover.svg);
}

.twitter__link:hover img {
  content: url(../images/twitter_hover.svg);
}

.youtube__link:hover img {
  content: url(../images/youtube_hover.svg);
}

.telegram__link:hover img {
  content: url(../images/telegram_hover.svg);
}

.insta__link:hover img {
  content: url(../images/instagram_footer_hover.svg);
}

.linkedin__link:hover img {
  content: url(../images/linkedin_footer_hover.svg);
}

.copyright {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}
@media screen and (max-width: 390px) {
  .copyright {
    display: block;
    text-align: center;
  }
}

.copyright__left p,
.copyright__left span {
  font-weight: 400;
  font-size: 12px;
  line-height: 150%;
  color: #fff;
}
.copyright__left p {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 390px) {
  .copyright__left p {
    justify-content: center;
    margin-bottom: 15px;
  }
}

.copyright__item {
  display: inline-flex;
  align-items: center;
}
.copyright__item::after {
  display: inline-block;
  content: "";
  background-image: url(../images/heart.svg);
  width: 16px;
  height: 16px;
  margin: 0 4px;
}

.copyright__right {
  font-weight: 700;
  font-size: 14px;
  line-height: 150%;
  opacity: 0.6;
  color: #fff;
  cursor: pointer;
}/*# sourceMappingURL=courses.css.map */