:root {
    --leftRightMargin: 0;
    --footerLeftRightMargin: 20px;
    --videoContainerGap: 20px;
}

html {
    font-size: 16px;
}

body {
    margin: 0;
    font-family: 'new-rubrik-edge', sans-serif;
}

header div {
    padding: 0 var(--leftRightMargin);
}

header .logo {
    padding: 25px;
    max-width: 100px;
}

header .hero {
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-image: url("../images/background-banner.svg");
    background-size: cover;
    background-position-y: 100%;
}

header .hero .hero-image {
    max-height: 200px;
}

header .hero .hero-image-text {
    color: white;
    margin-bottom: 0px;
}

h1 {
    font-size: 2rem;
    text-align: center;
}

h2 {
    font-size: 1.7rem;
}

h3 {
    font-size: 1.45rem;
    margin-top: 0;
}

h4 {
    font-size: 1.25rem;
}

h2,
h3,
h4 {
    text-align: center;
    color: #425E7C;
    padding: 0 20px;
}

p {
    color: #425E7C;
    font-size: 1.1em;
    line-height: 1.4em;
    padding: 0 20px;
}

button {
    font-family: 'new-rubrik-edge', sans-serif;
}

main span {
    color: #425E7C;
}

main>div {
    padding: 50px var(--leftRightMargin);
}

main .blue-background {
    background-color: #DEEEF4;
}

main .orange-background {
    margin: 20px;
    background-color: #FBEBE3;
}

main .highlighted-text {
    color: #0083BA;
}

main .info-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 25px;
}

main .info-container div {
    flex: 1;
}

main .info-container img {
    display: block;
    margin: auto;
    max-width: 100px;
}

main .info-container h4 {
    margin-top: -12px;
}

main .info-container p {
    text-align: center;
    max-width: 24rem;
    margin: 0 auto 30px;
}

main .more-info-button {
    text-decoration: none;
    background-color: #E36728;
    color: white;
    padding: 10px 25px;
    margin: auto;
    display: block;
    font-size: 1.1em;
    border-radius: 999px;
    text-align: center;
    width: fit-content;
    transition: all 250ms ease 0s;
}

main .more-info-button:hover {
    background-color: #E38D51;
}

main .testimonial-container {
    display: flex;
    flex-direction: column;
}

main .testimonial-container>div {
    flex: 1;
}

main .testimonial-container .testimonial-text-cloud-container {
    background-color: #DEEEF4;
    padding: 5px;
    margin: 20px;
    margin-bottom: 0;
}

main .testimonial-container .testimonial-text-cloud-arrow {
    background: linear-gradient(155deg, #DEEEF4 50%, transparent 50%);
    width: 65px;
    height: 30px;
    margin-left: 15%;
    position: absolute;
}

main .testimonial-container .testimonial-author-info-container {
    display: flex;
    gap: 20px;
    margin: 50px 20px;
}

main .testimonial-container .testimonial-author-info-container .testimonial-author-image-container img {
    max-width: 100px;
    border-radius: 999px;
}

main .testimonial-container .testimonial-author-info-container .testimonial-author-text-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
}

main .become-a-member-container object {
    max-width: 150px;
    display: block;
    margin: auto;
}

main .become-a-member-container p {
    color: #E36728;
    font-weight: bold;
    font-size: 1.3em;
    text-align: center;
}

footer {
    color: white;
    font-weight: bold;
    margin-bottom: 40px;
    padding: 20px var(--footerLeftRightMargin);
    border: none;
    border-bottom: 0 solid transparent;
    background-image: linear-gradient(to right,
            #00A5C0 20%,
            #365C7B 20% 40%,
            #365C7B 40% 60%,
            #0089BA 60% 80%,
            #E56E36 80% 100%);
    background-size: 100% 3px;
    background-position: bottom;
    background-repeat: no-repeat;
    background-color: #1B364E;
}

footer .external-links-text {
    color: #E36728;
    padding: 0;
}

footer .external-link {
    text-decoration: none;
    color: white;
    display: block;
    margin-bottom: 5px;
    width: max-content;
}

footer .external-link:after {
    content: url("../images/arrow.svg");
    vertical-align: -5px;
    margin-left: 5px;
    transition: all 200ms ease-in-out;
}

footer .external-link:hover:after {
    margin-left: 10px;
}

footer img {
    margin: 50px 0;
    max-width: 150px;
}

div.disclaimer {
    display: flex;
    justify-content: center;
    margin: 50px;
    color: #425E7C;
}