@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
body {
    margin: 0;
    font-family: "Montserrat", sans-serif;
    background-color: #EDF2F7;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    scroll-behavior: smooth;
    /* zoom: 90%; */
}
main {
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    justify-content: center;
}
.cart-button {
    display: flex;
    z-index: 1;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 100%;
    background-color: #1B2A4E;
    position: sticky;
    top: 850px;
    left: 1800px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
    transition: transform 0.2s ease;
    cursor: pointer;
}
.cart-button:hover {
    transform: scale(1.1);
}
.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: #ff6b6b;
    color: white;
    font-size: 13px;
    font-weight: bold;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
    z-index: 10;
    min-width: 22px;
    border: 2px solid white;           
}
.cart-count.hidden {
    display: none;
}
/*                                    Header                               */
header {
    width: 100%;
    background-color: #1B2A4E;
    height: 100px;
    display: flex;
    position: fixed;
    z-index: 1000;
    justify-content: center;
}
.head-cont {
    width: 90%;
    height: 100px;
    background-color: #1B2A4E;
    display: flex;
    justify-content: space-between;
}
.header-logo {
    width: 100px;
    height: 100px;
}
.logo-block {
    display: flex;
    align-items: center;
}
.logo-block a {
    color: #FF6B6B;
    font-weight: bolder;
    font-size: 36px;
    margin: 0;
    text-decoration: none;
}
.header-cart {
    display: none;
}
.nav {
    display: flex;
    gap: 15px;
    align-items: center;
    justify-content: space-between;
}
.nav a {
    text-decoration: none;
    color: #FF6B6B;
    font-size: 24px;
    font-weight: 500;
}
.header-button {
    width: 160px;
    height: 50px;
    border-radius: 10px;
    background-color: #FF6B6B;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.3s;
    cursor: pointer;
}
.header-button a {
    color: black;
    user-select: none;
}
.header-button:hover {
    background-color: #BAE6FD;
}

