/*
.page-hero {
    padding: 80px 0px;
    background-image: linear-gradient(to right, #f05dae, rgba(50, 80, 233, 0.9));
}
*/
@media screen and (max-width: 767.98px) {
    .page-hero {
        padding: 50px 0px;
    }
}

.page-hero .hero-content {
    font-family: 'Inter', sans-serif;
}

.page-hero .hero-content h1 {
    font-size: 70px;
    font-weight: 500;
}

@media screen and (max-width: 1200.98px) {
    .page-hero .hero-content h1 {
        font-size: 60px;
    }
}

@media screen and (max-width: 991.98px) {
    .page-hero .hero-content h1 {
        font-size: 50px;
    }
}

.page-hero .hero-content span.h-sub-title {
    font-size: 14px;
    font-weight: 600;
    position: relative;
}

.page-hero .hero-content span.h-sub-title:before {
    background-color: #ffffff;
    position: absolute;
    display: block;
    top: 9px;
}

.page-hero .hero-content span.h-sub-title:after {
    background-color: #ffffff;
    position: absolute;
    display: block;
    top: 9px;
}

.page-hero .hero-content p {
    max-width: 500px;
}

.page-hero .hero-content .l-more {
    opacity: 1;
    transition: all .3s;
}

.page-hero .hero-content .l-more span {
    display: inline-block;
    margin-left: 2px;
    transition: all .3s;
}

.page-hero .hero-content .l-more:hover {
    opacity: .8;
}

.page-hero .hero-content .l-more:hover span {
    margin-left: 10px;
}

.page-hero .hero-content .btn {
    transform: translateY(0px);
    transition: all .3s;
}

.page-hero .hero-content .btn:hover {
    background-color: #fff;
    transform: translateY(10px);
}

