section{
    margin-top: var(--header-height);
}

section.kiosk{
    height: 130pc;
}

section iframe{
    border:0;
}

section.mobile iframe{
    height: 680px;
    margin: 3rem auto;
}

section.kiosk iframe{
    height: 184pc;
}

.switch-wrapper {
    background: #F7F7F7;
    border-radius: 10px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 0.5rem;
    width: fit-content;
    max-width: 100%;
    margin: auto;
    position: relative;
}
.switch-wrapper p {
    font-size: 16px;
    font-weight: 700;
    font-style: normal;
    font-stretch: normal;
    line-height: 16px;
    letter-spacing: normal;
    text-align: center;
    color: var(--text-color);
    height: 38px;
    border-radius: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 1rem;
    margin-bottom: 0;
    width: 50%;
    z-index: 1;
    pointer-events: none;
}
.switch-wrapper p.font-weight-bold {
    color: #ffffff;
}
.switch {
    position: absolute;
    display: inline-block;
    width: 100%;
    height: 38px;
    margin: auto;
}

.switch input {
    opacity: 0;
    width: 100%;
    height: 100%;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 5px;
    right: 5px;
    bottom: 0;
    background: none;
    -webkit-transition: .4s;
    transition: .4s;
    border-radius: 34px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 38px;
    width: 50%;
    left: 0;
    right: 0;
    top:0;
    bottom: 0;
    background-color: var(--text-color);
    -webkit-transition: .4s;
    transition: .4s;
    border-radius: 4px;
}

/*input:checked + .slider {
    background-color: #2196F3;
}

input:focus + .slider {
    box-shadow: 0 0 1px #2196F3;
}*/

input:checked + .slider:before {
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
}

article#mobile-app-demo{
    position: relative;
    margin-top: 50px;
}

article#mobile-app-demo > p{
    margin-bottom: 0;
    font-size: 20px;
    line-height: 1.25;
    color: #242323;
}

article#mobile-app-demo > p.font-weight-bold{
    margin-right: -3.8px;
}

#mobile-app-demo  a.read-more{
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    height: 50px;
    background: #F7F7F7;
    border-radius: 8px;
    border: none;
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 22px;
    letter-spacing: normal;
    text-align: center;
    color: var(--text-color);
    padding: 0 1.75rem;
    margin-left: auto;
}
#mobile-app-demo .arrow-down {
    transform: rotate(-90deg);
    margin-left: 0.25rem;
}
iframe + p.note{
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 23px;
    text-align: center;
    color: var(--text-color);
}

footer .card{
    width: 100%;
}

@media (max-width: 574px) {
    #mobile-app-demo  a.read-more{
        margin-right: auto;
    }
    article#mobile-app-demo {
        margin-top: 20px;
    }
    section.mobile iframe {
        margin: 2rem auto;
    }
}