a {
            cursor: pointer;
        }

        #myModal2 {
            display: grid;
        }

            #myModal2 .modal-dialog {
                margin: auto;
            }

            #myModal2 .modal-content {
                background-color: #e3ebfe !important;
            }

            #myModal2 .modal-body {
                margin-bottom: 20px;
            }

            #myModal2 .modal-header .close {
                color: #0033ee !important;
                font-size: 25px;
                opacity: 1;
            }

        #popuptext {
            font-size: 20px;
            color: #000000;
            text-align: center;
        }

        .AdmCls {
            font-weight: 600;
            font-size: 13px;
            margin-top: 60px;
            margin-left: -25px;
        }


        @media only screen and (max-width: 320px) {

            .AdmCls {
                font-weight: 600;
                font-size: 15px;
                margin-top: 20px;
            }
        }

        .slider-container {
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            position: relative;
            height: 70vh;
            width: 100vw;
        }

        .controls-container {
            position: absolute;
            top: 50%;
            right: 50px;
            display: flex;
            flex-direction: column;
            transform: translateY(-50%);
            z-index: 2;
        }

        @media only screen and (max-width: 720px) {
            .slider-container {
                display: flex;
                align-items: center;
                justify-content: center;
                overflow: hidden;
                position: relative;
                height: 50vh;
                width: 100vw;
            }

            .controls-container {
                position: absolute;
                top: 50%;
                right: 20px;
                display: flex;
                flex-direction: column;
                transform: translateY(-50%);
                z-index: 2;
            }
        }


        .slider-container::after {
            background-color: #000;
            content: '';
            position: absolute;
            opacity: 0.3;
            top: 0;
            left: 0;
            height: 100%;
            width: 100%;
            z-index: 1;
        }

        .slide {
            background-size: cover;
            background-repeat: no-repeat;
            background-position: center center;
            position: absolute;
            top: 0;
            left: 0;
            opacity: 0;
            height: 100%;
            width: 100%;
            transform: scale(1.15);
            transition: opacity 2s ease;
        }

            .slide.active {
                animation: grow 4s linear forwards;
                opacity: 1;
            }

        @keyframes grow {
            0%, 20% {
                transform: scale(1);
            }

            75%, 100% {
                transform: scale(1.25);
            }
        }



        .control {
            background-color: #fff;
            cursor: pointer;
            opacity: 0.5;
            margin: 6px;
            height: 10px;
            width: 10px;
            border-radius: 50%;
            transition: opacity 0.3s, background-color 0.3s, transform 0.3s;
        }

            .control.active, .control:hover {
                background: #333;
                border: 3px solid #fff;
                opacity: 1;
                transform: scale(1.4);
            }

        .flipster {
            display: block !important;
            overflow-x: hidden;
            overflow-y: visible;
            position: relative;
        }

        #collegevideo .modal-content {
            background-color: #fff !important;
        }

        #collegevideo .modal-backdrop {
            z-index: 0;
        }