.icons-main-container
{
    position: relative;
    background-color: rgb(237, 237, 237);
    box-shadow: 0px 0px 24px -7px rgba(66, 68, 90, 1);
    left: 0;
    height: auto;
    min-width: 100%;
    width: auto;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 30px;
}
.icons-main-container-title
{
    position: relative;
    width: 100%;
    text-align: center;
    font-size: 50px;
    color: black;
    font-family: 'Bebas Neue', cursive;
}
.icons-container
{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
    margin-right: 50px;
}
.icon-element
{
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    flex-wrap: wrap;
    width: 100%;
    height: auto;
    padding-bottom: 50px;
}
.icon-column
{
    width: 45%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
}
.icon-description
{
    width: 50%;
    color: white;
}
.icon
{
    position: relative;
    height: 300px;
    width: 400px;
    border-radius: 7px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
    box-shadow: 0px 0px 0px 0px rgb(106,170,60);
    transition: box-shadow 0.4s;
    margin: 20px;
}
.icon:hover
{
    box-shadow: 36px -11px 0px 0px rgb(106,170,60);
}
#icon-1
{
    background-image: url('../img/index/icons/fotowoltaika_big.jpeg');
}
#icon-2
{
    background-image: url('../img/index/icons/klimatyzacja_big.jpeg');
}
#icon-3
{
    background-image: url('../img/index/icons/pompa.jpg');
}
#icon-4
{
    background-image: url('../img/index/icons/rekuperacja_big.jpeg');
}
.small-icon-container
{
    position: relative;
    left: 80%;
    top: 70%;
    width: 120px;
    height: 120px;
    background-color: rgb(60,53,105);
    border-radius: 100px;
    direction: ltr;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: space-evenly;
    cursor: pointer;
}
.small-icon-title
{
    font-size: 0;
    height: auto;
    color: white;
    font-family: 'Noto Sans', sans-serif;
    transition: font-size 0.3s ease;
}
.small-icon-container-expanded
{
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    border-radius: 7px;
}
.small-icon-container-expanded > .small-icon-title
{
    font-size: 20px;
}
.small-icon
{
    width: 70px;
    height: auto;
}
@media only screen and (max-width: 900px)
{
    .icon-element
    {
        flex-direction: column;
    }
    .icons-main-container-title
    {
        font-size: 32px;
    }
    .icon
    {
        width: 300px;
    }
    .small-icon-container
    {
        width: 100px;
        height: 100px;
    }
    .icons-main-container
    {
        font-size: 30px;
    }
}
@media only screen and (max-width: 700px)
{
    .icons-main-container-title
    {
        font-size: 32px;
        width: 100%;
        text-align: center;
    }
    .icons-container
    {
        margin-right: 0;
    }
}