@import url('https://fonts.googleapis.com/css2?family=Merienda:wght@300&display=swap');

* {
    margin: 0%;
    padding: 0%;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

html {
    scroll-behavior: smooth;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: 'Times New Roman', Times, serif;
    font-variant: small-caps;
    background-color: #b8956a;
}

/*----------scrollbar style----------*/
::-webkit-scrollbar {
    width: 3px;
}

::-webkit-scrollbar-track {
    background-color: #6d442d;
}

::-webkit-scrollbar-thumb {
    background-color: #2c1200;
}

/*----------header section(preloader, noscript)style---------*/
#preloader {
    background-color: white;
    height: 100%;
    width: 100%;
    position: fixed;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow-y: hidden;
    background-image: url(Pulse-0.4s-200px.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 10%;
    filter: invert(1);
}

noscript {
    position: fixed;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--dark-mode);
    font-size: 4rem;
    color: white;
    z-index: 999999;
}

/*----------heading and sub-heading style---------*/
.heading {
    display: flex;
    color: #2c1200;
    padding: 2%
}

.heading p {
    margin: auto;
    font-size: 70px;
    font-weight: 600;
    text-align: center;
    background-clip: text;
    background-image: linear-gradient(45deg, #2c1200, #6d442d, #2c1200);
    color: transparent;
}

.sub-heading {
    margin: auto;
    font-size: 40px;
    font-weight: 400;
    color: #2c1200;
}

.lib-heading {
    display: flex;
    color: #2c1200;
    padding: 2%
}

.lib-heading p {
    margin: auto;
    font-size: 65px;
    font-weight: 600;
    background-clip: text;
    background-image: linear-gradient(45deg, #61402d, #916f56, #61402d);
    color: transparent;
}

/*----------all section style---------*/
section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: auto;
}

/*----------navbar style(large screen)---------*/
.navbar1 {
    display: flex;
    justify-content: space-between;
    padding: 2%;
    align-items: center;
    position: fixed;
    margin: auto;
    height: 80px;
    width: 100%;
    z-index: 4;
    background-color: #2c1200;
}

.name1 {
    color: #ffffff;
    font-family: 'Merienda', cursive;
}

.nav-links {
    list-style: none;
    display: flex;
}

.nav-links li a {
    text-decoration: none;
    color: #ffffff;
    transition: all 0.2s;
    transition: all 0.3s ease-in-out;
    font-size: 20px;
    padding: 20px;
}

.nav-links li a:hover {
    border-radius: 25px;
    background-color: #b8956a;
    color: #2c1200;
}

/*mobile hidden*/
.navbar {
    display: none;
}

/*----------main section(home) style---------*/
#home {
    height: 100vh;
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: auto;
    scroll-behavior: smooth;
    background-color: #b8956a;
    overflow: hidden;
}

/* Logo */
.logo {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    transition: all 0.3s ease;
}

#bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    opacity: 0.8;
}

.bg-video video {
    filter: brightness(1.1) contrast(1.2);
}

/* Overlay with a subtle color */
#video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #2c120013;
    z-index: 2;
}

.logo-item-1 {
    height: 130px;
    width: 130px;
    transition: all 0.3s ease;
}

.logo-item-2 {
    height: 300px;
    width: 500px;
    transition: all 0.3s ease;
}

/* Portrait Video for Small Screens */
@media (max-width: 768px) {
    #bg-video {
        content: url('avc-portrait.mp4');
    }
}

/*----------section one(current year-pic, editorial board, book)style---------*/
#one {
    width: 90%;
}

.gallery-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    width: 100%;
    max-width: 1200px;
    padding: 20px;
}

.main-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    aspect-ratio: 1/1;
    border: none;
    border-radius: 5px;
    overflow: hidden;
    background: #6d442d91;
    margin-bottom: 20px;
    position: relative;
}

.main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.5s ease;
}

.thumbnail-list {
    display: flex;
    gap: 10px;
    padding: 10px;
    margin-bottom: 20px;
    width: 100%;
    max-width: 800px;
    border: none;
    border-radius: 5px;
    background: #6d442d91;
    overflow-x: auto;
    scrollbar-width: none;
    scroll-behavior: smooth;
}

.thumbnail-list::-webkit-scrollbar {
    display: none;
}

