:root {
    --primary-color: #DD2043;
    --secondary-color: #AE1C41;
    --link-color: #F7EA46;
}

html, body {
    background-color: var( --primary-color );
    margin: 0px;
    font-family: "DM Sans", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    color: white;
}

.site-footer {
    padding-top: 60px;
    padding-bottom: 20px;
    padding-left: 40px;
    padding-right: 40px;
    background-color: var( --secondary-color );
}

.site-main {
    display: flex;
}

.main-container {
    width: 55%;
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.main-container .site-logo {
    max-width: 150px;
    height: auto;
}

.main-container .content h1 {
    font-size: 112px;
    font-weight: 700;
    line-height: 88%;
    margin-bottom: 30px;
}

.main-container .content .columns {
    display: flex;
    column-gap: 10%;
}

.main-container .content .columns h2 {
    font-weight: 300;
    font-size: 27px;
    line-height: 110%;
    margin: 0px;
}

p { 
    font-size: 18px;
    margin-top: 0px;
}

a { 
    color: var( --link-color );
    text-decoration: none; 
}


.main-container .content .columns > *:first-child {
    flex: 0 0 48%; 
}

.main-container .content .columns > *:last-child {
    flex: 1;
    max-width: 260px;
}

.hero-img {
    width: 45%;
    height: auto;
    object-fit: cover;
}

.site-footer {
    display: flex;
}

.site-footer .col {
    display: flex;
    column-gap: 10%;
}

.site-footer .left-col {
    width: 55%;
}

.site-footer .left-col .logo-container {
    flex: 0 0 48%;
}

.site-footer .left-col p {
    flex: 1;
    max-width: 260px;
}

.logo-container img {
    max-width: 150px;
    height: auto;
}

.site-footer .right-col {
    width: 45%;
    flex-direction: column;
    padding-left: 40px;
    box-sizing: border-box;
}

.site-footer .right-col p:first-child {
    margin-bottom: 80px;
}

.site-footer a {
    color: white;
}

@media( max-width: 1200px ) {

    .main-container {
        width: 100%;
        box-sizing: border-box;
    }
    .site-main {
        flex-direction: column;
        width: 100%;
    }

    .hero-img {
        width: 100%;
    }
}

@media( max-width: 792px ) {
    .main-container .content .columns {
        flex-direction: column;
    }

    .main-container .content .columns > *:first-child {
        margin-bottom: 30px;
    }

    .site-footer {
        flex-direction: column;
    }

    .site-footer .left-col , .site-footer .right-col {
        width: 100%;
    }

    .site-footer .right-col {
        padding-left: 0px;
    }
}

@media( max-width: 496px ) {
    .main-container .content h1 {
        font-size: 80px;
    }

    .main-container .content .columns h2 {
        font-size: 24px;
    }

    .site-footer .left-col {
        flex-direction: column;
    }

    .logo-container img {
        margin-bottom: 20px;
    }
}

@media( max-width: 368px ) {
    .main-container .content h1 {
        font-size: 60px;
    }
}