.pricing {
    height: 100%;
    width: 100%;
    margin-top: 100px;
    padding-bottom: 80px;
    background-color: black;


}

.pricing__container {
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
    margin: 0 auto;
    width: 1100px;
    height: 100%;
}

.pricing__about {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 80px auto 0;
    height: 100%;
    width: 1000px;
    max-width: 90%;
    color: white;
    z-index: 1;
}

.pricing__containerLeft {
    width: 33%;
    text-transform: uppercase;
}

.pricing__title {
    position: relative;
    margin-top: 15px;
    font-size: 42px;
}

.pricing__title::before {
    content: "";
    display: block;
    position: absolute;
    bottom: -35px;
    left: 0;
    width: 20%;
    height: 5px;
    background-color: orange;
}

.pricing__containerRight {
    width: 50%;
    font-size: 14px;
    line-height: 28px;
}

.pricing__option {
    margin-top: 100px;
    width: 330px;
    height: 540px;
    padding: 60px 10px;
    text-align: center;
    color: black;
    background-color: white;
}

.pricing__option--orange {
    margin-top: 100px;
    width: 330px;
    height: 540px;
    padding: 60px 10px;
    text-align: center;
    color: white;
    background-color: orange;
}

.pricing__option--orange .option__price {
    color: white;
}

.pricing__option--orange .option__btn {
    color: orange;
    border: none;
    background-color: white;
    transition: .4s;
}

.pricing__option--orange .option__btn:hover {
    border: 2px solid white;
    color: white;
    background-color: transparent;
}


.option__name {
    font-size: 28px;
    text-transform: uppercase;
}

.option__price {
    margin-bottom: 30px;
    font-size: 4em;
    font-weight: 900;
    color: orange;
    text-transform: uppercase;
}

.option__description {
    margin-bottom: 30px;
    font-size: 18px;
    line-height: 47px;
}

.option__btn {
    height: 70px;
    width: 250px;
    padding: 20px 0;
    letter-spacing: 4px;
    text-transform: uppercase;
    border: 2px solid orange;
    color: orange;
    background-color: transparent;
    cursor: pointer;
    transition: .4s;
}

.option__btn:hover {
    border: none;
    color: white;
    background-color: orange;
}

@media (max-width: 1100px) {
    .pricing__container {
        width: 90%;
    }

    .pricing__option {
        width: 30%;
    }

    .option__btn {
        width: 80%;
    }
}

@media (max-width: 865px) {
    .pricing__container {
        width: 90%;
    }

    .pricing__option {
        width: 70%;
    }

    .option__btn {
        width: 80%;
    }
}

@media (max-width: 550px) {
    .pricing__about {
        justify-content: center;
    }

    .pricing__containerLeft {
        width: 80%;
        margin-bottom: 80px;
    }

    .pricing__containerRight {
        width: 80%;
    }
}