* {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    text-decoration: none;
    list-style: none;
    box-sizing: border-box;
}

:root {
    --color-primary: #6c63ff;
    --color-success: #06bf8e;
    --color-warning: #f7c94b;
    --color-danger: #f75842;
    --color-danger-variant: rgba(247, 88, 66, 0.4);
    --color-white: #fff;
    --color-light: rgba(255, 255, 255, 0.7);
    --color-black: #000;
    --color-bg: #1f2641;
    --color-bg1: #2e3267;
    --color-bg2: #424890;

    --container-width-1g: 76%;
    --container-width-md: 90%;
    --container-width-sm: 94%;

    --transition: all 400ms ease;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.7;
    color: var(--color-white);
    background: var(--color-bg2);
}

.container {
    width: var(--container-width-1g);
    margin: 0 auto;
}

section {
    padding: 6rem 0;
}

section h2 {
    text-align: center;
    margin-bottom: 4rem;
}

h1,
h2,
h3,
h4,
h5 {
    line-height: 1.2;
}

h1 {
    font-size: 2.4rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.6rem;
}

h4 {
    font-size: 1.3rem;
}

a {
    color: #fff;
}

img {
    width: 100%;
    display: block;
    object-fit: cover;
}

.btn {
    display: inline-block;
    background: var(--color-white);
    color: var(--color-black);
    padding: 1rem 2rem;
    border: 1px solid transparent;
    font-weight: 500;
    transition: var(--transition);
}

.btn.hover {
    background: transparent;
    color: white;
    border-color: #fff;
}

.btn-primary {
    background: #f75842;
    color: var(--color-white);
}

.window-scroll {
    background: var(--color-primary);
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.2);
}

nav {
    background: transparent;
    width: 100vw;
    height: 5rem;
    position: fixed;
    top: 0;
    z-index: 11;
}

.nav__container {
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Montserrat', sans-serif;
}

nav button {
    display: none;
}

.nav__menu {
    display: flex;
    align-items: center;
    gap: 4rem;
    font-family: 'Montserrat', sans-serif;
}

.nav__menu a {
    font-size: 0.9rem;
    transition: all 400ms ease;
}

.nav__menu a:hover {
    color: var(--color-bg1);
}


/* ----------------- HEADER --------------- */

header {
    position: relative;
    top: 5rem;
    overflow: hidden;
    height: 70vh;
    margin-bottom: 5rem;
    
}

.header__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 5rem;
    height: 100%;
}

.header__left p {
    margin: 1rem 0 2.4rem;
}

  

/* ----------------- HEADER --------------- */

/* ----------------- ABOUT --------------- */
.about {
    background: var(--color-bg1);
}

.about h1 {
    line-height: 1;
    margin-bottom: 3rem;
}

.image-container {
    position: relative;
}

.custom-image {
    width: 150px;
    height: auto;
    position: absolute;
    bottom: 460px;
    right: -10px;
}


/* ----------------- END OF ABOUT --------------- */

/* ----------------- Meet the FOUNDER ------------- */

.header__right {
    margin: 1rem 0 2.4rem;
}

.founder {
    display: flex;
    align-items: flex-start;
    text-align: center;
}

.founder__left {
    position: relative;
    margin-right: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.founder__left img {
    max-width: 305px;
    border-radius: 10px;
    margin-top: 130px;
    margin-left: 25px;
    transition: var(--transition);
}

.founder__left img:hover {
    background: transparent;
    border-color: var(--color-primary);
}

.founder__right {
    flex: 1;
    text-align: left;
    margin-right: 10px;
}

.founder__right h3 {
    margin-top: 0;
}

.socials {
    position: absolute;
    top: 230px;
    left: 310px;
    display: flex;
    flex-direction: column;
    background-color: var(--color-primary);
    border-radius: 1rem;
    padding: 0.5rem;
}

.socials a {
    margin-bottom: 0.5rem;

}

.socials i {
    font-size: 25px;
}

/* end of meet the founder*/

/* START OF FAQ SECTION*/

.faqs {
    background: var(--color-bg1);
    box-shadow: inset 0 0 3rem rgba(0, 0, 0, 0.5);
}

.faqs__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.faq {
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1.4rem;
    height: fit-content;
    background: var(--color-primary);
    cursor: pointer;
}

.faq h4 {
    font-size: 1rem;
    line-height: 2.2;
}

.faq__icon {
    align-self: flex-start;
    font-size: 1.2rem;
}

.faq p {
    margin-top: 0.8rem;
    display: none;
}

.faq.open p {
    display: block;
}

/* ----------------- TESTIMONIALS ------------- */

.testimonials__container {
    overflow-x: hidden;
    position: relative;
    margin-bottom: 5rem;
}

.testimonial {
    padding-top: 2rem;
}

.avatar {
    width: 6rem;
    height: 6rem;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1rem;
    border: 1rem solid var(--color-bg1);
    object-fit: cover;
}


.testimonial__info {
    text-align: center;
}

.testimonial__body {
    background: var(--color-primary);
    padding: 2rem;
    margin-top: 3rem;
    position: relative;
}

.testimonial__body::before {
    content: "";
    display: block;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary, var(--color-primary)));
    width: 3rem;
    height: 3rem;
    position: absolute;
    left: 50%;
    top: -1.5rem;
    transform: rotate(45deg);
}

