.section-container {padding: 0}
.section-title {text-align: center}

#hero-section {
    position: relative;
    z-index: 1;
    padding: 170px 20px 80px;
}
#hero-section .title-wrapper {
    margin-top: 43px;
    text-align: center;
}
#hero-section .page-title {
    margin-bottom: 26px;
    color: var(--color-white);
}
#hero-section .subtitle p {
    font-size: inherit;
}
#hero-section .hero-main {
    margin-top: 90px;
    margin-bottom: -200px;
    border-radius: 8px;
    background-color: var(--color-white);
    overflow: hidden;
}
#hero-section .hero-main .img-col {
    width: 50%;
    flex-shrink: 0;
}
#hero-section .hero-main .img-col img {
    display: block;
    width: 100%;
}
#hero-section .hero-main .content-col {
    position: relative;
    padding: 40px 32px;
    border: 1px solid #DCDDE0;
}
#hero-section .hero-main .content-col img {
    height: 39px;
    width: auto;
    margin-bottom: 20px;
}
#hero-section .hero-main .content-col .intro-text {
    font-size: var(--font-size-3xl);
    font-weight: 700;
    color: var(--color-gray-900);
}
#hero-section .hero-main .content-col .link-wrapper {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 16px 32px;
    border-top: 1px solid #DCDDE0;
}
#hero-section .hero-main .content-col .link-wrapper .hero-link {
    justify-content: space-between;
    align-items: center;
    width: 100%;
}
#hero-section .hero-main .content-col .link-wrapper .hero-link > span {
    font-weight: 700;
    color: var(--color-brand-primary);
}

#cards-section {
    padding: 220px 0 68px;
    background: var(--color-gray-100);
}
#cards-section .mobile-filters-toggler {
    display: none;
}
#cards-section .filters-wrapper {
    position: relative;
    z-index: 1;
    justify-content: center;
    gap: 10px;
    margin-top: 39px;
}
#cards-section .filters-wrapper .customers-filter {
    position: relative;
}
#cards-section .filters-wrapper .customers-filter .arrow {
    position: absolute;
    top: 13px;
    right: 15px;
}
#cards-section .filters-wrapper .customers-filter {
    width: 261px;
}
#cards-section .customers-filter input[type="text"] {
    padding: 10px 14px;
    font-size: var(--font-size-sm);
    font-weight: 500;
    color: var(--color-text-secondary);
    background: var(--color-white);
    border: 1px solid var(--color-border-default);
    border-radius: 5px;
}
#cards-section .customers-filter .all-options {
    display: none;
    position: absolute;
    width: 100%;
    margin: 0;
    padding: 20px 13px;
    list-style: none;
    font-size: var(--font-size-sm);
    border-radius: 5px;
    border: 1px solid #DCDDE0;
    background: var(--color-bg-blockquote);
    border-radius: 5px;
    box-shadow: 0px 12.5px 10px 0px rgba(102, 124, 167, 0.04), 0px 22px 18px 0px rgba(102, 124, 167, 0.04), 0px 42px 33px 0px rgba(102, 124, 167, 0.05), 0px 100px 80px 0px rgba(102, 124, 167, 0.07);
}
#cards-section .customers-filter.show-filter .all-options {
    display: block;
}
#cards-section .customers-filter.show-filter .all-options li + li {
    padding-top: 10px;
}
#cards-section .customers-filter .all-options input[type="checkbox"] {
    vertical-align: middle;
    margin-right: 4px;
}
#cards-section .cards-wrapper {
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 58px;
    padding: 0 22px;
}
#cards-section .cards-wrapper .card-item {
    position: relative;
    flex-basis: 23.9%;
    padding: 26px 26px 80px;
}
#cards-section .cards-wrapper .card-item.hidden {
    display: none;
}
#cards-section .cards-wrapper .card-item .logo-wrapper {
    margin-bottom: 10px;
}
#cards-section .cards-wrapper .card-item .logo-wrapper img {
    height: 31px;
}
#cards-section .cards-wrapper .card-item .link-wrapper {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 32px;
    border-top: 1px solid #DCDDE0;
}
#cards-section .cards-wrapper .card-item .item-link {
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    color: var(--color-brand-primary);
}
#cards-section .cards-nav {
    margin-top: 58px;
    font-size: var(--font-size-md);
    text-align: center;
}
#cards-section .cards-nav .nav-btn {
    position: relative;
    margin: 0 7px;
    color: #424346
}
#cards-section .cards-nav .nav-btn:hover {
    text-decoration: none;
}
#cards-section .cards-nav .nav-btn.active {
    color: var(--color-brand-secondary);
}
#cards-section .cards-nav .nav-btn.hidden,
#cards-section .cards-nav .arrow-btn.hidden {
    display: none;
}
#cards-section .cards-nav .nav-btn.active:after {
    content: "";
    position: absolute;
    width: 16px;
    height: 2px;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-brand-secondary);

}
#cards-section .cards-nav .arrow-btn {
    margin: 0 7px;
}
#cards-section .cards-nav .arrow-btn:hover {
    text-decoration: none;
}
#cards-section .cards-nav .arrow-btn.prev svg {
    transform: scaleX(-1);
}
#cards-section .cards-nav .arrow-btn svg {
    display: inline-block;
    vertical-align: middle;
}