.thumbnail-list img {
    width: 80px;
    height: 80px;
    cursor: pointer;
    border-radius: 5px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.thumbnail-list img:hover {
    transform: scale(1.1);
}

.thumbnail-list img.active {
    box-shadow: 0 0 10px 3px #2c1200;
}

.dots {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #6d442d91;
    cursor: pointer;
    transition: background-color 0.3s;
}

.dot:hover {
    background-color: #2c1200a6;
}

.active-dot {
    background-color: #2c1200;
}

.nav-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #361700d2;
    font-size: 40px;
    cursor: pointer;
    transition: color 0.3s;
}

.nav-button:hover {
    color: #2c1200;
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-image {
        max-width: 300px;
    }

    .thumbnail-list img {
        width: 60px;
        height: 60px;
    }

    .nav-button {
        font-size: 30px;
    }
}

@media (max-width: 480px) {
    .main-image {
        max-width: 230px;
    }

    .thumbnail-list img {
        width: 50px;
        height: 50px;
    }

    .nav-button {
        font-size: 25px;
    }

    .dots {
        gap: 5px;
    }

    .dot {
        width: 8px;
        height: 8px;
    }
}

/*36th year editorial board*/
.editorial-board {
    width: 80%;
    margin: auto;
    justify-content: center;
    align-items: center;
}

.ed-editor {
    justify-content: center;
    text-align: center;
}

.ed-sub {
    text-align: center;
    justify-content: center;
    font-size: 29px;
    font-weight: 200;
    color: #361700d2;
}

.ed-name {
    font-size: 18px;
    text-align: center;
    justify-content: center;
    color: #000000;
}

.ed-dep {
    text-align: center;
    color: rgb(53, 53, 53);
    font-size: 15px;
}

.ed-para {
    font-size: 22px;
    font-weight: 100;
    color: #000000d2;
}

.ed-element {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    margin: auto;
    flex-direction: row;
    background-color: #6d442d91;
    padding: 1%;
}

/*current book*/
#c-book {
    width: 80%;
    margin: auto;
}

.cb-item {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.cb-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: auto;
    position: relative;
    margin: 10px;
    height: 510px;
    width: 320px;
    background-color: #6d442d91;
}

.cb-wrapper img {
    height: 400px;
    width: 260px;
    display: flex;
    margin: 3% auto;
}

.cb-wrapper p {
    display: flex;
    font-size: 20px;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: rgb(0, 0, 0);
    padding: 2%;
}

.order-btn {
    margin: 5px;
    padding: 15px;
    background-color: #6d442d;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 400;
    color: #e9d0c2;

    a {
        text-decoration: none;
        color: #e9d0c2;
        font-family: 'Times New Roman', Times, serif;
    }

    transition: background-color 0.3s;
}

.order-btn:hover {
    background-color: #7e4a2c;
}

/*--------------------add-------------------*/
/* Ad Box */
.google-ad {
    width: 80%;
    background: #fff;
    border: 1px solid #ddd;
    padding: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    font-family: Arial, sans-serif;
    text-align: left;
    position: relative;
    margin: 20px auto;
}

.ad-content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    margin: auto;
    gap: 7%;
}

/* Ad Header */
.ad-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: #666;
    padding-bottom: 5px;
}

#adVideo {
    align-items: center;

    img {
        height: 150px;
        width: auto;
    }
}

.ad-name {
    justify-content: center;
    text-align: center;
}

.arc1 {
    font-size: 20px;
    font-weight: 800;
    color: #2c1200;
}

.arc2 p {
    font-size: 12px;
    font-weight: 200;
    color: #402106;
}

.sponsored {
    font-weight: bold;
    color: #888;
}

/* Close Button */
.close-btn {
    background: none;
    border: none;
    font-size: 16px;
    cursor: pointer;
    color: #666;
}

.close-btn:hover {
    color: black;
}

/* Ad Video */
.ad-content div {
    border-radius: 5px;
    max-height: 150px;
}

.ad-footer {
    margin-top: 5px;
    text-align: right;
}

.ad-link {
    text-decoration: none;
    color: #007bff;
    font-size: 17px;
    font-weight: bold;
}

.ad-link:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .google-ad {
        width: 80%;
    }

    .ad-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    #adVideo {
        img {
            height: 90px;
            width: 170px;
        }
    }

    .arc1 {
        font-size: 15px;
        font-weight: 600;
        color: #2c1200e5;
    }

    .arc2 {
        font-size: 10px;
        font-weight: 300;
        color: #402106;
    }

    .ad-link {
        font-size: 12px;
        font-weight: bold;
    }
}

