.description-container
{
    width: 100%;
    height: auto;
    padding-top: 50px;
    padding-bottom: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    background-color: rgb(230, 230, 230);
}
.description-img
{
    width: 15%;
    height: auto;
    padding: 15px;
    border-radius: 10px;
    margin-right: 30px;
}
.description-box
{
    background-color: rgb(237, 237, 237);
    box-shadow: 0px 0px 24px -7px rgba(66, 68, 90, 1);
    width: 80%;
    max-width: 80%;
    min-height: 300px;
    height: auto;
    border-left: 7px solid rgb(106,170,60);
    padding: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.description
{
    color: black;
    font-family: 'Noto Sans', sans-serif;
    font-size: 20px;
}
.list
{
    list-style: none;
}
.list i
{
    color: black;
    margin-right: 15px;
}
.list li
{
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.check-list
{
    list-style: none;
}
.check-list li
{
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.check-list i
{
    color: green;
    margin-right: 15px;
}
.line
{
    width: 100%;
    height: 5px;
    background-image: linear-gradient(to right, rgba(0,0,0,0), rgb(64,57,108), rgba(0,0,0,0));
    margin-top: 30px;
    margin-bottom: 30px;
}
.gallery-container
{
    background-color: rgb(237, 237, 237);
    box-shadow: 0px 0px 24px -7px rgba(66, 68, 90, 1);
    width: 95%;
    height: auto;
    display: flex;
    align-items: flex-start;
    justify-content: space-evenly;
    flex-direction: column;
    flex-wrap: nowrap;
}
.gallery-title
{
    width: 100%;
    text-align: center;
    color: black;
    font-family: 'Bebas Neue', cursive;
    font-size: 50px;
    padding-bottom: 25px;
}
.gallery
{
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
.gallery-column
{
    flex: 30%;
    max-width: 30%;
}
.gallery-img
{
    border-radius: 8px;
    margin: 4px;
    vertical-align: middle;
    width: 98%;
}
@media only screen and (max-width: 800px) 
{
    .description-img
    {
        display: none;
    }
    .gallery-column
    {
        flex: 48%;
        max-width: 48%;
    }
    
}
@media only screen and (max-width: 600px) 
{
    .gallery-container
    {
        width: 100%;
    }
    .gallery-column
    {
        flex: 99%;
        max-width: 99%;
    }
    
}