p,h1,h2,h3,h4,h5,h6,ul,li,ol,a,img {
    margin: 0;
    padding: 0;
}
body {
    width: 100vw;
    height: 100vh;
    margin: 0;
    background-color: #ffffff;
    font-family: 'Open Sans', sans-serif;
}
.safe-area {
    padding: 0 32px;
    margin: 0 auto;
    max-width: 1456px;
}
.secret-title {
    position: absolute;
    top: 0;
    height: 0;
    max-height: 0;
    overflow: hidden;
    visibility: hidden;
    opacity: 0;
    z-index: -99;
}
.header {
    padding: 180px 0 0;
    margin-bottom: 64px;
}
.header img{
    width: 100%;
    height: auto;
    max-width: 558px;
    display: block;
}
.desktop-background-image{
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    object-fit: cover;
    object-position: center;
}
.mobile-background-image{
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    object-fit: cover;
    object-position: center;
}
.hero__text {
    font-size: 32px;
    font-weight: 400;
    margin-bottom: 18px;
    font-family: 'Open Sans', sans-serif;
}
.hero__title {
    font-size: 48px;
    font-weight: 600;
    font-family: 'Open Sans', sans-serif;
}
.footer {
    position: absolute;
    bottom: 108px;
    left: 50%;
    transform: translateX(-50%);
    max-width: 1456px;
    width: calc(100% - 64px);
    padding: 0 32px;
}
.footer__title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 18px;
    font-family: 'Open Sans', sans-serif;
}
.footer__text {
    font-size: 24px;
    font-weight: 400;
    font-family: 'Open Sans', sans-serif;
}
@media (max-width: 768px) {
    .header {
        padding: 64px 0 0;
        margin-bottom: 40px;
    }
    .header img{
        max-width: 270px;
    }
    .hero__text {
        font-size: 18px;
        margin-bottom: 14px;
    }
    .hero__title {
        font-size: 36px;
    }
    .footer {
        bottom: 48px;
    }
    .footer__title {
        font-size: 14px;
        margin-bottom: 8px;
    }
    .footer__text {
        font-size: 14px;
    }
    .desktop-background-image{
        display: none;
    }
    .mobile-background-image{
        display: block;
    }
    
}