/*----------section two(history) style---------*/
#two {
    width: 60%;
    margin: auto;
    display: flex;
    justify-content: center;
    flex-direction: column;
    color: white;
}

article {
    width: 100%;
    margin-bottom: 2rem;
    text-align: left;
    align-items: center;
}

article h2 {
    font-size: 25px;
    font-weight: 400;
    color: #441c00;
}

article p {
    font-size: 20px;
    font-weight: 300;
    line-height: 25px;
    color: #000000;
}

.image {
    margin-top: 0.5rem;
    text-align: center;
}

.image img {
    max-width: 60%;
    height: auto;
    border-radius: 8px;
    border: #2c1200 solid 1px;
}

.founder-image {
    margin-top: 1.5rem;
    text-align: center;
}

.founder-image img {
    max-width: 100%;
    height: 350px;
    border: #2c1200 solid 1px;
}

.founder-image p {
    font-size: 20px;
    font-weight: 300;
    color: #441c00;
}

.founder-image p {
    b {
        color: #000000;
    }
}

.hidden {
    display: none;
    opacity: 0;
}

.history-sections.hidden {
    transition: opacity 0.5s ease-out;
    opacity: 0;
}

.history-sections.hidden.show {
    opacity: 1;
}

.fade-in {
    opacity: 0;
    animation: fadeIn 1s ease-out forwards;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/*----------section three(library) style---------*/
/* Full-Screen Library Page (Initially Hidden) */
#three {
    width: 60%;
    height: fit-content;
}

/* Full-Screen Library Page */
#libraryPage {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 150vh;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    overflow-y: auto;
    margin-bottom: 10px;
}

.library-content::-webkit-scrollbar {
    display: none;
}

.library-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    overflow-y: auto;

}

/* Back Button */
.back-btn {
    position: absolute;
    height: 41px;
    width: 40px;
    top: 20px;
    left: 20px;
    font-size: 30px;
    background: none;
    border: none;
    cursor: pointer;
    color: #ffffff;
    padding: 5px;
}

#old-book {
    width: 100%;
    height: fit-content;
    margin: auto;
}

.ob-contant {
    text-align: justify;
    font-size: 20px;
    font-weight: 300;
}

.b-item {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.b-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: auto;
    position: relative;
    margin: 10px;
    height: 510px;
    width: 320px;
    background-color: #6d442d91;
}

.b-wrapper img {
    height: 400px;
    width: 260px;
    display: flex;
    margin: 3% auto;
}

.b-wrapper p {
    display: flex;
    font-size: 20px;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 2%;
}

.b-wrapper:hover img {
    transform: translate(-2px, -10px);
    transition-duration: 300ms;
    box-shadow: 5px 10px 15px rgba(0, 0, 0, 0.753);
}

/*----------section four(vedio) style---------*/
#four {
    width: 60%;
    margin: auto;
}

.youtube-section {
    text-align: center;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px #6d442d91;
    margin: 20px auto;
    width: 100%;
}

.video-container {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    margin-bottom: 20px;
    overflow: hidden;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/*----------section five(contact) style---------*/
#five {
    width: 100%;
    position: relative;
    margin: auto;
}

.logos {
    position: relative;
    display: flex;
    width: 100%;
    top: 30%;
    gap: 30px;
    justify-content: center;
    align-items: center;
    height: 80px;
    z-index: 1;
}

.logos a {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    padding: 10px;
    border-radius: 50%;
    border: 2px solid #6d442d;
    transition-duration: .3s;
    position: relative;
    box-shadow: 0px 0px 0px #2c1200;
    transition-duration: .3s;
}

.SocialHandle {
    fill: #2c1200;
    width: 60%;
}

#GmailLogo {
    height: 70%;
    fill: #2c1200;
}

.logos a:hover {
    box-shadow: 0px 0px 50px 100px #2c120042 inset;
    transition-duration: 1s;
    border: none;
}

.logos a::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    border-radius: 50%;
    transform: scale(0);
    background-color: transparent;
    transition-duration: .3s;
    z-index: -1;
}

.logos a:hover::before {
    transform: scale(1);
    transition-duration: .3s;
}

/*----------section six(sponsor) style---------*/
.sponsor-logos {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 10px;
}

