* {
    box-sizing: border-box;
    overflow-x: hidden;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif
}


.box {
    background-color: rgb(255, 246, 241);
    ;
    height: 250px;
    box-shadow: 1px 4px 4px 1px lightgray;
    padding: 1em;
    padding-top: 2em;
}


.box p {
    color: rgb(110, 110, 110);
}


.circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgb(255, 86, 1);

    display: flex;
    align-items: center;
    justify-content: center;
}

.circle i {
    color: white;
    font-size: 22px;
}


h1::-webkit-scrollbar {
    display: none;
}

h2::-webkit-scrollbar {
    display: none;
}

.banner img {
    width: 85%;
    margin-top: -25px;
}

.banner .partext {
    margin-top: 30px;
}


.nvcls {
    display: flex;
    justify-content: center;
    gap: 5em;
}

.mainbn {
    background: radial-gradient(white, rgb(255, 240, 248));
    height: 430px;
}

.mainbn::-webkit-scrollbar {
    display: none;
}

.banner .row {
    margin-top: 30px;
}

.navk {
    margin-top: 2em;
}

.in-btw {
    display: flex;
    justify-content: center;
    align-items: center;
}

.log {
    width: 20%;
}

.log img {
    width: 100%;
}

.navbtn {
    margin-top: 1.5em;
}

.orgbtn {
    background-color: rgb(255, 86, 1);
    padding: 10px 33px 10px 33px;
    border: none;
    color: white;
    border-radius: 50px;
}


.footer {
    border-top: 1px solid lightgray;
    padding: 50px 0px 50px 0px;
    width: 100%;
    background-color: rgb(255, 246, 241);
    ;
}

.whgbtn {
    background-color: white;
    padding: 10px 33px 10px 33px;
    border: 1px solid lightgrey;
    color: black;
    border-radius: 50px;
    box-shadow: 1px 2px 2px 1px lightgray;
}

.third img {
    width: 70%;
    border-radius: 14px;
}


.bat {
    box-shadow: 0px 3px 3px 0px lightgray;
}

.box2 img {
    width: 100%;
    border-radius: 10px;
    height: auto;
    transition: transform 0.4s ease;
    overflow: hidden;
}

.box2 img:hover{
    transform: scale(1.1);
}

.noggle {
    display: none;
}

.whgbtn:hover {
    background-color: rgb(246, 246, 246);
}

.orgbtn:hover {
    background-color: rgb(238, 83, 6);
}

.navk:hover {
    color: rgb(255, 86, 1);
}


@media only screen and (min-width: 300px) and (max-width: 600px) {

    #logk {
        display: none;
    }

    .noggle {
        width: 70%;
        display: inline-block;
        justify-content: center;
        align-items: center;

    }

    .nvcls {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.8s ease;
    }

    .nvcls.open {
        max-height: 600px;
        transition: max-height 0.8s ease;
    }

    .nvcls {
        transform: scaleY(0);
        transform-origin: top;
        transition: transform 0.3s ease;
    }

    .nvcls.open {
        transform: scaleY(1);
    }





    #toggle {
        display: block;
        width: 100%;
    }

    .nvcls {
        flex-direction: column;
        text-align: center;
    }

    .navk {
        margin-top: 0em;
    }

    .mainbn {
        height: 650px;
    }
}