@charset "utf-8";
@import url("https://fonts.googleapis.com/css?family=Titillium+Web:300,700,900");
@import url("https://fonts.googleapis.com/css?family=Palanquin:300");
@media (max-width: 600px) {
    .card-style .inner-container {
        position: relative !important;
        max-width: 20% !important;
        min-width: 20rem !important;
        height: 520px !important;
        width: 100% !important;
        margin: 0 auto 100px !important;
    }
    .card-style img {
        width: 16rem !important;
    }
}

.card-style {
    /* padding-top: 10rem; */
}

.card-style .inner-container {
    position: relative;
    max-width: 20%;
    min-width: 460px;
    height: 520px;
    width: 100%;
    margin: 0 auto 100px;
}

.card-style .content {
    position: absolute;
    opacity: 0;
    top: 2em;
    left: 10%;
    width: 80%;
    margin: 0 auto;
}

.card-style .active {
    display: block !important;
    margin: 0 auto;
    opacity: 1;
    transition: ease-in-out 1s;
}

.card-style .card1 {
    position: relative;
    background: #fff;
    border-radius: 5px;
    padding: 2em 0;
    height: 520px;
    box-sizing: border-box;
    transition: 0.3s ease;
    box-shadow: 0 3px 10px -2px rgba(0, 0, 0, 0.35);
}

.card-style .card1:first-child,
.card-style .card1:nth-child(2) {
    background: #f35858;
    height: 8px;
    border-radius: 5px 5px 0 0;
    padding: 0;
    box-shadow: none;
}

.card-style .card1:first-child {
    margin: 0 20px;
    background: #dc3545;
}

.card-style .card1:nth-child(2) {
    margin: 0 10px;
}

.card-style .card1 .progress-container {
    background: rgba(37, 117, 252, 0.2);
    height: 6px;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    border-radius: 0 0 5px 5px;
}

.card-style .card1 .progress-container .step {
    background-color: #2575fc;
    height: 6px;
    width: 33%;
    border-radius: 0 0 0 5px;
}

.card-style h1 {
    font-family: "Titillium Web", sans-serif;
    font-weight: 700;
    font-size: 3rem;
    color: #f35858;
    margin: 0;
}

.card-style p {
    margin-top: 0;
}

.card-style a {
    cursor: pointer;
    color: #fd7070;
    text-decoration: none;
    position: relative;
}

.card-style a:before {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0%;
    border-bottom: 2px solid #fd7070;
    transition: 0.3s;
}

.card-style a:hover:before {
    width: 80%;
}

.card-style img {
    width: 22rem;
    margin: auto;
    display: flex;
}