@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300..700&family=Roboto+Slab:wght@100..900&display=swap');

*
{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body{
    font-family: 'Quicksand', sans-serif;
    background-image: url(../../Images/general_Images/Outward-landscape2.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-attachment:fixed;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100vh ;
}
.red-bg{
    background-color: red;
    color: white;
}
.black-bg{
    background-color: black;
    color: white;
}
.roboto-normal{
    font-family: 'Roboto Slab', serif;
}
.roboto-light{
    font-family: 'Roboto Slab', serif;
    color:rgb(218, 215, 215);
}
.hidden{
    display: none;
}
.letter-space-4px{
    letter-spacing: 4px;
}
.header{
    height: 80px;
    z-index:100;
    box-shadow: 0px 4px 8px black;
    background-color: #311d47;
    position: fixed;
}
.header li{
    text-decoration: none;
    list-style-type: none;
}
.menu-logo-image{
    width: 340px;
    cursor: pointer;
}
.logo-image{
    width: 340px;
}
.nav-menu{
    width: 60%;
    height: 80px;
}
.nav-menu > ul > li:hover > ul{
    display: block;
}
.nav-menu > ul > li{
    position: relative;
}
.nav-menu > ul ul
{
    display: none;
    position:absolute;
    margin: 0;
    padding: 0;
    text-align: center;
    border-radius: 5px;
    left: 50%;
    transform: translate(-50%);
    background-color:#311d47;
    box-shadow: 0px 4px 8px black;
}
.nav-menu li li:first-child
{
    padding-top: 20px;
}
.nav-menu li li
{
    padding: 15px;
}
.nav-menu li li:hover
{
    padding: 15px;
    color: rgb(255, 255, 255);
    border-top: 1px solid rgb(138, 136, 136);
    border-bottom: 1px solid rgb(138, 136, 136);
    transition: all 0.3s ease;
}
.nav-menu a{
    font-family: 'Quicksand', sans-serif;
    font-weight: bold;
    font-size: 1.2rem;
    text-decoration: none;
    color: rgb(204, 202, 202);
}
.button-small-screen{
    text-align: right;
    font-size: 30px;
    padding-right: 30px; 
}
.modal-dialog{
    margin: 0;
}
.modal-content{
    background-color: #311d47;
    border-bottom: none;
    border-top: none;
}
.modal-body{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.modal-header,.modal-footer {
    border-bottom: none;
    border-top: none;
}
.modal-header .btn-close{
    font-size: 20px;
}
.modal-header img{
    height: 70%;
    width: 70%;
}
.modal-menu{
    width: 180px;
}
.modal-menu a,p{
    text-decoration: none;
    color: white;
    font-size: 19px;
    margin-bottom: 0;
}
.modal-menu a:hover{
    letter-spacing: 1px;
    transition: letter-spacing 0.3s ease;
}
.modal-menu li li a:hover{
    text-decoration:underline;
}
.modal-menu ul, 
.modal-menu ul ul {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 10px;
}
.modal-menu li {
    padding-left: 1rem;
}
.modal-menu li > a :hover, .modal-menu ul li > a :hover {
    text-decoration:underline;
}
.category-imgAndTitleDiv p{
    font-size: 16px;
}
.social
{
    display: flex;
    margin-top: auto;
    bottom: 0;
    padding: 50px 30px;
    background-color: rgb(39, 37, 37);
    justify-content: space-between;
}
.copyright
{
    color: white;
    font-family: 'Quicksand', sans-serif;
}
.social-apps
{
    color: white;
    font-family: 'Quicksand', sans-serif;
    text-align: right;
}
.social-apps i
{
    font-size: 30px;
    color: rgb(45, 45, 156);
}
div.dt-container .dt-input {
    background-color: #41275c !important;
}

#dt-length-0{
    margin-right: 5px;
}
.page-image-container{
    width: 468.5px;
    height: 248.5px;
}
.page-image-container img{
    width: 100%;
    height: 100%;
}

@media only screen and (max-width: 992px) {
    .nav-menu{
        display: none !important;
    }

    .header{
        height: 61px;
    }

    .menu-logo-image{
        width: 260px;
    }

    .logo-image{
        width: 260px;
    }

    .social-apps{
        font-size: 15px;
    }
    .social{
        font-size: 15px;
    }
}

@media only screen and (max-width: 768px) {
    
    .categoryAndDescription{
        width: 100% !important; 
    }

    .new-div-container{
        width: 90% !important;
    }

    .page-image-container{
        width: 374.8px;
        height: 198.8px;
    }

    #page-description{
        font-size: 17px;
    }

    #example{
        font-size: 10px;
    }
}

@media only screen and (max-width: 480px) {

    body{
        background-image: none;
        background-color: rgb(59, 59, 59);
    }
}

