@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
:root {
    font-family: 'Roboto';
    --light1:#fff;
    --light2:#E0E0DB;
    --mid1:#253551;
    --dark1:#2A2829;
    --dark2:#000;
}
* {
    background-repeat: no-repeat;
    scrollbar-color: rgba(0,0,0,.5) transparent;
    scrollbar-width: thin;
}
html,body {
    width: 100vw;
    height: 100vh;
    overflow-x: hidden;
}
body {
    padding: 20px !important;
}
section {
    margin-bottom: 50px;
    position: relative;
}
button.primary,a.btn.primary {
    background-color: var(--dark2);
    border-radius: 999px;
    border: none;
    color: var(--light1);
    text-transform: capitalize;
    text-decoration: none;
    padding: 18px 24px;
    transition: background-color 0.2s;
}
button.primary:hover,a.btn.primary:hover {
    background-color: var(--dark1);
}
@media only screen and (min-width:992px) {
    h1 {
        font-size: 56px !important;
    }
}
h2 {
    font-size: 36px !important;
}
h3 {
    font-size: 24px !important;
}
h1,h2,h3,h4,h5,h6 {
    font-weight: 400 !important;
}
.light {
    color: var(--light1);
}
.center {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
}
.header {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    max-height: 400px;
    height: 700px;
    overflow: hidden;
}
.header-challenge-logo {
    position: absolute;
    width: 200px;
    top: 24px;
    left: 120px;
}
.header-challenge-logo>img {
    width: 200px;
}
.header-bg {
    width: 100%;
    height: auto;
    max-height: 700px;
    overflow: hidden;
    position: absolute;
    z-index: -1;
    object-fit: cover;
    filter: brightness(.7);
}
section:not(.header) {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    flex-direction: row;
    gap: 24px;
    max-width:1200px;
    margin-left: auto;
    margin-right: auto;
}
section:not(.header) img {
    width: 100%;
    max-width:500px;
}
section:not(.header) > div {
    max-width: 45%;
}
.section-photo {
    min-width: 500px;
}
.section-text {
    width: 45%;
    min-width: 500px;
    max-width: 750px;
}




@media only screen and (max-width:992px) {
    body {
        padding: 2.5vw !important;
    }
    .section-photo {
        min-width: 0 !important;
        max-width: none !important;
    }
    section {
        margin-bottom: 56px;
    }
}
@media only screen and (max-width:700px) {
    h1 {
        font-size: 26px !important;
    }
    h2 {
        font-size: 24px !important;
    }
        h3 {
	    font-size: 18px !important;
    }
    section {
        margin-bottom: 45px;
    }
    .section-text {
        max-width: none !important;
        min-width: 0 !important;
        width: auto !important;
    }
}
@media only screen and (max-width:500px) {
    section {
        margin-bottom: 35px;
    }
}
@media only screen and (max-width:400px) {
    section {
        margin-bottom: 25px;
    }
}
@media only screen and (max-width:300px) {
    section {
        margin-bottom: 20px;
    }
}