/******************* footer *****************/

footer {
    background: var(--color-bg1);
    padding-top: 5rem;
    font-size: 0.9rem;
    font-family: 'Montserrat', sans-serif;
}

.footer__container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 5rem;
    font-family: 'Montserrat', sans-serif;
}

.footer__container>div h4 {
    margin-bottom: 1.2rem;
}

.footer__1 p {
    margin: 1rem 0 2rem;
    font-family: 'Montserrat', sans-serif;
}

footer ul li {
    margin-bottom: 0.7rem;
    font-family: 'Montserrat', sans-serif;
}

footer ul li a:hover {
    text-decoration: underline;
    font-family: 'Montserrat', sans-serif;
}

.footer__socials {
    display: flex;
    gap: 1.5rem;
    font-size: 1.5rem;
    margin-top: 2rem;
}

/*************** ~ END OF THE FOOTNOTE ~ ****************/








/********************CONTACT PAGE *******************/
.contact__container {
    background: var(--color-bg1);
    padding: 2rem;
    display: grid;
    grid-template-columns: 40% 60%;
    gap: 4rem;
    height: 30rem;
    margin: 7rem auto;
    border-radius: 1rem;
}
.contact__aside {
    background: var(--color-primary);
    padding: 3rem;
    border-radius: 1rem;
    position: relative;
    bottom: 10rem;
}
.aside__image{
    width: 12rem;
    margin-bottom: 2rem;
}
.contact__aside h2 {
    text-align: left;
    margin-bottom:1rem ;
}
.contact__aside p {
    font-size: 0.9rem;
    margin-bottom: 2rem ;
}
.contact__details li {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-bottom: 1rem;
}
.contact__socials {
    display: flex;
    gap:0.8rem;
    margin-top: 2rem;
}
.contact__socials a {
    background: var(--color-bg2);
    padding: 0.5rem;
    border-radius: 50%;
    font-size: 0.9rem;
    transition: var(--transition);
}
.contact__socials a:hover {
    background: transparent;
}
.contact__form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin-right: 4rem;
}
.form__name {
    display: flex;
    gap:1.2rem
}
.contact__form input[type="text"] {
    width: 50%;
}
input, textarea {
    width: 100%;
    padding: 1rem;
    background: var(--color-bg);
    color: var(--color-white);
}
.contact__form .btn {
    width: max-content;
    margin-top: 1rem;
    cursor:pointer;
}

