/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/

.services .section-title h1 {
    color: #996515;
    font-size: 30px;
}

.services .content .service-item {
    background-color: var(--surface-color);
    padding: 20px 30px;
    border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    border-left: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    position: relative;
}

.services .content .service-item .number {
    position: absolute;
    right: 10px;
    top: 10px;
    font-weight: 400;
    color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.services .content .service-item .service-item-icon {
    position: relative;
    margin-bottom: 20px;
    color: var(--accent-color);
}

.services .content .service-item .service-item-icon img {
    width: 50px;
}

.services .content .service-item .service-item-icon:before {
    position: absolute;
    content: "";
    transform: rotate(45deg);
    z-index: -1;
    left: -20px;
    border-top: 40px solid transparent;
    border-bottom: 40px solid transparent;
    border-right: 40px solid var(--accent-color);
    display: none;
}

.services .content .service-item .service-item-icon>span {
    color: var(--default-color);
    font-size: 4rem;
}

.services .content .service-item .service-item-content .service-heading {
    font-size: 20px;
    color: var(--default-color);
    font-weight: 400;
}

.services .content .service-item .service-item-content p {
    font-size: 15px;
}

@media (min-width: 769px) {
    .services .content [class^=col-]:nth-child(4n+4) .service-item {
        border-right: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    }
    .services .content [class^=col-]:nth-last-child(-n+4) .service-item {
        border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    }
}

@media (max-width: 768px) {
    .services .content [class^=col-]:nth-child(2n+2) .service-item {
        border-right: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    }
    .services .content [class^=col-]:last-child .service-item,
    .services .content [class^=col-]:nth-last-child(2) .service-item {
        border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    }
}

@media (max-width: 576px) {
    .services .content [class^=col-] .service-item {
        border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
        margin-bottom: 10px;
    }
}


/*--------------------------------------------------------------
# Services 2 Section
--------------------------------------------------------------*/

.services-2 {
    overflow: visible;
    margin-bottom: 200px;
}

.services-2 .section-title {
    text-align: left;
}

.services-2 .section-title h1 {
    color: #ffffff;
    text-transform: uppercase;
    font-size: 30px;
    text-align: center;
}

.services-2 .section-title p {
    color: var(--contrast-color);
}

.services-2 .services-carousel-wrap {
    position: relative;
    margin-bottom: -200px;
}

.services-2 .swiper-wrapper {
    height: auto;
}

.services-2 .service-item {
    position: relative;
    overflow: hidden;
}

.services-2 .service-item:before {
    content: "";
    background-color: color-mix(in srgb, var(--background-color), transparent 50%);
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    position: absolute;
    opacity: 0;
    visibility: hidden;
    z-index: 1;
    transition: 0.3s all ease;
}

.services-2 .service-item img {
    transition: 0.5s all ease;
    transform: scale(1);
}

.services-2 .service-item .service-item-contents {
    z-index: 9;
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    transition: 0.3s all ease;
    transform: translateY(100%);
    opacity: 0;
    visibility: hidden;
}

.services-2 .service-item .service-item-contents .service-item-category {
    color: var(--accent-color);
    text-transform: uppercase;
}

.services-2 .service-item .service-item-contents .service-item-title {
    color: var(--contrast-color);
    margin-bottom: 0;
}

.services-2 .service-item:hover:before {
    opacity: 1;
    visibility: visible;
}

.services-2 .service-item:hover .service-item-contents {
    transform: translateY(0%);
    opacity: 1;
    visibility: visible;
}

.services-2 .service-item:hover img {
    transform: scale(1.3);
    -webkit-transform: scale(1.3);
    -moz-transform: scale(1.3);
    -ms-transform: scale(1.3);
    -o-transform: scale(1.3);
}

.services-2 .navigation-prev,
.services-2 .navigation-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9;
    width: 46px;
    height: 46px;
    background: #996515;
    background-color: none;
    border: none;
    transition: 0.3s all ease;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}

.services-2 .navigation-prev i,
.services-2 .navigation-next i {
    font-size: 2rem;
}

.services-2 .navigation-prev:hover,
.services-2 .navigation-next:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
}

.services-2 .navigation-prev {
    left: 10px;
}

.services-2 .navigation-next {
    right: 10px;
}

.services-2 .swiper {
    padding-bottom: 50px;
}

.services-2 .swiper-pagination {
    bottom: 0px;
}

.services-2 .swiper-pagination .swiper-pagination-bullet {
    border-radius: 0;
    width: 20px;
    height: 4px;
    background-color: color-mix(in srgb, var(--background-color), transparent 80%) !important;
    opacity: 1;
}

.services-2 .swiper-pagination .swiper-pagination-bullet-active {
    background-color: var(--accent-color) !important;
}