/*default css*/
:root {
    --orange: #ff5705;
    --black: #1f2230;
    --blue: #8d02cf;
    --font-gray: #666;
    --poppins: 'Poppins', sans-serif;
    --nunito: 'Nunito', sans-serif;
}

.pt-70 {
    padding-top: 70px;
}

.pb-30 {
    padding-bottom: 30px;
}

.pb-70 {
    padding-bottom: 70px;
}

/* dc tab styling */
.dc-tab-div {
    display: none;
}
.dc-tab-div.active {
    display: block;
}

/* sidebar - filtering area starts */
.filter-category,
.slider-section,
.delivery-time {
    padding: 30px;
    border: 1px solid #efefef;
    border-radius: 12px;
    background-color: #fff;
    margin-bottom: 25px;
    box-shadow: 0px 8px 16px 0px rgba(60, 110, 203, 0.1);
}

.services-sidebar .filter-category h1 {
    font-size: 32px;
    font-weight: 700;
    color: #333;
}

.delivery-time span,
.slider-section span,
.filter-category span {
    font-size: 24px;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 20px;
    display: block;
    border-bottom: 1px solid #efefef;
    padding-bottom: 12px;
}

.services-sidebar .select-item {
    display: flex;
    margin-bottom: 16px;
    align-items: center;
}

.selection-wrapper .select-item input[type="checkbox"] {
    width: 16px;
    height: 16px;
}

.services-sidebar .select-item label {
    font-size: 16px;
    font-weight: 400;
    color: #666;
    margin-left: 8px;
}

/* Range Slider Defult Css Start */

.range-slider {
    position: relative;
    width: 100%;
    height: 30px;
    margin: 30px 0;
}

/* Slider track (the base line) */

.slider-track {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 6px;
    background: #e0e0e0;
    transform: translateY(-50%);
    border-radius: 4px;
}

/* Colored range bar (between handles) */
.slider-range {
    position: absolute;
    top: 50%;
    height: 6px;
    background: var(--orange);
    transform: translateY(-50%);
    border-radius: 4px;
}

/* Slider handles */
.slider-handle {
    position: absolute;
    top: 50%;
    width: 18px;
    height: 18px;
    background: var(--orange);
    /* border: 2px solid var(--orange); */
    border-radius: 50%;
    cursor: pointer;
    transform: translate(-50%, -50%);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    touch-action: none;
    z-index: 2;
}

.slider-section .inputs {
    display: flex;
    justify-content: space-between;
}

.slider-section input {
    border: 1px solid #efefef;
    /* border-radius: 30px; */
    padding: 10px;
    text-align: center;
    background: #efefef;
    color: #666;
}

.slider-section input:focus {
    border-color: var(--orange);
}

.slider-section input[type="number"]:focus {
    outline: none;
    border: 1px solid var(--orange);
}

/* For Chrome, Safari, Edge, Opera */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* For Firefox */
input[type="number"] {
    -moz-appearance: textfield;
}

/* Range Slider Defult Css End */
/* sidebar - filtering area edns */

/*services area*/
.services-wrapper {
    border: 1px solid #ececec;
    box-shadow: 0px 8px 16px 0px rgba(60, 110, 203, 0.1);
    background-color: #fff;
    border-radius: 10px;
}

.service-images img {
    border-top-right-radius: 9px;
    border-top-left-radius: 9px;
    width: 100%;
    max-height: 270px;
    object-fit: cover;
}

.services-content {
    padding: 20px;
}

.service-meta {
    margin-bottom: 8px;
}

.service-meta span {
    font-size: 14px;
    color: var(--font-gray);
    letter-spacing: 1px;
    display: flex;
    align-items: center;
}

.service-meta span svg {
    margin-right: 5px;
}

.service-meta span strong {
    font-weight: 500;
}

.service-title h3 a {
    color: var(--black);
    font-size: 24px;
    font-weight: 600;
    text-decoration: none;
    line-height: 1.4em;
    margin-bottom: 25px;
    transition: 0.3s;
}

.service-title h3 a:hover {
    color: var(--orange);
}

.rating-delivery {
    font-size: 15px;
    margin-bottom: 5px;
    display: flex;
    justify-content: space-between;
}

