        .carousel-section {
            min-height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
            flex-direction: column;
        }

        .carousel-head h2 {
            color: black;
        }

        .slider {
            position: relative;
            width: 100%;
            height: 500px;
            display: flex;
            justify-content: center;
            align-items: center;
            perspective: 1000px;
        }

        .slide-border {
            background: #09b1ec;
            width: 18%;
            height: 52px;
            border-radius: 19px 0px 32px 1px;
        }

        .slide-header {
            height: 88%;
            width: 88%;
            background: #171580;
            border-radius: 20px 1px 25px 1px;
            display: grid;
            place-items: center;
                box-shadow: 1px 3px 1px #0f53d5;
        }

        .slide-title {
            height: 96px;
            width: 100%;
            background: #0879f3;
            border-radius: 20px 20px 20px 20px;
            display: grid;
            place-items: center;
            margin: 10px 6px 0 6px;
            justify-items: stretch;
            align-content: start;
            box-shadow: 0px 4px 1px #27286e;         
        }

        span.card-number {
            color: white;
            font-size: 30px;
        }

        .item {
            position: absolute;
            width: 325px;
            height: 410px;
            background: #09b1ec;
            color: white;
            border-radius: 20px;
            padding: 4px;
            box-sizing: border-box;
            transition: all 1.5s cubic-bezier(0.23, 1, 0.32, 1);
            opacity: 0;
            user-select: none;
            left: 50%;
            transform: translateX(-50%);
            pointer-events: none;
            display: flex;
            justify-content: center;
            align-items: flex-start;
            text-align: center;
            padding-top: 0;
            align-content: stretch;
            flex-wrap: wrap;
        }

        .item:hover{
            transform: scale(2.1);
        }

        .slider .item h1{
          font-size: 15px;
          color: black;
        }

        .slider .item h2{
        font-size: 21px;
        color: black;
        margin-top: -29px;
        }

        .slider .item p{
          color: black;
          font-size: 17px;
          text-align: justify;
          margin: 0 26px;
          font-weight: 410;
        }

        .item.active-slide {
            opacity: 1;
            pointer-events: auto;
            z-index: 10;
        }

        .nav-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgb(17 76 172);
            backdrop-filter: blur(5px);
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            color: white;
            font-size: 24px;
            cursor: pointer;
            z-index: 100;
            transition: 0.3s;
        }

        .nav-btn p{
            height: 20px;
        }

        #prev { left: 20px; }
        #next { right: 20px; }