﻿

#DiySuscribe {
    width: 100%;
    height: 50%;
    display: flex;
    padding-bottom: 200px;
    align-items: center;
    flex-direction: column;
}

.splash {
    z-index: 1;
    height: 100%;
    width: 100%;
    position: fixed;
    background: #e91e63;
}

.subscribe {
    outline: none;
    height: 40px;
    width: 100%;
    color: #FFF;
    border: none;
    cursor: pointer;
    letter-spacing: 1px;
    text-align: center;
    background: #8e24aa;
    transition-delay: 0.2s;
    transition: box-shadow 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 3px;
    padding:0;
}

button:hover {
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.26);
}

hr {
    border: 0;
    clear: both;
    display: block;
    width: 96%;
    background-color: #efefef;
    height: 1px;
}



.plan-row {
    z-index: 2;
    display: flex;
    justify-content: space-evenly;
}

.pricing-row {
    z-index: 0;
    display: flex;
    justify-content: space-between;
}

.plan {
    width: 275px;
    margin: 20px;
    padding: 24px 16px;
    display: flex;
    background: #ffffff;
    border-radius: 8px;
    text-align: center;
    flex-direction: column;
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.26);
    transition: all 0.5s ease-in-out 0s;
}

    .plan:hover {
        margin-top: -4px;
    }

    .plan h3 {
        margin-top: 0;
        color: #8e24aa;
        font-size: 32px;
        letter-spacing: .02em;
        font-weight: bold;
    }

.pricing {
    display: flex;
    justify-content: center;
    align-items: center;
}

    .pricing > h2 {
        color: #333333;
        margin: 20px 0;
        font-size: 48px;
        font-weight: normal;
    }

.frequency {
    color: #9da7ad;
    margin-left: 4px;
}

.perk i {
    color: #e91e63;
    margin-right: 10px;
}

.perk {
    display: flex;
    margin: 20px 20px;
    align-items: center;
    justify-content: center;
}

    .perk p {
        margin: 0;
        color: #9da7ad;
    }

.icon img {
    height: 100px;
    width: auto;
}

.subs-btn.btn-small {
    line-height: 2rem;
    padding: 1rem 2rem;
}

.subs-btn {
    position: relative;
    display: inline-block;
    font-family: "Roboto", sans-serif;
    font-size: 1.4rem;
    line-height: 2.5rem;
    color: #fff;
    text-align: center;
    text-transform: uppercase;
    font-weight: 500;
    background-color: #fc7c56;
    border-radius: 4px;
    padding: 1.6rem 3rem 1.5rem;
    cursor: pointer;
    border: none;
    outline: none;
    box-shadow: none;
    text-decoration: none;
    z-index: 1;
    transition: all .5s;
    margin-top: 100px;
}

@media screen and (max-width: 1050px) {
    .plan-row {
        width: 100%;
        display: block;
    }

    .plan {
        width: 60%;
        margin: 20px auto;
    }

    hr {
        display: none;
    }
}

@media screen and (max-width: 768px) {
    .plan {
        width: 100%;
    }
}
