/*-Service-Banner-*/
.service-hero{
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 88px;
    grid-row-gap: 40px;
    align-items: center;
}

.descp{
    max-width: 1000px;
    margin-top: 24px;
    margin-bottom: 34px;
    margin-left: 5px;
    border-left: 4px solid var(--brand-primary-color);
    padding-left: 16px;
}

.trust-line{
    font-size:17px;
    max-width: 370px;
}

.trust-line span{
    color: #f2aa00;
}

.trust-line a{
    font-weight: 600;
    text-decoration: underline;
}

.trust-line a:hover{
    text-decoration: none;
}

.hero-image {
    border-radius: 8px;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.1),
        0 8px 16px rgba(0, 0, 0, 0.06);
    border: none;
    width: 100%;
    height: auto;
}

@media only screen and (max-width:1080px){
    .service-hero {
        grid-template-columns: 1fr;
    }
}

@media only screen and (max-width:999px){
    .service-hero {
        text-align: center;
    }
    
    .descp{
        border-left: 0px;
        padding-left: 0px;
        margin-left: 0px;
    }
    
    .service-hero .trust-line {
        margin: auto;
        margin-top: auto;
        margin-top: 30px;
    }
}

@media only screen and (max-width:767px){
    .trust-line{
        font-size:15px;
    }

}

/*-Section-2-*/
.help-head{
    text-align:center;
}
.help-head p{
    max-width: 800px;
    margin:auto;
    margin-top: 20px;
}


/*-before-after-*/
.before-after-card {
    position: relative;
    width: 100%;
    overflow: hidden;
    max-width: 100%;
    margin: 44px 0px;
    border-radius: 7px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08), 0 12px 32px rgba(0, 0, 0, 0.15);
    transition: transform 0.6s ease, box-shadow 0.6s ease;
}

.before-image,
.after-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
}

.before-image img,
.after-image img {
    width: 100%;
    height: auto;
    display: block;
}

.after-image {
    clip-path: inset(0 100% 0 0); /* Initially hide the after image */
}

.slider {
    position: absolute;
    top: 0;
    left: 50%;
    width: 2px;
    background-color: #000;
    cursor: ew-resize;
    height: 100%;
}

.slider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -9px;
    width: 20px;
    height: 20px;
    background-color: #000;
    border-radius: 50%;
    transform: translateY(-50%);
    cursor: ew-resize;
}

@media only screen and (max-width:767px){
    .before-after-card {
        margin: 40px 0px 50px 0px;
    }
    
    .slider::before {
        width: 15px;
        height: 15px;
        left: -7px;
    }
}

/*-facts-check-*/
.factcard{
    display: grid;
    grid-template-columns: auto 1fr auto 1fr auto;
    align-items: center;
    grid-row-gap: 30px;
    grid-column-gap: 30px;
    max-width: 1100px;
    margin: auto;
}

.factcols{
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    grid-column-gap: 20px;
    grid-row-gap: 5px;
    font-size: 16px;
}

.fact_numb{
    font-size: 45px;
    font-weight: 600;
}


.fact_hr{
    background-color: #c6c3ba;
    position: relative;
    width: 100%;
    height: 1px;
}

@media only screen and (max-width: 899px) {
    .factcols {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
    }
    
    .fact_numb{
        font-size: 35px;
    }
}

@media only screen and (max-width: 767px) {
    .factcard{
        grid-template-columns: 1fr;
    }
    .factcols{
        display: flex;
        justify-items: center;
        align-items: center;
        justify-content: center;
        text-align: start;
    }
    .fact_hr {
        width: 240px;
        margin:auto;
    }
}

/*-sub-heading-*/
.section-label {
    position: absolute;
    top: 5px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    display: flex;
    align-items: center;
    color: #808080;
}

.section-label::before {
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    background-color: #a6a6a6;
    border-radius:50%;
    margin-right: 6px;
}

