html {
    box-sizing: border-box;
    font-family: "Open Sans", sans-serif;
}

*,
*:before,
*:after {
    box-sizing: inherit;
}

.background {
    padding: 0 25px 25px;
    position: relative;
    width: 100%;
}

.background::after {
    content: "";
    background: rgba(237, 40, 40, 0.85);
    background: -moz-linear-gradient(
        top,
        rgba(237, 40, 40, 0.85) 0%,
        rgba(237, 40, 40, 0.85) 100%
    );
    background: -webkit-linear-gradient(
        top,
        rgba(237, 40, 40, 0.85) 0%,
        rgba(237, 40, 40, 0.85) 100%
    );
    background: linear-gradient(
        to bottom,
        rgba(237, 40, 40, 0.85) 0%,
        rgba(237, 40, 40, 0.85) 100%
    );
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#60a9ff', endColorstr='#4394f4',GradientType=0 );
    height: 350px;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 1;
}

@media (min-width: 900px) {
    .background {
        padding: 0 0 25px;
    }
}

.container {
    margin: 0 auto;
    padding: 50px 0 0;
    max-width: 1200px;
    width: 100%;
}

.panel {
    background-color: #fff;
    border-radius: 10px;
    padding: 15px 25px;
    position: relative;
    width: 100%;
    z-index: 10;
}

.pricing-table {
    box-shadow: 0px 10px 13px -6px rgba(0, 0, 0, 0.08),
        0px 20px 31px 3px rgba(0, 0, 0, 0.09),
        0px 8px 20px 7px rgba(0, 0, 0, 0.02);
    display: flex;
    flex-direction: column;
}

@media (min-width: 900px) {
    .pricing-table {
        /* flex-direction: row; */
    }
}

.pricing-table * {
    text-align: center;
    text-transform: uppercase;
}

.pricing-plan {
    border-bottom: 1px solid #030304;
    padding: 25px;
}

.pricing-plan:last-child {
    border-bottom: none;
}

@media (min-width: 900px) {
    .pricing-plan {
        border-bottom: none;
        border-right: 1px solid #e1f1ff;
        flex-basis: 100%;
        padding: 25px 50px;
    }

    .pricing-plan:last-child {
        border-right: none;
    }
}

.pricing-img {
    margin-bottom: 25px;
    max-width: 100%;
}

.pricing-header {
    color: #888;
    font-weight: 600;
    letter-spacing: 1px;
}

.pricing-features {
    color: rgba(237, 40, 40, 0.85);
    font-weight: 600;
    letter-spacing: 1px;
    margin: 50px 0 25px;
    list-style-type: none;
}

.pricing-features-item {
    border-top: 1px solid #e1f1ff;
    font-size: 12px;
    line-height: 3.5;
    padding: 15px 0;
}

/* .pricing-features-item:last-child {
    border-bottom: 1px solid #e1f1ff;
} */
.fa-check {
    font-size: 1.5em;
    color: rgba(237, 40, 40, 0.85);
}
.pricing-price {
    color: rgba(237, 40, 40, 0.85);
    display: block;
    font-size: 32px;
    font-weight: 700;
}

.pricing-button {
    border: 1px solid rgba(237, 40, 40, 0.85);
    border-radius: 10px;
    color: rgba(237, 40, 40, 0.85);
    display: inline-block;
    margin: 25px 0;
    padding: 15px 35px;
    text-decoration: none;
    transition: all 150ms ease-in-out;
}

.pricing-button:hover,
.pricing-button:focus {
    background-color: rgba(237, 40, 40, 0.85);
    color: #fff;
}

.pricing-button.is-featured {
    background-color: rgba(237, 40, 40, 0.85);
    color: #fff;
}

.pricing-button.is-featured:hover,
.pricing-button.is-featured:active {
    background-color: rgba(237, 40, 40, 0.85);
}
@media screen and (max-width: 1100px) {
    nav a {
        width: 100%;
    }
    .background {
        width: 100%;
        left: 15px;
    }
    .container {
        width: 90%
    }
    .pricing-button {
        margin: 5px;
        padding: 5px;
    }
    .pricing-price {
        font-size: 23px;
    }
    #thirdSection  {
        width: 88%;
        margin-left: 15px;
    }
}