@keyframes fadeIn {
    0% {
      opacity: 0;
      transform: translateY(-10px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }

  @keyframes gradientAnimation {
    0% {
      background-position: 0% 50%;
    }
    50% {
      background-position: 100% 50%;
    }
    100% {
      background-position: 0% 50%;
    }
  }

/************************* LOGIN *********************/


#log {
    background-color:var(--color-bg2);
    color: #ffffff;
    font-family: Arial, sans-serif;
    background: linear-gradient(45deg, #A99AEA, #424890, #442960, #1f2641);
    background-size: 400% 400%;
    animation: gradientAnimation 15s ease infinite;
    
  }
  
  .login-container {
    background-color: #2e3267;
    background-image: url("circuit-pattern.png");
    background-repeat: repeat;
    background-position: center;
    border-radius: 5px;
    padding: 40px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    max-width: 400px; /* Limit the maximum width of the container */
    margin: 0 auto; /* Center the container horizontally */
    margin-top: 30px;
  }
  
  .login-container h2 {
    text-align: center; 
    color: white;
  }
  
  .login-container input[type="text"],
  .login-container input[type="password"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
  }
  
  .login-container button {
    width: 100%;
    padding: 10px;
    background-color: #f75842;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 40px;
  }
  
  .login-container p {
    text-align: center; 
    color: #6c63ff;
  }
  
  
/*--------------------------TABLET-------------------------*/
@media screen and (max-width: 1024px){
    .container {
        width: var(--container-width-md)
    }
    h1 {
        font-size:2.2rem;
    }
    h2 {
        font-size: 1.7rem;
    }
    h3 {
        font-size: 1.4rem;
    }
    h4 {
        font-size: 1.2rem;
    }
    nav button {
        display: inline-block;
        background: transparent;
        font-size: 1.8rem;
        color: #fff;
        cursor: pointer;
    }
    nav button#close-menu-btn {
        display: none;
    }

    .nav__menu {
        position: fixed;
        top: 5rem;
        right: 5%;
        height: fit-content;
        width: 18rem;
        flex-direction: column;
        gap: 0;
    }
    .nav__menu li{
        width:100%;
        height:5.8rem;
        animation: animateNavItems 1s linear forwards;
        transform-origin: top right;
        opacity: 0;
    }

    .nav__menu li:nth-child(2){
        animation-delay: 200ms;
    }
    .nav__menu li:nth-child(3){
        animation-delay: 400s;
    }
    .nav__menu li:nth-child(4){
        animation-delay: 600s;
    }
    .nav__menu li:nth-child(5){
        animation-delay: 800s;
    }
    .nav__menu li:nth-child(6){
        animation-delay: 1000s;
    }
    .nav__menu li:nth-child(7){
        animation-delay: 1200s;
    }

    .nav__menu li a {
        background: var(--color-primary);
        box-shadow: -4rem 6rem 10rem rgba(0, 0, 0, 0.6);
        width: 100%;
        height: 100%;
        display: grid;
        place-items: center;
        
    }
    .nav__menu li a:hover {
        background: var(--color-bg2);
        color: #fff;
    }
    @keyframes animateNavItems {
        0% {
            transform: rotateZ(-90deg);
        }
        100% {
            transform: rotateZ(0deg);
        }
    }
    header {
        height: 52vh;
    }
    .header__container {
        gap:0;
        padding-bottom: 3rem;
    }
    .faqs__conatainer {
        grid-template-columns: 1fr;
    
    }
    .faq {
        padding:1.5rem;
    }
    .footer__container {
        grid-template-columns: 1fr 1fr;
    }

    @media screen and (max-width: 600px) {
        .container {
            width: var(--container-width-sm);
        }
        .nav__menu {
            right: 3%;
        }
        header {
            height: 100vh;
        }
        .header__container {
            grid-template-columns: 1fr;
            text-align: center;
            margin-top: 0;
        }
        .header__left p {
            margin-bottom: 1.3rem;
        }
        .testimonial__body {
            padding: 1.2rem;
        }
        .footer__container {
            grid-template-columns: 1fr;
            text-align: center;
            gap: 2rem;
        }
        .footer__1 p {
            margin: 1rem auto;
        }
        .footer__socials {
            justify-content: center;
        }
    }
}





  /*quizzes page*/
  

  #quizzes {
    padding: 50px;
    padding-top: 0px;
    margin: 50px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin-top: 0;
  }
  
  .quiz-button {
    padding: 15px 40px;
    background-color: #f89f31;
    color: white;
    cursor: pointer;
    margin-right: 50px;
    margin-bottom: 50px;
    max-width: 300px; 
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    border-radius: 5px;
  }
  
  .quiz-button:hover {
    background-color: #ff6a00;
  }

  .quiz .option {
  display: flex;
  align-items: left;
  margin-bottom: 5px;
}

  .quiz input[type="radio"] {
    display: none;
  }
  
  .quiz .option {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
  }
  
  .quiz label {
    position: relative;
    padding-left: 30px;
  }
  
  .quiz .bubble {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #6c63ff; /* Change the background color for the unselected bubble */
    margin-right: 10px;
    vertical-align: middle;
    border: 1px solid #6c63ff; /* Change the border color for the unselected bubble */
  }
  
  .quiz input[type="radio"]:checked + .option .bubble {
    background-color: #ff3333; 
    border-color: #ff3333; 
  }
  
  #temp {
    background: #6c63ff;
    padding: 5px;
    padding-top:80px;
    margin-bottom: 0;
    width: 100%;
    
  }
  #temp {
    box-shadow: 15px 20px 15px 15px rgba(0, 0, 0, 0.1); /* Adjust the values as per your preference */
  }


  #title {
    display: flex;
    align-items: center;
    padding-bottom: 0px;
    margin-bottom: 55px;
    padding-top: 150px;
  }
  
  .title-content {
    flex: 1;
  }
  
  .title-content h1 {
    color: white;
    font-size: 55px;
    font-weight: bold;
    text-align: left;
    padding-left: 45px;
    padding-top: 50px;
    margin-bottom: 5px;
    margin-top: -90px; 
  }
  
  .title-content p {
    color: white;
    font-size: 20px;
    margin: 0;
    padding-left: 45px;
    padding-top: 50px;
    padding-bottom: 15px;
    text-align: left;
  }
  
  .quiz-image-container {
    margin-right: 65px;
  }
  
  #quiz-image {
    width: 250px;
  }
  
  .resources {
    padding-top: 15px;
    background-color: #343977;
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.05) 1px, transparent 1px),
                    linear-gradient(to right, rgba(0, 0, 0, 0.05) 2px, transparent 2px),
                    linear-gradient(to right, rgba(0, 0, 0, 0.05) 3px, transparent 3px);
  background-size: 100% 3px;
  background-position: 0 0, 0 10px, 0 20px;
  padding: 50px;
  border-radius: 8px;
  box-shadow: 0px 20px 40px rgba(0, 0, 0, 0.2), 0px -20px 40px rgba(0, 0, 0, 0.2);
}
  


  .resources h1 {
    color: white;
    font-size: 45px;
    font-weight: bold;
    text-align: left;
    padding-left: 15px;
    padding-top: 20px;
  }


  .resources p {
    color: white;
    font-size: 20px;
    margin-top: 25px;
    
    padding-left: 15px;
  }
  
  #additional-resources {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
  }
  
  .resource-button {
    display: inline-block;
    margin-right: 8px;
    margin-bottom: 0px;
    margin-top: 30px;
    padding: 13px 20px;
    background-color: #ff6b81; /* Orange-pink color */
    color: #ffffff;
    border: none;
    border-radius: 32px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 2;
    
  }
  
  .resource-button::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom right, #ff6b81); 
    transform: rotate(45deg);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  
  .resource-button:hover {
    background-color: #ff8f9d; 
  }
  
  .resource-button:hover::before {
    opacity: 0.3;
  }
  
  .resource-button span {
    position: relative;
    z-index: 1;
  }
  
  .exercise-list {
    display: none;
    margin-top: 30px;
    background-color: #9baf91;
    color: #ffffff;
    padding: 20px;
    border-radius: 5px;
    animation: fadeIn 0.5s ease;
  }
  
  .exercise-list.active {
    display: block;
  }
  


