 body{
    margin: 0;
 }
 
 /* General button Properties */
 .button{
    background-color: #3882F6;
    color: #F9FAF8;
    font-size: 18px;
    font-weight: 800;
    border: 10px solid #3882F6;
    border-radius: 0.25cm;
    padding-left: 5%;
    padding-right: 5%;
    cursor: pointer;
 }

/* SECTION 1 BEGINS HERE */

.section-1{
    padding-left: 15%;
    padding-right: 15%;
    background-color: #1F2937;
}


/*Header properties*/
.header{
    flex-shrink: 0.5;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

#header-logo{
    font-size: 24px;
    color: #F9FAF8;
}

.link{
    text-decoration: none;
    font-size: 18px;
    color: #E5E7EB;
    padding-left: 10px;
}


/* Hero properties*/
.hero{
    display: flex;
    align-items: stretch;
    flex-wrap: wrap;
    padding-top: 10%;
    padding-bottom: 10%;
}


.hero-img{
    background-color: gray;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-grow: 1;
}

.hero-text{
    flex-grow: 2;
    flex-basis: 0;
    padding-right: 5%;
}

#hero-main-text{
    color: #F9FAF8;
    font-size: 48px;
    font-weight: 800;
    margin: 0;

}

#hero-secondary-text{
    color: #E5E7EB;
    font-size: 18px;
}

/* SECTION 2 BEGINS HERE */

.section-2{
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 22% 5% 22%;
}

.info-header{
    color: #1F2937;
    font-size: 36px;
    font-weight: 800;
    text-align: center;
    padding-bottom: 2%;
}

.info-container{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.info-item{
    flex-basis: 0;
    display: flex;
    flex-direction: column;
}

.info-item > img{
    flex-grow: 1;
    height: 170px;
    width: 170px;
    border: 5px solid #3882F6;
    border-radius: 10%;
}

.info-item > p{
    color: #1F2937;
    font-size: 18px;
    text-align: center;
}

/* SECTION 3 BEGINS HERE */

.section-3{
    background-color: #E5E7EB;
    padding: 5% 25% 5% 25%;
}

.quote-main{
    color: #1F2937;
    font-size: 36px;
    font-weight: 300;
    font-style: italic;
    margin: 0;
}

.quote-author{
    text-align: right;
    font-size: 25px;
    font-weight: bold;
}

/* SECTION 4 BEGINS HERE */

.section-4{
    padding: 5% 15% 5% 15%;
}

.cta-banner{
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    padding: 5% 10% 5% 10%;
    background-color: #3882F6;
    border: #3882F6;
    border-radius: 0.25cm;
}

.cta-text{
    flex-grow: 2;
}

.cta-text-header{
    margin: 0;
    color: #F9FAF8;
    font-size: 24px;
    font-weight: bold;
}

.cta-text-desc{
    margin: 0;
    color: #F9FAF8;
    font-size: 20px;
    font-weight: 400;
}

.cta-button-wrapper{
    flex-grow: 1;
}

#cta-button{
    border: 2px solid #F9FAF8;
    border-radius: 0.2cm;
    font-size: 15px;
    padding: 5% 20% 5% 20%;
    
}

/* FOOTER */

.footer{
    color: #F9FAF8;
    background-color: #1F2937;
    padding: 3% 3%;
    text-align: center;
}