* {
    position: relative;
    /* border box */
    box-sizing: border-box;
    color: #505050;
}

h1, h2 {
    font-weight: bolder;
}

body, html {
    margin: 0;
    padding: 0;
    display: block;
    justify-content: normal;
    overflow-x: hidden;
}
main {
    background-color: #edefef;
}
.section {
    display: flex;
    flex-direction: column;
    width: 100%;
    background-color: #edefef;
}

#top-section {
    display: flex;
    height: 100%;
    justify-content: center;
}

.scroll-indicator {
    height: 100px;
    width: 100%;
    text-align: center;
    z-index: 10;
}

.content-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    margin-top: 150px;
}

h3.top-section {
    font-size: 19px;
    font-weight: normal;

}
h1 {
    font-size: 45px;

}

.landing-button {
    padding: 15px 50px !important;
    margin: 50px 0 !important;
}
 
.disclaimer {
    font-size: 15px;
    margin: 30px 0 30px 0;
    line-height: 1;
}

#assistance-text {
    font-size: 18px;
}

.text-container {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 50%;
    flex: 1;
    height: 100%;
}

.image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
}

.ipad-image {
    width: 650px;
    max-width: 90%;
    margin-top: 50px;
    
    height: auto;
    display: block;
}
@keyframes slideIn {
    from {
        left: -100%;
    }
    to {
        left: 0;
    }
}

.info-text {
    margin-left: 10%;
    width: 560px;
}

.down-arrow {
    width: 100px;
    color: #505050;
}

/* card section */

#steps-container {
    text-align: center;
    padding: 0 10%;
}

.card-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
    gap: 10px;
}

.card:not(:last-child) {
    border-right: 1px solid black;
}

.card {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 300px;
    padding: 20px;
    box-shadow: none !important;
}

.card-image {
    max-width: 200px;
    max-height: 100px;
}

.card-text {
    font-size: 14px;
    line-height: 1.5;
    height: 100px;
}

#steps-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.video-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 80px 0 20px 0;
}

#bottom-section {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.faq-list {
    list-style: none;
    padding: 10px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
}

.faq-item {
    width: 500px; 
    display: flex;
}

.faq-item div {
    width: 100%;
}

.faq-list #long-item {
    grid-row: span 2;
}

.faq-item div h3 {
    color: var(--primary-color)
}

.faq-logo {
    width: 50px;
    height: 50px; 
    margin-right: 10px; 
}

h2 {
    font-size: 40px;
}

.video-positional-container {
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    width: 100%;
}

.info-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 1500px;
    margin: 0 200px;
    height: 400px;
    max-width: 2200px;
    margin-bottom: 40px;

}

.info-text-container {
    width: 500px;
    margin: 0 10px;
}

@media (max-width: 1200px) {

    .ipad-image {
        align-self: center;
        width: 500px;
        max-width: 90%;
    }
    .text-container {
        width: 90%;
        max-width: none;
    }
    #top-section {
        height: auto;
    }
    .info-text {
        text-align: center;
        margin: 0 1px !important;
        transform: scale(.9);
    }

    .info-paragraph {
        text-align: left;
    }
    .content-wrapper {
        display: flex;
        flex-direction: column;
    }

    .scroll-indicator {
        display: none;
    }

    #bottom-section h1 {
        font-size: 50px;
    }
    #bottom-section h3 {
        text-align: center;
    }
    .info-container {
        flex-direction: column;
        justify-content: space-between;
        height: auto;
        width: 100%;
    }
    .info-text-container {
        width: 100%;
        text-align: center;
    }

    .card-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        place-items: center;
        width: 100%
    }
    
    .card-container .card:last-child {
        grid-column: 1 / -1;
        justify-self: center;
    }
    .card {
        border-right: none !important;
        width: 170px;
        height: 350px;
        margin: 10px 0;
    }
    #steps-cta {
        text-align: center;
        margin: 10px;
    }
    .video-container {
        margin: 30px 20px;
    }
}

@media (max-width: 1100px) {
    .faq-list {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding-right: 10%;
    }
    .faq-item {
        width: 90%;
    }
    .faq-item div p {
        text-align: center;
    }
}

@media (max-width: 900px) {
    .youtube-video {
        width: 300px;
        height: 200px;
        margin: 60px;
    }
}
p {
    margin: 0;
}

p, h3 {
    line-height: 30px;
}

.header-button-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 300px;
}