.underline-text {
    text-underline-offset: 4px;
    text-decoration: underline;
  }


.recs {
    width: 80%;
    margin: auto;
    text-align: center;
    padding-top: 50px;
}

.recs p {
    text-align: left;
    margin-bottom: 40px;
    margin-left: -135px;
    padding-left: -135px;
}

.row {
    display: flex;
    justify-content: space-between;
  }

.recs-col {
    flex-basis: 30%;
    border-radius: 10px;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
    margin-right: 30px;
} 

.recs-col img {
    width: 100%;
}
.layer {
    background: transparent;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.layer:hover {
    background: #6c63ff;
    opacity: 95%;
}

.layer h3 {
    width: 100%;
    font-weight: 500;
    color: white;
    font-size: 26px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    position: absolute;
    opacity: 0;
    transition: 0.7s;
}
.layer:hover h3 {
    bottom: 49%;
    opacity: 1;
    
}
#book-image {
    width: 100%;
    height: 100%; 
  }
  
  .vocab p {
    margin-bottom: 20px;
  }
  
  .button-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .link-button {
    display: flex; 
    align-items: center; 
    justify-content: center; 
    padding: 12px 22px;
    margin: 10px;
    background-color: #5ff1a3da;
    color: #fff;
    text-decoration: none;
    border-radius: 15px;
    align-items: left;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    margin-bottom: 15px;
    width: calc(25% - 20px);
  }
  
  .link-button:hover {
    background-color: #43b779da;
    transition: 0.2s;
  }
  


  
  .des {
    background: var(--color-bg2);
    padding: 20px;
    border-radius: 8px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid: 20px;
    padding-left: 30px;
    padding-top: 40px;
  }
  
  .course-container {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
  }
  
  .des h1 {
    font-size: 42px;
    margin-bottom: 10px;
    grid-column: 1/-1;
  }
  
  .des p {
    margin-bottom: 20px;
    margin: 1rem 0 1.5rem;
    grid-column: 1 / -1;
  }
  
  .course-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 400px;
    right: 60px;
    bottom: 2000px;
  }
  
  .course-image img {
    max-width: 100%;
    height: 530px; 
  }
  
  #exercise-list-10 {
    background-color: #ad80db;
    color: #fff;
    padding: 8px 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 10px;
    align-self: flex-start;
    width: 100%;
  position: absolute;
  top: 800px;
  left: 20px;
  right: 20px;
  height: 550px;
  
  }


  .cal {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: left;
    padding-top: 50px;
    font-family: 'Montserrat', sans-serif;
  }
 
  
  #cal h1,
  #cal p {
    padding-left: 25px;
    width: 95%;
    padding-top: 30px;
  }
  
  #calendar {
    width: 100%;
    max-width: 1300px; 
    margin-top: 50px;
    margin-bottom: 50px;
    height: 700px;
  }
  



