@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

a,article,aside,audio,b,blockquote,body,canvas,caption,code,dd,del,div,dl,dt,em,embed,fieldset,footer,form,h1,h2,h3,h4,h5,h6,header,html,i,iframe,img,label,legend,li,menu,nav,object,ol,p,pre,s,section,span,strike,strong,sub,summary,sup,table,tbody,td,tfoot,th,thead,tr,u,ul,video{margin:0;padding:0;border:0;font-size:100%;vertical-align:baseline}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}body{line-height:1}ol,ul{list-style:none}table{border-collapse:collapse;border-spacing:0}.screen-reader-text{display:none}
*{outline: none;box-sizing:border-box;-webkit-overflow-scrolling: touch;-webkit-font-smoothing: antialiased;position: relative;}

:root {
	--blue: #1E3A8A;
    --orange: #F97316;
    --grey: #374151;
    --lightGrey: #F8FAFC;
	--white: #fff;
	--black: #232323;
}

html {
    height: 100%;
    scroll-behavior: smooth;
}

html, body {
    overflow-x: hidden;
    padding: 0;
    margin: 0;
    font-family: "Lato", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
}

h1, .h1, h2, .h1, h3, .h3 {
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    margin-bottom: 50px;
}

h4, h5 {
    font-family: "Open Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    text-transform: uppercase;
    font-variation-settings:
        "wdth" 100;
}

h1, .h1 {
    font-size: 80px;
    font-weight: 800;
    letter-spacing: -1px;
}

h2, .h2 {
    font-size: 40px;
    line-height: 48px;
}

h3, .h3 {
    font-size: 34px;
}

h2, h3, h4 {
    margin-bottom: 25px;
}

p {
    font-size: 21px;
    line-height: 32px;
    font-family: "Lato", sans-serif;
}

strong {
    font-weight: 800;
}

.btn {
    z-index: 2;
    display: inline-block;
    text-decoration: none;
    outline: 0;
    padding: 15px 30px;
    background: var(--orange);
    border-radius: 8px;
    margin: 10px 0;
    color: white;
    font-size: 24px;
    font-weight: 500;
    transition: all .25s ease-in-out;
    box-shadow: 8px 8px 0 rgba(0,0,0,.08);
}

.btn:hover {
    box-shadow: 10px 10px 4px rgba(0,0,0,.35);
}

main {
    padding: 5%;
    display: flex;
    text-align: right;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    min-height: 80vh;
    background: var(--blue);
    color: var(--white);
    background: url('../img/mural.jpg') center center no-repeat;
    background-size: cover;
    text-shadow: 5px 5px 0 rgba(0,0,0,.25);
}

main .logo {
    width: 100px;
    height: auto;
    margin-bottom: 75px;
}

main h2 {
    max-width: 900px;
    margin-bottom: 75px;
    text-wrap: balance;
}

main .btn {
    text-shadow: none;
}

main span {
    display: block;
    position: absolute;
    left: 25px;
    bottom: 25px;
}

main span a {
    text-decoration: none;
    color: white;
    text-shadow: none;
}

main span img {
    width: 15px;
    height: auto;
    top: 5px;
    margin-left: 5px;
}

section {
    padding: 50px;
    text-align: center;
}

.what {
    background: var(--lightGrey);
}

.what, .options {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
}

.what img, .options img {
    width: 75px;
    height: auto;
    margin-bottom: 25px;
}

.what > div, .options > div {
    padding: 8%;
}

.what p {
    text-wrap: balance;
}

.mission {
    padding: 5%;
}

.mission .h1 {
    margin: 0 auto;
    max-width: 900px;
}

.membership {
    background: var(--black);
    color: var(--white);
    padding: 5% 25px;
}

.membership .h2 {
    margin: 0 auto 50px;
    max-width: 800px;
}

.offer {
    background: var(--blue);
    color: white;
    padding: 5% 5% 3.5%;
}

.offer span {
    text-decoration: underline;
}

.offer img {
    width: 35px;
    height: auto;
    margin: 50px auto 0;
}

blockquote {
    padding: 25px 50px;
    margin: 50px auto 0;
    max-width: 600px;
    font-size: 24px;
    line-height: 32px;
    font-style: italic;
    background: rgba(0,0,0,.3);
}

.hbspt-form {
    max-width: 400px;
    margin: 50px auto 0;
}

footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 50px;
    padding: 50px 20px;
}

#legal {
    max-width: 1000px;
    margin: 50px auto;
    padding: 0 20px;
}

#legal section {
    text-align: left;
    padding: 25px 0;
}

#legal p {
    line-height: 24px;
    margin-bottom: 50px;
}

#legal ol, #legal ul {
    margin: 25px;
}

#legal ol li {
    list-style-type: decimal;
    margin-bottom: 25px;
}

#legal ul li {
    list-style-type: disc;
    margin-bottom: 25px;
}

@media (max-width: 1080px) {
    h1, .h1 {
        font-size: 64px;
    }
    h2, .h2 {
        font-size: 30px;
        line-height: 40px;
    }
    h3, .h3 {
        font-size: 30px;
        line-height: 36px;
    }
    section {
        padding: 35px;
    }
    .mission {
        padding: 10% 5%;
    }
}

@media (max-width: 820px) {
    h1, .h1 {
        font-size: 54px;
    }
    h2, .h2 {
        font-size: 36px;
        line-height: 42px;
    }
    h3, .h3 {
        font-size: 24px;
    }
    .what, .options {
        grid-template-columns: 1fr;
    }
    .what > div, .options > div {
        padding: 25px;
    }
}

@media (max-width: 500px) {
    h1, .h1 {
        font-size: 44px;
    }
    h2, .h2 {
        font-size: 24px;
        line-height: 30px;
    }
    h3, .h3 {
        font-size: 21px;
        line-height: 27px;
        margin-bottom: 25px;
    }
    p {
        font-size: 18px;
        line-height: 24px;
    }
    .btn {
        font-size: 18px;
    }
    main {
        justify-content: space-between;
        padding: 25px 25px 75px
    }
    main .logo {
        width: 75px;
        margin-bottom: 50px;
    }
    main span {
        font-size: 12px;
        left: unset;
        right: 25px;
    }
    main span img {
        width: 10px;
    }
    main h1 {
        margin-bottom: 35px;
    }
    main h2 {
        margin-bottom: 25px;
    }
    section {
        padding: 25px;
    }
    .what > div {
        padding: 25px 0;
    }
    .membership, .offer {
        padding: 12% 25px;
    }
    .form {
        padding: 25px 0;
    }
    footer {
        flex-direction: column;
        gap: 50px;
    }
}