*
,*::after
,*::before{
    box-sizing: border-box;
}
body{
    margin: 0;
    padding: 0;
    font-family: nunito ,serif, sans-serif;
    background-color: whitesmoke;
}
.container{
    margin: 0px auto;
    width: 1440px;
    background-color: white;
}
.header-section{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2em 6em;
    padding-bottom: 4em;
}
.brand-name{
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 25px;
    color: #2e2e2e;
    text-decoration: none;
}
.brand-name img{
    margin-right: 10px;
}
.nav{
    width: 322px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.nav-link{
    font-size: 17px;
    color: #373737;
    text-decoration: none;
}
.nav-link:hover{
    text-decoration: underline;
}
.hero-section{
    position: relative;
    padding: 1em 6em;
    padding-bottom: 12em;
}
.hero-section img{
    position: absolute;
    width: 666px;
    left: 775px;
    top: -40px;
}
h1{
    font-size: 50px;
    font-weight: 400;
    line-height: 58px;
    color: #373737;
}
.hero-section h1{
    width: 432px;
    margin: 0px;
}
.para{
    line-height: 28px;
    color: #5B5B5B;
    font-size: 20px;
}
.hero-section .para{
    width: 558px;
}
.hero-section button{
    padding: .9em 1.5em;
    background-color: #7273F1;
    border-radius: 50px;
    border: none;
    cursor: pointer;
}
.hero-section button:hover{
    background-color: #5050ff;
}
.cta-get-started{
    font-size: 22px;
    color: white;
    text-decoration: none;
}
.discount{
    margin-top: 50px;
    font-size: 18px;
    color: #5b5b5bb3;
}
.section-1{
    display: flex;
    flex-direction: column;
    background: url(../assets/bg-section-1.png),no-repeat;
    background-size: cover;
    height: 805px;
}
.section-1 h1{
    margin-top: 5em;
    margin-left: 2em;
    margin-bottom: 0px;
    width: 650px;
}
.section-1 .para{
    margin-left: 5em;
    width: 700px;
}
.section-2{
    display: flex;
    flex-direction: column;
    background: url(../assets/bg-section-2.png),no-repeat;
    background-size: cover;
    height: 805px;
}
.section-2 h1{
    margin-top: 5em;
    margin-left: 15em;
    width: 650px;
}
.section-2 .para{
    margin-top: 0px;
    margin-left: 37.5em;
    width: 650px;
}
.section-3{
    display: flex;
    flex-direction: column;
    background: url(../assets/bg-section-3.png),no-repeat;
    background-size: cover;
    height: 805px;
}
.section-3 h1{
    margin-top: 5em;
    margin-left: 2em;
    margin-bottom: 0px;
    width: 650px;
}
.section-3 .para{
    margin-left: 5em;
    width: 700px;
}
.section-4{
    display: flex;
    flex-direction: column;
    background: url(../assets/bg-section-4.png),no-repeat;
    background-size: cover;
    height: 805px;
}
.section-4 h1{
    margin-top: 5em;
    margin-left: 15em;
    width: 650px;
}
.section-4 .para{
    margin-top: 0px;
    margin-left: 37.5em;
    width: 650px;
}
.section-5{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.section-5 h1{
    margin-top: 2em;
    font-size: 40px;
    width: 80%;
    text-align: center;
}
.section-5 .para{
    width: 80%;
    text-align: center;
}
.section-5 .row{
    margin-top: 2em;
    margin-bottom: 2em;
}
.member-section{
    padding: 2em 6em;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-size: cover;
    height: 805px;
}
.card-row{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 15px auto;
}
.card{
    width: 30%;
    height: 280px;
    display: flex;
    padding: 2em;
    box-sizing: border-box;
    flex-direction: column;
    justify-content: space-between;
}
.col-1{
    background-color: rgba(96, 114, 226, .4);
}
.col-2{
    background-color: rgba(152, 43, 190, .4);
}
.col-3{
    background-color: rgba(226, 98, 98, .4);
}
.user{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 80%;
}
.user .user-name{
    font-size: 20px;
    font-weight: bold;
}
.footer{
    padding: 2em 6em;
    display: flex;
    background-size: cover;
}
.column{
    width: 40%;
}
.column-sm{
    width: 20%;
    display: flex;
    flex-direction: column;
}
.footer .brand-name{
    width: 70%;
    margin: 1em 0em;
}
.heading-quick-link{
    font-size: 20px;
    font-weight: bold;
    margin: 1em 0em;
}
.quick-link{
    color: #2e2e2e;
    font-size: 18px;
    margin: .3em 0em;
    text-decoration: none;
}
.quick-link:hover{
    color: black;
    text-decoration: underline;
}