@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
}

.banner {
    height: 100vh;
    width: 100%;
}

.banner-box1 {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: space-between;
    overflow: hidden;
    background: rgba(35, 35, 35, 0.8);
    position: relative;
}


#myVideo {
    position: absolute;
    right: 0;
    top: 0;
    min-width: 100%;
    height: 100vh;
    object-fit: cover;
    overflow: hidden;
    background: rgba(35, 35, 35, 0.3);
    background-size: cover;
    z-index: -1;
}

.banner-content {
    width: 100%;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-top: 30px;
}

.banner-text {
    text-align: center;
    width: 100%;
    margin: 20px;
}


    .banner-text h1 {
        font-size: 3.5em;
        font-weight: 300;
        color: white;
        z-index: 0;
        line-height: 1.2em;
        letter-spacing: 1px;
    }

        .banner-text h1 span {
            font-weight: 700;
        }

    .banner-text h2 {
        font-size: 1.6em;
        color: #fff;
        font-weight: 300;
    }






.total-Pla {
    display: flex;
    justify-content: center;
    text-align: center;
    margin: 20px;
}

    .total-Pla .placement {
        margin: 0px 40px;
        text-align: center;
    }

        .total-Pla .placement .fa-solid {
            color: #fff;
            font-size: 1.5em;
        }

        .total-Pla .placement h2 {
            font-size: 1.2em;
            color: #fff;
        }

        .total-Pla .placement span {
            color: #fff;
            font-size: 1em;
            font-weight: 300;
        }


.banner-btn {
    display: flex;
    justify-content: center;
    align-content: center;
    margin-top: 30px;
}


#btn1 {
    background: #ff0000;
}

    #btn1 i, #btn2 i {
        margin-left: 3px;
        font-size: 15px;
    }

#btn2 {
    /*background: rgb(51, 51, 255, 0.7);*/
    background: #0000ff;
}

.banner-btn a {
    text-decoration: none;
    margin: 0px 20px;
    padding: 10px 30px;
    color: white;
    font-size: 15px;
    border-radius: 50px;
    font-weight: bold;
    text-transform: uppercase;
    font-weight: 300;
}

    .banner-btn a:hover {
        box-shadow: 0 0 0 rgba(255,255,255, 0.8);
        animation: pulse 2s infinite;
    }

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255,255,255, 0.8);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(255,255,255, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255,255,255, 0);
    }
}





/*Enquire Form Start*/
/*Enquire Form Start*/

.enquire {
    z-index: 1;
    background: white;
    width: 400px;
    height: 500px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    border-radius: 15px;
    border: 2px solid white;
    padding: 25px;
    display: none;
}


.form-box {
    width: 100%;
    height: 100%;
}

    .form-box h1 {
        color: black;
        font-weight: 500;
    }

    .form-box input {
        width: 100%;
        height: 30px;
        border-radius: 10px;
        border: 1px solid black;
        margin-top: 10px;
        padding-left: 15px;
        font-size: 15px;
        font-weight: 600;
    }

.enq-input {
    text-align: left;
}

    .enq-input span {
        color: red;
        font-weight: bold;
    }

.form-box select {
    width: 100%;
    height: 30px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    margin-top: 10px;
}


.form-box #enq-check {
    width: 15px;
    height: 15px;
    text-align: left;
}

.form-box .check-text {
    color: black;
    font-weight: 500;
    text-align: left;
    font-size: 15px;
}

.check-box {
    text-align: left;
    /*margin-top: 5px;*/
}

    .check-box i {
        position: absolute;
        top: 10px;
        right: 25px;
        font-size: 25px;
        /*margin-bottom: 15px;*/
        cursor: pointer;
        transition: 0.3s;
    }

        .check-box i:hover {
            transform: scale(1.1);
        }

    .check-box span {
        color: red;
        font-weight: bold;
    }

.enq-form-btn {
    margin-top: 15px;
}

    .enq-form-btn a {
        text-decoration: none;
        margin: 0px 50px;
        padding: 5px 20px;
        /*background: red;*/
        color: black;
        font-size: 20px;
        border-radius: 50px;
        font-weight: bold;
        text-transform: uppercase;
        background-color: white;
        /*border: 3px solid black;*/
        transition: 0.4s;
    }


        .enq-form-btn a:hover {
            background: black;
            color: white;
            animation: pulse2 1.5s infinite;
            box-shadow: 0 0 0 rgba(35,35,35, 0.8);
        }

