:root {

    --background-color:white;
    --box-color: lightgray;
    --menu-text-color: white;
    
    --apple-black: #3b3b3b;
    --apple-gray: #e3e3e3;
    --rogers-red: rgb(218, 41, 28);
    --logo-yellow: #ffc700;
    
    --text-color:rgb(59, 59, 59);           /*apple-black*/
    --text-color-light: rgb(150,150,150);
    --text-hover-color: rgb(218, 41, 28);   /*rogers-red*/
    --film-border-color: green;
    
    --body-color: #e3e3e3;                  /* apple-gray */
    --menu-color: rgb(218, 41, 28);         /*rogers-red*/
    --tag-color: rgb(218, 41, 28);

    --global-font-size: 18px;
    --global-font-weight: 400;

}

#gallery{
    color: var(--logo-yellow);
}

body
{
    background-color: white;
    font-family: "SF Pro Text","SF Pro Icons","Calibri", "Helvetica Neue","Helvetica","Arial",sans-serif;
    font-size: var(--global-font-size);
    font-weight: var(--global-font-weight);
    margin: 0px;
    top: 0px;
    padding:0px;
    position: relative;
    overflow-x:hidden;
}

.hero-section
{
    position: relative;
    width:100vw;
    height:150px;
    background-color: var(--apple-gray);
}
.filter-section
{
    position: relative;
    z-index:2;
}
        
.filter-section .filter-content
{
    position: relative;
    margin-top: -80px;
    border-radius: 15px;
    height:auto;
    margin-left: auto;
    margin-right:auto;
    background-color: white;
    
}
form
{
    padding:20px 0px 30px 0px;
    height: auto;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
}
.input-field
{
    margin: 10px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end ;
    
    button
    {
        padding: 10px;
        font-size: 18px;
        background-color: green;
        color: white;
        border: none;
        border-radius: 5px;
        cursor: pointer;
    }
}
.input-title
{
    font-size: 24px;
    font-weight: 550;
    margin-bottom:5px;
}
.select-input
{
    width: 200px;
    font-size: 18px;
    padding: 10px;
    border: none;
    border-radius: 5px;
    background-color: var(--apple-gray);
    color: black;
}

.section
{
    position:relative;
    width:100vw;
    height: auto;
            
    .section-container
    {
        position:relative;
        display:flex;
        flex-direction:row;
        justify-content: center;
        height: auto;
        margin:auto;
        flex-wrap: wrap;
        color: var(--apple-black);
                
    }
}

.box-container
{
    position: relative;
    margin:10px;
    background-color: white;
    box-shadow: 0px 0px 5px;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    white-space:normal;
    display:inline-block;
    scroll-snap-align: center;

    .image-container
    {
        position: relative;
                
        img
        {
            position: relative;
            width: 100%;
            height: auto;
            
        }
    }
    .image-container::before
    {
        content: '';
        position: absolute;
        left: 0;
        bottom: 0;
        right: 0;
        height: 75%;
        z-index:2;
        background: linear-gradient(to bottom,rgba(255,255,255,0),rgba(255,255,255,0),rgba(255,255,255,0),rgba(255,255,255,0.85), rgba(255,255,255,1));
    }

    .title
    {
        z-index: 2;
        position: relative;
        display: flex;
        justify-content: center;
        font-weight: 550;
    }
    .city
    {
        z-index: 2;
        position: relative;
        display: flex;
        justify-content: center;
    }
    .service
    {
        z-index: 2;
        position: relative;
        display: flex;
        justify-content: center;

        .tag
        {
            background-color: var(--logo-yellow);
            padding:5px;
            margin: 2px 2px 8px 2px;
            margin-bottom:10px;
            font-size: 12px;
            color:black;
            border-radius: 5px;
            cursor:pointer;
        }
    }
}
        
.box-container:hover{ box-shadow: 0px 0px 10px; }

@media only screen and (min-width: 1200px)
{
    .filter-section .filter-content
    {
        width: 1024px;
    }
    .box-container
    {
        width:450px;
        height: 360px;
        
        .image-container
        {
            width:450px;
            height: 300px;
        }
    
        .title{
            margin-top:-30px;
            font-size: 24px;
        }
    }
}
@media only screen and (min-width: 1024px) and (max-width: 1199px)
{
    .filter-section .filter-content
    {
        width: 500px;
    }
    .box-container
    {
        width:300px;
        height: 260px;
        
        .image-container
        {
            width:300px;
            height: 200px;
        }
    
        .title{
            margin-top:-30px;
            font-size: 24px;
        }
    }
}
@media only screen and (min-width: 650px) and (max-width: 1023px)
{
    .box-container
    {
        width:300px;
        height: 260px;
        
        .image-container
        {
            width:300px;
            height: 200px;
        }
    
        .title{
            margin-top:-30px;
            font-size: 24px;
        }
    }
}
@media only screen and (max-width: 649px)
{
    .box-container
    {
        width:450px;
        height: 360px;
        
        .image-container
        {
            width: 450px;
            height: 300px;
        }
    
        .title{
            margin-top:-30px;
            font-size: 24px;
        }
    }
}