.section-label::after {
    content: "";
    flex:1;
    height: 1px;
    background:linear-gradient(to right, #a6a6a6, transparent);
    margin-left: 8px;
    width: 50px;
}
/*-sub-heading-*/

/*-services-*/
.fixed-2cols{
    display: grid;
    grid-template-columns: 0.31fr 1fr;
    grid-row-gap: 44px;
}
.service-cont{
    display: grid;
    grid-template-columns: 0.31fr 1fr;
}

.service-cols{
    grid-column: 2;
    display: grid;
    grid-template-columns: 1fr 0.45fr;
    grid-column-gap: 44px;
    grid-row-gap: 44px;
    align-items: center;
    justify-content: space-between;
}

.service-col-1{
    display: flex;
    flex-direction: column;
    grid-row-gap: 1.1rem;
    font-size: 2rem;
    position: relative;
}

.service-col-1 h3 {
    position: relative;
    cursor: pointer;
}

.service-col-1 .service-item p {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  margin-top: 12px;
  margin-left: 5px;
  border-left: 4px solid var(--brand-primary-color);
  padding-left: 16px;
  margin-bottom: 5px;
  position: absolute;
  z-index: -1;
}

.service-col-1 .service-item:hover p {
    opacity: 1;
    z-index: 1;
    visibility: visible;
    position: relative;
    margin-top: 12px;
    margin-left: 5px;
    border-left: 4px solid var(--brand-primary-color);
    padding-left: 16px;
    margin-bottom: 5px;
}

.service-col-1 a span{
    color:var(--main);
    transition: all 0.2s ease;
}

.service-col-1 a:hover span{
    color:var(--hover);
    font-weight: 500;
}

.service-btm-msg{
    grid-column: 2;
    display: flex;
    grid-row-gap: 24px;
    align-items: flex-start;
    justify-content: space-between;
    flex-direction: column;
}

.service-archive a{
    color:var(--blue-color);
    font-weight:600;
}

@media only screen and (max-width:1080px){
    .fixed-2cols{
        grid-template-columns: 1fr;
    }
    
    .service-cont {
        grid-template-columns: 0.07fr 1fr;
    }
    
}

@media only screen and (max-width: 768px) {
    .service-cont {
        grid-template-columns: 1fr;
    }
    .service-cols {
        grid-column: 1;
        grid-template-columns: 1fr;
        align-items: flex-start;
    }
    .service-btm-msg{
        grid-column: 1;
        justify-content: center;
        text-align: center;
        align-items: center;
    }
}

/*-sec-with-faq-*/
.col2-cont{
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 100px;
}

.col-faq {
    margin-top:150px;
}

.accord_list{
    border-bottom: var(--outline);
}

.accord_list dt {
    font-weight: 700;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
    padding-top: 24px;
    padding-bottom: 24px;
    border-top: var(--outline);
}

.accord_list dt::after {
    content: "+";
    position: absolute;
    right: 0;
    font-size: 20px;
    transition: transform 0.3s ease;
}

.accord_list dt.active::after {
    content: "-";
    transform: rotate(180deg);
}

.accord_list dd {
    margin-left: 0px;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    color: inherit;
    transition: max-height 0.4s ease, opacity 0.4s ease;
}

.accord_list dd.open {
    margin-bottom: 24px;
    max-height: 1100px;
    opacity: 1;
}

.accord_list dd ul,
.accord_list dd ol{
    display: grid;
    grid-template-columns: 1fr;
    grid-row-gap: 4px;
    margin-top: 10px;
}

.accord_list dd ul li,
.accord_list dd ol li{
    list-style-type: square;
    margin-left: 24px;
}

@media only screen and (max-width: 1080px) {
    .col2-cont {
        grid-template-columns:1fr;
    }
    .col-faq {
        margin-top: 40px;
    }
}

/*-our-approach-*/
.appr_list{
    display: grid;
    grid-template-columns: 1fr;
    grid-row-gap: 54px;
    grid-column-gap: 54px;
    max-width: 750px;
    margin: 50px auto 50px 0px;
}

.appr_list li {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-column-gap: 20px;
}

.appr_list li img{
    margin-top: 4px;
}
.appr_list li h3{
    margin-bottom:10px;
}

.approach-cta{
    display: grid;
    grid-template-columns: 1fr;
    grid-row-gap: 24px;
    max-width: 700px;
}
@media only screen and (max-width:1080px){
    .appr_list li {
        grid-template-columns: 0.14fr 1fr;
    }
}


@media only screen and (max-width:767px){
    .approach-cta{
        justify-items: center;
        text-align: center;
    }
}

/*-testimonial-*/
.review-cont{
    background:red;
    border-radius:10px;
    padding: 80px;
    margin-left: 80px;
    margin-right: 80px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f0f4ff, #e0e7ff, #f8f9ff);
    background-size: 600% 600%;
    animation: gradientShift 15s ease infinite;
}
@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.review-cont svg{
    position: absolute;
    top: -80px;
    color: #cdd2e3;
}

.review-cols{
    display: flex;
    grid-column-gap: 104px;
    grid-row-gap: 54px;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: 134px;
}

.review-text{
    position: relative;
    font-size: 36px;
    font-weight: 500;
    color: inherit;
    max-width: 900px;
}

.review-cl{
    display: block;
    font-size: 22px;
    font-weight: 600;
}

.about-cl{
    color:var(--d-text);
}

@media only screen and (max-width: 1080px) {
    .review-cont{
        margin-left: 0px;
        margin-right: 0px;
        padding: 60px;
    }
}

@media only screen and (max-width: 768px) {
    .review-cont{
        margin-left: 0px;
        margin-right: 0px;
        padding:30px;
    }
    .review-cont svg{
        width:190px;
    }
    
    .review-cols {
        flex-direction: column;
        align-items: inherit;
    }
    
    .review-text{
        font-size: 24px;
    }
    .review-cl-info{
        display: flex;
        align-items: flex-end;
        justify-content: space-between;
        grid-column-gap: 44px;
    }
    .review-cl-info img{
        width:90px;
    }
    .review-cl{
        font-size: 15px;
    }
    .about-cl{
        font-size: 13px;
    }
}

/*-Service-blog-*/
.service-blog-cont{
    display: grid;
    grid-template-columns: 2fr 0.1fr;
    grid-column-gap: 105px;
    grid-row-gap: 34px;
    margin-bottom: 80px;
}

/*-services-blog-content-*/
.single_content{
    overflow: hidden;
}

.single_content figure{
    margin: 24px 0px;
}

.single_content img{
    width:100%;
    width:-moz-available;
    width: -webkit-fill-available;
    margin: 24px 0px;
    border-radius: 8px;
}

.single_content h2{
    font-size: 50px;
    margin-top: 50px;
    margin-bottom: 15px;
}

.single_content h2:first-child{
    margin-top: 0px;
}

.single_content h3{
    font-size: 32.83px;
    margin-top: 40px;
    margin-bottom: 15px;
}
.single_content h4{
    margin-top: 30px;
    margin-bottom: 15px;
}
.single_content h5,
.single_content h6{
    margin-top: 30px;
    margin-bottom: 15px;
}

.single_content p,
.single_content ul,
.single_content ol{
    margin-bottom: 20px;
}

.single_content p:last-child{
    margin-bottom:0px;
}

.single_content ul li,
.single_content ol li{
    list-style-type: square;
    margin-left: 21px;
    margin-bottom: 15px;
}

.single_content ul li:first-child,
.single_content ol li:first-child{
    margin-top:20px;
}
.single_content ul li:last-child,
.single_content ol li:last-child{
    margin-bottom:40px;
}

.single_content a {
    color: var(--hover);
}
.single_content a:hover {
    text-decoration:underline;
}

.single_content blockquote{
    display: block;
    margin: 1.5rem;
    padding-left: 1rem;
    border-left: 4px solid #5c6ac4;
}

@media only screen and (max-width:1080px){
    .single_content h2{
        font-size: 38px;
    }
}

@media only screen and (max-width:767px){
    .single_content h2{
        font-size: 32px;
    }
    
    .single_content h3{
        font-size: 28px;
    }
}

/*-table-of-content-*/
.dtoc{
    width: 220px;
    position: sticky;
    top: 40px;
    bottom: 40px;
}

.dtoc p{
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 700;
    padding-bottom: 20px;
    border-bottom: var(--outline);
    margin-bottom: 20px;
}

#toc-list{
    display: grid;
    grid-template-columns: 1fr;
    grid-row-gap: 12px;
}