@keyframes pulse2 {
    0% {
        box-shadow: 0 0 0 0 rgba(35,35,35, 0.8);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(35,35,35, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(35,35,35, 0);
    }
}

/*Enquire Form End*/
/*Enquire Form End*/

/*---------------------------responsive----------------------------*/

@media only screen and (max-width: 768px) {


    .banner-content {
        width: 100%;
        min-height: 70vh;
        display: flex;
        justify-content: space-evenly;
        align-items: center;
        flex-direction: column;
        margin: 10px 5px;
    }

    .banner-text {
        text-align: center;
        width: 100%;
    }


        .banner-text h1 {
            font-size: 2.2em;
            font-weight: 300;
            color: white;
            z-index: 0;
            /*line-height: 1.2em;*/
            letter-spacing: 1px;
        }

            .banner-text h1 span {
                font-weight: 700;
            }

        .banner-text h2 {
            font-size: 1.2em;
            color: #fff;
            font-weight: 300;
        }



    .total-Pla {
        width: 100%;
        display: flex;
        justify-content: space-evenly;
        text-align: center;
        margin: 0px 10px;
    }

        .total-Pla .placement {
            margin: 0px 10px;
            text-align: center;
        }

            .total-Pla .placement .fa-solid {
                color: #fff;
                font-size: 1em;
            }

            .total-Pla .placement h2 {
                font-size: 1em;
                color: #fff;
                font-weight: 500;
            }

            .total-Pla .placement span {
                color: #fff;
                font-size: 0.75em;
                font-weight: 300;
            }









    .banner-btn {
        display: flex;
        justify-content: center;
        align-content: center;
        flex-direction: column;
        margin-top: 0px;
    }


    #btn1 {
        /*background: rgb(255, 51, 51, 0.7);*/
        background: #ff0000;
    }

        #btn1 i, #btn2 i {
            margin-left: 3px;
            font-size: 0.8em;
        }

    #btn2 {
        /*background: rgb(51, 51, 255, 0.7);*/
        background: #0000ff;
    }

    .banner-btn a {
        text-decoration: none;
        margin: 10px 0px;
        padding: 10px;
        color: white;
        font-size: 0.8em;
        border-radius: 50px;
        font-weight: bold;
        text-transform: uppercase;
        font-weight: 300;
        box-shadow: 0 0 0 rgba(255,255,255, 0.8);
        animation: pulse 2s infinite;
    }



    @keyframes pulse {
        0% {
            box-shadow: 0 0 0 0 rgba(255,255,255, 0.8);
        }

        70% {
            box-shadow: 0 0 0 10px rgba(255,255,255, 0);
        }

        100% {
            box-shadow: 0 0 0 0 rgba(255,255,255, 0);
        }
    }
}





.digi_skills {
    background: #05a1c3;
    padding: 20px 100px;
    height: 150px;
    border-bottom-left-radius: 75px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

    .digi_skills::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        width: 100%;
        background: rgb(235, 235, 235);
        z-index: -1;
    }

    .digi_skills h1 {
        color: #fff;
        font-size: 1.2em;
        line-height: 1.2em;
    }

        .digi_skills h1 span {
            color: #33d1b4;
            font-size: 1em;
            font-weight: 800;
        }

    .digi_skills a {
        text-decoration: none;
        color: white;
        border: 2px solid white;
        width: 220px;
        height: 50px;
        text-align: center;
        line-height: 50px;
        font-weight: 500;
    }

        .digi_skills a i {
            margin-left: 10px;
            animation: arrow 1s ease-in-out infinite;
        }

@keyframes arrow {
    0%, 100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(8px, 0);
    }
}

/* ------------------- Digi Skills Responsive -------------------- */

@media only screen and (max-width: 768px) {

    .digi_skills {
        background: #05a1c3;
        padding: 10px 10px;
        height: 120px;
        border-bottom-left-radius: 100px;
        display: flex;
        justify-content: space-evenly;
        align-items: center;
        flex-direction: column;
    }


        .digi_skills h1 {
            font-size: 0.85em;
            text-align: center;
        }


        .digi_skills a {
            width: 200px;
            height: 40px;
            text-align: center;
            line-height: 40px;
        }

            .digi_skills a i {
                margin-left: 10px;
                animation: arrow 1s ease-in-out infinite;
            }
}






.Course_content {
    padding-top: 50px;
    text-align: center;
}

    .Course_content h1 {
        color: #fff;
        font-size: 2em;
        font-weight: 500;
        text-transform: capitalize;
    }

@media only screen and (max-width: 768px) {
    .Course_content h1 {
        font-size: 1.5em;
    }
}

/*----------------------Our Trainers---------------------*/

.ourTraining {
    min-height: 50vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background: rgb(235, 235, 235);
}

    .ourTraining h1 {
        padding-top: 50px;
        font-size: 2em;
        font-weight: 600;
    }

.slider {
    height: 250px;
    margin: auto;
    position: relative;
    width: 100%;
    display: grid;
    place-items: center;
    overflow: hidden;
}

.slide-track {
    display: flex;
    width: calc(250px * 52);
    animation: scrollimg 40s linear infinite;
}

    .slide-track:hover {
        animation-play-state: paused;
    }

@keyframes scrollimg {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-250px * 26));
    }
}

.slide {
    height: 100px;
    width: 250px;
    display: flex;
    align-items: center;
    padding: 10px;
    perspective: 100px;
}

    .slide img {
        width: 100%;
        transition: transform 0.5s;
        cursor: pointer;
        -webkit-filter: grayscale(100%); /* Safari 6.0 - 9.0 */
        filter: grayscale(100%);
    }

        .slide img:hover {
            transform: translateZ(20px);
            -webkit-filter: grayscale(0%); /* Safari 6.0 - 9.0 */
            filter: grayscale(0%);
        }


@media only screen and (max-width: 768px) {

    .ourTraining {
        min-height: 40vh;
    }

        .ourTraining h1 {
            padding: 40px 10px 0px;
            font-size: 1.5em;
            font-weight: 500;
            text-align: center;
        }
}


.auto-type {
    color: #ff0000;
    font-weight: bold;
}
