* {
    margin: 0;
    padding: 0;
}

:root {
    --gray-color: #2f2f2f;
    --lightgray-color: #838383;
    --red-color: rgb(155, 0, 0);
    --lightred-color: rgb(224, 0, 0);
    --bg-color: #654321;
    --light-bg-color: #865b2f;
    --universal-color: #f9f3e7;
}

::-webkit-scrollbar {
    width: 10px;
  }
  
  /* Track */
  ::-webkit-scrollbar-track {
    background: linear-gradient(var(--red-color),var(--gray-color));
    border-radius: 10px;
  }
  
  /* Handle */
  ::-webkit-scrollbar-thumb {
    background: var(--lightred-color);
    border-radius: 10px;
    width: 5px;
  }

.header{
    height: 100px;
    background-image: url(./Images/header.png);
    background-size: cover;
}

nav {
    display: flex;
    padding: 2% 6%;
    justify-content: space-between;
    align-items: center;
}

nav a img {
    margin: 0;
    padding: 0;
    margin-top: -25px;
    width: 250px;
}

.nav-links {
    flex: 1;
    text-align: right;
    margin-top: -25px;
}

.nav-links ul li {
    list-style: none;
    display: inline-block;
    padding: 8px 20px;
    position: relative;
    gap: 10px;
}

.nav-links ul li a {
    color: rgb(255, 255, 255);
    text-decoration: none;
    font-size: 15px;
    font-family: "Lato", sans-serif;
    font-weight: 400;
}

.more {
    display: none;
}

ul li:focus-within .more,
ul li:hover .more {
    display: block;
    position: absolute;
    border: 2px solid white;
    z-index: 10;
    color: white;
    margin-top: 2px;
    border-radius: 10px;
    padding: 5px;
    transition: 1s ease-in-out;
    background-image: linear-gradient(180deg, var(--red-color), var(--gray-color), var(--gray-color));
}

.more ul li a {
    font-family: "Lato", sans-serif;
    font-weight: 400;
    font-size: 18px;
}

.nav-links ul li::after {
    content: '';
    width: 0%;
    height: 2px;
    background: #f10;
    display: block;
    margin: auto;
    transition: 0.5s;
}

.nav-links ul li:hover::after {
    width: 100%;
}

nav .fa {
    display: none;
}

@media(max-width: 840px) {
    .nav-links ul li {
        display: block;
    }

    .nav-links {
        position: fixed;
        background: #2f2f2f;
        background-image: linear-gradient(180deg, var(--red-color), var(--gray-color), var(--gray-color));
        height: 100vh;
        width: 200px;
        top: 0;
        right: -200px;
        text-align: left;
        z-index: 2000000000;
        transition: 1s;
        margin-top: 0;
    }

    nav a img{
        display: none;
    }

    nav .fa {
        display: contents;
        color: rgb(255, 255, 255);
        margin: 10px;
        font-size: 22px;
        cursor: pointer;
    }

    .nav-links ul {
        padding: 10px;
    }

    .nav-links ul li a {
        font-size: 18px;
    }

    .more {
        width: 130px;
    }

    .more ul li a {
        margin-left: -15px;
        font-size: 18px;
    }
}

#bttbtn {
    display: none; 
    position: fixed; 
    bottom: 20px;
    right: 30px; 
    z-index: 100000; 
    border: none; 
    outline: none;
    color: white;
    cursor: pointer;
    padding: 15px;
    border-radius: 5px;
    font-size: 18px;
    border: 1px solid #222;
    color: #222;
    font-size: 25px;
    padding: 10px 30px;
    background: white;
  }



/* ------------------parichay-------------------- */


.parichay {
    background-color: #f9f3e7;
    /* background-image: url(./Images/mp1f.jpg); */
    background-size: cover;
    background-position: center;
    padding: 0 100px;
}

.information {
    display: flex;
    flex-direction: column;
}

.information .img {
    background-image: url(./Images/mp1.jpg);
    background-position: center;
    background-size: cover;
    position: relative;
    background-repeat: no-repeat;
    overflow: hidden;
    border-radius: 2000px;
    border: 10px solid lightgray;
    margin: 20px;
}

.information .img img {
    height: 250px;
    width: 250px;
}

.head {
    display: flex;
    flex-direction: row;
}

.heading {
    justify-items: center;
    margin: auto;
}

.heading h2 {
    font-size: 150px;
    font-family: "Eczar", serif;
    font-weight: 700;
    color: #654321;
}
.heading h3 {
    font-size: 50px;
    font-family: "Eczar", serif;
    font-weight: 700;
    color: #654321;
}

.heading p {
    font-size: 50px;
    font-family: "Eczar", serif;
    font-weight: 500;
    margin-top: -80px;
    color: #865b2f;
}

.info {
    display: flex;
    flex-direction: row;
}

.infoq th {
    justify-content: start;
    text-align: left;
    font-size: 22px;
    padding: 5px 10px;
    font-family: "Eczar", serif;
    font-weight: 600;
    color: #654321;
}

.infoq td {
    justify-content: start;
    text-align: left;
    font-size: 22px;
    padding: 5px 10px;
    font-family: "Eczar", serif;
    font-weight: 500;
    color: #865b2f;
}

.infos {
    width: 1300px;
}

.infos p {
    padding: 0 20px;
    font-size: 25px;
    font-family: "Eczar", serif;
    font-weight: 400;
    text-align: justify;
    color: #654321;
}


@media (max-width: 700px) {
    .parichay{
        padding: 0 10px;
        padding-top: 100px;
    }
    .head {
        flex-direction: column-reverse;
    }

    .info {
        flex-direction: column;
    }

    .heading h2 {
        font-size: 50px;
        font-family: "Eczar", serif;
        font-weight: 700;
        color: #654321;
        text-align: center;
    }

    .heading p {
        font-size: 25px;
        margin-top: -10px;
        text-align: center;
    }

    .bline {
        height: 1px;
        width: 100%;
        background-color: #654321;
        margin: 10px 0;
    }

    .infoq th {
        font-size: 18px;
        padding: 2px 5px;
        font-weight: 500;
    }

    .infoq td {
        font-size: 18px;
        padding: 2px 5px;
        font-weight: 400;
    }

    .infos {
        width: 100%;
    }

    .infos p {
        padding: 20px;
        font-size: 20px;
        font-family: "Eczar", serif;
        font-weight: 400;
    }

    .information .img {
        height: 250px;
        width: 250px;
        margin: auto;
    }
}