/* 
---------------------------------------------
100 DAYS ACTION PLAN
--------------------------------------------- 
*/

.plans {
    background: #2e3267;
    box-shadow: inset 0 0 3rem rgba(0, 0, 0, 0.5);
    background-image: url(/IMAGES/bg-texture.png);
}

.plans__container {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
}

.plan {
    background: #424890;
    border: 15px solid transparent;
    transition: 400ms ease;
}

.plan:hover {
    background: transparent;
    border-color: #6c63ff;
}

@media screen and (max-width: 1024px) {

   .plans__container {
      grid-template-columns: repeat(1, 1fr);
   }

 /* 
 ---------------------------------------------
 NAVBAR (TABLET)
 --------------------------------------------- 
 */

 nav button {
    display: inline-block;
    background: transparent;
    font-size: 1.8rem;
    color: var(--color-white);
    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;
    display: none;
 }

 .nav__menu li {
    width: 100%;
    height: 5.8rem;
    animation: animateNavItems 400ms 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: 400ms;
 }

  .nav__menu li:nth-child(4) {
    animation-delay: 600ms;
 }

 @keyframes animateNavItems {
    0% {
        transform: rotateZ(-90deg) rotateX(90deg) scale(0.1);
    }

    100% {
        transform: rotateZ(0) rotateX(0) scale(1);
        opacity: 1;
    }
 }

 .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: var(--color-white);
 }
}