#hero {
    display: flex;
    align-items: center;
    justify-content: space-around;
}

#slideshow {
    width: calc(100vw - 10px);
    height: 850px;
}

#slideshow div {
    width: inherit;
    height: inherit;
}

#slideshow div img {
    width: inherit;
    height: inherit;
    object-fit: cover;
}

#data {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    padding: 25px 10px;
}

#location {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    background-color: rgb(230, 230, 230);
    border: 2px rgb(240, 240, 240) solid;
    border-radius: 50px;
    height: 450px;
    width: 425px;
    padding: 20px;
    transition: 0.25s;
}

#location:hover {
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.5);
}

#map iframe {
    border-radius: 25px;
}

#address {
    display: flex;
    align-items: center;
}

#address h4 {
    text-align: center;
    text-decoration: none;
    color: rgb(10, 110, 150);
    font-size: 20px;
    line-height:normal;
    margin: 15px 0;
}

#address h4:hover {
    color: rgb(5, 140, 200);
}

#hours{
    text-align: center;
    margin-bottom: 10px;
}

#hours span {
    line-height: 0px;
    font-size: 20px;
}

#location div.apps {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

#location div.apps a {
    position: relative;
    display: flex;
    justify-content: center;
    text-decoration: none;
    background-color: white;
    border-radius: 15px;
    color: black;
    font-size: 20px;
    margin: 0 20px;
    height: 30px;
    width: 60px;
    padding: 0 5px;
    transition: 0.25s;
}

#location div.apps a:hover {
    background-color: rgb(200, 230, 255);
    box-shadow: rgba(0, 0, 0, 0.5) 2px 2px 5px;
}

#location div.apps a:active {
    background-color: rgb(160, 210, 255);
    box-shadow: rgba(0, 0, 0, 0.5) 2px 2px 5px;
}

#location div.apps a i {
    position: relative;
    display: block;
    background-size: contain;
    background-position: center;
    height: 25px;
    width: 25px;
    top: 2px;
}

#location div.apps a i.balad {
    background-image: url(icons/balad.svg);
    margin-left: 15px;
}

#location div.apps a i.google {
    background-image: url(icons/googlemap.png);
}

#location div.apps a i.neshan {
    background-image: url(icons/neshan.png);
}

#features {
    display: flex;
    align-items: center;
}

div.featureboxgroup {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    margin: 0 10px;
    height: 450px;
    width: 300px;
    transition: 0.25s;
}

div.featurebox {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    height: 200px;
    width: 300px;
    background-color: rgb(230, 230, 230);
    border: 2px rgb(240, 240, 240) solid;
    border-radius: 50px;
    transition: 0.25s;
}

div.featurebox:hover {
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.5);
}

div.featurebox img {
    object-fit: contain;
    width: 240px;
    height: 140px;
    transition: 0.25s;
}

div.featurebox:hover img {
    height: 160px;
    width: 260px;
}

div.featurebox span {
    position: relative;
    font-size: 20px;
    font-weight: bold;
}

@media screen and (max-device-width: 1024px){

    #data {
        flex-direction: column-reverse;
        justify-content: space-between;
        align-items: center;
        height: 870px;
    }

    #location {
        flex-direction: row;
        width: 600px;
        height: 350px;
    }

    #location h4 {
        margin-right: 5px;
    }

    #location div.apps {
        flex-direction: column;
    }

    #location div.apps a {
        margin-top: 10px;
    }

}