@charset "UTF-8";
header{
    &.parallax{
        & .parallax-obj > img{
            filter:brightness(40%);
        }
    }

    & .solar{
        display:flex;
        align-items:center;
    }
}

section{
    & p:last-child{
        margin-bottom:0;
    }
}

#pageAbout{
    & #aboutMain{
        background-image:url(../img/footer-bg.png);
        background-repeat:repeat;
        background-size:contain;
    }

    & #aboutUs{
        & .box{
            padding:2rem;
            border-radius:8px;
            position:relative;
            transition:all 0.5s ease-in-out;
            z-index:0;

            & img{
                margin-bottom:2rem;
            }

            & h4{
                margin-bottom:0;
                font-weight:800;
                text-transform:uppercase;
                color:#fff;
            }

            & p{
                color:#fff;
            }

            &:hover,
            &:focus,
            &:active{
                box-shadow:0 0 25px rgba(13,24,33,0.1);
                transform:scale(0.95) rotateZ(-1deg);
                z-index:1;
            }
        }
    }

    & .parallax{
        height:100%;
        min-height:350px;
    }
}