.lessons {
  background: #33397c;
  box-shadow: inset 0 0 3rem rgba(0, 0, 0, 0.5);
  display: flex;
  
  
}

#butt {
  margin-top: 300px;
  margin-left: -170px;
}

.les__contain {
  justify-content: center;
  flex-direction: column;
  align-items: center;
}

.lessons h1 {
  margin-top: 5px;
  padding-top: 0;
  margin-left: 40px;
}

.lessons h3 {
  margin-bottom: 50px;
  margin-top:20px;
}

.slider {
  width: 800px;
  height: 700px;
  border-radius: 10px;
  overflow: hidden;
}

.slides {
  width: 500%;
  height: 500px;
  display: flex;
}

.slides input {
  display: none;
}

.slide {
  width: 20%;
  transition: 1.5s;
}

.slide img{
  width: 800px;
  height: 500px;
}

.navigation-manual {
  position: absolute;
  width: 800px;
  margin-top: -40px;
  display: flex;
  justify-content: center;
}
.manual-btn {
  border: 2px solid white;
  padding: 5px;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.5s;
  margin-top: 65px;
}

.manual-btn:not(:last-child) {
  margin-right: 40px ;
}

.manual-btn:hover{
  background: white;
}

#radio1:checked ~ .first {
  margin-left: 0;
}
#radio2:checked ~ .first {
  margin-left: -20%;
}
#radio3:checked ~ .first {
  margin-left: -40%;
}
#radio4:checked ~ .first {
  margin-left: -60%;
}
#radio5:checked ~ .first {
  margin-left: -80%;
}
#radio6:checked ~ .first {
  margin-left: -100%;
}
#radio7:checked ~ .first {
  margin-left: -120%;
}
#radio8:checked ~ .first {
  margin-left: -140%;
}


.slider1 {
  width: 800px;
  height: 700px;
  border-radius: 10px;
  overflow: hidden;
}

.slides1 {
  width: 500%;
  height: 500px;
  display: flex;
}

.slides1 input {
  display: none;
}

.slide1 {
  width: 20%;
  transition: 1.5s;
}

.slide1 img{
  width: 800px;
  height: 500px;
}

.navigation-manual1 {
  position: absolute;
  width: 800px;
  margin-top: -40px;
  display: flex;
  justify-content: center;
}
.manual-btn1 {
  border: 2px solid white;
  padding: 5px;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.5s;
  margin-top: 65px;
}

.manual-btn1:not(:last-child) {
  margin-right: 40px ;
}

.manual-btn1:hover{
  background: white;
}

#radio12:checked ~ .first {
  margin-left: 0;
}
#radio22:checked ~ .first {
  margin-left: -20%;
}
#radio32:checked ~ .first {
  margin-left: -40%;
}
#radio42:checked ~ .first {
  margin-left: -60%;
}