.sponsor-logos img {
    max-height: 70px;
    transition: transform 0.3s ease-in-out;
    border: solid 1px #2c1200;
}

.sponsor-logos img:hover {
    transform: scale(1.1);
}

/*----------footer style----------*/
footer {
    background-color: #1d0c00;
    text-align: center;
    align-items: center;
    justify-content: center;
    margin: auto;
}

.footer-content {
    background-color: #1d0c00;
    margin: auto;
}

.developer-section {
    margin-top: 20px;
    text-align: center;
    align-items: center;
    justify-content: center;
}

.thirtysixth-year {
    font-size: 20px;
    color: #c58b72;
}

.developer-title {
    font-size: 30px;
    color: saddlebrown;
    padding-top: 10px;
}

.developers {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: nowrap;
}

.developer {
    text-align: center;
    max-width: 200px;
}

.developer img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
}

.name {
    font-size: 25px;
    font-weight: bold;
    margin-top: 8px;
    color: #c59884;
}

.department {
    font-size: 15px;
    color: #754827;
}

.developer a {
    display: block;
    font-size: 15px;
    color: #e4bc96b4;
    text-transform: lowercase;
    text-decoration: none;
    margin-top: 5px;
}

.developer a:hover {
    text-decoration: underline;
}

.footer2 {
    padding: 1%;
    background-color: #332820;
    color: #e9d0c2;
}

@media (max-width: 600px) {
    .developers {
        gap: 20px;
    }

    .developer-section {
        overflow: hidden;
    }

    .developers {
        gap: 20px;
    }

    .developer {
        max-width: 150px;
    }

    .developer img {
        width: 40px;
        height: 40px;
    }

    .name {
        font-size: 16px;
    }

    .department {
        font-size: 10px;
    }

    .developer a {
        font-size: 10px;
        text-transform: lowercase;
    }
}

/*-------------------------------------------------------------------------------*/

/* Very small screens (below 480px) */
@media (max-width: 480px) {

    /*----------heading,sub-heading style---------*/
    .heading p {
        font-size: 35px;
        font-weight: 600;
    }

    .sub-heading {
        font-size: 25px;
        font-weight: 300;
    }

    /*----------main section(home) style---------*/
    #home {
        height: 90vh;
    }

    .logo {
        width: 90%;

    }

    .logo-item-1 {
        height: 100px;
        width: 100px;
    }

    .logo-item-2 {
        height: 250px;
        width: 450px;
    }

    .editorial-board-pdf img {
        width: 100%;
        height: 70px;
    }

    .cb-wrapper {
        width: 220px;
        height: 360px;
    }

    .cb-wrapper img {
        height: 260px;
        width: 180px;
    }

    .cb-wrapper p {
        font-size: 14px;
    }

    .order-btn {
        padding: 6px;
        font-size: 12px;
    }


    /*----------section two(history) style---------*/
    #two {
        width: 60%;
        margin: auto;
    }

    article h2 {
        font-size: 20px;
        font-weight: 400;
        text-align: left;
    }

    article p {
        font-size: 16px;
        font-weight: 300;
        line-height: 20px;

    }

    .image img {
        max-width: 90%;
        height: auto;
        border-radius: 8px;
        border: #2c1200 solid 1px;
    }

    /*----------section three(library) style---------*/
    #three {
        width: 80%;
        height: 100%;
        margin: auto;
    }

    .ob-contant {
        width: 100%;
        font-size: 16px;
        font-weight: 300;
        line-height: 20px;
        text-align: justify;
        align-items: center;
    }

    .b-wrapper {
        width: 220px;
        height: 360px;
    }

    .b-wrapper img {
        height: 260px;
        width: 180px;
    }

    .b-wrapper p {
        font-size: 14px;
    }

    #old-book {
        width: 100%;
        height: fit-content;
        margin: auto;
    }


    /*----------section four(vedio) style---------*/
    #four {
        width: 80%;
        margin: auto;
    }

    /*----------section five(contact) style---------*/
    #five {
        width: 80%;
        position: relative;
        margin: auto;
    }

    .logos {
        gap: 20px;

    }

    /*----------section six(sponsor) style---------*/

    .sponsor-logos img {
        max-height: 40px;
    }

    /*----------footer style----------*/
    footer {
        height: 30px;

        p {
            font-size: 16px;
        }
    }
}

