@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');


body {
    font-family: Roboto, sans-serif;
    display: flex;
    flex-direction: column;
    color: #E5E7EB;
    margin: 0;
    min-height: 100vh;
}

header,
.herosection,
footer {
    background-color: #1F2937;
}

header {
    display: flex;
    justify-content: space-between;
    padding: 16px 128px;
}

.logo {
    font-weight: 900;

}

main {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

main > * {
    margin-bottom: 64px;
}

.herosection {
    display: flex;
    justify-content: center;
    padding: 96px 128px;
    align-items: center;
    gap: 48px;
} 

.herotext {
    display: flex;
    flex-direction: column;
}

.herotext.subtextplusbutton {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}



h1 {
    font-size: 48px;
    font-weight: 900;
    margin: 0;
}

.heroimage img {
    width: 400px;
    height: 200px;
}


.infosection {
    color: #1F2937;
    font-size: 36px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.info {
    display: flex;
    flex-direction: row;
}

h2 {
    font-size: 36px;
    margin-bottom: 64px;
    font-weight: 900;
}

.infoitem {
    display: flex;
    flex-direction: column;
    width: 128px;
    margin: auto 32px;
    text-align: center;
}

.infosquare {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 16px;
    border-color: #3882F6;
    border-style: solid;
    margin-bottom: 8px;
}

.infosquare img {
    width: 128px;
    height: 128px;
    border-radius: 16px;
    border: none;
}

.quotesection {
    display: flex;
    flex-direction: column;
    background-color: #E5E7EB;
    justify-content: center;
    padding: 128px 256px;
    color: #1F2937;
}

.quotetext {
    font-size: 36px;
    font-style: italic;
    font-weight: 300;
    margin-bottom: 16px;
}

.quotation {
    align-self: flex-end;
    font-weight: 700;
    font-size: 30px;
}

button,
.callsection {
    background-color: #3882F6;
    color: #E5E7EB;
    border-radius: 8px;
}

.callsection {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto auto 64px;
}

button {
    font-weight: 700;
    border-color: #3882F6;
    border: none;
    padding: 8px 32px; 
    overflow: visible;
    white-space: nowrap;
}

.call {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 32px;
    margin: auto 64px;
    gap: 128px;
}

.call button {
    display: flex;
    justify-content: center;
    align-items: center;
    border: 3px solid white;
    padding: 8px 24px 8px;
    height: 32px;
    font-weight: 900;
    font-size: 16px;
}

h3 {
    margin: 0;
    margin-top: 16px;
}

ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    gap: 16px;
}

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

footer {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px;
}

.subtext {
    margin-bottom: 16px;
    font-size: 16px;
}