/*                                     Modal                                 */
.modal {
  display: none;                    
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  z-index: 2000;
  justify-content: center;
  padding: 20px;
  overflow: hidden;
}
.modal.show {
  display: flex;
}
.modal-content {
  background: white;
  max-width: 800px;
  width: 100%;
  height: 900px;
  max-height: 95vh;
  overflow-y: auto;
  border-radius: 10px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: modalPop 0.4s ease forwards;
  padding: 5px 5px;
}
.modal-header {
  background: white;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.close {
  font-size: 46px;
  font-weight: 500;
  color: #999;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s;
}
.close:hover {
  color: #333;
}
.icon-block {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 35%;
    align-items: center;
    background-color: #EDF2F7;
    height: 280px;
    border-radius: 10px;
}
.icon-block h1 {
    font-size: 20px;
    font-weight: bolder;
    color: #222;
}
.modal-body {
  color: #444;
  font-size: 15.5px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-inline: 20px;
  overflow-y: auto;
}
.modal-text {
    width: 100%;
    font-size: 20px;
}
.modal-text h3 {
  margin: 20px 0 12px;
  color: #222;
}
.modal-text ul {
  padding-left: 20px;
}
.modal-text li {
  margin-bottom: 8px;
}
.modal-footer {
  background: white;
  text-align: center;
  margin-top: 5px
}
.btn-close {
  background: #FF6B6B;
  width: 50%;
  color: white;
  border: none;
  padding: 12px 25px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 20px;
  font-weight: bold;
  transition: background-color 0.3s;
}
@media (max-width: 800px) {
    .icon-block {
        width: 50%;
    }
}
@media (max-width: 650px) {
    .icon-block {
        width: 70%;
    }
}
.btn-close:hover {
  background-color: #1B2A4E;
}
@keyframes modalPop {
  from { opacity: 0; transform: scale(0.85) translateY(50px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}


/*                                      Mobile Menu                             */
#hamburger-icon {
    margin: auto 0;
    display: none;
    cursor: pointer;
    font-size: 18px;
    color: #fff;
    text-decoration: none;
}
#hamburger-icon div {
    width: 35px;
    height: 3px;
    border-radius: 30px;
    background-color: #FF6B6B;
    margin: 6px 0;
    transition: 0.4s;
}
.open .bar1 {
    -webkit-transform: rotate(-45deg) translate(-6px, 6px);
    transform: rotate(-45deg) translate(-6px, 6px);
}
.open .bar2 {
    opacity: 0;
}  
.open .bar3 {
    -webkit-transform: rotate(45deg) translate(-6px, -8px);
    transform: rotate(45deg) translate(-6px, -8px);
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 20px;
  background: rgba(0, 0, 0, 0.7);
  position: absolute;
  top: 90px;
  right: 20px;
  width: 100px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
  list-style: none;
  pointer-events: none;
}
.mobile-menu.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.mobile-menu li {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.4s ease;
  margin-bottom: 12px;
  width: 100%;
}
.mobile-menu.active li:nth-child(1) { transition-delay: 0.05s; }
.mobile-menu.active li:nth-child(2) { transition-delay: 0.10s; }
.mobile-menu.active li:nth-child(3) { transition-delay: 0.15s; }
.mobile-menu.active li:nth-child(4) { transition-delay: 0.20s; }
.mobile-menu.active li:nth-child(5) { transition-delay: 0.25s; }

.mobile-menu.active li {
  opacity: 1;
  transform: translateX(0);
}

.mobile-menu li a {
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  display: block;
  padding: 8px 0;
  transition: color 0.3s;
}

.mobile-menu li a:hover {
  color: #FF6B6B;
}
.cab-wrapper {
  position: relative;
}
.cabinet-menu {
  display: flex;
  position: absolute;
  flex-direction: column;
  align-items: flex-start;
  background: rgba(0, 0, 0, 0.7);
  position: absolute;
  height: 140px;
  top: 60px;
  width: 160px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
  opacity: 0;
  transform: translateY(15px) scale(0.95);
  visibility: hidden;
  pointer-events: none;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.cabinet-menu.active {
  display: flex;
  opacity: 1;
  transform: translateY(0) scale(1);
  visibility: visible;
  pointer-events: auto;
}
.cabinet-menu li {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.4s ease;
  margin-bottom: 12px;
  width: 100%;
  list-style: none;
}
.cabinet-menu.active li {
  opacity: 1;
  transform: translateX(0);
}
.cabinet-menu li a {
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  text-decoration: none;
  display: block;
  padding: 8px 0;
  transition: color 0.3s;
}
.cabinet-menu ul {
  padding: 0;
  padding: 10px 10px;
}
.cabinet-menu li a:hover {
  color: #FF6B6B;
}
.cab-button {
  background: none;
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  padding: 0;
  margin-bottom: 12px;
  text-align: start;
  font-family: "Montserrat";
  transition: color 0.3s;
}
.cab-button:hover {
  color: #FF6B6B;
}

.nav {
    display: flex;
    width: 728px;
    justify-content: space-between;
    align-items: center;
    margin-right: 60px;
}
.nav a {
    text-decoration: none;
    color: #FF6B6B;
    font-size: 24px;
    font-weight: 500;
}
.header-button {
    width: 160px;
    height: 50px;
    border-radius: 10px;
    background-color: #FF6B6B;
    display: flex;
    justify-content: center;
    align-items: center;
}
.header-button a {
    color: black;
}
/*                             Slider                            */
.photo-slider {
    width: 100%;
    margin-top: 100px;
}
.slider {
    position: relative;
    width: 100%;
    height: 80vh;
    min-height: 500px;
    overflow: hidden;
}
  .slider__container {
    width: 100%;
    height: 100%;
} 
  .slider__slides {
    position: relative;
    width: 100%;
    height: 100%;
} 
  .slider__slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
} 
  .slider__slide--active {
    opacity: 1;
    visibility: visible;
} 
  .slider__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
} 
  .slider__content {
    position: absolute;
    background-color: rgba(43, 43, 43, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    bottom: 20%;
    left: 10%;
    max-width: 500px;
    color: white;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}
  .slider__title {
    font-size: 48px;
    margin: 10px 10px;
    margin-bottom: 16px;
    color: #FF6B6B;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}  
  .slider__btn {
    display: inline-block;
    padding: 12px 24px;
    background-color: #FF6B6B;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    transition: background-color 0.3s;
    margin: 10px 10px;
}
  .slider__btn:hover {
    background-color: #1B2A4E;
  }
  /* Кнопки навигации */
  .slider__prev,
  .slider__next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background-color: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(4px);
    border: none;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    transition: background-color 0.3s;
    z-index: 10;
  } 
  .slider__prev:hover,
  .slider__next:hover {
    background-color: rgba(255, 255, 255, 0.9);
  }
  .slider__prev {
    left: 20px;
  }
  .slider__next {
    right: 20px;
  }
  /* Пагинация (точки) */
  .slider__dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
  }
  .slider__dot {
    width: 12px;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.5);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s;
    padding: 0;
  }
  .slider__dot--active {
    background-color: white;
    transform: scale(1.2);
  }
  /* Адаптивность */
  @media (max-width: 768px) {
    .slider {
      height: 60vh;
      min-height: 400px;
    }
    
    .slider__title {
      font-size: 28px;
    }
    
    .slider__text {
      font-size: 14px;
    }
    
    .slider__prev,
    .slider__next {
      width: 36px;
      height: 36px;
      font-size: 18px;
    }
}
.container {
    width: 1230px;
    height: fit-content;
}
.container h1 {
    text-align: center;
    font-size: 36px;
    font-weight: bolder;
    color: #FF6B6B;
    margin: 0;
    padding-bottom: 60px;
    padding-top: 40px;
}
.directions {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}
.directions-flex {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}
.direct-content {
    margin-inline: 40px;
    margin-block-start: 10px;
    margin-block-end: 35px;
}
.lego {
    background-color: #BAE6FD;
    border-radius: 10px;
    width: 530px;
    height: 230px;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}