#success {
    padding: 60px 0 67px;
    text-align: center;
    background: var(--banner-bg);
    color: var(--color-white);
}
#success .section-title {
    width: 780px;
    margin: 0 auto 2px;
    color: var(--color-white);
}
#success .subtitle {
    width: 780px;
    margin: 0 auto;
    font-size: var(--font-size-md);
}
#success .success-cards-wrapper {
    flex-wrap: wrap;
    justify-content: center;
    gap: 26px;
    margin-top: 40px;
    padding: 0 22px;
}
#success .success-card-item {
    flex-basis: 31.5%;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 31px 40px;
    color: #424346;
}
#success .success-card-item .item-title {
    margin-bottom: 0;
}
#success .success-card-item .ti-btn {
    margin-top: 20px;
}

#reviews {padding: 55px 0 68px}
#reviews .section-title {
    margin-bottom: 0;
    padding-bottom: 40px;
}
#reviews .reviews-cards {
    justify-content: space-between;
    gap: 20px;
}
#reviews .reviews-cards .review-card {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    width: 50%;
    padding: 39px 30px;
    border: 1px solid #DCDDE0;
    border-radius: 8px;
}

#reviews .images-wrapper {
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1075px;
    margin: 0 0 16px;
}
#reviews .images-wrapper img {
    max-width: 60%;
}
#reviews .review-card + .review-card .images-wrapper img {
    max-width: 67%;
}
#reviews .images-wrapper img:first-child {
    max-width: 200px;
}
#reviews .review-card + .review-card .images-wrapper img:first-child {
    max-width: 120px;
}
#reviews .review-btn {
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
    min-width: 340px;
    padding: 12px 30px;
    font-size: var(--font-size-sm);
    text-align: center;
    font-weight: 700;
    border-radius: 6px;
    border: 2px solid #00244A;
    color: var(--color-white);
    background-color: #00244A;
    transition: all 0.3s;
}
#reviews .review-btn:hover,
#success .success-card-item .tigera-btn:hover {
    color: var(--color-blue-800);
    background-color: var(--color-white);
    text-decoration: none;
}
#reviews .review-btn:hover {
    color: #00244A;
}
#reviews .review-card + .review-card .review-btn {
    background: #FF492C;
    border: 2px solid #FF492C;
}
#reviews .review-card + .review-card .review-btn:hover {
    color: #FF492C;
    background-color: var(--color-white);
}

#customers-slider {
    padding: 55px 0;
    background: var(--color-gray-100);
}
#customers-slider .section-title {
    margin-bottom: 0;
}
#customers-slider .subtitle {
    width: 774px;
    margin: 0 auto;
    font-size: var(--font-size-xl);
    text-align: center;
    color: #424346;
}
#customers-slider .splide {
    margin: 65px 0 60px;
}


.splide__arrow{
    -ms-flex-align:center;
    align-items:center;
    background:transparent;
    border:0;
    border-radius:50%;
    cursor:pointer;
    display:flex;
    height:2em;
    justify-content:center;
    opacity:.7;
    padding:0;
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:2em;
    z-index:1
}
.splide__arrow--prev{left:-92px}
.splide__arrow--prev svg{transform:scaleX(-1)
}.splide__arrow--next{right:-92px}


@media screen and (max-width: 1559px) {
    .splide__arrow--next {
        right: -60px;
    }
    .splide__arrow--prev {
        left: -60px;
    }
}

