﻿body {
        background: #0267ed;
}

#comp_heading {
    color: white;
    font-family: 'Poetsen One';
    font-size: 5rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    text-decoration: underline;
}

.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 75%;
}

.page-banner {
    background: white !important;
}
.page-banner-bg {
    background-image: none !important;
}

#page-banner-title {
    color: #1C70D8 !important;
}

body::after {
    content: "";
    position: fixed;
    top: 0;
    width: 100%;
    height: 100%;
    background-image: url('../../images/websiteRedesign/background.png');
    background-repeat: repeat;
    background-size: 25vw 25vw;
    opacity: 0.05;
    z-index: -1;
}

.split {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
}


.split-box {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 4rem 4rem 4rem 4rem;
}

.box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: white;
    width: 95%;
    height: 100%;
    padding: 5rem 5rem 5rem 5rem;
    border-radius: 0.5rem;
}

.box-title {
    font-size: 1.8rem;
    background: white;
    font-family: 'Poetsen One';
    font-size: 3rem;
    color: #0267ed;
    margin-bottom: 1.5rem;
}

.box-body > p {
    font-size: 1.6rem;
    background: white;
    font-family: 'Open Sans Hebrew';
}

strong {
    font-size: 1.6rem;
    background: white;
    font-family: 'Open Sans Hebrew';
    font-weight: 600;
}


.split-img {
    width: 100%;
    box-shadow: 10px 10px 20px 1px rgba(0,0,0,0.59);
}

#img1 {
    border-radius: 1rem 3rem 7rem 16rem;
}

#img2 {
    border-radius: 2rem 15rem 4rem 3rem;
}

#img3 {
    border-radius: 2rem 1rem 19rem 6rem;
}

#img4 {
    border-radius: 1rem 2rem 8rem 8rem;
}

#img5 {
    border-radius: 14rem 1rem 2rem 6rem;
}


.faq {
    background: white;
    width: 100%;
    padding: 10rem;
    margin-bottom: 10rem;
    margin-top: 15rem;
}



/* TABLET */
@media only screen and (max-width: 960px) {

    .container {
        width: 100%;
    }


    .split {
        display: flex;
        flex-direction: column;
    }

    .split-box {
        width: 95%;
    }


    .faq {
        background: white;
        width: 95%;
        padding: 2rem;
        margin-bottom: 10rem;
        margin-top: 10rem;
    }


}