#toc-list a{
    font-size: 16px;
    font-weight: 500;
    display: flex;
    line-height: 1.2;
    transition: color 0.3s;
}

#toc-list a:hover{
    font-weight: 700;
    color: var(--main);
}

#toc-list a.active {
    font-weight: 700;
    color: var(--main);
}

@media only screen and (max-width:1080px){
    .service-blog-cont {
        display: flex;
        flex-direction: column-reverse;
        margin-bottom: 50px;
    }

    .dtoc{
        width: auto;
    }
    .dtoc p {
        position: relative;
        cursor: pointer;
        transition: color 0.3s ease;
    }
    .dtoc p::after {
        content: "+";
        position: absolute;
        right: 0;
        font-size: 20px;
        color: var(--d-text);
        transition: transform 0.3s ease, color 0.3s ease;
    }
    .dtoc p.active::after {
        content: "-";
        transform: rotate(180deg);
    } 
    #toc-list.open {
        max-height: 700px;
        opacity: 1;
        overflow: hidden;
        overflow-y: visible;
        transition: max-height 0.4s ease, opacity 0.4s ease;
    }
    #toc-list {
        margin-left: 0px;
        max-height: 0;
        opacity: 0;
        overflow: hidden;
        transition: max-height 0.4s ease, opacity 0.4s ease;
    }
}