.model {
    background-color: #BAE6FD;
    border-radius: 10px;
    width: 530px;
    height: 230px;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}
.arduino {
    background-color: #BAE6FD;
    border-radius: 10px;
    width: 530px;
    height: 230px;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}
.scratch {
    background-color: #BAE6FD;
    border-radius: 10px;
    width: 530px;
    height: 230px;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}
.advantages {
    margin-bottom: 80px;
}
.mobile-advantages {
    display: none;
}
.descript-block {
    background-color: #1B2A4E;
    width: 100%;
}
.left-side {
    width: 700px;
    height: 400px;   
    background-color: #1B2A4E;
    border-radius: 10px 30px 30px 10px;
}
.right-side {
    width: 700px;
    height: 400px;   
    background-color: #1B2A4E;
    border-radius: 30px 10px 10px 30px;
}
.right-side1 {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.left-side1 {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.compot-1 {
    border-radius: 10px;
    margin-left: 130px;
}
.compot-2 {
    border-radius: 10px;
    margin-right: 90px;
}
.compot-3 {
    border-radius: 10px;
    margin-left: 90px;
}
.advantages-descript {
    color: #EDF2F7;
}
.logo-title {
    display: flex;
    gap: 10px;
    margin-top: 20px;
    width: 450px;
    height: 100px;
}
.logo-title h2 {
    line-height: 50px;
    color: #EDF2F7;
}
.container-left {
    width: 1240px;
    height: 400px;
    margin-right: auto;
    margin-left: auto;
    background-color: #BAE6FD;
    border-radius: 10px;
    display: flex;
    margin-bottom: 30px;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}
.container-right {
    width: 1240px;
    height: 400px;
    margin-right: auto;
    margin-left: auto;
    background-color: #BAE6FD;
    border-radius: 10px;
    display: flex;
    flex-direction: row-reverse;
    margin-bottom: 30px;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}
.sertificate-title {
    display: flex;
    width: 400px;
    height: max-content;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
}
.sertificate {
    width: 100%;
    background-color: #BAE6FD;
    height: 400px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}
.sertificate-scans {
    width: 80%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.container2 {
    width: 1230px;
    height: fit-content;
    margin-right: auto;
    margin-left: auto;
    background-color: #BAE6FD;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 50px;
}
.container3 {
      width: 1240px;
      background-color: #1B2A4E;
      border-radius: 20px;
      padding: 40px 30px 35px;
      box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
}
.container3 h1 {
    color: #FF6B6B;
    font-size: 36px;
    font-weight: bold;
}
.container4 {
    width: 1240px;
    height: 400px;
    background-color: #BAE6FD;
    margin-right: auto;
    margin-left: auto;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}
/*                                       Форма                             */

.test-lesson {
    margin-bottom: 80px;
    width: 100%;
    display: flex;
    justify-content: center;
}
.form {
    width: 60%;
    height: max-content;
    min-height: 400px;
    background-color: #FF6B6B;
    border-radius: 10px;
    padding: 15px 25px;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
}
.form h1 {
    color: black;
    font-weight: medium;
    font-size: 20px;
    text-align: center;
}
.form-group {
    margin-bottom: 20px;
    text-align: left;
    width: 100%;
}
.form-group label {
      display: block;
      font-size: 15px;
      margin-bottom: 8px;
      color: white;
}
.form-group input {
    width: 100%;
    height: 52px;
    background: white;
    border-radius: 8px;
    font-size: 16px;
    color: #333;
    border: none;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}
input::placeholder {
    font-weight: bold;
    font-size: 14px;
    text-align: left;
}
#submit-btn, #feedback-submit-btn {
      width: 160px;
      height: 48px;
      background: #BAE6FD;
      color: #333;
      border: none;
      border-radius: 8px;
      font-size: 20px;
      font-weight: bold;
      cursor: pointer;
      transition: background-color 0.2s;
      box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}
#submit-btn, #feedback-submit-btn:hover {
  background-color: #1B2A4E;
  color: #FF6B6B;
}
.error {
      color: #1B2A4E;
      font-size: 14px;
      margin-top: 5px;
}
/*                                           Footer                     */
footer {
    width: 100%;
    background-color: #1B2A4E;
    display: flex;
    justify-content: center;
    margin-top: 50px;
    height: 200px;
}
.right-block {
    display: flex;
    width: 60%;
    justify-content: flex-end;
    align-items: center;
}
.foot-cont {
    width: 90%;
    background-color: #1B2A4E;
    display: flex;
    justify-content: space-between;
}
.social-logo img {
    width: 50px;
    height: 50px;
}
.info {
    width: fit-content;
    height: 150px;
    color: #FF6B6B;
    font-size: 20px;
    font-weight: bold;
}
.info p {
    margin: 10px;
}
.mobile-footer {
    display: none;
}
/*                                   LightBox                       */
.lightbox {
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  display: none;                    
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.lightbox.show {
  display: flex;
  opacity: 1;
  pointer-events: auto;
}

.lightbox-content {
  position: relative;
  transform: scale(0.75);
  transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
  max-width: 96%;
  max-height: 96vh;
}

.lightbox.show .lightbox-content {
  transform: scale(1);
}

.lightbox-img {
  max-width: 100%;
  max-height: 92vh;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.7);
}

.lightbox-close {
  position: absolute;
  top: -55px;
  right: 15px;
  color: #fff;
  font-size: 45px;
  font-weight: bold;
  cursor: pointer;
  z-index: 10000;
}

.lightbox-close:hover {
  opacity: 0.7;;
}
/*                                            Enter Modal                       */
.enter-window {
  display: none;                   
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(5px);
  z-index: 2000;
  justify-content: center;
  padding: 20px;
  overflow: hidden;
}
.enter-content {
  background: white;
  max-width: 800px;
  width: 100%;
  height: 560px;
  max-height: 95vh;
  overflow-y: auto;
  border-radius: 10px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  animation: modalPop 0.4s ease forwards;
  padding: 5px 5px;
}
.enter-window.show {
  display: flex;
}
.enter-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.enter-body h1 {
  font-size: 45px;
  margin: 0;
}
.enter-body > p {
  font-size: 24px;
  margin-bottom: 60px;
}
.enter-body a {
  color: #559EF9;
  cursor: pointer;
}
.enter-form {
  width: 100%; 
  display: flex;
  flex-direction: column;
  align-items: center;
}
.enter-form-group {
  margin-bottom: 40px;
  text-align: center;
  width: 90%;
}
.enter-form-group input {
  width: 100%;
  height: 55px;
  background: white;
  border-radius: 10px;
  font-size: 24px;
  font-weight: lighter;
  color: #333;
  border: #7c7c7c 1px solid;
}
.enter-button {
  height: 55px;
  width: 75%;
  background-color: #BAE6FD;
  color: #222;
  text-align: center;
  border: none;
  border-radius: 10px;
  font-size: 24px;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease-in;
}
.enter-button:hover {
  background-color: #1B2A4E;
  color: #FF6B6B;
}
.password-form {
  position: relative;
}
.toggle-password {
    position: absolute;
    right: 1%;
    top: 35%;
    cursor: pointer;
    font-size: 18px;
    color: #666;
    user-select: none;
    width: 20px;
    height: 20px;
    opacity: 0.8;
}
.toggle-password:hover {
    opacity: 1;
}
.email::placeholder {
  text-align: left;
  font-size: 24px;
  font-weight: normal;
}
.password::placeholder {
  text-align: left;
  font-weight: normal;
  font-size: 24px;
}
.user-name::placeholder {
  text-align: left;
  font-weight: normal;
  font-size: 24px;
}
/*                                            Register Modal                       */
.register-content {
  background: white;
  max-width: 800px;
  width: 100%;
  height: 650px;
  max-height: 95vh;
  overflow-y: auto;
  border-radius: 10px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  animation: modalPop 0.4s ease forwards;
  padding: 5px 5px;
}
/*                                              Личный кабинет                       */
.lk-main {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 100px;
}
.info-grid {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  width: 1240px;
  justify-content: space-between;
  row-gap: 35px;
  height: max-content;
}
.info-grid p, h2, h3 {
  color: #1B2A4E;
}
.block-content {
  margin: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  height: 100%;
}
.payment-status {
  width: 600px;
  height: 320px;
  background-color: #BAE6FD;
  border-radius: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}
.edu-progress {
    width: 600px;
    height: 320px;
    background-color: #BAE6FD;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}
.course-progress {
  height: 100%;
}
.schedule {
  display: flex;
  flex-direction: column;
  background-color: #BAE6FD;
  border-radius: 10px;
  flex-wrap: wrap;
  width: 1240px;
  text-align: center;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  height: max-content;
}
.schedule-line {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: center;
  margin-bottom: 30px;
  height: max-content;
}
.schedule-card {
  width: 30%;
  height: max-content;
  border-radius: 10px;
  background-color: white;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}
.card-head {
  text-align: left;
  margin-inline: 20px;
}
.card-content {
  text-align: left;
  margin-inline: 20px;
}
.card-footer {
  display: flex;
  text-align: left;
  flex-direction: column;
  justify-content: flex-start;
  margin-inline: 20px;
  margin-bottom: 10px;
}
.time-and-name {
  display: flex;
  gap: 20px;
}
.empty-cart {
    margin-top: 250px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    align-items: center;
}
.empty-cart h1 {
    color: #1B2A4E;
    font-weight: medium;
    font-size: 48px;
}
.to-catalog {
    display: flex;
    width: 275px;
    height: 55px;
    border-radius: 10px;
    background-color: #BAE6FD;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
    transition: background-color 0.4s ease;
}
.to-catalog p {
    font-weight: normal;
    font-size: 24px;
    color: #1B2A4E;
    margin: 0;
    text-decoration: none;
    font-family: "Montserrat", sans-serif;
}
.to-catalog:hover {
    background-color: #FF6b6b;
}
a {
    text-decoration: none;
}
.checkout-btn {
  width: 540px;
  border: none;
  border-radius: 10px;
  height: 76px;
  background-color: #FF6B6B;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  color: #EDF2F7;
  font-size: 36px;
  min-height: max-content;
  font-weight: bolder;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
}
.checkout-btn:hover {
  background-color: #1B2A4E;
  color: #FF6B6B;
}
.course-item {
  width: 80%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #559EF9;
  border-radius: 10px;
  padding: 10px 10px 10px 10px;
  margin-bottom: 40px;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}
/*                               Total modal              */
.modal-total {
  display: none;                   
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(1px);
  z-index: 2000;
  justify-content: center;
  padding: 20px;
  overflow: hidden;
}
.modal-total.show {
  display: flex;
}
.total-content {
  background: #FF6B6B;
  max-width: 840px;
  width: 60%;
  height: 770px;
  max-height: 95vh;
  overflow-y: auto;
  border-radius: 10px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  animation: modalPop 0.4s ease forwards;
  padding: 5px 5px;
}
#modal-header, #modal-footer {
  background-color: #FF6B6B;
}
.total-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: max-content;
}
.total-body h1 {
  font-size: 45px;
  margin: 0;
  margin-bottom: 20px;
}
input, textarea {
  width: 100%;
  /* padding: 12px 15px; */
  border: 2px solid #ddd;
  border-radius: 8px;
  font-size: 16px;
  box-sizing: border-box;
  resize: none;
}

input:focus, textarea:focus {
  outline: none;
  border-color: #1B2A4E;
}

input.error, textarea.error {
  border-color: #1B2A4E !important;
  background: #fff0f0;
}

.error-message {
  color: #1B2A4E;
  font-size: 14px;
  margin-top: 5px;
  min-height: 20px;
}
.total-form {
    width: 80%;
    height: max-content;
    min-height: 400px;
    background-color: #FF6B6B;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
}
#total-form-group {
  margin-bottom: 5px;
}