@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');

body {
  font-family: 'Poppins', sans-serif;
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Lato';
}
:root{
    --color_1: #121212;
    --text_color: #db8e50;
    --accent_color: #2e4e9b;
}
body{
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
}
nav
{
    height: 60px;
    /*background-color: transparent;*/
    background: url('book_final.png') no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display:flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 5;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin: 0px;
}
.links_container{
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
}
.e2e_logo{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: 90%;
    width: 6%;
    size-adjust:inherit;
}
nav a{
    height: 100%;
    padding: 0 20px;
    display:flex;
    align-items: center;
    text-decoration: none;
    color: rgb(255, 255, 255);  
    font-weight: 700;
    font-size: 18px;
}
nav a:hover{
    transition: 0.3s ease-out;
}
nav svg{
    fill: var(--text_color);
}
#sidebar-active{
    display: none;
}
.open_sidebar_button, .close_sidebar_button{
    display: none;

}
.contact_us_logo{
    margin-right: auto;
}
.contact_us_logo img{
    width: 100%;
    height: 100%;
}
.contact_us_logo:hover{
    background-color: transparent;
    transition: 0.3s ease-out;
}

@media(max-width: 750px) {
    .links_container{
        flex-direction: column;
        align-items: flex-start;
        position: fixed;
        top: 0;
        right: -100%;
        z-index: 10;
        width: 200px;
        background-color: var(--color_1);
        box-shadow: -5px 0 5px rgba(0,0,0,0.3);

        transition: .7s ease-out;
    }
    .contact_us_logo{
        display: none;
    }
    nav a{
        box-sizing: border-box;
        height: auto;
        width: 100%;
        color: #fff;
        padding: 30px 30px;
        justify-content: flex-start;

    }
    .open_sidebar_button, .close_sidebar_button{
        display: block;
        padding: 20px;
        cursor:grab;
    }
    #sidebar-active:checked ~ .links_container{
        right: 0;
    }
    #sidebar-active:checked ~ #overlay
    {
        height: 100%;
        width: 100%;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 9;
    }
}

.parallax{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: url('book_final.png') no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}
#text{
    position: absolute;
    font-size: 5em;
    color: rgb(255, 255, 255);
    text-shadow: 2px 4px 5px #000000;
}

.parallax img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    pointer-events: none;
}

.parallax img#gate-left{
    position: fixed;
    transform: translateX(-282px);
}
.parallax img#gate-right{
    position: fixed;
    transform: translateX(305px);
}
.sec{
    position: relative;
    background: #020e0d;
    padding: 30px 100px;
}
.sec h3{
    font-size: 2em;
    color: rgb(255, 255, 255);
    font-weight: 600;
    margin-bottom: 20px;
}
.sec a{
    color:#2e4e9b;
}
.sec ul,
.sec li{
    font-size: 1.1em;
    color: rgb(255, 255, 255);
    text-align: center;
    font-weight: 400;
    letter-spacing: 1.5px;
    text-align: justify;
}
.sec b{
    font-size: 1.2em;
    color: #db8e50;
    letter-spacing: 1px;
    margin-bottom: 10px;
}
.sec h2{
    font-size: 2em;
    text-align: center;
    color: #db8e50;
    letter-spacing: 1px;
    margin-bottom: 10px;
}
.sec p{
    font-size: 1.3em;
    color: rgb(255, 255, 255);
    text-align: center;
    font-weight: 400;
    letter-spacing: 1px;
    text-align: justify;
}
@media (max-width: 700px){
    .sec{
        padding: 30px 15px;
    }
    .sec h2{
        font-size: 1.3em;
    }
}