body {
    background-image: linear-gradient(to right, rgb(201, 201, 236),white,rgb(201, 201, 236));
    display: flex; flex-direction: column;
    font-family: "Roboto";
    margin: 0;
}

header, footer { background-color: navy; padding: 10px; }
header {
    flex: 3; padding: 15px 75px 30px; 
    display: flex;  flex-direction: column;
    }
.topside {
    flex: 1; 
    display: flex; justify-content: space-between;
}
.bottomside {
    display: flex; flex: 1; justify: space-between;
    padding: 100px 0 0 0;
}
p.headerlogo { font-size: 24px; color: #F9FAF8; margin: 0px; }
ul { list-style-type: none; margin: 0; display: flex; gap: 30px; }
header, header li a { font-size: 18px; color: #E5E7EB; text-decoration: none;}

.headingtext {
    display: flex; flex-direction: column;
    flex: 1 1 auto;
    gap: 20px;
}
h1 { color: #F9FAF8; font: 900 48px; margin: 0px; }
p.subtext { color: gray; font-size: 12px; margin: 0px; }
button, .calltoaction { 
    background-color: #3882F6; 
    color: white; font-weight: bold;
}

.headingtext button {
    border-radius: 7.5px;
    border: none;
    padding: 10px;
    align-self: start;

}
img { flex: 1 0 auto; width: 300px; height: 200px; }

main { display: flex; flex-direction: column; flex: 6; padding: 0 200px;}
.section1 {
    padding: 0 0 80px 0;
}
main h1 {
    text-align: center;
    color:black;
    font-size: 18px;
    padding: 30px;
    flex: 1;
}
.boxesmaincontainer1 {
    display: flex; gap: 40px;
}
.boxmainitems1 {
    flex: 1 1 auto;
}
.blueboxes {
    padding: 100px 50px;
    border: solid 2px blue;;
    border-radius: 5px;
    display: flex;
    position: relative;
    align-items: center;
    justify-content: center;
}
.blueboxes img {
    position: absolute;
    height: 100%;
    width: 100%;
    border-radius: 5px;
}

.information { font: 900 36px; color: #1F2937; } 
.blockquote { 
display: flex;
flex-direction: column;
background-color: #E5E7EB; 
font-style: italic; font-size: 24px; color: #1F2937; 
margin-left: 0; margin-right: 0;
padding: 50px 200px;
}
cite {
    font-weight: bold;
    flex: 1;
    align-self: end;
}
footer {
    background-color: #1F2937; color: white;
    display: flex; justify-content: center; align-items: center;
    flex: 1; padding: 20px;
}

.calltoaction {
    margin: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 100px;
    gap: 100px;
    border-radius: 10px;
}
.calltoaction h3 {
    padding: 0;
    margin: 0;
}
.calltoaction button {
    border-radius: 5px;
    border: solid white;
    padding: 10px 20px;
    flex: 1 0 auto;
    cursor: pointer;
}

.ctahead {
    /* flex: 1 1 auto;*/ 
}


