*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root{
    --primary-color: 244,122,40;
}

html, body{
    width: 100%;
    height: 100%;
    line-height: 1.5;
    font-family: Roboto,sans-serif;
    font-weight: 400;    
}

body{
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: rgba(var(--primary-color), .3);
}

body::before{
    content: '';
    position: absolute;
    display: block;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background-image: url('../images/material-bg2.png');
    background-size: cover;
    z-index: -1;
}

.brand-logo{
    position: absolute;
    display: flex;
    left: 20px;
    top: 20px;    
    align-items: center;
}

.brand-logo img{ width: 200px; margin-right: 20px; }

.main{
    width: 70vw;
    height: 80vh;
    background-color: white;
    border-radius: 20px;
    filter: drop-shadow(0px 0px 10px rgba(0,0,0,.3));
}

.main .info{ 
    position: relative; 
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%; 
    height: 100%; 
    overflow: hidden; 
}

.main .info::before{
    content: '';
    position: absolute;
    top: 0;
    right: -40vh;
    width: 80vh;
    height: 80vh;
    background-color: rgba(var(--primary-color), .1);
    border-radius: 50%;
}

.main .info .info__text{
    display: flex;
    flex-direction: column;
    margin-left: 20px;
    width: 50%;
}

.main .info .info__text p{
    color: grey;
}

.main .info .construction{
    position: absolute;
    height: 250px;
    right: 10vh;
    top: calc(50% - 125px);
}