.service-rating {
    color: var(--black);
    display: flex;
    align-items: center;
}

.service-rating span {
    color: var(--orange);
    display: inline-flex;
    align-items: center;
    margin-right: 4px;
}

.service-rating span svg {
    display: block;
    margin-right: 5px;
}

.service-delivery {
    display: inline-flex;
    align-items: center;
    color: var(--black);
}

.service-delivery svg {
    display: block;
    margin-right: 6px;
}

.service-delivery span {
    margin-left: 5px;
    font-weight: 600;
}

.service-details {
    padding: 20px;
    border-top: 1px solid #ececec;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.starting-price {
    font-size: 13px;
    text-transform: uppercase;
    color: #666;
    font-weight: 500;
}

.starting-price span {
    color: var(--orange);
    font-size: 18px;
    font-weight: 600;
    background: #ff570510;
    padding: 4px 8px;
    border-radius: 8px;
    margin-left: 8px;
    display: inline;
}

.service-btn {
    color: var(--black) !important;
    font-size: 14px !important;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: 0.3s;
}

.service-btn:hover {
    color: var(--orange) !important;
}

.service-btn svg {
    display: block;
    margin-left: 6px;
}

/* single service page styling starts */
.single-service-section {
    padding-top: 40px;
}

.single-service-section .dc-breadcrumbs {
    margin-top: 10px;
}

.dc-breadcrumbs nav ul {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
}

.dc-breadcrumbs nav ul li {
    display: flex;
    align-items: center;
}

.dc-breadcrumbs nav ul li:not(:last-child)::after {
    content: "";
    display: inline-block;
    width: 16px;
    height: 16px;
    background-image: url("../icons/chevrons-right.svg");
    background-size: contain;
    background-repeat: no-repeat;
    margin-right: 15px;
    margin-left: 15px;
}

.dc-breadcrumbs nav ul li svg {
    margin-right: 6px;
}

.dc-breadcrumbs nav ul li a {
    color: var(--black);
    text-decoration: none;
}

.dc-breadcrumbs nav ul li a:hover {
    color: var(--orange);
}

.single-service-title {
    margin-top: 20px;
}

.dc-heart-share {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    column-gap: 15px;
}

.dc-heart-share .heart-count,
.dc-heart-share .share-icon {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 10px;
    display: flex;
    align-items: center;
}

.dc-heart-share .heart-count span,
.dc-heart-share .share-icon span {
    font-size: 14px;
    text-transform: capitalize;
    margin-left: 6px;
}

.single-service-title h1 {
    font-size: 32px;
    font-weight: 700;
}

.single-service-main .rating-queue-badge {
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.single-service-main .queue-badge {
    color: #888;
    margin-left: 25px;
}

.single-service-gallery {
    margin-top: 20px;
}

.gallery_prev.slick-arrow,
.gallery_next.slick-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.15);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 99 !important;
    cursor: pointer;
}

.gallery_next.slick-arrow {
    right: -25px;
}

.gallery_prev.slick-arrow {
    left: -25px;
}

.slider-nav .slick-slide {
    cursor: pointer;
}

.slider.slider-nav {
    margin-top: 8px;
}

.slider-nav {
    margin-left: -4px;
    margin-right: -4px;
}

.slider-nav .slick-slide {
    padding-left: 4px;
    padding-right: 4px;
}

.slider-nav .slick-slide {
    opacity: 0.5;
}

.slider-nav .slick-slide.is-active {
    opacity: 1;
}

.single-service-description {
    margin-top: 40px;
}

.description-title h2 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 30px;
}

.service-description p {
    font-size: 16px;
    line-height: 1.7em;
    color: #666;
    font-weight: 400;
    margin-bottom: 15px;
}

.service-description h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    margin-bottom: 15px;
}

.service-description h1 {
    font-size: 30px;
}

.service-description h2 {
    font-size: 28px;
}

.service-description h3 {
    font-size: 26px;
}

.service-description h4 {
    font-size: 24px;
}

.service-description h5 {
    font-size: 22px;
}

.service-description h6 {
    font-size: 20px;
}

.service-description ul {
    margin-bottom: 15px;
}