/*-content-table-*/
table {
    width: fit-content;
    border-collapse: collapse;
    border-spacing: 0;
    font-family: inherit;
    font-size: 17px;
    border-radius: .375rem;
    background: var(--bg);
    overflow: hidden;
    margin-bottom: 24px;
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  -webkit-overflow-scrolling: touch;
}

th, td {
  padding: 10px 15px;
  text-align: left;
  border: var(--outline);
}

table thead {
    background: #b0acac;
}

th:first-child {
  border-top-left-radius: .375rem;
}

th:last-child {
  border-top-right-radius: .375rem;
}

tr:last-child td:first-child {
  border-bottom-left-radius: .375rem;
}

tr:last-child td:last-child {
  border-bottom-right-radius: .375rem;
}


@media screen and (max-width: 767px) {
  table {
      width:100%;
    font-size: 14px;
  }
}

/*-related-articles-*/
.insights-top{
    display: flex;
    justify-content: space-between;
    align-items: center;
    grid-column-gap: 44px;
    margin-bottom: 13px;
}

.insight-head{
    font-size: 38.4px;
    font-family: var(--main-font);
    font-weight: normal;
}

.article-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-column-gap: 24px;
    grid-row-gap: 24px;
}

.article-list article{
    position: relative;
}
.article-list .entry-header {
    display: flex;
    flex-direction: column;
    grid-row-gap: 10px;
    margin-top: 20px;
}

.article-thumbnail{
    width: 100%;
    width: -webkit-fill-available;
}

.article-list .entry-title{
    font-size:30px;
}

.article-list .entry-title a::after{
    bottom: 0;
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    z-index: 2;
}

.article-list .entry-title a:hover{
    color: var(--hover);
    text-decoration: underline;
}

.article-list .entry-summary{
    font-size:18px;
}

.article-list .entry-meta{
    display: flex;
    align-items: center;
    gap: 11px;
}

.article-list .entry-meta span{
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
}

.article-list .reading-time::before{
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    background-color: #a6a6a6;
    border-radius: 50%;
    margin-right: 11px;
}

@media only screen and (max-width:768px){
    .insight-head{
        font-size: 30px;
    }
    .article-list {
        grid-template-columns: repeat(1, 1fr);
    }
    
    .article-list .entry-title{
        font-size:28px;
    }
    
    .article-list .entry-summary{
        font-size:16px;
    }
    
    .article-list .entry-meta span{
        font-size: 16px;
    }
}

/*-horizontal-hero-*/
.sub-service-hero{
    display: grid;
    /*grid-template-columns: 1fr 1.1fr;*/
    grid-column-gap: 68px;
    grid-row-gap: 20px;
    align-items: start;
    grid-template-columns: 1fr;
    max-width: 600px;
    margin: auto;
}

.sub-service-hero .entry-summary{
    max-width: 800px;
    justify-items: center;
    margin-bottom: 34px;
}

@media only screen and (max-width:999px){
    .sub-service-hero{
        grid-template-columns: 1fr;
        justify-items: center;
        align-items: center;
        text-align: center;
    }
    .sub-service-hero .trust-line{
        margin:auto;
        margin-top:30px;
    }
}

/*-two-columns-*/
.img-h-vlist{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-column-gap: 74px;
    grid-row-gap: 74px;
    align-content: space-between;
    margin-top:54px;
    margin-bottom:54px;
}

