/*================================
Services Tab Area
===================================*/
:root {
    --headerFonts: "Poppins", sans-serif;
    --bodyFonts: "Roboto", sans-serif;
    --orangeColor: #f85f0a;
    --lightColor: #f88240;
    --greenColor: #0ebc40;
    --titleColor: #00042e;
    --bodyColor: #4e4e4e;
    --whiteColor: #ffffff;
    --fontSize: 16px;
    --transition: .5s;
}
.default-btn {
    padding: 10px 30px;
    color: var(--whiteColor);
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
    text-transform: capitalize;
    background-color: var(--orangeColor);
    border: none;
    outline: none;
}
.border-radius-5 {
    border-radius: 5px !important;
}

.services-area-two .section-title h2 {
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
}

.services-tab .tabs {
    margin: 0;
    padding: 0;
    list-style: none;
    text-align: center;
}

.services-tab .tabs li {
    display: inline-block;
    line-height: initial;
    margin-right: 25px;
}

.services-tab .tabs li a {
    display: inline-block;
    position: relative;
    color: var(--blueColor);
    padding: 15px 30px;
    background-color: #f0eeee;
    border-radius: 5px;
}

.services-tab .tabs li.active a {
    background-color: var(--orangeColor);
    color: var(--whiteColor);
}

.services-tab .tabs li.current a {
    background-color: var(--orangeColor);
    color: var(--whiteColor);
}

.tab .tabs_item {
    display: none;
}

.tab .tabs_item:first-child {
    display: block;
}

.services-tab-img a {
    display: block;
}

.services-tab-img a img {
    border-top-left-radius: 100px;
    border-bottom-right-radius: 100px;
}

.services-tab-content h2 {
    font-size: 35px;
    margin-bottom: 15px;
}

.services-tab-content p {
    margin-bottom: 20px;
}

.services-tab-content .services-tab-list {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.services-tab-content .services-tab-list li {
    display: block;
    font-size: 18px;
    color: var(--titleColor);
    margin-bottom: 10px;
    font-weight: 500;
    transition: var(--transition);
}

.services-tab-content .services-tab-list li i {
    color: var(--orangeColor);
    margin-right: 5px;
    position: relative;
    top: 3px;
    transition: var(--transition);
}

.services-tab-content .services-tab-list li:hover {
    color: var(--orangeColor);
    letter-spacing: 0.25px;
    margin-left: 2px;
}

.services-tab-content .services-tab-list li:hover i {
    color: var(--titleColor);
}

.services-tab-content .default-btn {
    margin-top: 15px;
}

.services-tab-img {
    margin-bottom: 30px;
}

/*================================
Services Tab Area End
===================================*/