.service-description ul li {
    font-size: 16px;
    color: #666;
    line-height: 1.7em;
}

/* single service page styling ends */

/* single service sidebar styling starts */
.single-service-sidebar {
    margin-left: 50px;
}

.tab-container {
    border: 1px solid #e4e4e4;
    margin-top: 20px;
}

.tab-menu {
    border-bottom: 1px solid #dadbdd;
}

.tab-menu ul {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin: 0;
    padding: 0;
}

.tab-menu ul > li {
    background-color: #fafafa;
    border-right: 1px solid #dadbdd;
    color: #666;
    font-weight: 700;
    padding: 16px;
    display: flex;
    flex: 1;
    justify-content: center;
    cursor: pointer;
}

.tab-menu ul > li:last-child {
    border-right: none;
}

.tab-menu ul > li.active {
    color: #222325;
    background-color: #ffffff;
    border-bottom: 3px solid #222325;
}

.tab-wrapper {
    padding: 0 24px;
}

.price-area {
    margin-top: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price-area > h3 {
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    margin: 0;
}

.price-area > span {
    font-size: 20px;
    font-weight: 400;
}

.tab-title {
    margin-top: 24px;
    margin-bottom: 10px;
}

.tab-title p {
    font-size: 16px;
    line-height: 1.5em;
    color: #666;
    font-weight: 400;
    margin-bottom: 15px;
}

.tab-title span {
    font-weight: 700;
}

.delivery-time span {
    font-size: 14px;
    font-weight: 600;
    color: #62646a;
}

.delivery-time span i {
    margin-right: 5px;
}

.revision-section {
    margin-left: 24px;
}

.feature-list > h4 {
    color: #404145;
    font-size: 14px;
    font-weight: 700;
    margin: 10px 0;
}

.feature-list ul li {
    color: #95979d;
    font-size: 14px;
}

.feature-list ul li:not(last-child) {
    margin-bottom: 5px;
}

.feature-list ul li span {
    font-size: 16px;
    margin-right: 4px;
}

.feature-list ul li span.active {
    color: #333;
}

.tab-footer-area {
    margin-top: 20px;
    margin-bottom: 18px;
}

.tab-footer-area .table-filter-btn {
    width: 100%;
    border: 1px solid transparent;
    border-radius: 4px;
    box-sizing: border-box;
    cursor: pointer;
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    line-height: 100%;
    padding: 12px 24px;
    text-align: center;
    text-decoration: none;
    background-color: var(--black);
    color: #fff;
    position: relative;
}

.tab-footer-area .table-filter-btn:hover {
    background-color: var(--black);
}

.tab-footer-area button span {
    position: absolute;
    right: 5%;
    font-weight: 400;
}

.tab-footer-area .compare-btn {
    background-color: transparent;
    border: none;
    width: 100%;
    text-align: center;
    color: var(--black);
    font-size: 14px;
    padding-top: 12px;
    cursor: pointer;
    font-weight: 500;
}

.tab-footer-area .compare-btn:hover {
    color: var(--black);
    background-color: transparent;
}

.tab-contact-section {
    height: 0px;
    margin-top: 20px;
    transition: 0.5s all;
    overflow: hidden;
}

.contact-wrapper {
    padding: 24px;
    border-radius: 12px;
    background-color: #fafafa;
}

.pkg_total_price {
    display: flex;
    justify-content: space-between;
    margin-bottom: 24px;
    color: #000;
    font-weight: 500;
    font-size: 16px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
}

.contact-wrapper input,
textarea {
    font-size: 14px;
    width: 100%;
    display: block;
    border: 1px solid #ececec;
    margin-bottom: 15px;
    padding: 10px 15px;
    border-radius: 4px;
}

.contact-wrapper textarea {
    resize: none;
    height: 80px;
}

.contact-wrapper input,
textarea:focus {
    outline: none;
}

.contact-wrapper form > button {
    font-size: 14px;
    width: 100%;
    background-color: #ff5705;
    border: none;
    color: #fff;
    padding: 10px 0;
    border-radius: 4px;
}

.contact-wrapper form > button:hover {
    background-color: #8d02cf;
}

/* single service page sidebar styling ends here */