.img-h-vlist h3{
    font-size:32px;
    margin-bottom: 12px;
    margin-top: 10px;
}

.img-h-vlist span{
    font-size: 40px;
    font-weight: 700;
    color: var(--d-text);
}

@media only screen and (max-width:768px){
    .img-h-vlist{
        grid-template-columns: 1fr;
    }
    
    .img-h-vlist li{
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .img-h-vlist h3{
        font-size: 25px;
    }
}

/*-Pricing-plans-*/
.plan-cont{
    display: grid;
    grid-template-columns: 1fr 2fr;
    grid-column-gap: 54px;
    grid-row-gap: 24px;
    margin-top: 44px;
}

.plan-col1, .plan-col2{
    padding: 34px;
    border-radius: 8px;
}

.plan-col1{
    background: #f7f7f7;
}

.plan-col2{
    background: hsl(0deg 1.56% 21.76%);
    color: #eaeaea;
}

.plan-title{
    width: fit-content;
    border: var(--outline);
    padding: 4px 7px;
    border-radius: 5px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 600;
    font-size: 12px;
}

.plan-col2 .plan-title{
    color: #aaa;
    border: 1px solid #484848;
}

.plan-price{
    display: block;
    font-family: var(--main-font);
    font-size: 50px;
    margin-top: 15px;
    color: var(--hover);
}

.plan-price span{
    font-size: 30px;
    font-family: 'Figtree';
    font-weight: 700;
    background-image: linear-gradient(
    to bottom,
    #FF9933 0%, /* Saffron */
    #FF9933 33.3%,
    #FFFFFF 33.3%, /* White */
    #FFFFFF 66.6%,
    #138808 66.6%, /* Green */
    #138808 100%
  );
  
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.plan-price small{
    font-size: 22px;
    font-weight: 500;
    margin-left: 5px;
}

.plan-ftr {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr;
    grid-row-gap: 10px;
    border-top: var(--outline);
    border-bottom: var(--outline);
    padding: 24px 0px;
    margin: 24px 0px;
}

.plan-ftr li {
    position: relative;
    padding-left: 26px;
}

.plan-ftr li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    color: #4CAF50;
    font-weight: bold;
    width: 17px;
    height: 17px;
    object-fit: cover;
    background-repeat: no-repeat;
    margin-top: 4px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath d='M 26.980469 5.9902344 A 1.0001 1.0001 0 0 0 26.292969 6.2929688 L 11 21.585938 L 4.7070312 15.292969 A 1.0001 1.0001 0 1 0 3.2929688 16.707031 L 10.292969 23.707031 A 1.0001 1.0001 0 0 0 11.707031 23.707031 L 27.707031 7.7070312 A 1.0001 1.0001 0 0 0 26.980469 5.9902344 z' fill='%23555555'/%3E%3C/svg%3E");
}

.plan-col2 .plan-ftr{
    display:flex;
    flex-wrap: wrap;
    grid-column-gap: 20px;
    grid-row-gap: 15px;
    border-top: 1px solid #424242;
    border-bottom: 1px solid #424242;
}

.plan-col2 .plan-ftr li::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath d='M 26.980469 5.9902344 A 1.0001 1.0001 0 0 0 26.292969 6.2929688 L 11 21.585938 L 4.7070312 15.292969 A 1.0001 1.0001 0 1 0 3.2929688 16.707031 L 10.292969 23.707031 A 1.0001 1.0001 0 0 0 11.707031 23.707031 L 27.707031 7.7070312 A 1.0001 1.0001 0 0 0 26.980469 5.9902344 z' fill='%23909090'/%3E%3C/svg%3E");
}

.plan-cont .btn{
    width: 100%;
    max-width: -moz-available;
    max-width: -webkit-fill-available;
    justify-content: center;
}

.plan-col2 .btn{
    background: var(--white);
    color: var(--main);
}

.plan-col2 .btn:hover{
    background-color: var(--hover);
}

@media only screen and (max-width:999px){
    .plan-cont {
        grid-template-columns: 1fr;
    }
}

