@import url('https://fonts.googleapis.com/css2?family=Baloo+Bhai+2:wght@400..800&family=Mulish:ital,wght@0,200..1000;1,200..1000&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: 0;
    margin: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
    color: inherit;
    scroll-behavior: smooth;
}

:root {
    --font-Baloo: "Baloo Bhai 2", sans-serif;
    --font-Pop: "Poppins", sans-serif;
    --font-Muli: "Mulish", sans-serif;
    --font-Rob: "Roboto", sans-serif;

}


header {
    position: sticky;
    top: 0;
    display: flex;
    align-items: center;
    padding: 1rem 2.7rem;
    font-family: var(--font-Muli);
    font-weight: normal;
    border-bottom: 1px solid #dedede;
    z-index: 9999;
    background: #ffff;

    .logo {
        width: 12%;
        display: flex;
        align-items: center;
        /* background: red; */
    }

    .nav-bar {
        width: 70%;
        /* background-color: red; */

        ul {
            display: flex;
            align-items: center;
            gap: 2rem;

            li {
                position: relative;
                padding: 3px 0;
                /* padding: 2rem 0; */

            }
        }
    }

    .nav-bar ul li::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        width: 0%;
        height: 2px;
        background-color: blue;
        transition: width 0.3s ease-in-out, left 0.3s ease-in-out;
    }

    .nav-bar ul li:hover::after {
        width: 100%;
    }

    .nav-bar ul li:not(:hover)::after {
        left: auto;
        right: 0;
        width: 0%;
    }

    .nav-bar ul li:hover .hover-item-box {
        display: block;
        visibility: visible;
        opacity: 1;
    }

    .right-part ul li a::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        width: 0%;
        height: 2px;
        background-color: blue;
        transition: width 0.3s ease-in-out, left 0.3s ease-in-out;
    }

    .right-part ul li a:hover::after {
        width: 100%;
    }

    .right-part ul li a:not(:hover)::after {
        left: auto;
        right: 0;
        width: 0%;
    }

    .right-part ul li:hover .hover-item-box {
        display: block;
        visibility: visible;
        opacity: 1;
    }



    .right-part {
        display: flex;
        gap: 1rem;
        width: 20%;
        align-items: center;
        justify-content: end;

        li {
            position: relative;
            padding: 0px 3rem;
            border-right: 1px solid #dedede;
        }

        a {
            padding: 3px 0rem;
            /* background-color: red; */
            position: relative;
        }
    }


}

.tarns {

    position: absolute;
    height: 8vh;
    cursor: pointer;
    width: 100%;
}

.hover-item-box {
    position: absolute;
    font-family: var(--font-Baloo);
    width: 98vw;
    background: #fff;
    height: 86vh;
    left: -189px;
    top: 35px;
    display: none;
    visibility: hidden;
    opacity: 0;
    transition: all linear .5s;

}

.hover-item-box2 {

    height: 40vh;
    left: -275px;

}

.hover-item-box5 {
    /* display: block;
    visibility: visible;
    opacity: 1;
    background: red; */
    height: 60vh;
    left: -1160px;

    .content-box ul li {
        padding: 0;
        border: none;
    }

}

.hover-item-box4 {

    height: 40vh;
    left: -566px;

}

.hover-item-box3 {

    height: 20vh;
    left: -445px;

}

.hover-item-box .content-box {
    display: flex;
    width: 75%;
    padding: 1.2rem;
    margin: 0 auto;
    gap: 5rem;

    .col1,
    .col2 {
        display: flex;
        flex-direction: column;

        h3 {
            color: rgb(127, 119, 156);
            margin: .7rem 0;
        }

        ul {
            display: flex;
            flex-direction: column;
            gap: 0rem;
            align-items: start;
        }
    }
}

.hover-item-box2 .content-box {
    gap: 9rem;
}





section .container {
    margin: 0 auto;
    width: 90%;
    font-family: var(--font-Pop);

    .heading-box {
        color: #666666;
        line-height: 5rem;
        padding: 2rem 0 0 0;

        h1 {
            font-weight: normal;
            font-size: 2.9rem;

        }

        h3 {
            font-weight: normal;
            text-transform: uppercase;
            font-size: 1.5rem;
            font-weight: 600;
            letter-spacing: 5px;
        }
    }
}

