p {
    text-align: justify;
}

.page-hero {
    position: relative;
    /*background-color: gray;*/
    background: linear-gradient(180deg, #DBFAFF 0%, rgba(255, 255, 255, 0.00) 100%);
    height: 70vh;
}

.page-hero__heading {
    font-weight: 600;
}

.page-hero__text {
    text-align: justify;
}

.page-hero .container {
    height: 100%;
    display: flex;
    align-items: center;
}

.opinion-hero-img {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50%;
}

.page-hero-container {
    flex-basis: 100%;
}

.opinion-section-1 {
    position: relative;
}

.opinion-section-1__heading {
    position: relative;
    display: inline-block;
}

.opinion-section-1__heading::after {
    content: '';
    position: absolute;
    top: 50%;
    right: calc(-50% - 20px);
    width: 50%;
    height: 2px;
    background-color: #27b9ce;
    transform: translateY(-50%);
}

.opinion-section-1__img {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.step-img {
    height: 300px;
}

.opinion-section-2-text {
    text-align: justify;
    position: relative;
}

.step-num {
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
}

.opinion-section-3 {
    position: relative;
    padding-top: 10px;
}

.opinion-section-3-header p{
    text-align: justify;
}

.opinion-section-3__img {
    position: absolute;
    left: 0;
    transform: scaleX(-1);
    z-index: -1;
}

.opinion-section-3__text {
    position: relative;
    text-align: justify;
}

.opinion-section-3__text::before {
    content: '';
    position: absolute;
    top: -10px;
    height: 2px;
    width: 100%;
    background-color: #27b9ce;
}

.opinion-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.opinion-section-4 {
    background-color: #f1f1f1;
}

.opinion-section-4__img {
    width: 100%;   
}

.opinion-section-5__img {
    width: 100%;
}

.opinion-section-6 {
    background-color: #f0fdff;
}

.pricing {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.pricing-card {
    background: #fff;
    border-radius: 10px;
    padding: 20px 30px;
    box-shadow: 0px 0px 19px 5px rgba(0,0,0,0.01);
}

.pricing__icon {
    height: 70px;
    margin-bottom: 20px;
}

.pricing-card__heading {
    font-size: 22px;
}

.pricing-card__heading--price {
    color: #9e9e9e;
}

.file-list {
    list-style: none;
}

@media screen and (min-width: 768px) {
   .page-hero-container {
        flex-basis: 50%;
    } 
}

@media screen and (min-width: 992px) {
    .pricing {
        grid-template-columns: repeat(4, 1fr);
        justify-content: center;
    }
}