.ct-testimonial-carousel17 {
    @media #{$max-sm} {
        .item--image {
            margin-bottom: 32px;
        }
    }
    .item-rating {
        line-height: 1;
        color: #ffb400;
        margin-bottom: 30px;
        i {
            margin-right: 3px;
        }
    }
    .item--description {
        font-size: 18px;
        line-height: 35px;
        color: #000c3f;
        margin-bottom: 30px;
    }
    .item--title {
        margin-bottom: 5px;
        font-size: 20px;
    }
    .item--position {
        font-size: 15px;
        color: $primary_color;
    }
    .item--inner {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        margin: 0 -25px;
        > div {
            padding: 0 25px;
            width: 50%;
            @media #{$max-sm} {
                width: 100%;
            }
            &.item--holder {
                padding-bottom: 70px;
                @media #{$max-sm} {
                    padding-bottom: 0;
                }
            }
        }
    }
    .ct-slick-carousel[data-arrows="true"] {
        padding-bottom: 0;
        @media #{$max-sm} {
            padding-bottom: 90px;
        }
        .slick-arrow {
            height: 53px;
            width: 53px;
            line-height: 53px;
            color: #000712;
            @include box-shadow(none);
            background-color: #eef1fe;
            z-index: 99;
            &:before {
                font-size: 18px;
            }
            &:after {
                display: none;
            }
            &:hover {
                background-color: $primary_color;
                background-image: none;
                color: #fff;
            }
            &.slick-arrow {
                margin-left: 50px;
                @media #{$max-sm} {
                    margin-left: -36px;
                }
            }
            &.slick-next {
                margin-left: 118px;
                @media #{$max-sm} {
                    margin-left: 36px;
                }
            }
        }
    }
}

.ct-pricing-layout4 {
    background-color: #fff;
    padding: 0 30px 60px 30px;
    @include box-shadow(0 0px 13px rgba(#000b4e, 0.05));
    text-align: center;
    .pricing-title {
        span {
            display: inline-block;
            line-height: 69px;
            margin-top: -17px;
            padding: 0 20px;
            min-width: 200px;
            text-transform: uppercase;
            color: #fff;
            font-size: 20px;
            font-weight: 700;
            @include font-family-heading($heading_default_font);
            @include background-horizontal($third_color, $four_color);
            position: relative;
            @media #{$max-md} {
                min-width: 160px;
                font-size: 18px;
            }
        }
        svg {
            position: absolute;
            top: 0;
            left: -5px;
            fill: darken($third_color, 0.2);
        }
    }
    .item--icon {
        margin-top: 54px;
        margin-bottom: 8px;
    }
    .pricing-price {
        font-size: 44px;
        font-weight: 700;
        color: #000c3f;
        @include font-family-heading($heading_default_font);
        margin-bottom: 11px;
        @media #{$max-md} {
            font-size: 34px;
        }
    }
    .pricing-feature {
        list-style: none;
        margin-bottom: 30px;
        color: #555;
        li + li {
            margin-top: 9px;
        }
    }
    .pricing-button .btn {
        line-height: 44px;
        border-radius: 44px;
        box-shadow: none;
        padding: 0 26px;
    }
    &:not(.highlight) {
        .pricing-button .btn {
            background: $third_color;
            &:hover, &:focus {
                background: $four_color;
            }
        }
    }
    &.highlight {
        @include box-shadow(0 25px 49px rgba(#000b4e, 0.16));
        .pricing-title {
            span {
                @include background-horizontal($gradient_color_from, $gradient_color_to);
            }
            svg {
                fill: darken($gradient_color_from, 0.2);
            }
        }
    }
}

.ct-contact-info1.style3  {
    text-align: center;
    li {
        display: block;
    }
    .ct-contact-icon {
        margin: 0 0 42px;
        width: 44px;
        height: 44px;
        line-height: 44px;
        position: relative;
        z-index: 1;
        i {
            color: #fff;
        }
        &:before {
            content: '';
            z-index: -1;
            width: 100%;
            height: 100%;
            @include background-gradient-rotate(40deg, $gradient_color_from, $gradient_color_to);
            position: absolute;
            top: 0;
            left: 0;
            @include transform(rotate(45deg));
        }
    }
    .ct-contact-content {
        display: block;
        font-size: 16px;
        line-height: 1.625;
        color: #000c3f;
        @media #{$max-md} {
            font-size: 13px;
            line-height: 24px;
        }
    }
}

.ct-blog-carousel-layout1.style5 {
    .entry-featured {
        img {
            -webkit-filter: grayscale(0%);
            filter: grayscale(0%);
        }
    }
    .entry-meta i {
        color: $third_color;
    }
    .entry-title {
        color: #000c3f;
    }
    .entry-holder {
        position: relative;
        z-index: 1;
        &:before {
            content: '';
            position: relative;
            @include border-radius(5px);
            @include background-horizontal($gradient_color_from, $gradient_color_to);
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            @include transition(all 300ms linear 0ms);
            opacity: 0;
        }
    }
    .entry-readmore a {
        @include background-horizontal(#fff, #fff);
    }
    .grid-item-inner:hover {
        .entry-holder {
            @include box-shadow(none);
            &:before {
                opacity: 1;
            }
        }
        .entry-title {
            color: #fff;
        }
    }
}