*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* Not adding font-family for now */
}
:root{
    --White:rgb(255, 255, 255);
    --offWhite:#fafafa;
    --gray:#858386;
    --assent:#2c2640;
    --black:#242426;
}

body{
    width: 100%;
    background-color: var(--gray);
}
nav{
    background-color: var(--White);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding:0 120px 0 120px;
    height: 70px;
    position: sticky;
    top: 0;
}
#hamburger{
    display: none;
}
nav .links{
    display: flex;
    justify-content: right;
    align-items: center;
    width: 70%;
}
.links ul{
    display: flex;
    margin-right: 20px;
    font-family: sans-serif;
}
.links li{
   list-style: none;
   font-size: 12px;
   text-transform: uppercase;
   font-weight: bolder;
}
.links li a{
    color: var(--gray) ;
    padding: 10px;
    text-decoration: none ;
    letter-spacing: 4px;
    transition: all ease-in-out 0.5s;
}
.links li a:hover{
    color: var(--assent);
}
.links li a:focus{
    color: var(--gray);
}

.links button{
    border: 2px solid var(--black);
    background-color: transparent;
    height: 15%;
    width: 27%;
    padding: 10px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--black);
    opacity: 0.7;
}

/* HEADER STYLING */
header{
    background: var(--assent);
    height: 90vh;
    display: flex;
    flex-wrap: wrap;
}
header .col1{
    flex-basis: 50%;
    position: relative;
    padding: 250px 0 0 160px;
}
header .col2{
    flex-basis: 50%;
}

header .col1 h1{
    font-size: 5em;
    color: var(--White);
    width: 90%;
    line-height: 80%;
}

header .col1 h1::before{
    content: '';
    background-color: var(--White);
    height: 5px;
    width: 30%;
    position: absolute;

}
header .col1 p{
    color: var(--White);
    margin: 40px 0;
    font-size: 18px;
    font-family: sans-serif;
    line-height: 30px;
}
header .col1 button{
    border: 2px solid var(--White);
    background-color: transparent;
    height: 50px;
    width: 30%;
    padding: 10px;
    /* margin-bottom: 50px; */
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--White);
    opacity: 0.7;
}
header .col1 .imgwave{
    border: 1px solid;
}

header .col2 .rightwave{
    float: right;
}
header .col2 .introimage{
    margin-top: -310px;
}
main{
    background-color: var(--White);
    width: 100%;
    height: 100em;
    padding-top: 25%;
}
section{
    width: 70%;
    padding: 30px;
    margin: 5% auto;
}
section.sec1 h1{
font-size: 4.5em;
opacity: 0.9;
}
.sec1 .col{
    width: 33.3%;
    float: left;
    letter-spacing: 2px;
    margin: 80px 0;
    padding: 0 20px;
}
.sec1 .col h2{
    margin: 20px 0;
}
.sec1 col p{
    color: var(--gray);
}

section.sec2{
    background: var(--assent);
    margin-top: 27%;
    display: flex;
    height: 300px;
    padding: 0 0 0 30px;
}
section.sec2 h1{
    font-size: 4.4em;
    color: var(--White);
}
section.sec2 .col{
    display: flex;
    align-items: center;
}
section.sec2 button{
    border: 2px solid var(--White);
    background-color: transparent;
    height: 50px;
    width: 100px;
    padding: 10px;
    margin: 0px 0 0px 0px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--White);
    opacity: 0.7;
}
/* FOOTER STYLING */
footer{
    background: var(--White);
    box-shadow: 0 0 10px var(--black);
    padding: 70px 200px;
    height: 450px;
}
footer .row1{
    display: flex;
    justify-content: space-between;
    padding-bottom: 20px;
}
footer .row1 .links img{
    margin-right: 10px;
}
footer hr{
    opacity: 0.6;
}
footer .col{
    width: 25%;
    float: left;
    margin-top: 40px;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 700;
    font-family: sans-serif;
}
footer .col h3{
    color: var(--gray);
}
footer .col ul{
    list-style: none;
}
footer .col li{
    font-size: 15px;
    margin-top: 15px;
}
footer .col li a{
    text-decoration: none;
    color: var(--black);
    opacity: 0.8;
    transition: all ease-in-out 0.5s;
}
footer .col li a:hover{
    color: var(--black);
    opacity: 1;
}