/* Variables */
/* Base Styles */
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #333;
  background-color: #fff;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: #fff;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 500;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  text-align: center;
  border: none;
  font-size: 1rem;
}

.btn--primary {
  background-color: #e98400;
  color: #fff;
}

.btn--primary:hover {
  background-color: #b66700;
}

.btn--secondary {
  background-color: #fff;
  color: #0f172a;
  border: 1px solid #0f172a;
}

.btn--secondary:hover {
  background-color: #0f172a;
  color: #fff;
}

.btn--outline {
  background-color: transparent;
  color: #fff;
  border: 1px solid #fff;
}

.btn--outline:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

/* Header */
.header {
  background-color: #0f172a;
  padding: 20px 0;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: #e98400;
}

.nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}

.nav__link {
  color: #fff;
  font-size: 0.9rem;
}

.nav__link:hover {
  color: #e98400;
}

@media (max-width: 768px) {
  .nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #0f172a;
    padding: 80px 20px 20px;
    z-index: 90;
  }
  .nav.active {
    display: block;
  }
  .nav__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 30px;
  }
  .nav__link {
    font-size: 1.2rem;
  }
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 100;
}

.menu-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: #fff;
  margin: 5px 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
  -webkit-transform: rotate(45deg) translate(5px, 5px);
          transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  -webkit-transform: rotate(-45deg) translate(5px, -5px);
          transform: rotate(-45deg) translate(5px, -5px);
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }
}

/* Hero Section */
.hero {
  background-color: #0f172a;
  padding: 80px 0;
  color: #fff;
}

.hero__wrapper {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
  gap: 40px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 992px) {
  .hero__wrapper {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
}

.hero__title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

@media (max-width: 768px) {
  .hero__title {
    font-size: 2.5rem;
  }
}

.hero__text {
  margin-bottom: 30px;
  font-size: 1.1rem;
}

.hero__image {
  border-radius: 8px;
  overflow: hidden;
}

.hero__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* Courses Section */
.courses {
  background-color: #0f172a;
  padding: 80px 0;
}

.courses__grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(280px, 1fr))[auto-fit];
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.course-card {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 30px;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.course-card:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  background-color: rgba(255, 255, 255, 0.1);
}

.course-card__icon {
  margin-bottom: 20px;
  width: 50px;
  height: 50px;
  background-color: rgba(233, 132, 0, 0.2);
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.course-card__icon img {
  width: 30px;
  height: 30px;
}

.course-card__title {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.course-card__text {
  margin-bottom: 20px;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.course-card__price {
  font-weight: 600;
  margin-bottom: 20px;
  font-size: 1.2rem;
}

/* About Section */
.about {
  background-color: #0f172a;
  padding: 80px 0;
}

.about__wrapper {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
  gap: 40px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 992px) {
  .about__wrapper {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
}

.about__text {
  color: #fff;
  margin-bottom: 20px;
}

.about__subtitle {
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 10px;
}

.about__subheading {
  font-size: 1.2rem;
  color: #e98400;
  margin-bottom: 15px;
}

.about__image {
  border-radius: 8px;
  overflow: hidden;
}

.about__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* Blog Section */
.blog {
  background-color: #0f172a;
  padding: 80px 0;
}

.blog__grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(280px, 1fr))[auto-fit];
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.blog-card {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  overflow: hidden;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.blog-card:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}

.blog-card__image {
  height: 200px;
}

.blog-card__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.blog-card__title {
  padding: 20px 20px 10px;
  font-size: 1.2rem;
  color: #fff;
}

.blog-card__text {
  padding: 0 20px 20px;
  color: #fff;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

/* Features Section */
.features {
  background-color: #0f172a;
  padding: 80px 0;
}

.features__grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(280px, 1fr))[auto-fit];
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.feature-card {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  overflow: hidden;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  height: 100%;
}

.feature-card:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}

.feature-card__image {
  height: 200px;
}

.feature-card__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.feature-card__title {
  padding: 20px 20px 10px;
  font-size: 1.2rem;
  color: #fff;
}

.feature-card__text {
  padding: 0 20px 20px;
  color: #fff;
}

/* Contact Section */
.contact {
  background-color: #0f172a;
  padding: 80px 0;
}

.contact__wrapper {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
  gap: 40px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}

@media (max-width: 992px) {
  .contact__wrapper {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
}

.contact__text {
  color: #fff;
  margin-bottom: 20px;
}

.contact__info {
  color: #fff;
  font-style: normal;
}

.contact__info p {
  margin-bottom: 10px;
}

.contact__info a {
  color: #e98400;
}

.contact__info a:hover {
  text-decoration: underline;
}

.contact__form-wrapper {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  overflow: hidden;
}

.contact__image {
  height: 200px;
}

.contact__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.contact__form {
  padding: 30px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  color: #fff;
  font-family: "Inter", sans-serif;
}

.form-group input::-webkit-input-placeholder,
.form-group textarea::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.form-group input:-ms-input-placeholder,
.form-group textarea:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.form-group input::-ms-input-placeholder,
.form-group textarea::-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #e98400;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

/* Footer */
.footer {
  background-color: #0f172a;
  padding: 50px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 30px;
}

@media (max-width: 768px) {
  .footer__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 20px;
  }
}

.footer__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}

@media (max-width: 768px) {
  .footer__nav-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
  }
}

.footer__nav-link {
  color: #fff;
  font-size: 0.9rem;
}

.footer__nav-link:hover {
  color: #e98400;
}

.footer__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 768px) {
  .footer__info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 20px;
  }
}

.footer__address {
  color: #fff;
  font-style: normal;
}

.footer__address p {
  margin-bottom: 5px;
}

.footer__address a {
  color: #e98400;
}

.footer__address a:hover {
  text-decoration: underline;
}

.footer__copyright {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
}

/* Confirmation Popup */
.thx {
  background: #141c38;
}

.confirmation.active {
  display: block;
}

.confirmation__content {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 20px;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.confirmation__wrapper {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
  gap: 40px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 992px) {
  .confirmation__wrapper {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
}

.confirmation__title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #fff;
  line-height: 1.2;
}

@media (max-width: 768px) {
  .confirmation__title {
    font-size: 2rem;
  }
}

.confirmation__description {
  color: #fff;
  margin-bottom: 30px;
}

.confirmation__image {
  border-radius: 8px;
  overflow: hidden;
}

.confirmation__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* Cookie Popup */
.cookie-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #0f172a;
  z-index: 200;
  padding: 20px;
  -webkit-box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
          box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}

.cookie-popup.active {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.cookie-popup__content {
  max-width: 1200px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding: 20px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  position: relative;
}

.cookie-popup__icon {
  width: 40px;
  height: 40px;
  margin-bottom: 15px;
}

.cookie-popup__title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #fff;
}

.cookie-popup__text {
  color: #fff;
  margin-bottom: 15px;
}

.cookie-popup__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  margin-top: 15px;
}

@media (max-width: 576px) {
  .cookie-popup__buttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
  }
  .cookie-popup__buttons .btn {
    width: 100%;
  }
}

.policy {
  margin-top: 100px;
  margin-bottom: 100px;
}

.policy h1 {
  font-size: 32px;
  margin-bottom: 24px;
  text-align: center;
}
/*# sourceMappingURL=style.css.map */