#animation-fade {
    animation: fadeIn 2s;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        background-color: rgb(241, 240, 235);
    }
    100% { 
        opacity: 1; 
    }
}

.intro-text-container {
    height: 450px;
    display:flex;
    align-items: center;
    justify-content: center;
    background-color: rgb(241, 240, 235);
}

.intro-text-container img {
    text-align: center;
    width: 100px;
}

.intro-text {
    font-size: x-large;
    text-align: center;
    color:rgb(80, 80, 80);
    font-weight: bold;
}

.point-list-container {
    height: 900px;
    text-align: center;
}

.point-list-container h2 {
    padding-top: 6%;
    margin-bottom: 5%;
    text-align: center;
    font-size: x-large;
    color: rgb(80, 80, 80);
}

.point-hidden {
    font-size: 70px;
    font-weight: bold;
    margin: 40px auto;
    opacity: 0;
}

.point {
    color: white;
    background-color: rgb(4, 106, 144);
    width: 100px;
    height: 100px;
    margin: 40px auto;
    border-radius: 100px;
    font-size: 70px;
    font-weight: bold;
    transition-duration: 1ms;
    opacity: 1;
}

.point-animation {
    animation: shake 1s;
}

@keyframes shake {
    0% {
        rotate: -20deg;
        opacity: 1;
    }

    25% {
        rotate: +15deg;
        opacity: 1;
    }

    50% {
        rotate:-10deg;
        opacity: 1;
    }

    75% {
        rotate:+7deg;
        opacity: 1;
    }

    100% {
        rotate: -4deg;
        opacity: 1;
    }
    
}

.point-list-text-hidden {
    font-size: x-large;
    opacity:0;
}

.point-list-text {
    color: rgb(80, 80, 80);
    font-size: x-large;
    opacity: 1;
}

.point-list-text-animation {
    animation: fadeIn 1s;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity:1;
    }
}

.box-container {
    width: 100%;
}

.camel-box {
    width: 100%;
    background-color: rgb(166, 156, 145);
    height: 70vh;
    color: white;
    display:grid;
    justify-content: center;
    align-items: center;
}

.box-title-camel {
    font-weight: bold;
    text-align: center;
    margin: 2%;
}

.box-text-camel {
    text-align: left;
    margin-left: 20%;
    margin-right: 20%;
}

.beige-box {
    width: 100%;
    background-color: rgb(80, 80, 80);
    height: 70vh;
    color: white;
    display: grid;
    justify-content: center;
    align-items: center;
}

.box-title-beige {
    margin: 2%;
    font-weight: bold;
    text-align: center;
}

.box-text-beige {
    text-align: left;
    margin-left: 20%;
    margin-right: 20%;
}

.question-img {
    width: 50px;
    background-color: rgb(241, 240, 235);
}

.faq-title-container {
    height: 60px;
    width: 100%;
    text-align: center;
    padding-top: 50px;
    margin-bottom: 50px;
}

.faq-container {
    width: 100%;
    background-color: rgb(241, 240, 235);
    padding-top: 50px;
    padding-bottom: 50px;
}

.card {
    border: none;
    box-shadow: none; 
    border-bottom: 1px solid rgb(166, 156, 145);
}

.card-header {
    background-color: rgb(241, 240, 235);
    box-shadow: none;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
}


.faq-button {
    color: rgb(80, 80, 80);
    
}

.faq-button:hover {
    color:rgb(4, 106, 144);
}

.card-body {
    text-align: justify;
    padding: 2% 20% 2% 20%;
    background-color: white;
    border-top: 1px solid rgb(166, 156, 145);
}


/*TABLET*/
@media screen and (max-width:990px) {
    .intro-text {
        font-size: large;
    }

    .intro-text-container img {
        width: 80px;
    }

    .hide-carousel-control {
        display: none;
    }

    .point-list-container {
        height: 650px;
    }

    .point-hidden {
        font-size: 50px;
        margin: 10px auto;
    }

    .point {
        font-size: 50px;
        height: 70px;
        width: 70px;
        margin: 10px auto;
    }

    .camel-box {
        height: 500px;
    }

    .box-text-camel {
        margin-left: 2%;
        margin-right: 2%;
        text-align: justify;
    }

    .beige-box {
        height: 500px;
    }

    .box-text-beige {
        margin-left: 2%;
        margin-right: 2%;
        text-align: justify;
    }

    .card-body {
        text-align: justify;
        padding: 30px;
    }
}

/*MOBILE*/
@media screen and (max-width:767px) {
    .intro-text {
        font-size: large;
    }

    .hide-carousel-control {
        display: none;
    }

    .point-list-container {
        height: 650px;
    }

    .point-list-container h2 {
        font-size: large;
        font-weight: bold;
        margin-bottom: 50px;
    }

    .point-hidden {
        font-size: 50px;
        margin: 10px auto;
    }

    .point {
        font-size: 50px;
        height: 70px;
        width: 70px;
        margin: 10px auto;
    }

    .point-list-text {
        font-size: medium;
    }

    .camel-box {
        height: 500px;
    }

    .box-text-camel {
        padding: 1% 5% 10% 5%;
        text-align: justify;
    }

    .beige-box {
        height: 500px;
    }

    .box-text-beige {
        padding: 1% 5% 10% 5%;
        text-align: justify;
    }

    .faq-container {
        width: 100%;
        margin: 0px auto;
    }
}