@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&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: #3d404f;
	--white: #fff;
	--black: #070707;
    --lightgrey: #f0f0f0;
	--grey: #888;
    --darkergrey: #686868;
}

html {
    height: 100%;
    scroll-behavior: smooth;
	font-family: "Oswald", serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
    background: var(--blue);
}

html, body {
    overflow-x: hidden;
    padding: 0;
    margin: 0;
}

body {
    padding: 20px;
}

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

h1, .h1 {
    font-size: 72px;
    line-height: 84px;
    font-weight: 400;
}

h2, .h2 {
    font-size: 54px;
    line-height: normal;
    font-weight: 400;
}

h3, .h3 {
    font-size: 44px;
    line-height: 50px;
    font-weight: 400;
}

h5, .h5 {
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

p {
    font-size: 30px;
    line-height: 40px;
    margin-bottom: 25px;
}

.btn {
    border-radius: 10px;
    border: 2px solid var(--blue);
    display: inline-block;
    padding: 10px 25px;
    margin-top: 50px;
    font-size: 24px;
    line-height: 24px;
    color: var(--blue);
    text-decoration: none;
    font-weight: 400;
    text-transform: uppercase;
}

.btn.white {
    border-color: white;
    color: white;
}

.mb0 {
    margin-bottom: 0;
}

.logo {
    display: inline-block;
    border-radius: 20px;
    background: var(--blue);
    padding: 5px;
    font-size: 48px;
    line-height: 48px;
    font-weight: 400;
}

.logo span {
    border-radius: 16px;
    border: 3px solid white;
    background: var(--blue);
    color: white;
    display: block;
    width: 100%;
    height: 100%;
    padding: 0 60px 5px 20px;
}

.logo:after {
    content: 'CAPITAL';
    display: block;
    position: absolute;
    top: -3px;
    right: 17px;
    color: white;
    font-size: 14px;
}

.container {
    padding: 5%;
}

main {
    background: linear-gradient(200deg, #fae3e4, #d7f5f0);
}

main .logo {
    margin-bottom: 125px;
}

.grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    z-index: 1;
}

.grid img {
    width: 100%;
}

main p {
    font-size: 32px;
    line-height: 42px;
    text-wrap: balance;
}

main video {
    width: 100%;
    height: 100%;
    aspect-ratio: 1 / 1;
}

main .btn {
    z-index: 10;
}

main:after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../img/map.png') center center no-repeat;
    background-size: cover;
    z-index: 0;
}

.secondary {
    color: white;
    background: rgba(0,0,0,.2);
}

.secondary video {
    width: 100%;
}

.secondary .grid div:last-child {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.tertiary {
    background: white;
}

.results {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.results strong {
    font-size: 72px;
    display: block;
    margin-bottom: 20px;
}

.team {
    max-width: 1400px;
    margin: 0 auto;
}

.team h2 {
    text-align: center;
    margin-bottom: 100px;
}

.team .top {
    grid-template-columns: 1fr 1fr 1fr;
    margin-bottom: 75px;
}

.team .bottom {
    grid-template-columns: 1fr 1fr 1fr 1fr;
    align-items: end;
}

.team .bottom h3 {
    zoom: .8;
}

.contact {
    color: white;
    text-align: center;
}

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

.address {
    margin-top: 100px;
    line-height: 24px;
}

.address .logo {
    background: white;
    display: inline-block;
    margin-bottom: 50px;
}

.address .logo span {
    border: 3px solid var(--blue);
    background: white;
    color: var(--blue);
}

.address .logo:after {
    color: var(--blue);
}

.legal {
    padding: 25px;
    margin: 50px auto 0;
    background: rgba(0,0,0,.3);
}

.legal, .legal p {
    color: white;
    font-size: 18px;
    line-height: 21px;
}

.legal ul {
    margin: 25px;
}

.legal li {
    list-style-type: disc;
    margin-left: 10px;
    padding: 5px;
}

@media (max-width: 1200px) {
    .grid {
        gap: 50px;
    }
    .team .bottom {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

@media (max-width: 820px) {
    .grid {
        gap: 50px;
    }
    .team .top, .team .bottom {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 500px) {
    body {
        padding: 10px;
    }
    .logo {
        zoom: .6;
    }
    h1, .h1 {
        font-size: 48px;
        line-height: 54px;
    }
    h2, .h2 {
        font-size: 36px;
        line-height: 44px;
    }
    h3, .h3 {
        font-size: 28px;
        line-height: 34px;
    }
    p {
        font-size: 21px;
        line-height: 27px;
    }
    .btn {
        margin-top: 25px;
        font-size: 18px;
        padding: 8px 25px;
    }
    .grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    .container {
        padding: 50px 20px;
    }
    main.container {
        padding-top: 20px;
    }
    main .logo {
        margin-bottom: 200px;
    }
    main p {
        font-size: 24px;
        line-height: 30px;
    }
    .secondary .grid > div:last-child {
        order: 1;
    }
    .secondary .grid > div:first-child {
        order: 2;
    }
    .results strong {
        font-size: 48px;
    }
}