@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&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

* {
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

body {
    background-color: rgb(1, 14, 34);
    scroll-behavior: smooth;
}

/* -------- overall ------- */
.overall {
    background-color: rgb(1, 14, 34);

    width: 100%;

}

/* --------- nav --------- */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 110px;
    background-color: rgb(1, 14, 34);
    padding: 20px;
    width: 100%;
    color: white;
    border-bottom: 1.3px solid white;
    position: fixed;
    z-index: 999;
}

.left {
    margin-left: 8%;
}

.left h1 {
    font-size: 38px;
}

.left span {
    background-color: #FFC107;
}

.right {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 100px;
    margin-right: -3%;
    height: auto;

}

.right div a {

    padding: 14px 20px;
    /* background-color: rgb(1, 14, 34); */
    background-color: #FFC107;
    font-size: 15px;
    font-weight: 600;
    color: black;
    border-radius: 10px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.2s ease;

}

.right a {
    gap: 20px;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 20px;
    font-weight: 500;
}

.right a:hover {
    text-decoration: underline;
    color: #FFC107;
}

.right div a:hover {
    text-decoration: none;
    color: black;
    transform: scale(1.1);
}

.butt button {
    padding: 8px;
    border: none;
    border-radius: 8px;
    margin-top: -10px;
    background-color: #FFC107;
    margin-right: 15px;
}


.whatsapp-float:hover {
    transform: scale(1.1);
}

/* ----------- intro ---------- */
.intro {
    color: white;
    display: flex;
    justify-content: center;
    min-height: 100vh;
    width: 100%;
    /* background-image: url("https://media.istockphoto.com/id/1366428092/photo/webinar-e-learning-skills-business-internet-technology-concepts-training-webinar-e-learning.jpg?s=612x612&w=0&k=20&c=mJeYiZyGQXLXXZ6AWKbLwQDiuLr-YLRGV4VjHKdX0pM="); */

    background-image: url("./images/homeback-1.jpg");

    background-repeat: no-repeat;
    background-size: cover;
    background-position: 0% 40%;


}

.intro-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    text-align: start;
}

