body {
    display:flex;
    flex-direction: column;
    margin:0px;
    padding:0px;
}

ul {
    padding:0px;
    margin:0px;
}

li {
    list-style-type: none;
}

a {
    text-decoration: none;
    color:#E5E7EB;
}

h1, p {
    margin:0px;
    padding:0px;
}

.header, .hero, .information, .testimonies, .calltoaction, .footer{
    padding:60px 250px;
}

.header {
    display:flex;
    justify-content: space-between;
    background-color:#1F2937;
    align-items: center;
}

.right-links, .hero-text p {
    font-size:18px;
    color:#E5E7EB;
}

.rl-container{
    display:flex;
    gap: 20px;
}

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

.hero {
    display:flex;
    background-color:#1F2937;
    justify-content: space-between;
    gap:30px;
    padding-bottom:130px;
}

.hero-text{
    flex:1;
    flex-direction: column;
    justify-content: space-between;
    gap:10px;
    display:flex;
}

.hero-text h1 {
    flex:1;
    font-size: 48px;
    font-weight: 900;
    color:#F9FAF8;
}

.hero-text p{
    color:#F9FAF8;
    flex:1;
}

.hero-button {

    background-color: #3882F6;
    border: 0px;
    border-radius: 5px;
    color: #F9FAF8;
    width:130px;
    height:40px;
    font-size:18px;
}

.hero-image {
    flex:2;
    display:flex;
    justify-content: right;
    align-items: center;
}

.hero-image img {
    width:80%;
    margin: 0;
    height:auto;
}

.information {
    display:flex;
    flex-direction: column;
    gap:30px;
    align-items: center;
    font-size: 36px;
    font-weight: 900;
    color: #1F2937;
}

.info-box-container {
    display:flex;
    gap:30px;
    margin:0px 100px;
    font-size:18px;
    color:grey;
}

.info-box {
    display:flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.info-box p{
    padding:25px;
}

.infoimg {
    border: 5px solid #3882F6;
    border-radius: 9px;
    width: 200px;
}

.testimonies {
    background-color: #E5E7EB;
    display:flex;
    flex-direction: column;
    padding-top:200px;
}

.quote {
    font-size: 36px;
    font-weight: 100;
    font-style: italic;
    color: #1F2937;
    margin:0px 250px;
    text-align: justify;
}

.attribution {
    font-size:28px;
    text-align: right;
    margin:70px 250px;

}

.cta-sign {
    background: #3882F6;
    display:flex;
    justify-content: space-between;
    align-items: center;
    padding:80px 190px;
    border-radius: 15px;
    margin: 100px 0px;
}

.cta-text {
    display:flex;
    flex-direction: column;
    gap:10px;
    color: #E5E7EB;
}

.cta-title {
    font-size:28px;
    font-weight: bolder;
}

.cta-subtext {
    font-size:18px;
    font-weight: bolder;
}

div .cta-button {
    background-color: #3882F6;
    width:180px;
    height:60px;
    border:3px solid white;
    border-radius: 12px;
    color: white;
    font-size:24px;
    font-weight: bolder;
}

.footer {
    background-color:#1F2937;

}

.footer-text {
    color: #E5E7EB;
    font-size:20px;
    text-align: center;
    font-weight: bolder;
}