.slider2 {
  width: 800px;
  height: 700px;
  border-radius: 10px;
  overflow: hidden;
}

.slides2 {
  width: 500%;
  height: 500px;
  display: flex;
}

.slides2 input {
  display: none;
}

.slide2 {
  width: 20%;
  transition: 1.5s;
}

.slide2 img{
  width: 800px;
  height: 500px;
}

.navigation-manual2 {
  position: absolute;
  width: 800px;
  margin-top: -40px;
  display: flex;
  justify-content: center;
}
.manual-btn2 {
  border: 2px solid white;
  padding: 5px;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.5s;
  margin-top: 65px;
}

.manual-btn2:not(:last-child) {
  margin-right: 40px ;
}

.manual-btn2:hover{
  background: white;
}

#radio13:checked ~ .first {
  margin-left: 0;
}
#radio23:checked ~ .first {
  margin-left: -20%;
}
#radio33:checked ~ .first {
  margin-left: -40%;
}
#radio43:checked ~ .first {
  margin-left: -60%;
}


.slider3 {
  width: 800px;
  height: 700px;
  border-radius: 10px;
  overflow: hidden;
}

.slides3 {
  width: 500%;
  height: 500px;
  display: flex;
}

.slides3 input {
  display: none;
}

.slide3 {
  width: 20%;
  transition: 1.5s;
}

.slide3 img{
  width: 800px;
  height: 500px;
}

.navigation-manual3 {
  position: absolute;
  width: 800px;
  margin-top: -40px;
  display: flex;
  justify-content: center;
}
.manual-btn3 {
  border: 2px solid white;
  padding: 5px;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.5s;
  margin-top: 65px;
}

.manual-btn3:not(:last-child) {
  margin-right: 40px ;
}

.manual-btn3:hover{
  background: white;
}

#radio14:checked ~ .first {
  margin-left: 0;
}
#radio24:checked ~ .first {
  margin-left: -20%;
}


.slider4 {
  width: 800px;
  height: 700px;
  border-radius: 10px;
  overflow: hidden;
}

.slides4 {
  width: 500%;
  height: 500px;
  display: flex;
}

.slides4 input {
  display: none;
}

.slide4 {
  width: 20%;
  transition: 1.5s;
}

.slide4 img{
  width: 800px;
  height: 500px;
}

.navigation-manual4 {
  position: absolute;
  width: 800px;
  margin-top: -40px;
  display: flex;
  justify-content: center;
}
.manual-btn4 {
  border: 2px solid white;
  padding: 5px;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.5s;
  margin-top: 65px;
}

.manual-btn4:not(:last-child) {
  margin-right: 40px ;
}

.manual-btn4:hover{
  background: white;
}

#radio15:checked ~ .first {
  margin-left: 0;
}
#radio25:checked ~ .first {
  margin-left: -20%;
}
#radio35:checked ~ .first {
  margin-left: -40%;
}
#radio45:checked ~ .first {
  margin-left: -60%;
}
#radio55:checked ~ .first {
  margin-left: -60%;
}


.slider5 {
  width: 800px;
  height: 700px;
  border-radius: 10px;
  overflow: hidden;
}

.slides5 {
  width: 500%;
  height: 500px;
  display: flex;
}

.slides5 input {
  display: none;
}

.slide5 {
  width: 20%;
  transition: 1.5s;
}

.slide5 img{
  width: 800px;
  height: 500px;
}

.navigation-manual5 {
  position: absolute;
  width: 800px;
  margin-top: -40px;
  display: flex;
  justify-content: center;
}
.manual-btn5 {
  border: 2px solid white;
  padding: 5px;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.5s;
  margin-top: 65px;
}

.manual-btn5:not(:last-child) {
  margin-right: 40px ;
}

.manual-btn5:hover{
  background: white;
}

#radio16:checked ~ .first {
  margin-left: 0;
}
#radio26:checked ~ .first {
  margin-left: -20%;
}
#radio36:checked ~ .first {
  margin-left: -40%;
}
#radio46:checked ~ .first {
  margin-left: -60%;
}
#radio56:checked ~ .first {
  margin-left: -60%;
}

.slider6 {
  width: 800px;
  height: 700px;
  border-radius: 10px;
  overflow: hidden;
}