@media screen and (max-width: 1360px) {
    .section-container {
        max-width: 1000px;
    }
    #hero-section .hero-main .content-col .intro-text {
        font-size: 26px;
    }
    #cards-section .cards-wrapper .card-item {
        flex-basis: 23.7%;
        padding: 32px 22px 84px;
    }
    #cards-section .cards-wrapper .card-item .item-excerpt {
        font-size: 17px;
    }

    #success .success-cards-wrapper {
        padding: 0;
    }
    #success .success-card-item {
        flex-basis: 31%;
    }
    
    #reviews .images-wrapper img:first-child {
        max-width: 180px;
    }
    #reviews .review-card + .review-card .images-wrapper img:first-child {
        max-width: 100px;
    }

    #customers .splide {
        padding: 0 20px;
    }
    .splide__arrow--prev {left: -22px}
    .splide__arrow--next {right: -22px}
}

@media screen and (max-width: 1199px) {
    .splide__arrow--prev {left: -12px}
    .splide__arrow--next {right: -12px}
}

@media screen and (max-width: 1023px) {
    .section-container {
        padding: 0 20px;
    }
    #hero-section {
        padding-left: 0;
        padding-right: 0;
    }
    #hero-section .page-title {
        font-size: 44px;
    }
    #hero-section .hero-main .content-col {
        padding: 19px;
    }
    #hero-section .hero-main .content-col img {
        height: 32px;
        margin-bottom: 15px;
    }
    #hero-section .hero-main .content-col .intro-text {
        font-size: var(--font-size-md);
    }
    #hero-section .hero-main .content-col .link-wrapper {
        padding: 16px 19px;
    }
    #cards-section {
        padding-top: 190px;
    }
    #cards-section .filters-wrapper .customers-filter {
        width: 200px;
    }
    #cards-section .cards-wrapper {
        padding: 0;
    }
    #cards-section .cards-wrapper .card-item {
        flex-basis: 48.7%;
    }
    #success .section-title,
    #success .subtitle {
        max-width: 100%;
    }
    #success .success-cards-wrapper {
        padding: 0;
    }
    #success .success-card-item {
        padding: 30px 20px 110px;
    }
    #success .success-card-item .tigera-btn {
        width: 80%;
    }
    #customers-slider .subtitle {
        max-width: 100%;
    }

    #reviews .reviews-cards {
        flex-direction: column;
    }
    #reviews .reviews-cards .review-card {
        width: 100%;
    }
    #reviews .images-wrapper img:first-child {
        max-width: 230px;
    }
    #reviews .review-card + .review-card .images-wrapper img:first-child {
        max-width: 160px;
    }
    #reviews .review-card + .review-card .images-wrapper img {
        max-width: 60%;
    }
    .splide__arrow--prev {left: -20px}
    .splide__arrow--next {right: -20px}

    #success .success-cards-wrapper {
        justify-content: center;
        gap: 20px;
    }
}