/*-grid-columns-3-services-*/
.grid-col3-service{
    list-style: none;
    margin: 44px 0px;
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 1px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.grid-col3-service li {
    background: var(--white);
    padding: 1.5rem;
    position: relative;
}

.grid-col3-service li:hover {
    background: var(--brand-secondary-color);
}

.grid-col3-service h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}


@media only screen and (max-width:767px){
    .grid-col3-service{
        grid-template-columns: repeat(2,1fr);
    }
}

/*-vertical-scroll-services-*/
/*-services-*/
.serv-list{
    margin-top:54px;
    margin-bottom:54px;
}

.serv-list li:first-child{
    border-top: var(--outline);
}

.serv-list li{
    padding: 44px 0px;
    border-bottom: var(--outline);
}

.serv-list li{
    display: grid;
    margin-bottom: 5px;
    grid-template-columns: 2fr 1fr;
    grid-row-gap: 20px;
    grid-column-gap: 44px;
}

/*-sticky-aside-*/
.sticky-sec{
    display: grid;
    grid-template-columns: 1fr;
    align-content: center;
    justify-items: center;
    grid-row-gap: 30px;
    max-width: 500px;
    margin: auto;
    text-align: center;
}


@media only screen and (max-width:1080px){
    .serv-list{
        margin-top: 34px;
        margin-bottom: 34px;
    }
    .serv-list li{
        grid-template-columns: 2fr 1.6fr;
        grid-column-gap: 24px;
        padding: 34px 0px;
    }
}

/*-Video-*/
.video-item {
    margin: 50px 0px;
    border-radius:7px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08), 0 12px 32px rgba(0, 0, 0, 0.15);
    transition: transform 0.6s ease, box-shadow 0.6s ease;
}

/*-Grid-3x3-Columns-with-empty-space-*/
.grid-cr3-blank{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    max-width: 1100px;
    margin:auto;
    align-content: space-between;
    margin-bottom:54px;
}

.grid-cr3-blank li{
    padding:32px;
}

.grid-cr3-blank li:nth-child(1),
.grid-cr3-blank li:nth-child(2),
.grid-cr3-blank li:nth-child(3){
    border-bottom:var(--outline);
}

.grid-cr3-blank li:nth-child(6),
.grid-cr3-blank li:nth-child(7),
.grid-cr3-blank li:nth-child(8){
    border-top:var(--outline);
}

.grid-cr3-blank li:nth-child(1),
.grid-cr3-blank li:nth-child(4),
.grid-cr3-blank li:nth-child(6){
    border-right:var(--outline);
}

.grid-cr3-blank li:nth-child(3),
.grid-cr3-blank li:nth-child(5),
.grid-cr3-blank li:nth-child(8){
    border-left:var(--outline);
}

.grid-cr3-blank h3{
    font-size: 30px;
    margin-bottom: 12px;
}

.emtpty-space{
    grid-column:3;
}

.cont-700-center{
    max-width:700px;
    margin: auto;
    text-align: center;
}

@media only screen and (max-width:767px){
    .grid-cr3-blank{
        grid-template-columns: repeat(2, 1fr);
    }
    .grid-cr3-blank li{
        padding:22px;
    }
    .grid-cr3-blank p{
        font-size: 16px;
    }
    .emtpty-space{
        grid-column:auto
    }
    .grid-cr3-blank h3{
        font-size: 22px;
    }
    
    .grid-cr3-blank li:nth-child(1),
    .grid-cr3-blank li:nth-child(2),
    .grid-cr3-blank li:nth-child(3),
    .grid-cr3-blank li:nth-child(4),
    .grid-cr3-blank li:nth-child(5),
    .grid-cr3-blank li:nth-child(6){
        border-bottom: var(--outline);
    }
    
    .grid-cr3-blank li:nth-child(1),
    .grid-cr3-blank li:nth-child(3),
    .grid-cr3-blank li:nth-child(5),
    .grid-cr3-blank li:nth-child(7){
        border-right: var(--outline);
    }
    .grid-cr3-blank li:nth-child(3),
    .grid-cr3-blank li:nth-child(5),
    .grid-cr3-blank li:nth-child(8){
        border-left:0px;
    }
    
    .grid-cr3-blank li:nth-child(6),
    .grid-cr3-blank li:nth-child(7),
    .grid-cr3-blank li:nth-child(8){
        border-top: 0px;
    }
    
    .grid-cr3-blank li:nth-child(4),
    .grid-cr3-blank li:nth-child(6){
        border-right:0px;
    }
    
    .grid-cr3-blank li:nth-child(1),
    .grid-cr3-blank li:nth-child(2){
        padding-top:5px;
    }
    
    .grid-cr3-blank li:nth-child(1),
    .grid-cr3-blank li:nth-child(3),
    .grid-cr3-blank li:nth-child(5),
    .grid-cr3-blank li:nth-child(7){
        padding-left:0px;
    }
    .grid-cr3-blank li:nth-child(2),
    .grid-cr3-blank li:nth-child(4),
    .grid-cr3-blank li:nth-child(6),
    .grid-cr3-blank li:nth-child(8){
        padding-right:0px;
    }
    
    .grid-cr3-blank li:nth-child(7),
    .grid-cr3-blank li:nth-child(8){
        padding-bottom:5px;
    }
    
}

