﻿#home-section {
    height: calc(100vh - 57px);
    background-image: url('../assets/logoraz.jpeg');
    background-repeat: no-repeat;
    background-size: 50%;
    background-position: center;
    
    & .home-icons-container {
        padding-left: 5vw;
        padding-right: 5vw;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        grid-auto-rows: 180px;
        grid-gap: 20px;
            & .icon-container {
                max-width: 180px;
                height: 200px;
                display: flex;
                flex-direction: column;
                align-items: center;
                cursor: pointer;
                border-radius: 10px;
                -webkit-box-shadow: 0px 10px 11px -7px rgba(0,0,0,0.75);
                -moz-box-shadow: 0px 10px 11px -7px rgba(0,0,0,0.75);
                box-shadow: 0px 10px 11px -7px rgba(0,0,0,0.75);
                background-color: white;
                & img {
                    width: 100%;
                }
                & span {
                    text-decoration: none;
                } 
            }
    }
}