@media screen and (max-width: 767px) {
    body > .menu {
        padding: 10px 20px;
    }
    #hero-section {
        padding-top: 98px;
    }
    #hero-section .title-wrapper {
        margin-top: 10px;
    }
    #hero-section .page-title {
        margin-bottom: 16px;
        font-size: var(--font-size-4xl);
    }
    #hero-section .subtitle p {
        line-height: 1.6;
    }
    #hero-section .hero-main {
        display: block;
        margin-top: 40px;
        margin-bottom: -235px;
    }
    #hero-section .hero-main .img-col {
        width: 100%;
        height: 247px;
    }
    #hero-section .hero-main .img-col img {
        position: relative;
        left: 50%;
        transform: translateX(-50%);
        min-width: 100%;
        max-width: none;
        width: auto;
        height: 100%;
    }
    #hero-section .hero-main .content-col {
        padding: 32px 19px 94px;
    }
    #hero-section .hero-main .content-col img {
        height: 36px;
    }
    #hero-section .hero-main .content-col .intro-text {
        font-size: var(--font-size-xl);
    }
    #hero-section .hero-main .content-col .link-wrapper {
        padding: 16px 30px;
    }
    .section-title {
        margin-bottom: 25px;
        font-size: var(--font-size-4xl);
        line-height: 1.4;
        text-align: center;
    }

    #cards-section {
        padding-top: 200px;
        padding-bottom: 40px;
    }
    #cards-section .mobile-filters-wrapper {
        position: relative;
    }
    #cards-section .mobile-filters-toggler {
       display: block;
       position: relative;
       padding: 12px 15px;
       color: var(--color-text-secondary);
       background: var(--color-white);
       border: 1px solid #DCDDE0;
    }
    #cards-section .mobile-filters-toggler span {
        display: inline-block;
        margin-left: 4px;
    }
    #cards-section .mobile-filters-toggler .close-btn {
        display: none;
        position: absolute;
        top: 15px;
        right: 15px;
        cursor: pointer;
    }
    #cards-section .mobile-filters-wrapper.open .close-btn {
        display: block;
    }
    #cards-section .filters-wrapper {
        display: none;
        position: absolute;
        left: 0;
        right: 0;
        margin-top: 0;
        padding-bottom: 20px;
        background: var(--color-white);
        border: 1px solid #DCDDE0;
        box-shadow: 0px 12.5px 10px 0px rgba(102, 124, 167, 0), 0px 22px 18px 0px rgba(102, 124, 167, 0), 0px 42px 33px 0px rgba(102, 124, 167, 0), 0px 100px 80px 0px rgba(102, 124, 167, 0);
        transition: box-shadow .3s;
    }
    #cards-section .mobile-filters-wrapper.open .filters-wrapper {
        display: block;
        box-shadow: 0px 12.5px 10px 0px rgba(102, 124, 167, 0.04), 0px 22px 18px 0px rgba(102, 124, 167, 0.04), 0px 42px 33px 0px rgba(102, 124, 167, 0.05), 0px 100px 80px 0px rgba(102, 124, 167, 0.07);
    }
    #cards-section .filters-wrapper .customers-filter {
        width: 100%;
    }
    #cards-section .filters-wrapper .customers-filter.show-filter .arrow {
        transform: rotate(180deg);
    }
    #cards-section .customers-filter .all-options {
        position: static;
    }
    #cards-section .customers-filter input[type="text"] {
        padding: 13px 20px;
        border-radius: 0;
        border-color: #DCDDE0;
        border-top: none;
        border-left: none;
        border-right: none;
    }
    #cards-section .filters-wrapper .customers-filter .arrow svg {
        width: 15px;
    }
    #cards-section #reset-filter {
        width: 122px;
        margin: 20px 20px 0;
        padding: 3px 14px;
        text-align: center;
    }
    #cards-section .cards-wrapper {
        margin-top: 28px;
        gap: 20px;
    }
    #cards-section .cards-wrapper .card-item {
        flex-basis: 100%;
        padding: 32px 32px 81.5px;
    }
    #cards-section .cards-wrapper .card-item .item-excerpt {
        font-size: var(--font-size-xl);
    }
    #cards-section .cards-nav {
        margin-top: 28px;
    }

    #success {
        padding: 40px 0;
    }
    #success .success-cards-wrapper {
        flex-wrap: wrap;
        gap: 16px;
        margin-top: 20px;
    }
    #success .success-card-item {
        flex-basis: 100%;
        padding-top: 20px;
        padding-bottom: 97px;
    }
    #success .success-card-item .item-title {
        font-size: var(--font-size-2xl);
    }
    #success .success-card-item .item-subtitle {
        margin-bottom: 6px;
        font-size: var(--font-size-base);
    }
    #success .success-card-item .tigera-btn {
        bottom: 29px;
        width: auto;
        white-space: nowrap;
    }

    #reviews {
        padding: 31px 0 38px;
    }
    #reviews .reviews-cards .review-card {
        padding-top: 30px;
    }
    #reviews .images-wrapper {
        flex-direction: column;
        margin: 8px auto 33px;
    }
    #reviews .images-wrapper img:first-child {
        margin-bottom: 10px;
    }
    #reviews .images-wrapper img:first-child,
    #reviews .images-wrapper img:first-child + img,
    #reviews .review-card + .review-card .images-wrapper img + img {
        max-width: 100%;
    }
    #reviews .review-card + .review-card .images-wrapper img:first-child {
        max-width: 120px;
        margin-bottom: 20px;
    }
    #reviews .review-btn {
        min-width: 90%;
        padding: 12px 15px;
    }

    #customers-slider {
        padding: 32px 0;
    }
    #customers-slider .subtitle {
        font-size: var(--font-size-md);
        line-height: 1.5;
    }
    #customers-slider .splide {
        margin: 35px 0 10px;
    }
    .splide__slide {
        text-align: center;
    }
}
