@import url('https://fonts.googleapis.com/css?family=Raleway');
body {
    padding: 0;
    margin: 0;
    background: #f4f4f4;
}

html {
    background: url('../images/background.jpg') no-repeat center center fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

.text-container {
    max-width: 960px;
    position: absolute;
    top: 200;
    left: 70;
}

html,
h1,
h2,
h3,
h4,
h5,
h6,
a {
    font-family: "Raleway";
}

.navbar {
    background: #F97300;
}

.nav-link,
.navbar-brand {
    color: #f4f4f4;
    cursor: pointer;
}

.nav-link {
    margin-right: 1em !important;
}

.nav-link:hover {
    background: #f4f4f4;
    color: #f97300;
}

.navbar-collapse {
    justify-content: flex-end;
}

.navbar-toggler {
    background: #fff !important;
}


/*header style*/

.header {
    position: relative;
    background-size: cover;
    background-position: center;
}

.overlay {
    position: absolute;
    min-height: 100%;
    min-width: 100%;
    left: 0;
    top: 0;
    background: rgba(244, 244, 244, 0.79);
}

.description {
    position: absolute;
    top: 30%;
    margin: auto;
    padding: 2em;
}

.description h1 {
    color: #F97300;
}

.description p {
    color: #666;
    font-size: 20px;
    width: 50%;
    line-height: 1.5;
}

.description button {
    border: 1px solid #F97300;
    background: #F97300;
    color: #fff;
}

.wrapper {
    display: grid;
    grid-template-columns: 40% 60%;
    grid-column-gap: 1em;
    grid-row-gap: 1em;
    grid-auto-rows: minmax(75px, auto);
    /*grid-auto-row: 100px; */
    /*
    grid-gap:1em;   if gaps for row and column will be same
    */
}

.wrapper>div {
    background: #eee;
    padding: 1em;
    border: #333 1ps solid;
}

.wrapper>div:nth-child(odd) {
    background: #ddd;
}