.entry{
    width: 100%;
    height: 100vh;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;

    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;

    color: rgba(255,255,255,0.9);
    background-color: var(--background);
    position: relative;
}

.entry .backdrop {
    z-index: 1;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: var(--shadow);
}

.entry .box{
    z-index: 2;
    width: 300px;
    max-height: 150px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    overflow: hidden;
    transition: all 0.2s ease-in-out 0s;
}

.entry .box:hover{
    height: 250px;
    max-height: 300px;
}

.entry .box:hover .image{

    animation: bounce 0.6s forwards;
}


@keyframes bounce {
    0% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    70% {
        transform: translateY(-5px);
    }
    100% {
        transform: translateY(0);
    }
}

.entry .box .icon{
    width: 300px;
    min-height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
}


.entry .box .icon .image{
    width: 60px;
    height: 60px;
    background-image: url('../images/home/dezer.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}


.entry .box .icon .title{
    text-transform: uppercase;
    font-size: 18px;
    letter-spacing: 1.1px;
    font-weight: 600;
    user-select: none;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    margin-top: -20px;

}
.entry .box .icon .title .underline{
    width: 28px;
    height: 2px;
    margin-top: 12px;
    background-color: rgba(255,255,255,0.9);
}


.entry .box .icon a{
    text-decoration: none;
}


.entry .box .icon .button{
    border: 2px solid rgba(255,255,255,0.9);
    padding: 8px 12px;
    text-transform: uppercase;
    font-size: 10px;
    letter-spacing: 1.2px;
    position: relative;
    color: rgba(255,255,255,0.9);
    overflow: hidden;
}
.entry .box .icon .button span{
    position: relative;
    color: inherit;
    transition: all 0.2s ease-in-out 0s;
    z-index: 10;
}

.entry .box .icon .button .h_container{
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
}
.entry .box .icon .button .h_container .highlight{
    position: absolute;
    width: 0px;
    height: 100%;
    background-color: rgba(255,255,255,0.6);
    transform: skew(20deg);
    transition: all 0.2s ease-in-out 0s;
}

.entry .box .icon .button:hover{
    cursor: pointer;
    color: rgba(0,0,0,0.9);
}


.entry .box .icon .button:hover .highlight{
    width: 100px;
}


.about{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    padding-top: 40px;
    padding-bottom: 70px;
    color: var(--primary-fade);
}

.about .summary{
    /*max-width: 1100px;*/
    display: flex;
    justify-content: center;
    align-items: stretch;
    margin-top: 30px;
    margin-bottom: 20px;
    font-size: 16px;
    letter-spacing: 1.2px;
    line-height: 1.3;
    font-weight: 300;
    gap: 30px;
}

.about .summary .block{
    box-sizing: border-box;
    width: 50%;
    height: auto;
    /*padding: 0px 12px;*/
    line-height: 1.6;
}

.slogan{
    width: 100%;
    height: 560px;
    background-image: url('../images/home/blueprints.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.slogan .fill{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(0,0,0,0.25);
}

.slogan .fill .text{
    text-transform: uppercase;
    text-align: center;
    color: var(--white-fade);
    font-size: 37px;
    line-height: 80px;
    letter-spacing: 1.3px;
    font-weight: 600;
    margin-bottom: 40px;
}

.slogan .fill .text span{
    font-size: 18px;
    font-weight: 500;

}

.clients{

    box-sizing: border-box;
    width: 100%;
    padding: 30px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.clients .list{
    height: 200px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 90%;
    max-width: 900px;
}
