#main-slider .item {
    background-image: url(/images/slider/service.jpg);
}
.carousel-content {
    margin-top: 28%;
    width: 44%;
}
.carousel-content p {
    color: #000;
}
.section-header {
    text-align: center;
    margin-bottom: 20px;
}
.stroll-container {
    overflow: hidden;
    white-space: nowrap;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 36px;
}
.stroll-container p {
    margin-top: 0;
    margin-bottom: 0;
}
.stroll-container p span {
    display: inline-block;
    height: 6px;
    border-radius: 6px;
    margin: 4px 2px 0 0;
}
.item1:nth-child(1) {
    background: #ff5a27;
    width: 6px;
    animation: width-change1 1.2s linear infinite alternate;
}

.item1:nth-child(2) {
    background: #ff5a27;
    width: 48px;
    animation: width-change2 1.2s linear infinite alternate;
}
@keyframes width-change1 {
    0% {
        width: 6px;
    }
    100% {
        width: 48px;
    }
}

@keyframes width-change2 {
    0% {
        width: 48px;
    }
    100% {
        width: 6px;
    }
}
.thumbnail {
    background-color: #f5f8fd;
}
.thumbnail .caption > span {
    color: #d1d1d1;
    background:transparent;
    font-size: 13px;
    vertical-align: middle;
    position: relative;
    top: -4px;
    border: 1px solid #d1d1d1;
    border-radius: 50%;
    height: 31px;
    width: 30px;
    display: inline-block;
    text-align: center;
    line-height: 27px;
    margin-right: 15px;
}
.thumbnail:hover {
    transform: scale(1.05);
}
.thumbnail:hover .caption > span {
    color: #f6f6f5;
    background:#fb2415;
}
.thumbnail > h3 {
    font-size: 20px;
    display: inline-block;
    color:#022940;
}