.background-banner {
    position: relative;
}

.background-banner > img {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .25;
}

.background-banner-set {
    /*height: 50vh;*/
    padding-bottom: 100px;
}

.main-title {
    font-size: 67px;
    line-height: 1.3;
}

.main-text {
    margin-top: 65px;
    margin-inline: auto;
    max-width: 820px;
    margin-bottom: 50px;
}

.card-section {
    padding: 100px 0;
}

.card-element {
    border: 1px solid #252525;
    padding: 49px 30px;
    border-radius: 24px;
    align-items: center;
    /*max-width: 120px !important;*/
}

.card-element-reverse {
    flex-direction: row-reverse;
}

.card-image {
    border-radius: 15px;
    max-width: 550px;
    object-fit: cover;
}


.animation-btn {
    position: relative;
    overflow: hidden;
    display: block;
    padding: 9px 27px;
    border: 1px solid;
    width: fit-content;
    border-radius: 14px;
}

.animation-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 130%;
    height: 55px;
    background-color: #ff5f09;
    transform: translate(-110%, 0) skew(-30deg);
    transition: 0.5s;
    z-index: 1;
}

.animation-btn.black-btn::before {
    background-color: #000;
}

.animation-btn:hover {
    transform: unset;
}

.animation-btn > span {
    position: relative;
    z-index: 2;
    transition: 500ms;
}

.animation-btn:hover > span {
    color: #fff;
    z-index: 2;
}

.animation-btn.black-btn:hover > span {
    color: #fff;
    z-index: 2;
}

.animation-btn:hover::before {
    transform: translate(-5%, 0) skew(-15deg);
}

.testimonials-section {
    background: black;
}

.testimonial-item {
    background: #000000;
    border-radius: 15px;
    padding: 40px 25px;
    border: 1px solid #232323;
}

.testimonial-item h4 {
    color: #d7d7d7;
}

.faqs-section {
    padding-bottom: 100px;
}


@media screen and (max-width: 800px) {
    .main-title {
        font-size: 45px;
    }
}
