/*================================================
Service Page css
=================================================*/
.service-card-in {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.service-cards:hover img {
    transform: scale(1.1);
}
.service-cards:hover {
    text-decoration: none;
}

.service-card-bottom {
    padding: 15px 20px;
    background-color: #fff;
}

/*==================================================
service-feature-list
=================================================*/

.service-feature ul {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.service-feature li {
    display: flex;
    align-items: flex-start;
    width: calc(50% - 10px);
    color: var(--my-secondary);
    font-weight: 500;
}

.service-feature li i {
    color: var(--my-primary);
    padding-right: 10px;
}

/*==================================================
faqs
=================================================*/
.faq-cards {
    border-radius: 10px !important;
    overflow: hidden;
    margin-bottom: 10px;
}

.faqs {
    background-color: #fff !important;
}

.faqs:hover {
    text-decoration: none;
    color: var(--my-secondary);
}

.faqs i {
    color: #fff;
    background-color: var(--my-secondary);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    border-radius: 50%;
}

/*==================================================
service-right
=================================================*/
.service-right {
    position: sticky;
    top: 0;
    right: 0;
}

.all-services-link li {
    border-bottom: 1px solid rgba(12, 84, 96, 0.34);
}

.all-services-link a {
    color: var(--my-secondary);
    padding: 10px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all .4s ease;
}

.all-services-link a:hover {
    text-decoration: none;
    color: var(--my-primary);
}

.all-services-link i {
    transform: rotate(-45deg);
    transition: all .4s linear;
}

.all-services-link a:hover i {
    transform: rotate(0deg);
}