/* Mobile screens (below 768px) */
@media (min-width: 481px) and (max-width: 990px) {

    /*----------heading,sub-heading style---------*/
    .heading p {
        font-size: 40px;
        font-weight: 600;
    }

    .sub-heading {
        font-size: 30px;
        font-weight: 300;
    }

    .editorial-board-pdf img {
        width: 100%;
        height: 80px;
    }

    .cb-wrapper {
        width: 300px;
        height: 450px;
    }

    .cb-wrapper {
        img {
            width: 240px;
            height: 320px;
        }
    }

    .cb-wrapper {
        p {
            font-size: 16px;
        }
    }

    .order-btn {
        padding: 6px;
        font-size: 12px;
    }

    /*----------section three(library) style---------*/
    .b-wrapper {
        width: 300px;
        height: 450px;
    }

    .b-wrapper {
        img {
            width: 240px;
            height: 320px;
        }
    }

    .b-wrapper {
        p {
            font-size: 16px;
        }
    }

    #old-book {
        width: 100%;
        height: fit-content;
        margin: auto;
    }

    /* Back Button */
    .back-btn {
        font-size: 28px;
    }

}


/* large screens (above 991px) */
@media (max-width: 991px) {

    ::-webkit-scrollbar {
        display: none !important;
    }

    .navbar1 {
        display: none;
    }

    .navbar {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        position: fixed !important;
        top: 0;
        left: 0;
        width: 100%;
        background: white;
        z-index: 9999;
    }

    .nav-elements {
        display: flex;
        justify-content: space-between;
        align-content: center;
        width: 100%;
        height: 60px;
        top: 0;
        padding: 10px 20px;
        z-index: 4;
        background-color: #2c1200;
    }

    .name2 {
        display: flex;
        color: #ffffff;
        font-size: 25px;
    }

    #toggle {
        display: block;
        align-items: center;
        width: 28px;
        height: 30px;
        position: relative;
        cursor: pointer;
    }

    #toggle span,
    #toggle span:after,
    #toggle span:before {
        content: "";
        position: absolute;
        left: 0;
        width: 100%;
        height: 3px;
        background-color: #ffffff;
        border-radius: 2px;
        transition: all 0.3s;
    }

    #toggle span {
        top: 50%;
    }

    #toggle span:before {
        top: -9px;
    }

    #toggle span:after {
        top: 9px;
    }

    #toggle.on span {
        background-color: transparent;
    }

    #toggle.on span:before {
        transform: rotate(45deg) translate(5px, 5px);
    }

    #toggle.on span:after {
        transform: rotate(-45deg) translate(7px, -8px);
    }

    /*Menu appearance*/
    #menu {
        display: flex;
        top: 5%;
        position: fixed;
        height: 100%;
        width: 100%;
        border-radius: 0;
        background: #2c1200;
        box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.1);
        z-index: 3;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
    }

    #menu.show {
        opacity: 1;
        visibility: visible;
    }

    ul {
        align-content: center;
    }

    ul,
    li {
        list-style: none;
        margin: 0;
        padding: 10px;
        width: 100%;
    }

    li a {
        display: block;
        padding: 20px;
        color: #ffffff;
        text-decoration: none;
        transition: color 0.2s;
        justify-content: center;
        text-align: center;
        margin: auto;
    }

    li a:hover,
    li a:focus {
        color: #333;
    }

    /*----------main section(home) style---------*/
    #home {
        width: 100%;
        height: 100vh;
    }

    .logo-item-1 {
        height: 75px;
        width: 75px;
    }

    .logo-item-2 {
        height: 200px;
        width: 250px;
    }

    /*----------section one(current year) style---------*/
    .ed-editor {
        font-size: 16px;

        b {
            font-size: 20px;
            font-weight: 100;
            color: #402106;
        }
    }

    .ed-para {
        font-size: 16px;
    }

    .ed-element {
        display: flex;
        align-items: center;
        justify-content: center;
        margin: auto;
        flex-direction: column;
        background-color: #4021067e;
        padding: 1%;
    }

    .order-btn {
        font-size: 16px;
        padding: 7px;
    }

    /*----------section two(history) style---------*/
    #two {
        width: 80%;
        margin: auto;
    }

    .founder-image {
        margin-top: 1.5rem;
        text-align: center;
    }

    .founder-image img {
        max-width: 100%;
        height: 250px;
    }

    .founder-image p {
        font-size: 16px;
        font-weight: 300;
        color: #402106;
    }
}