/* GENERAL */

body {
    background: transparent;
    font-family: "Josefin Sans", sans-serif;
    font-size: 16px;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.4;
    color: #000;
    background: #f5f3ef;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #5c5661;
}

p {
    margin-bottom: 24px;
    line-height: 1.9;
}

p,
li,
ul,
i {
    font-weight: 400;
}

label {
    font-size: 16px;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: #00011c;
}

/** =======================
 *  New CSS
 * ======================= */
#intro-links a i {
    background: white;
    padding: 10px;
    border-radius: 100%;
    margin-left: -12px;
}

input[type="email"]::placeholder {
    font-weight: 300 !important;
    opacity: 0.5;
}

.btn {
    display: inline-block;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    background-color: transparent;
    border: 1px solid transparent;
    padding: 0.875rem 1.4rem;
    font-size: 1rem;
}

.btn-shadow {
    -webkit-box-shadow: 10px 10px 45px -5px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: 10px 10px 45px -5px rgba(0, 0, 0, 0.75);
    box-shadow: 10px 10px 45px -5px rgba(0, 0, 0, 0.75);
}

.btn-grey {
    background-color: #362f3d !important;
    color: white;
}

.btn-green {
    background-color: #96df9e !important;
    color: #ffffff!important;
}

.btn-grey:hover,
.btn-grey:focus {
    color: rgb(255, 255, 255);
    background-color: #6e6675 !important;
}

.btn-green:hover,
.btn-green:focus {
    color: rgb(255, 255, 255);
    background-color: #225d3a !important;
}

.btn-xtra-wide {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
}

.btn-thin-normal {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
}
.btn-outline{
    border: 1px solid rgb(201,201,201);
    background: white!important;
}
.btn-outline:hover,.btn-outline:focus{
    background: rgb(209,209,209)!important;
    color: white
}
#intro-container {
    background: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    padding: 2rem 1.5rem;
    flex-direction: column;
    align-items: center;
    border-radius: 1rem;
    align-self: center;
    margin-bottom: 0;
    z-index: 1;
    width: 100%;
    text-align: center;
}

#intro-container>h1 {
    font-size: 4rem;
    text-transform: uppercase;
}

#container-box {
    background: #e8e4e3;
    position: relative;
    height: 100vh !important;
    margin: 3rem 0;
    border-radius: 2rem !important;
}

/* MEDIA QUERIES */

@media (min-width: 990px) and (max-width: 1199px) {
    #title-container {}
}

@media (max-width: 991px) {
    #title-container {
        padding: 20px;
        min-height: inherit;
    }
}

@media (max-width: 767px) {
    #qbox-container {
        padding: 20px;
    }

    #steps-container {
        width: 100%;
    }

    #title-container {
        padding-top: 50px;
    }
}

.navbar-nav .dropdown-menu {
    position: initial!important;
    min-width: 100%;
}


.card-title {
    position: relative;
}
.card-title span {
    padding-left: 30px;
}
.card-title ion-icon {
    position: absolute;
    top: 2px;
    font-size: 25px;
    color: red;
}