.left-right-container {
    display: flex;
    gap: 3rem;

    .sub-heading span {
        font-size: 1.5rem;
        padding: 2px 6px 0 0;
        border-bottom: 2px solid blue;
        font-family: var(--font-Baloo);
    }

    .left-box {
        width: 50%;
        display: flex;
        flex-direction: column;
        gap: 1rem;

        .row1 {
            height: 440px;
            overflow: hidden;
            cursor: pointer;
            border-radius: 7px;

            img {
                opacity: .5;
                transition: all linear .3s;
            }
        }

        .row1:hover img {
            opacity: 1;
            transform: scale(1.03);
        }

        .row2 {
            display: flex;
            flex-direction: column;


            h1 {
                padding: 10px 0 5px 0;
                font-size: 2.2rem;
                font-weight: 500;
                line-height: 2.7rem;

            }

            p {
                font-size: 14px;
                word-spacing: 4px;
                letter-spacing: 1px;
                font-weight: normal;
                color: #666666;
                padding-top: 4px;
            }
        }
    }

    .right-box {
        width: 50%;
        display: flex;
        flex-direction: column;
        gap: 2.2rem;

        .row {
            display: flex;
            gap: 1rem;

            .col2 {
                width: 36%;
                overflow: hidden;
                cursor: pointer;

                img {
                    transition: all linear .3s;
                }
            }

            .col2:hover img {
                transform: scale(1.03);

            }

            .col1 {
                width: 60%;

                .sub-heading span {
                    font-size: 20px;
                }

                h1 {
                    font-size: 1.5rem;
                    font-weight: 600;
                    letter-spacing: 1px;
                    word-spacing: 2px;
                    margin-top: .5rem;
                }

                p {
                    font-size: 14px;
                    font-weight: normal;
                    color: #666666;
                    padding-top: 4px;
                }
            }
        }
    }
}

section .mid-container{
    background-color: #f1f2f4;
   
    margin-top: 5rem;
    display: flex;
    .col1{
        width: 50%;
        padding:0 4rem;
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 1rem;
        .sub-heading span{
            border-bottom: 2px solid blue;
            
            font-family: var(--font-Baloo);
            font-size: 1.5rem;
        }
        h1{
            font-family: var(--font-Muli);
            font-size: 2.5rem;
        }
        p{
            font-size: 1.01rem;
            font-family: var(--font-Pop);
            color: #344854;
        }
    }
    .col2{
        width: 50%;
        cursor: pointer;
    }

}
section .container2 {
    margin: 10rem 0rem 0 3rem;

    .left-right-box {
        display: flex;
        gap: 3rem;

        .news-box {
            width: 13%;
            font-family: var(--font-Baloo);

            ul {
                display: flex;
                flex-direction: column;
                gap: .5rem;

                h3 {
                    margin-top: 1.7rem;
                    color: #666666;
                }

                li {
                    color: #2b2b2b;
                    transition: font-weight .1s linear;

                }
            }

            ul li:hover {
                font-weight: bold;
            }
        }

        .item-box {

            width: 70%;
            display: flex;
            flex-direction: column;
            gap: 3rem;

            .row {
                display: flex;
                gap: 3rem;

                .col1 {
                    width: 56%;
                    /* background-color: green; */
                    font-family: var(--font-Pop);

                    .sub-heading {
                        padding: 0 0 10px 0;

                        span {
                            border-bottom: 2px solid blue;
                            font-family: var(--font-Baloo);
                            font-size: 1.2rem;
                        }
                    }

                    h1 {
                        font-size: 1.6rem;
                        color: #3a3a3a;
                        font-weight: normal;
                    }

                    p {
                        color: #666666;
                        padding-right: 5%;
                        padding: 5px 0;
                    }
                }

                .col2 {
                    width: 321px;
                    height: 241px;
                    overflow: hidden;
                    border-radius: 5px;
                    background-color: aqua;
                    cursor: pointer;

                    img {
                        transition: .3s linear transform;

                    }

                }

                .col2:hover img {
                    transform: scale(1.02);

                }
            }

            .last-row {
                border-top: 1px solid #a1a1a1;
                padding: 1.7rem 5px;

                .sub-heading {
                    display: flex;
                    gap: 10px;
                    align-items: center;

                    color: #868686;

                    i {
                        border: 1px solid #a1a1a1;
                        padding: 5px;
                        border-radius: 50%;
                        font-size: 12px;

                    }
                }
            }
        }
    }
}

section .container3{
padding: 2.5rem 5rem;
margin: 2rem 0;
 background:#f1f2f4;

 .item-box{
    width: 89%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-Pop);
    h3{
        letter-spacing: 2px;
    }
    
 }
}

footer .footer-box1{
    display: flex;
    gap: 2rem;
    padding-right:3rem;
    justify-content: space-around;
    h3{
        font-family: var(--font-Muli);
        color: #344854;
        font-size: 16px;
    }
    ul li{
        padding: 7px 0;
        .social-icon{
            display: flex;
            gap:  20px;
            padding: 10px 0;
            i{
                font-size: 1rem;
                cursor: pointer;
            }
        }
    }
    
    ul li a{
        font-size: 13px;
        font-family: var(--font-Baloo);
    }
    ul li a:hover{
        color: #a1a1a1;
    }
}
footer .footer-box2{
    display: flex;
    justify-content: space-between;
    padding: 0 3rem;
    margin: 6rem 0 2rem 0;
    .col1 ul{
        display: flex;
        gap: 2rem;
        font-size: 14px;
        font-family: var(--font-Baloo);
    }
    .col2 select{
        border: none;
        color: #344854;
        outline: none;
    }
}