/* INITIAL SETTINGS */

:root {
    --component-bg-color: white;
    --body-bg-color: rgb(244, 244, 244);
    --primary-text: rgb(75, 75, 75);
    --secondary-text: white;
    --accent-color: rgb(83, 70, 234);
    --titles-font: 'Roboto Slab', serif;
    --standard-text-font: 'Poppins', sans-serif;
    
}
* {
    box-sizing: border-box;
}

body {
    background-color: var(--body-bg-color);
    font-family: var(--standard-text-font);
}

body, h1, ul {
    margin: 0;
    padding: 0;
}

li {
    list-style-type: none;
}

a {
    text-decoration: none;
    color: inherit;
}

.aux-wrapper {
    /* This wrapper will help us solve the overflow problem on mobile  */
    position: relative;
    overflow-x: hidden;
} 

.wrapper {
    width: 90%;
    margin: 0 auto;
}

/* TITLES */
.main-title {
    margin-bottom: 15px;
    color: var(--accent-color);
    font-family: var(--standard-text-font);
    text-align: center;
}

.subtitle {
    color: var(--primary-text);
}

/* CARD */
.card {
    padding: 1rem;
    border-radius: 10px;
    background-color: var(--component-bg-color);
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
}

.card__head__icon-container {
    display: flex;
    height: 65px;
    width: 72.5px;
    border-radius: 50%;
    margin: 0 auto;
    align-items: center;
    justify-content: center;
    background-color: var(--accent-color);
    color: var(--secondary-text);
    font-size: 1.25rem;
    text-align: center;
}

.card__content__title {
    color: var(--primary-text);
    font-size: 18px;
    text-align: center;
}

.card__content__body {
    color: var(--primary-text);
}

.card__content__list-item {
    color: var(--primary-text);
    text-align: center;
}

/* BUTTONS */
.btn {
    display: block;  
    max-width: 175px;
    padding: 0.5rem;
    border: none;
    border-radius: 4px;
    margin: 0 auto 10px;
    background-color: var(--accent-color);
    color: var(--secondary-text);
    opacity: 0.9;
}

.btn:hover {
    cursor: pointer;
    opacity: 1;
}

.icon {
    display: inline-block;
    font-size: 1.5rem;
}

@media(min-width: 830px){

    .main-title {
        margin: 25px 0 25px 5%;
        text-align: left;
    }

    .btn {
        max-width: 200px;
        opacity: 0.9;
        font-size: 14px;
    }

    .btn:hover {
        opacity: 1;
    }
}

/* UTILITY CLASSES */
.row {
    display: flex;
}

.img-fluid {
    max-width: 100%;
}