.interview-options {
    padding: 100px 0;
    color: white;
    background-color: black;
}

@media only screen and (max-width: 1199px) {
    .interview-options {
        padding: 80px 0;
    }
}

@media only screen and (max-width: 991px) {
    .interview-options {
        padding: 60px 0;
    }
}

.interview-options__title {
    text-align: center;
}

.interview-options-row {
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
}

@media only screen and (max-width: 767px) {
    .interview-options-row {
        flex-direction: column;
        align-items: center;
    }
}

.interview-options-card {
    background-color: white;
    padding: 40px 70px;
    border-radius: 10px;
    color: black;
    text-align: center;
    max-width: 360px;
    width: 100%;
    position: relative;
}

.interview-options-card:not(:last-child) {
    margin-right: 64px;
}

@media only screen and (max-width: 767px) {
    .interview-options-card:not(:last-child) {
        margin-right: 0;
        margin-bottom: 80px;
    }
}

.interview-options-card:not(:last-child)::before {
    content: "";
    width: 27px;
    height: 27px;
    background-image: url(../img/svg/plus-dark.svg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    top: 50%;
    right: -45px;
    transform: translate(0, -50%);
}

@media only screen and (max-width: 767px) {
    .interview-options-card:not(:last-child)::before {
        top: auto;
        right: auto;
        left: 50%;
        bottom: -50px;
        transform: translate(-50%, 0);
    }
}

.interview-options-card__img {
    max-width: 65px;
    margin: 0 auto 20px auto;
}

.interview-options__footer {
    text-align: center;
}

.interview-options__footer .btn {
    width: 270px;
    display: block;
    margin: 0 auto 35px auto;
}

.interview-options__footer span {
    color: greyDark;
    font-size: 14px;
}

.interview-options__price {
    font-size: 46px;
    font-weight: 900;
    margin-bottom: 20px;
}