.slides6 {
  width: 500%;
  height: 500px;
  display: flex;
}

.slides6 input {
  display: none;
}

.slide6 {
  width: 20%;
  transition: 1.5s;
}

.slide6 img{
  width: 800px;
  height: 500px;
}

.navigation-manual6 {
  position: absolute;
  width: 800px;
  margin-top: -40px;
  display: flex;
  justify-content: center;
}
.manual-btn6 {
  border: 2px solid white;
  padding: 5px;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.5s;
  margin-top: 65px;
}

.manual-btn6:not(:last-child) {
  margin-right: 40px ;
}

.manual-btn6:hover{
  background: white;
}

#radio17:checked ~ .first {
  margin-left: 0;
}
#radio27:checked ~ .first {
  margin-left: -20%;
}
#radio37:checked ~ .first {
  margin-left: -40%;
}

.slider7 {
  width: 800px;
  height: 700px;
  border-radius: 10px;
  overflow: hidden;
}

.slides7 {
  width: 500%;
  height: 500px;
  display: flex;
}

.slides7 input {
  display: none;
}

.slide7 {
  width: 20%;
  transition: 1.5s;
}

.slide7 img{
  width: 800px;
  height: 500px;
}

.navigation-manual7 {
  position: absolute;
  width: 800px;
  margin-top: -40px;
  display: flex;
  justify-content: center;
}
.manual-btn7 {
  border: 2px solid white;
  padding: 5px;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.5s;
  margin-top: 65px;
}

.manual-btn7:not(:last-child) {
  margin-right: 40px ;
}

.manual-btn7:hover{
  background: white;
}

#radio18:checked ~ .first {
  margin-left: 0;
}
#radio28:checked ~ .first {
  margin-left: -20%;
}
#radio38:checked ~ .first {
  margin-left: -40%;
}


.slider8 {
  width: 800px;
  height: 700px;
  border-radius: 10px;
  overflow: hidden;
}

.slides8 {
  width: 500%;
  height: 500px;
  display: flex;
}

.slides8 input {
  display: none;
}

.slide8 {
  width: 20%;
  transition: 1.5s;
}

.slide8 img{
  width: 800px;
  height: 500px;
}

.navigation-manual8 {
  position: absolute;
  width: 800px;
  margin-top: -40px;
  display: flex;
  justify-content: center;
}
.manual-btn8 {
  border: 2px solid white;
  padding: 5px;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.5s;
  margin-top: 65px;
}

.manual-btn8:not(:last-child) {
  margin-right: 40px ;
}

.manual-btn8:hover{
  background: white;
}

#radio19:checked ~ .first {
  margin-left: 0;
}
#radio29:checked ~ .first {
  margin-left: -20%;
}
#radio39:checked ~ .first {
  margin-left: -40%;
}

.slider9 {
  width: 800px;
  height: 700px;
  border-radius: 10px;
  overflow: hidden;
}

.slides9 {
  width: 500%;
  height: 500px;
  display: flex;
}

.slides9 input {
  display: none;
}

.slide9 {
  width: 20%;
  transition: 1.5s;
}

.slide9 img{
  width: 800px;
  height: 500px;
}

.navigation-manual9 {
  position: absolute;
  width: 800px;
  margin-top: -40px;
  display: flex;
  justify-content: center;
}
.manual-btn9 {
  border: 2px solid white;
  padding: 5px;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.5s;
  margin-top: 65px;
}

.manual-btn9:not(:last-child) {
  margin-right: 40px ;
}

.manual-btn9:hover{
  background: white;
}

#radio110:checked ~ .first {
  margin-left: 0;
}
#radio210:checked ~ .first {
  margin-left: -20%;
}
#radio310:checked ~ .first {
  margin-left: -40%;
}



.games {
height: 4790px;
box-shadow: inset 0 0 8rem rgba(255, 158, 158, 0.6);
}

.games h1 {
  margin-top: -70px;
  margin-left: 30px;
  size: 4rem;
}

.games p {
  margin-left: 30px;

}

.games-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(800px, 1fr));
  grid-gap: 30px;
  margin: 40px;
  align-items: center;
  justify-content: center;
  margin-left: 300px;
}


.les1 {
  align-items: center;
  justify-content: center;
  margin-top: 100px;
  margin-bottom: 0px;
}