.subfirst {
    width: 100%;
    min-height: 40vh;
    padding: 2%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.intro-content {
    animation: introcontent ease-out;
    animation-timeline: view();
    animation-range: entry 1% cover 40%;
}

@keyframes introcontent {
    from {
        /* transform: translateX(-200px); */
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.intro-content h3 {
    margin-bottom: 50px;
    color: #FFC107;
    font-size: 40px;
    margin-bottom: 20px;
}

.intro-content ul {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.intro-content ul li {
    font-size: 20px;
}

.lh3 h3 {
    position: relative;
    /* top: 50px;
    left: -13%; */
    font-size: 25px;
}

.lh3 h3::after {
    content: "_____";
}

.lh3 h3::before {
    content: "_____";
}

.lh1 h1 {
    font-size: 45px;
    /* position: relative;
    top: -20px; */
}

.lh1 span {
    color: #FFC107;
}

.lh1 h1:nth-of-type(1) {
    animation-name: homefirsth1;
    animation-duration: 2s;
}

.lh1 h1:nth-of-type(2) {
    animation-name: homesecondh1;
    /* animation-delay: 1s; */
    animation-duration: 2.2s;
}

@keyframes homefirsth1 {
    from {
        scale: 0;
    }

    to {
        scale: 1;
    }
}

@keyframes homesecondh1 {
    from {
        scale: 0;
    }

    to {
        scale: 1;
    }
}






.lp p {
    color: #ffffff;
    font-weight: 600;

}

.but {
    display: flex;
    justify-content: center;
    position: relative;
    top: -170px;
    left: -80px;
}

.buton {
    width: 100%;
    background-color: #FFC107;
    color: #ffffff;
    padding: 20px 35px;
    font-size: 27px;
    border-radius: 35px;
}

/* ---------intro-right---------- */







/* ----------- second ------------ */
.second {
    display: flex;
    justify-content: center;
    gap: 20px;
    min-height: 70vh;
    background-color: rgb(20, 35, 63);
    padding: 20px 40px;
    width: 100%;

}

/* ----------  sec-1  ---------- */

.sec-1 {

    height: 400px;
    width: 50%;
    align-self: center;
    animation: section-1 ease-out;
    animation-timeline: view();
    animation-range: entry 1% cover 40%;


}


@keyframes section-1 {
    from {
        transform: translateX(-200px);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}




.sec-1 img {
    width: 100%;
    height: 100%;

}

.sec-1 h1,
.sec-3 h1 {
    font-size: 45px;
}

.sec-1 p,
.sec-3 p {
    color: rgb(222, 211, 211);
    letter-spacing: 1px;
    word-spacing: 3px;
    font-size: 18px;
    font-weight: 000;
}

.sec-3 p b {
    font-size: 20px;
    font-weight: 700;
    color: whitesmoke;
}

body {
    overflow-x: hidden;
}


/* ----------- sec-2 ------------- */
.sec-2 {
    border-right: 2px solid white;
}


.sec-3 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    width: 50%;
    color: #FFC107;

    animation: section-3 ease-out;
    animation-timeline: view();
    animation-range: entry 1% cover 40%;
}

@keyframes section-3 {
    from {
        transform: translateX(200px);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.counter a::after {
    content: "+";
    margin-left: 2px;
}



.question-sec {
    min-height: 70vh;
    width: 100%;
    color: rgb(217, 202, 202);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.question-sec h1 {
    color: #FFC107;
    font-size: 35px;

}

.question-sec ul {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.question-sec ul li {
    color: rgb(188, 174, 174);
    font-size: 25px;
    /* list-style-type: none; */

}



.freetrails {
   
    min-height: 50vh;
    width: 100%;
    display: flex;
    align-items: center;
    padding: 0% 7%;
    flex-direction: column;
    gap: 30px;
    padding-bottom: 20px;

}

.freetrails h2 {
    color: rgb(217, 202, 202);
    word-spacing: 6px;
    font-size: 32px;
    font-weight: 500;
}

.freetrails h1 {
    color: #cba532;
    font-size: 38px;
}

.freetrails ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 23px;
    color: rgb(217, 202, 202);
}

.freetrails a {

    padding: 14px 20px;
    /* background-color: rgb(1, 14, 34); */
    background-color: #FFC107;
    font-size: 15px;
    font-weight: 600;
    color: black;
    border-radius: 10px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.2s ease;
}

.question-sec h2 {
    color: rgb(217, 202, 202);
    font-size: 35px;
    font-weight: 500;
    margin-bottom: 30px;

}

.question-sec a {
    display: inline-block;
    transition: all 0.2s ease;
    padding: 14px 20px;
    /* background-color: rgb(1, 14, 34); */
    background-color: #FFC107;
    font-size: 15px;
    font-weight: 600;
    color: black;
    border-radius: 10px;
    text-decoration: none;

}

.question-sec a:hover {

    background-color: #cba532;
    transform: scale(1.1);
}

.freetrails div a:hover {

    background-color: #cba532;
    transform: scale(1.1);
}

.count {
    display: flex;
    justify-content: space-around;
    font-size: 22px;
}

.con2 h2 {
    text-align: center;
}

/* ------------ images ----------- */
.pictures {
    padding: 10px;
    min-height: 50vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.top {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 20px;

}

.top h1 {
    color: #FFC107;
    font-size: 40px;
    font-weight: bold;
}

.top p {
    color: white;
    font-size: 20px;
}

.downimg {
    display: flex;
    gap: 50px;
    flex-direction: column;
    width: 100%;
    margin-top: 20px;
}

.img1 {
    width: 100%;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: space-around;

}

.img2 {
    width: 100%;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: space-around;
}

.img2 img {
    height: 250px;
    width: 250px;
    border: 2px solid black;
    border-radius: 10px;
    object-fit: cover;
    transition: opacity 0.5s ease-in-out;
}

.img1 img {
    height: 250px;
    width: 250px;
    border: 2px solid black;
    border-radius: 10px;
    object-fit: cover;
    transition: opacity 0.5s ease-in-out;
}




/* Blog  */

.blog {
    min-height: 70vh;
    width: 100%;
    padding: 30px;
}

.blogtopic {
    width: 100%;
    padding: 20px;
    text-align: center;

}

.blogtopic h1 {
    font-size: 40px;
    color: #FFC107;
    padding-bottom: 20px;
}

.blogcontent {
    width: 100%;
    min-height: 60vh;

    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
}

.blogbox {
    min-height: 100%;
    width: 350px;
    transition: all .5s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: white;

}

.blogbox:hover {
    /* background-color: white;
     color: black; */

    scale: 1.1;
    border-radius: 10px;
}

.blogbox img {
    height: 300px;
    width: 100%;
    border-radius: 15px;
    animation: homeblogimg linear;
    animation-timeline: view();
    animation-range: entry 0% cover 40%;


}

@keyframes homeblogimg {
    from {
        opacity: 0.6;
        scale: 0.5;
    }

    to {
        opacity: 1;
        scale: 1;
    }
}

.blogbox b {
    font-size: 25px;

}

.blogbox p {
    font-size: 18px;
    word-spacing: 4px;
}

.blogbox p span {
    display: none;
}

.blogbox button {
    margin-top: 10px;
    padding: 5px 30px;
    background-color: #FFC107;
    color: white;
    font-size: 18px;
    border-radius: 15px;
    border: none;
    font-weight: 500;
}

.cert-over {
    min-height: 100vh;
    width: 100%;

}

.cert-topic {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    gap: 10px;
    margin-top: 20px;
}

.cert-topic h1 {
    font-size: 35px;
    color: #FFC107;
}

.cert-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 40px;
    padding: 20px;
    margin-top: 30px;
}

.cert-box {
    text-align: center;
    height: 300px;
    width: 350px;
    background-color: aliceblue;
    border-radius: 10px;
    animation: homeblogimg linear;
    animation-timeline: view();
    animation-range: entry 0% cover 40%;
}

.cert-box img {
    height: 100px;
    width: 100px;
    border-radius: 50%;
    border: 2px solid black;
}

.cert-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 15px;
    transition: all .5s ease;
}

.cert-box:hover {
    scale: 1.1;
}

.cert-box4 img {
    background-color: #FFC107;
}

/* Footer  */


footer {
    background-color: rgb(20, 35, 63);
    color: #FFC107;
}

.foot-top {
    padding: 30px;
    color: aliceblue;
}

.foot-top span {
    background-color: #FFC107;
    color: aliceblue;
}

.foot-over {
    display: flex;
    justify-content: space-around;
    margin-top: 20px;
    padding: 20px;
}

.foot-link,
.foot-social,
.foot-contact {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    gap: 15px;
}

.foot-link a,
.foot-social a,
.foot-contact a {
    color: aliceblue;
    text-decoration: none;
}

.foot-link a:hover {
    scale: 1.1;
}

/* --------- responsive ---------- */
@media only screen and (min-width:930px) and (max-width:1024px) {


    /* ------ right ------- */
    .right {
        margin-right: -4%;
    }

    .right a {
        font-size: 18px;
    }

    /* -------- intro -------- */
    .intro {
        display: flex;
        padding: 20px;
        gap: 7%;

    }

    /* -------- intro-left------- */
    .intro-left {
        /* margin-top: 20px; */
        gap: 15%;
        position: relative;
        top: 35px;
    }

    .lh3 h3 {
        position: relative;
        top: 60px;
        left: -10%;
        font-size: 18px;
    }

    .lh1 h1 {
        font-size: 40px;
        position: relative;
        top: -20px;
        left: -10%;
    }

    .lp p {
        text-align: start;
        position: relative;
        top: -90px;
        left: 7%;
        font-size: 21px;
    }

    .buton {
        font-size: 23px;
    }

    /* ---------- intro-right -------- */
    .intro-right {
        height: 320px;
        width: 320px;

    }

    .intro-right img {
        height: 320px;
        width: 320px;
    }

    /* --------- second -------- */
    .second {
        gap: 30px;
    }

    .sec-1 h1,
    .sec-3 h1 {
        font-size: 42px;
    }

    .sec-1 p,
    .sec-3 p {
        font-size: 20px;
    }

    /* -------- 800px to 929px ---------- */
}




/* Media Query .....  */

@media screen and (min-width:1200px) {
    .sec-3 p {
        font-size: 15px;
    }
}

@media screen and (min-width:900px) and (max-width:1100px) {
    .sec-1 {
        height: 300px;
    }

    .sec-3 p {
        font-size: 13px;
    }

    .sec-3 p b {
        font-size: 17px;
        font-weight: 600;
    }

    .question-sec h1 {

        font-size: 29px;
    }

    .question-sec ul li {

        font-size: 20px;

    }

    .question-sec h2 {
        font-size: 28px;
    }

    .freetrails h2 {
        font-size: 25px;
    }

    .freetrails h1 {

        font-size: 30px;
    }

    .freetrails ul {
        font-size: 17px;
    }

    .img2 .image14,
    .img1 .image4 {
        display: none;
    }

    .blogbox {
        width: 290px;
    }
}

@media screen and (min-width:600px) and (max-width:900px) {

    .intro-content h3 {
        font-size: 28px;
    }

    .intro-content ul {
        gap: 10px;

    }

    .intro-content {
        padding: 10px;
    }

    .intro-content ul li {
        font-size: 17px;
    }

    .second {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .sec-1 {
        height: 300px;
        width: 80%;
    }

    .sec-3 {
        width: 80%;
        padding: 10px;
    }

    .sec-3 p {
        font-size: 13px;
    }

    .sec-3 p b {
        font-size: 17px;
        font-weight: 600;
    }

    .question-sec {
        padding: 10px;
    }

    .question-sec h1 {

        font-size: 21px;
    }

    .question-sec ul {
        gap: 10px;
    }

    .question-sec ul li {

        font-size: 16px;

    }

    .question-sec h2 {
        font-size: 23px;
    }

    .freetrails h2 {
        font-size: 22px;
    }

    .freetrails h1 {

        font-size: 30px;
    }

    .freetrails ul {
        font-size: 17px;
    }

    .img2 .image14,
    .img1 .image4 {
        display: none;
    }

    .blogcontent {
        gap: 10px;
    }

    .blogbox {
        width: 290px;
    }

    .right {
        gap: 20px;
    }

    .left h1 {
        font-size: 20px;
    }

    .right div a {
        padding: 8px 10px;
    }

    nav {
        padding: 10px;
    }

    .left {
        margin-left: 0%;
    }
}


@media screen and (min-width:440px) and (max-width:600px) {

    .whatsapp-float {
        position: fixed;
        z-index: 99;
        bottom: 40px;
        right: 20px;
    }

    .intro {
        min-height: 70vh;
        background-image: url("./images/homeback-2.jpg");
    }



    @keyframes introcontent {
        from {
            transform: translateX(-50px);
            opacity: 0;
        }

        to {
            transform: translateY(0);
            opacity: 1;
        }
    }

    .lp p {
        font-size: 14px;
        font-weight: 600;
    }

    .right {
        gap: 20px;

    }

    .right a {
        font-size: 14px;
    }

    .lh3 h3 {
        font-size: 18px;
        color: #FFC107;
        /* color: rgb(2, 15, 36) ; */
    }

    .lh1 h1 {
        font-size: 25px;
    }

    .left h1 {
        font-size: 20px;
    }

    .right div a {
        padding: 5px 5px;
        font-size: 10px;
    }

    nav {
        padding: 20px;
    }

    .left {
        margin-left: 0%;
    }

    .intro-content h3 {
        font-size: 22px;
    }

    .intro-content ul {
        gap: 10px;

    }

    .intro-left {
        padding: 10px;
        padding-top: 60px;

    }

    .intro-content {
        padding: 10px;
    }

    .intro-content ul li {
        font-size: 13px;
        margin-left: 20px;
    }

    .second {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .sec-1 {
        height: 300px;
        width: 99%;
    }

    .sec-3 {
        width: 99%;
        padding: 10px;
    }

    .sec-3 p {
        font-size: 13px;
    }

    .sec-3 p b {
        font-size: 17px;
        font-weight: 600;
    }

    .question-sec {
        padding: 10px;
    }

    .question-sec h1 {

        font-size: 18px;
    }

    .question-sec ul {
        margin-left: 20px;
        gap: 10px;
    }

    .question-sec ul li {

        font-size: 16px;

    }

    .question-sec h2 {
        font-size: 23px;
    }

    .freetrails {
        min-height: 50vh;
    }

    .freetrails h2 {
        font-size: 22px;
    }

    .freetrails h1 {

        font-size: 30px;
    }

    .freetrails ul {
        font-size: 15px;
    }

    .img2 .image14,
    .img1 .image4 {
        display: none;
    }

    .blogcontent {
        gap: 40px;
    }

    .blogbox {
        width: 340px;
    }

    .foot-over {
        flex-wrap: wrap;
    }

    .foot-link,
    .foot-social {
        justify-content: center;
        align-items: center;
    }

    .foot-contact h1 {
        text-align: center;
    }

}


@media screen and (min-width:300px) and (max-width:440px) {

    .intro {
        min-height: 60vh;
    }

    .whatsapp-float {
        position: fixed;
        z-index: 99;
        bottom: 40px;
        right: 20px;
    }

    @keyframes introcontent {
        from {
            transform: translateX(0px);
            opacity: 0;
        }

        to {
            transform: translateY(0);
            opacity: 1;
        }
    }

    .lp p {
        font-size: 14px;
        font-weight: 600;
    }

    .right {

        gap: 10px;
    }

    .right a {
        font-size: 16px;
    }

    .lh3 h3 {
        font-size: 14px;
        color: #FFC107;
    }

    .lh1 h1 {
        font-size: 20px;
    }

    .left h1 {
        font-size: 15px;
    }

    .right div a {
        padding: 5px 5px;
        font-size: 9px;
    }

    nav {
        height: 90px;
        padding: 15px;
    }

    .left {
        margin-left: 0%;
    }

    .intro-content h3 {
        font-size: 16px;
    }

    .intro-content ul {
        gap: 10px;
        margin-left: 5px;
    }
    .intro {
        min-height: 70vh;
        background-image: url("./images/homeback-2.jpg");
    }


    .intro-left {
        padding-top: 60px;
        padding: 10px;
    }

    .intro-content {
        padding: 10px;
    }

    .intro-content ul li {
        font-size: 13px;
    }

    .second {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 10px 10px;
    }

    .sec-1 {
        height: 300px;
        width: 99%;
    }

    .sec-3 {
        width: 99%;
        padding: 10px;
    }

    .sec-3 p {
        font-size: 11px;
    }

    .sec-3 p b {
        font-size: 17px;
        font-weight: 600;
    }

    .question-sec {
        padding: 10px;
    }

    .question-sec h1 {

        font-size: 18px;
    }

    .question-sec ul {
        margin-left: 20px;
        gap: 10px;
    }

    .question-sec ul li {

        font-size: 16px;

    }

    .question-sec h2 {
        font-size: 20px;
    }

    .question-sec a {
        padding: 10px 10px;
        font-size: 13px;
    }

    .freetrails h2 {
        font-size: 18px;
    }

    .freetrails h1 {

        font-size: 30px;
    }

    .freetrails a {
        padding: 10px 10px;
        font-size: 13px;
    }

    .freetrails ul {
        font-size: 15px;
    }

    .top h1 {
        font-size: 30px;
    }

    .cert-topic h1 {
        font-size: 25px;
    }

    .blogcontent {
       
        gap: 50px;
    }

    .blogbox {
        width: 290px;
    }

    .blogtopic h1{
        font-size: 30px;
        padding-bottom: 10px;
    }

    .foot-over {
        flex-wrap: wrap;
    }

    .foot-link,
    .foot-social,
    .foot-contact {
        justify-content: center;
        align-items: center;
        font-size: 13px;
    }


}