/*-service-horizontal-list-*/
.service-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-row-gap: 24px;
    grid-column-gap: 24px;
    margin-top: 44px;
    margin-bottom: 44px;
}

.service-item {
    padding: 34px 34px;
    background: hsl(0deg 0% 81.39% / 15%);
    border: 1px solid #e9e9e9;
    border-radius: 8px;
}

.service-item h3{
    font-size: 30px;
    font-weight: 700;
}

.service-item a::before{
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: hsl(0deg 0% 0% / 16%);
    transition: width 0.3s ease-in-out;
}
    
.service-item p{
    margin-top: 15px;
    font-size: 18px;
}

.sub-list-item{
    display: flex;
    flex-wrap: wrap;
    grid-row-gap: 13px;
    grid-column-gap: 15px;
    margin-top: 24px;
    font-size: 18px;
    font-weight: 500;
    border-top: 1px solid hsl(0deg 0% 0% / 10.98%);
    padding-top: 24px;
}

.sub-list-item li {
  list-style: none;
  padding-left: 1.3em;
  position: relative;
}

.sub-list-item li::before {
    content: '✓';
    position: absolute;
    font-size: 14px;
    top: 20%;
    left: 0%;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4ecdc40a 0%, #aaaaaa 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

@media only screen and (max-width:1080px){
    .service-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media only screen and (max-width:767px){
    .service-list {
        grid-template-columns: repeat(1, 1fr);
    }
}

/*-horizontal-box-slider-*/
.hrz-slider-cont {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: auto;
    margin-top:44px;
    overflow: hidden;
    cursor: grab;
    user-select: none;
}

.hrz-slider-cont.dragging {
    cursor: grabbing;
}

.hrz-slider-list {
    display: flex;
    gap: 20px;
    list-style: none;
    margin: 0;
    transition: transform 0.3s ease;
    will-change: transform;
}

.hrz-sl-item {
    box-sizing: border-box;
    flex: 0 0 auto;
    height: 150px;
    min-height: 300px;
    background-color: var(--white);
    color: white;
    display: flex;
    font-size: 1.5rem;
    border-radius: 10px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hrz-sl-item span{
    font-size: 25px;
    font-family: var(--main-font);
    margin-bottom: 10px;
    color: var(--hover);
}

.hrz-sl-item h3{
    font-size: 28px;
    margin-bottom: 10px;
}

.hrz-sl-item p{
    color: #969696;
}

.change-clr{
    background: var(--main)!important;
}

.change-clr h3{
    color: var(--white);
}

/*-scrolling-left-to-right-right-to-left-*/
.scroll-cont {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.scroll-slides {
    display: flex;
    will-change: transform;
    transform: translateX(0);
    transition: none;
}

.slide {
    flex: 0 0 auto;
    margin: 4px;
    box-sizing: border-box;
    border-radius: 8px;
    box-shadow: 0 4px 5px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transform: translateZ(0);
}

.slide img {
    display: block;
    width: auto;
    height: 280px;
    max-width: none;
    transition: transform 0.3s ease;
}

.slide:focus-within {
    outline: none;
}

/* Loading state */
.loading::after {
    content: 'Loading...';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 10px 20px;
    border-radius: 4px;
    font-size: 14px;
}

.loading .scroll-slides {
    opacity: 0.7;
}

@media only screen and (max-width:767px){
    .slide img {
        height: 200px;
    }
}
