*{
    padding:0;
    margin: 0;
    font-family: 'Noto Sans', 'Helvatica Neue','Helvatica','Arial','sans-serif';
    
}

/*Navigation*/
nav{
    margin-bottom: 10px;
}
header{
   
    width: 100%;
    
}

.nav-container{
    display: flex;
    padding-left: 2%;
    padding-right: 2%;
    padding-top: 10px;
    justify-content: space-between;
    align-items: center;
    height: 100px;
}

.logo{
    padding-left: 1%;
    display: flex;
    align-items: center;
    height: 100px;

}

.logo-image{
    height: 50px;
    width: 50px;
    border-radius: 50%;
}

#today{
    align-self: flex-end;
    letter-spacing: 2px;
    font-weight: 600;
    font-size: small;
    font-style: italic;
    font-family: sans-serif;
}

.title-container{
    display: flex;
    align-items: center;
   
}
.title{
    
    height: inherit;
    font-size: 35px;

}
    
/*Body*/

.accordion{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width:100%;
    
}

.accodion-container{
    
}

.accordion-item{
    border:none !important;
    width: 60% ;
    border-bottom: #6f6f6f 1px solid !important;
    padding-bottom: 20px !important;
    padding-left: 10px !important;
    background-color: rgb(245, 244, 243) !important;
    margin-bottom: 10px;
    border-radius: 10px !important;
}

.accordion-header{
    display: flex;
    gap: 20px;
}

.accordion-button{
    width:20% !important;
    border: none !important;
    box-shadow: none !important;
    background-color: white !important;
    color: #000000 !important;
    padding:5px 5px !important;
    font-size: small !important;
    font-style: italic!important;
    border-radius: 10px !important;
}

.accordion-button::after{
    margin-left: 5px !important;
}
.jobs-section{
    display: flex;
    justify-content: center;
    align-items: center;

}

.jobs-container{
    width:60%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.job{
    border: 1px solid lightgray ;
    margin-bottom: 10px;
    width:70%;
    height: 320px;
    border-radius: 10px;
    padding-left: 15px;

}

.job-heading{
    font-size: larger;
    margin-top: 10px;
    margin-bottom: 10px;
    color: #000000;
}
.company{
    font-size: 15px;
    color:#6f6f6f;
    margin-bottom: 0 !important;
}

.location{
    font-size: 15px;
    color:#6f6f6f;
    margin-bottom: 10px !important;
}

.job-type{
    background-color: rgb(204, 252, 204);
    height: 30px;
    width: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    color: green;
    margin-bottom: 0px !important;
    font-weight: 400;
    font-size: .8rem;
}

.point-container{
    
    margin-bottom: 15px;
}



.point-container li{
    font-size: .875rem;
    line-height: 1.25rem;
    color: #6f6f6f;
    list-style-type:circle;
    font-weight: 400;
    margin-bottom: 10px;
}

.expire{
    color: #6f6f6f;
    font-weight: 500;
    font-size: .875rem;
}

.description-container{
    width:40%;
    display: flex;
    flex-direction: column;
    align-self: flex-start;
}

.description{

    border-radius: 20px;
    border: solid 1px lightgrey;
    height: 500px;
    width: 80%;
}

footer{
   height: 70px;
    
}
.footer-image{
    margin-top: 5px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.contacts{
    margin-top: 5px;
    display: flex;
    flex-direction: column;

}

.contacts a{
    color: #6f6f6f;
}

@media  (max-width:720px) {
    
    .nav-container{
        height: 50px;
    }
    .logo{
        padding-left: 1%;
        width: 30%;
        gap:2px;
    }
    .logo-image{
        width: 30px;
        height: 30px;
        
    }

    .title{
        font-size: 12px;
        margin-bottom: 0px;
        font-style: italic;
    }
    
    #job-search{
        width: 80%;
        border: solid rgb(245, 244, 243);
        border-radius: 20px;
    }
    #job-search::placeholder{
        padding-left: 15px;
    }

    .job-heading{
        font-size: small;
        font-weight: 600;
    }
    .company{
        font-size: 10px;
    }
    .location{
        font-size: 10px;
    }
    .job-type{
        height: 20px;
        width: 70px;
        font-size: .6rem;
    }

    .accordion-item{
        
        height: fit-content;
    }
    .accordion-button{
        width: 33% !important;
        font-size: 0.6rem !important;
        padding: 1px 2px !important;
        border-radius: 5px !important;
    }
    .accordion-button::after{
        width: .8rem !important;
        height: .8rem !important;
        background-size: .8rem !important;
    }
}



