@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@200;300;400;500&family=Roboto+Mono:wght@100;200;300;400;500;600&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;   
    font-family: 'Montserrat', sans-serif;
}
body{
    background-color: #E5E4E2;
}

    /* Navigation Bar */
    .navigation-bar-container{
        width: 100%;
        /* border: 1px solid black; */
        display: flex;
        justify-content: space-between;
        align-items: center;
        background: rgba(0, 0, 0, 0.7);
        position: fixed;
        z-index: 2;
    }
    .logo-container{
        width: 20%;
        display: flex;
        justify-content: flex-start;
        align-items: center;
        /* border: 1px solid orange; */
    }
    .logo-container img{
        width: 40px;
        margin: 10px 0px 10px 10px;
    }
    .logo-container h2{
        font-size: 2rem;
    }
    .logo-container h2 a{
        color: antiquewhite;
        text-decoration: none;
    }
    .navigation-list{
        width: 60%;
    }
    .navigation-list ul{
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .navigation-list ul li{
        margin: 0px 25px;
        list-style-type: none;
    }
    .navigation-list ul li a{
        color: antiquewhite;
        text-decoration: none;
        font-weight: 500;
    }
    .navigation-list .home{
        color: #fd5f00;
    }
    .navigation-list ul li a:hover{
        color: #fd5f00;
    }

    /* Course BG-Image */

    .about-bg-image{
        background-image: linear-gradient(to right,rgba(0,0,0,0.5), rgba(0,0,0,0.5)) ,url('../Images/about-books.jpg');
        width: 100%;
        height: 400px;
        background-position: center;
        background-size: cover;
        background-repeat: no-repeat;
        background-attachment: fixed;
        margin-bottom: 100px;
    }
    .about-bg-image h3{
        font-size: 4rem;
        color: antiquewhite;
        width: 50%;
        position: relative;
        top: 40%;
        bottom: 0;
        left: 42%;
        right: 0;
        letter-spacing: 2px;
    }

    /* Contact-Form */

    .contact-main-container{
        width: 80%;
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        margin: 0px auto;
        padding: 10px;
        margin-bottom: 100px;
    }
    .contact-first-container{
        width: 35%;
        margin-right: 20px;
        background-color: #fff;
        padding: 0px 20px;
    }
    .contact-first-container .address-container h3{
        font-size: 1.5rem;
        letter-spacing: 1px;
        color: #0d1128;
        margin: 10px 0px 20px 10px;
    }
    .contact-first-container .address-container .address-content{
        display: flex;
        justify-content: center;
        align-items: flex-start;
        border-bottom: 1px solid gray;
    }
    .contact-first-container .address-container p{
        letter-spacing: 1px;
        text-align: justify;
        margin: 10px;
    }
    .contact-first-container .email-container h3{
        font-size: 1.5rem;
        letter-spacing: 1px;
        color: #0d1128;
        margin: 10px 0px 20px 10px;
    }
    .contact-first-container .email-container .email-content{
        display: flex;
        justify-content: center;
        align-items: flex-start;
        border-bottom: 1px solid gray;
    }
    .contact-first-container .email-container p{
        letter-spacing: 1px;
        text-align: justify;
        margin: 10px;
    }
    .contact-first-container .phone-container h3{
        font-size: 1.5rem;
        letter-spacing: 1px;
        color: #0d1128;
        margin: 10px 0px 20px 10px;
    }
    .contact-first-container .phone-container .phone-content{
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        border-bottom: 1px solid gray;
    }
    .contact-first-container .phone-container p{
        letter-spacing: 1px;
        text-align: justify;
        margin: 10px;
    }
    .contact-first-container .icons-container h3{
        font-size: 1.5rem;
        letter-spacing: 1px;
        color: #0d1128;
        margin: 10px 0px 20px 10px;
    }
    .contact-first-container .icons-container .icons-content{
        display: flex;
        justify-content: space-evenly;
        align-items: flex-start;
        margin: 10px;
        cursor: pointer;
    }
    .contact-second-container{
        width: 62%;
        margin-left: 20px;
        padding: 10px 20px 20px 20px;
        background-color: #fff;
    }
    .contact-second-container h3{
        font-size: 1.5rem;
        letter-spacing: 1px;
        color: #0d1128;
        margin: 10px 0px;
    }
    .contact-second-container form{
        width: 100%;
    }
    .contact-second-container .contact-name-input{
        font-size: 1.2rem;
        padding: 5px;
        outline: none;
        width: 47%;
        margin: 0px 10px 20px 0px;
    }
    .contact-second-container .contact-email-input{
        font-size: 1.2rem;
        padding: 5px;
        outline: none;
        width: 47%;
        margin: 0px 0px 20px 10px;
    }
    .contact-second-container .contact-subject-input{
        font-size: 1.2rem;
        padding: 5px;
        outline: none;
        width: 47%;
        margin: 0px 10px 20px 0px;
    }  
    .contact-second-container .contact-phone-input{
        font-size: 1.2rem;
        padding: 5px;
        outline: none;
        width: 47%;
        margin: 0px 0px 20px 10px;
    }
    .contact-second-container .contact-qualification-input{
        font-size: 1.2rem;
        padding: 5px;
        width: 98%;
        outline: none;
        margin: 0px 10px 20px 0px;
    }
    .contact-second-container textarea{
        width: 98%;
        outline: none;
        font-size: 1.2rem;
        padding: 5px;
    }
    .contact-second-container .contact-btn{
        color: antiquewhite;
        background-color: #fd5f00;
        padding: 10px;
        border: none;
        font-size: 1rem;
        border-radius: 5px;
        cursor: pointer;
        margin: 10px 0px;
        transition: 0.2s ease-in-out;
    }
    .contact-second-container .contact-btn:hover{
        background: transparent;
        color: #fd5f00;
        outline: 1px solid #fd5f00;
        
    }

   /* Footer */

   .main-footer{
    width: 100%;
    background-color: #0d1128;
}   
.footer-section-one{
    display: flex;
    justify-content: space-evenly;
    align-items: flex-start;
    padding-top: 150px;
    /* margin-bottom: 100px; */
    height: 500px;
}
.footer-section-one .footer-product h3{
    color: antiquewhite;
    margin-bottom: 40px;
    letter-spacing: 1px;
}
.footer-section-one .footer-product ul li{
    list-style-type: none;
    line-height: 30px;    
    color: #808080;
    letter-spacing: 1px;
}
.footer-section-one .footer-product ul li:hover{
    color: #fd5f00;
}
.footer-section-one .footer-links h3{
    color: antiquewhite;
    margin-bottom: 40px;
    letter-spacing: 1px;
}
.footer-section-one .footer-links ul li{
    list-style-type: none;
    line-height: 30px; 
    color: #808080;
    letter-spacing: 1px;
}
.footer-section-one .footer-links ul li:hover{
    color: #fd5f00;
}
.footer-section-one .footer-features h3{
    color: antiquewhite;
    margin-bottom: 40px;
    letter-spacing: 1px;
}
.footer-section-one .footer-features ul li{
    list-style-type: none;
    line-height: 30px; 
    color: #808080;
    letter-spacing: 1px;
}
.footer-section-one .footer-features ul li:hover{
    color: #fd5f00;
}
.footer-section-one .footer-resources h3{
    color: antiquewhite;
    margin-bottom: 40px;
    letter-spacing: 1px;
}
.footer-section-one .footer-resources ul li{
    list-style-type: none;
    line-height: 30px; 
    color: #808080;
    letter-spacing: 1px;
}
.footer-section-one .footer-resources ul li:hover{
    color: #fd5f00;
}
.footer-section-one a{
    text-decoration: none;
}
.footer-section-one .footer-newsletter h3{
    color: antiquewhite;
    margin-bottom: 40px;
    letter-spacing: 1px;
}
.footer-section-one .footer-newsletter .newsletter-input p{
    color: #808080;
    letter-spacing: 1px;
    margin-bottom: 30px;
}
.footer-section-one .footer-newsletter .newsletter-input input{
    font-size: 1rem;
    padding: 5px;
    background: transparent;
    color: antiquewhite;
    outline: none;
    border: none;
    border-bottom: 1px solid gray;
}
.footer-section-one .footer-newsletter .newsletter-input button{
    color: antiquewhite;
    background-color: #fd5f00;
    padding: 2px;
    width: 50px;
    border: none;
    font-size: 1.5rem;
    border-radius: 5px;
    cursor: pointer;
    margin-left: -2px;
    transition: 0.2s ease-in-out;
}
.footer-section-one .footer-newsletter .newsletter-input button:hover{
    background: transparent;
    color: #fd5f00;
    outline: 1px solid #fd5f00;
    
}
.footer-section-two{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 0px 100px 100px 89px;
}
.footer-section-two .footer-text p{
    color: #808080;
    letter-spacing: 1px;
}
.footer-section-two .footer-icons img{
    margin: 10px;     
}
