*{
    box-sizing: border-box;
}


body{
    background: goldenrod;
    color: black;
    line-height: 1.6;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    padding: 1em;
}


.main-nav{
    position: absolute;
    float: right;
    list-style-type: none;
    margin-top: 5px;
    z-index: 3;
}

.main-nav li{
    display: inline-block;

}

.main-nav li a{
    color:rgb(248, 248, 248);
    text-decoration: none;
    padding: 5px 20px;
    font-family: sans-serif;
    font-size: 25px;

}

.main-nav li.active a{
    border: 1px solid white;

}


.main-nav li a:hover{
    border: 1px solid white;
    color: black;
}

.container{
    max-width: 1170px;
    margin-left: auto;
    margin-right: auto;
    padding: 1em;
}


ul{
    list-style: none;
    padding: 0;

}


.brand{
    text-align: center;
}

.brand span{
    color: white;
}


.wrapper{
    box-shadow: 0 0 20px 0 rgb(82, 79, 73);
}

.wrapper > *{
    padding: 1em;
}


.company-info{
    background: #21201f;
    color: #aeaeae
}


.company-info h3, .company-info ul{
    text-align: center;
    margin: 0 0 1rem 0;
}


.contact{
    background: #f9feff;
}


/*Form Style*/

.contact form{
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 20px;
}

.contact form label{
    display: block;

}


.contact form p{
    margin: 0;
}


.contact form .full{
    grid-column: 1/3;
}

.contact form button, .contact form input, .contact form textarea{
    width: 100%;
    padding: 1em;
    border: 1px solid #c9e6ff;
}

.contact form button{
    background: #ffce08;
    border: 0;
    text-transform: uppercase;
    font-weight: 800;
}


.contact form button:hover, .contact form button:focus{
    background: #92bde7;
    color: white;
    outline: 0;
    transition: background-color 2s ease-out;

}


.alert{
    text-align: center;
    padding: 10px;

    background: #79c879;
    color: white;
    margin-bottom: 10px;
    display: none;
}
/* LARGE SCREENS*/

@media(min-width: 700px){
    .wrapper{
        display: grid;
        grid-template-columns: 1fr 2fr;
    }
    .wrapper >*{
        padding: 2em;
    }

    .company-info h3, .company-info ul, .brand{
        text-align: left;
    }

}