@font-face {
    font-family: 'IberPangea';
    src: url('/fonts/IberPangea-Medium.woff2') format('woff2');
    font-display: swap;
}
@font-face {
    font-family: 'IberPangea-bold';
    src: url('/fonts/IberPangea-SmBold.woff2') format('woff2');
    font-display: swap;
}

* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}
html {
    background: #00402A;
    font-family: IberPangea, Sans-Serif, serif;
}

.visually-hidden {
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    height: 1px;
    overflow: hidden;
    position: absolute;
    white-space: nowrap;
    width: 1px;
}

header {
    display: flex;
    align-items: center;
    flex-direction: column;
    text-align: center;
}
.sp-logo {
    width: 257px;
    height: auto;
    margin: 24px;
}
h1 {
    color: #fff;
    font-size: 50px;
    line-height: 58px;
    margin: 0;
    padding: 0 40px;
    font-family: IberPangea-bold;
}

main {
    position: relative;
}

.decorative-image {
    width: 100%;
    max-width: 800px;
    margin: -30px auto 0 auto;
}
.decorative-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.sp-ep-buttons {
    /*margin: -220px 32px 0 32px;*/
    /*margin: -420px auto 0 auto;*/
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 56%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 24px;
    align-items: center;
    max-width: 400px;
    width: calc(100% - 68px);
}
.sp-ep-buttons a {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background: #fff;
    border-radius: 30px;
    height: 100%;
    padding: 10px 20px;
    text-align: center;
    gap: 12px;
    color: #00A443;
    font-size: 22px;
    line-height: 28px;
    text-decoration: none;
    box-shadow: 10px 10px 10px 0 rgba(0,0,0, .3);
}
.sp-ep-buttons a svg {
    width: 38px;
    height: 38px;
}
@media (max-width: 992px) {
    
}
@media (max-width: 769px) {
    .sp-ep-buttons {
        max-width: 450px;
    }
}
@media (max-width: 391px) {
    .sp-logo {
        width: 246px;
        margin: 16px;
    }
    h1 {
        font-size: 46px;
        line-height: 50px;
    }

    .sp-ep-buttons a {
        font-size: 20px;
        line-height: 26px;
        padding: 10px 16px;
        gap: 8px;
    }
}
@media (max-width: 361px) {
    .sp-ep-buttons a {
        font-size: 19px;
    }
}
@media (max-width: 321px) {
    .sp-logo {
        width: 222px;
    }
    h1 {
        font-size: 42px;
        line-height: 45px;
    }

    .sp-ep-buttons {
        width: calc(100% - 34px);
    }
    .sp-ep-buttons a {
        font-size: 18px;
        line-height: 24px;
    }
    .sp-ep-buttons a svg {
        width: 32px;
        height: 32px;
    }
}


/*Customer benefits & App Demo page*/
.cp-header {
    display: flex;
    align-items: center;
    padding: 24px;
    flex-direction: row;
    text-align: unset;
    justify-content: center;
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}
.cp-header .back-btn {
    position: absolute;
    top: 50%;
    left: 12px;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    font-size: 16px;
    line-height: 20px;
    color: #fff;
    gap: 8px;
    margin-right: auto;
}
.cp-header .back-btn svg {
    width: 6px;
}
.cp-header img {
    width: 180px;
}
.sp-iframe {
    width: 100%;
    height: calc(100vh - 78px);
    border: none;
    overflow: hidden;
}

@media (max-width: 391px) {
    .cp-header img {
        width: 166px;
    }
    .cp-header .back-btn {
        font-size: 15px;
    }
}
@media (max-width: 361px) {
    .cp-header {
        padding: 20px;
    }
    .cp-header img {
        width: 150px;
    }
    .cp-header .back-btn {
        font-size: 14px;
        gap: 6px;
    }
    .sp-iframe {
        height: calc(100vh - 65px);
    }
}
@media (max-width: 321px) {
    .cp-header img {
        width: 130px;
    }
    .sp-iframe {
        height: calc(100vh - 62px);
    }
}