/* Banner css start */
section.banner {
    padding: 0px;
}
section.banner video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}
section.banner .video-sec {
    width: 100%;
    height: 600px;
}
/* Services css start */
section.services {
    background: #01040C;
    padding: var(--p90) 30px;
}
section.services span.section-title__tagline {
    border-bottom: 1px solid #D06A3E;
    text-transform: uppercase;
    color: var(--white-color);
    font-size: 14px;
    letter-spacing: 0.3em;
    font-weight: 700;
}
section.services .content-service {
   background: #1f1f1f;
   padding: 15px 20px;
    border-radius: 20px;
    box-shadow: 0px 0px 0px #5ea0a3;
    display: flex;
    gap: 21px;
    flex-direction: column;
    height: 100%;
    border-right: 0px solid #ffffff10;
}
section.services .col-4.service-column:nth-child(3) .content-service, section.services .col-4.service-column:nth-child(6) .content-service{
    border-right: 0px solid;
}
section.services .content-service a:hover{
    color: #FF7541;
}
section.services .content-service p{
    color: #8c9091;
    font-size: var(--f14);
    line-height: 1.7;
    height: 119px;
    overflow: hidden;
}
section.services .content-service a{
   color: var(--white-color);
    display: flex;
    align-items: center;
    gap: 10px;
}
section.services .content-service a i{
    font-size: 20px;
}
section.services h2{
    color: var(--white-color);
    margin-bottom: 0px;
    text-transform: capitalize;
    margin-top: 15px;
}
section.services h2 span{
    font-weight: 400;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #fff;
}
section.services .head p{
    color: var(--white-color);
    margin-bottom: 0px;
}
section.services .head {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
section.services .head a{
    color: #D06A3E;
    font-size: var(--f20);
    /* font-weight: bold; */
    text-transform: capitalize;
    display: flex;
    align-items: center;
}
section.services .head a:hover{
    color: var(--white-color);
}
section.services .head a i{
    font-size: 30px;
    margin-left: 10px;
    transform: rotate(320deg);
    transition: transform .3s ease;
}
section.services .head a:hover i{
    transform: rotate(360deg);
}
.services-content {
    border-bottom: 0px solid rgba(255,255,255,.5);
    border-top: 0px solid rgba(255,255,255,.5);
    margin-top: var(--m50);
}
.services-content .row{
    gap: 40px 0;
}
section.services .col-3.service-column {
    position: relative;
    width: 18%;
    padding: 0px;
     transform: scale(1);
    transition: 0.5s all;
}
section.services .col-3.service-column .content-service {
    padding: 3.2vw 1.7vw;
    border-left: 0px solid rgba(255,255,255,.5);
    position: relative;
    width: 100%;
    background: var(--white-color);
    box-shadow: 0px 0px 5px #fff;
   height: 100%;
    z-index: 1;
}
section.services .col-3.service-column:hover{
    transform: scale(1.1);
}

section.services .col-3.service-column a{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
section.services .overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    left: -10px;
    top: -11px;
    background: #CDAA35;
    z-index: 0;
}
section.services h3{
  font-size: var(--f24);
    color: var(--white-color);
    margin-bottom: var(--m22);
    /* height: 58px; */
    overflow: hidden;
}
section.services .content-box span{
    color: #a09baa;
    font-size: 12px;
}
section.services li{
    color: var(--white-color);
    font-size: var(--f14);
    margin-bottom: var(--m10);
    text-transform: uppercase;
    list-style: disc;
    margin-left: 20px;
}
section.services  .icon-box {
   background: transparent;
    padding: 0px;
    border-radius: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 0px;
    width: 112px;
    height: 112px;
    border: 2px solid rgba(255,255,255,.13);
    border-radius: 100%;
    transition: all 0.6s ease 0s;
    position: relative;
}
section.services  .icon-box:hover{
    border-color: transparent;
}
section.services  .icon-box svg{
    z-index: 2;
    fill: var(--white-color);
    /* font-size: 45px; */
    width: 50px;
    height: 40px;
}
section.services button {
    margin-top: var(--m30);
    text-align: center;
    width: 100%;
    background: transparent;
    border: 0px;
    color: var(--black-color);
    font-size: 30px;
}
.content-main-service {
    background: linear-gradient(90deg, rgba(129, 21, 255, 1) 0, rgba(255, 42, 208, 1) 50%, rgba(255, 143, 42, 1) 100%);
    border-radius: 20px;
    padding: 0px;
    border: 2px dotted;
}
span.sk__iconbox-icon>span.sk__iconbox-trail{
    background: linear-gradient(90deg,rgba(129,21,255,0) 45%,rgba(129,21,255,.25) 62%,rgba(255,42,208,.358) 85%,rgba(255,143,42,.516) 99%,rgba(255,169,17,.824) 100%);
}
@-webkit-keyframes counterRotateInfinitely {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0)
    }

    100% {
        -webkit-transform: rotate(-360deg);
        transform: rotate(-360deg)
    }
}

@keyframes counterRotateInfinitely {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0)
    }

    100% {
        -webkit-transform: rotate(-360deg);
        transform: rotate(-360deg)
    }
}

span.sk__iconbox-icon-dash {
    opacity: 0;
    position: absolute;
    width: 90%;
    height: 90%;
    top: 5%;
    left: 5%;
    border-radius: 100%;
    border: 2px dotted #000;
    z-index: 0;
    -webkit-transition: .4s;
    -o-transition: .4s;
    transition: .4s;
    -webkit-animation: 30s linear infinite counterRotateInfinitely;
    animation: 30s linear infinite counterRotateInfinitely;
    background: linear-gradient(#000,#000) padding-box,linear-gradient(90deg,rgba(129,21,255,1) 0,rgba(255,42,208,1) 50%,rgba(255,143,42,1) 100%) border-box;
}

.icon-box:hover span.sk__iconbox-icon-dash {
    opacity: 1;
    width: 110%;
    height: 110%;
    top: -5%;
    left: -4%
}

.icon-box>span.sk__iconbox-icon {
    position: absolute;
    width: 128px;
    height: 128px;
    border: 2px solid rgba(255,255,255,.13);
    border-radius: 130px;
    overflow: hidden
}

.icon-box:hover>span.sk__iconbox-icon {
    border-color: rgba(255,255,255,0);
}

.icon-box>span.sk__iconbox-icon:nth-child(2),.icon-box>span.sk__iconbox-icon:nth-child(3),.icon-box>span.sk__iconbox-icon:nth-child(4),.icon-box>span.sk__iconbox-icon:nth-child(5),.icon-box>span.sk__iconbox-icon:nth-child(6),.icon-box>span.sk__iconbox-icon:nth-child(7) {
    border: 2px solid transparent
}

.icon-box i,.icon-box span[class*=sico-] {
    padding: 3px;
    font-size: 44px
}

.icon-box span[class*=sico-].sk__gradient-fancy-text {
    z-index: 1;
    background: #000;
    color: #fff;
    -webkit-background-clip: text!important;
    -webkit-text-stroke: 0 transparent
}

@-webkit-keyframes rotateInfinitely {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0)
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

@keyframes rotateInfinitely {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0)
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

.icon-box>span.sk__iconbox-icon>span.sk__iconbox-trail {
    content: '';
    opacity: 1;
    position: absolute;
    width: 124px;
    height: 124px;
    top: 1px;
    left: 1px;
    border-radius: 130px;
    -webkit-transform-origin: center bottom;
    -ms-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation: 3s linear infinite rotateInfinitely;
    animation: 3s linear infinite rotateInfinitely
}

.icon-box>span.sk__iconbox-icon:nth-child(2)>span.sk__iconbox-trail {
    -webkit-animation-delay: 1s;
    animation-delay: 1s
}

.icon-box>span.sk__iconbox-icon:nth-child(3)>span.sk__iconbox-trail {
    -webkit-animation-delay: 2s;
    animation-delay: 2s
}

.icon-box>span.sk__iconbox-icon:nth-child(4)>span.sk__iconbox-trail {
    -webkit-animation-delay: 3s;
    animation-delay: 3s
}

.icon-box>span.sk__iconbox-icon:nth-child(5)>span.sk__iconbox-trail {
    -webkit-animation-delay: 1.5s;
    animation-delay: 1.5s;
    -webkit-animation-duration: 4.5s;
    animation-duration: 4.5s
}

.icon-box>span.sk__iconbox-icon:nth-child(6)>span.sk__iconbox-trail {
    -webkit-animation-delay: 3s;
    animation-delay: 3s;
    -webkit-animation-duration: 4.5s;
    animation-duration: 4.5s
}

.icon-box>span.sk__iconbox-icon:nth-child(7)>span.sk__iconbox-trail {
    -webkit-animation-delay: 4.5s;
    animation-delay: 4.5s;
    -webkit-animation-duration: 4.5s;
    animation-duration: 4.5s
}

.icon-box:hover>span.sk__iconbox-icon>span.sk__iconbox-trail {
    opacity: 1;
    height: 50%;
    top: 0;
    right: 0;
    border-radius: 62px 62px 0 0;
    z-index: 1;
}

.icon-box>span.sk__iconbox-icon:after {
    content: '';
    position: absolute;
    width: 128px;
    height: 128px;
    top: -1px;
    left: -1px;
    border: 2px solid transparent;
    -webkit-transform-origin: center;
    -ms-transform-origin: center;
    transform-origin: center;
    border-radius: 130px;
    background: #000
}

.icon-box:hover>span.sk__iconbox-icon:after {
    -webkit-transform: scale(.935) translate(-1px,-1px);
    -ms-transform: scale(.935) translate(-1px,-1px);
    transform: scale(.935) translate(-1px,-1px);
    z-index: 1;
}

@media all and (min-width: 576px) and (max-width:1920px) {
    .icon-box>span.sk__iconbox-icon,.icon-box>span.sk__iconbox-icon:after {
        width:112px;
        height: 112px;
        border-radius: 114px
    }

    .icon-box {
        width: 112px;
        height: 112px
    }

    .icon-box>span.sk__iconbox-icon>span.sk__iconbox-trail {
        width: 108px;
        height: 108px;
        border-radius: 114px
    }

    .icon-box:hover>span.sk__iconbox-icon>span.sk__iconbox-trail {
        border-top-left-radius: 54px;
        border-top-right-radius: 54px
    }

    .icon-box i,.icon-box span[class*=sico-] {
        font-size: 41px
    }

    .icon-box:hover>span.sk__iconbox-icon:after {
        -webkit-transform: scale(.925) translate(-1px,-1px);
        -ms-transform: scale(.925) translate(-1px,-1px);
        transform: scale(.925) translate(-1px,-1px)
    }
}

/* Cta css start */
section.cta {
    background: url(../images/cta.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 66px 12px;
}
section.cta h3 {
    font-size: var(--f30);
    color: var(--white-color);
    margin-bottom: var(--m30);
    font-family: var(--secondary-font);
    text-align: center;
}
section.cta a.main-btn {
    display: block;
    width: 150px;
    text-align: center;
    margin: auto;
}

/* About css start */
section.about {
    background: var(--black-color);
    padding: var(--p90) 0;
}
section.about p.subtitle {
   text-transform: uppercase;
    color: #FF7425;
    font-size: 14px;
    letter-spacing: 0.3em;
    font-weight: 700;
}
section.about h2{
    color: var(--white-color);
    font-size: 39px;
}
section.about h2 span{
    font-weight: 400;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #fff;
}
section.about h2 i{
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    display: inline-block;
    color: #FF7425;
}
section.about .row.abt-info {
    margin-top: var(--m50);
    border: 1px solid rgba(255,255,255,0.1);
    padding-top: var(--p30);
    position: relative;
}
section.about .col-8.get-started {
padding-left: 20px;
}
section.about p.started {
    color: var(--white-color);
    font-size: var(--f14);
    margin-bottom: var(--m40);
}
section.about p.started span{
    color: #FF7425;
}
section.about .col-4.experience {
    text-align: center;
}
section.about a {
   padding: 25px 40px;
    position: absolute;
    display: inline-block;
    border-radius: 35px;
    letter-spacing: 0.14em;
    background-color: rgba(255, 255, 255, 0.1);
    font-size: 14px;
    font-weight: 400;
    border: 0px solid;
    width: 220px;
    text-align: center;
    color: var(--white-color);
    transition: 500ms all ease;
    bottom: 0;
    left: -10px;
}
section.about a:after {
    top: 0;
    left: 0;
    z-index: 0;
    width: 70px;
    content: "";
    height: 100%;
    position: absolute;
    border-radius: 100%;
    -webkit-transition: 500ms all ease;
    transition: 500ms all ease;
    background-color: #FF7425;
}
section.about a:hover:after {
    width: 100%;
    border-radius: 35px;
}
section.about a span{
    z-index: 1;
    position: relative;
    text-transform: uppercase;
}
section.about .col-4.experience h2{
    font-size: var(--f70);
    margin-bottom: 0px;
    color: #FF7425;
}
section.about .col-4.experience p{
    color: var(--white-color);
    font-size: 17px;
    margin-bottom: 25px;
}
section.about .upper-content {
    display: flex;
    align-items: center;
    gap: 30px;
}
section.about .img-box img:last-child{
    margin-left: -3px;
    margin-top: -12px;
}
section.about .content-box h3{
       font-size: var(--f18);
    color: var(--white-color);
    letter-spacing: 0.15em;
    margin-bottom: 0;
    text-transform: uppercase;
}
section.about .content-box p{
    color: var(--white-color);
    margin-bottom: 0px;
    font-size: 12px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}
section.about .para-content p{
    color: var(--white-color);
    margin-bottom: 0px;
    margin-top: 35px;
}

section.about .col-6.about-content {
    padding-left: var(--p50);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Project css */
section.project {
    background: var(--black-color);
    padding: var(--p90) var(--p12);
}
section.project h2{
    color: var(--white-color);
}
section.project h2 span{
    font-weight: 400;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #fff;
}

section.project ul#myTab {
    margin-top: var(--m70);
    display: block;
    border-bottom: 0px solid;
}

section.project ul#myTab button {
    color: #fff;
    border: 0px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 700;
    border-radius: 80px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    border-radius: 30px;
    width: 325px;
    height: 65px;
    display: flex !important;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding: 20px 30px;
}
section.project ul#myTab button i{
    font-size: 35px;
}
section.project ul#myTab button.active, section.project ul#myTab button:hover{
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.1);
}
section.project .project-content {
    overflow: hidden;
    max-width: 790px;
    margin-bottom: 30px;
    border-radius: 15px;
    position: relative;
    margin-left: auto;
}
section.project .project-content img{
    width: 100%;
}
section.project .project-content:before {
    top: 0;
    left: 0;
    width: 100%;
    content: "";
    height: 100%;
    position: absolute;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(50.26%, rgba(9, 9, 9, 0)), color-stop(99.06%, #090909));
    background: linear-gradient(180deg, rgba(9, 9, 9, 0) 50.26%, #090909 99.06%);
}
section.project .pro {
    left: 0px;
    bottom: 60px;
    position: absolute;
    width: 100%;
    padding-left: 60px;
    padding-right: 60px;
}
section.project .pro a{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}
section.project .pro h3{
    color: #fff;
    font-size: 30px;
    font-weight: 700;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
    -webkit-transition: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    transition: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
section.project .pro span{
    font-size: 16px;
    font-weight: 700;
    display: inline-block;
    letter-spacing: 0.14em;
    color: var(--white-color);
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
    -webkit-transition: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    transition: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    -webkit-transition-delay: 0.2s;
    transition-delay: 0.2s;
}
section.project .pro-icon i{
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: var(--white-color);
    font-size: 65px;
}
section.project .pro-icon{
    transform: rotate(-45deg);
    -webkit-transition: 500ms all ease;
    transition: 500ms all ease;
    -webkit-transition-delay: 0.4s;
    transition-delay: 0.4s;
}
section.project .col-4.project-cont{
    position: relative;
}
section.project .col-4.project-cont a.main-btn {
    display: block;
    width: 200px;
    text-align: center;
    position: absolute;
    bottom: 0;
}

/* Portfolio css start */
section.portfolio {
    background: var(--territiary-color);
    padding: var(--p90) var(--p12);
    padding-top: 50px;
}
section.portfolio .content-area {
    width: 80%;
    position: sticky;
    top: 150px;
}
section.portfolio .col-6.portfolio-content {
   position: sticky;
    top: 150px;
    /* width: 50%; */
    height: 100vh;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
section.portfolio .col-6.portfolio-content h2{
    color: var(--white-color);
    margin-bottom: var(--m20);
}
section.portfolio .col-6.portfolio-content p{
    color: var(--white-color);
    margin-bottom: var(--m50);
    font-size: var(--f20);
}
section.portfolio a.main-btn {
    display: block;
    width: 200px;
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
}
section.portfolio .col-6.portfolio-img svg {
    /* z-index: -1; */
    position: absolute;
    top: 0;
    left: 0;
    width: 181px;
    height: auto;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    -webkit-transform: translate(0, -50%);
    -khtml-transform: translate(0, -50%);
    -moz-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    -o-transform: translate(0, -50%);
    transform: translate(0, -50%);
    width: 100%;
    margin-top: -2px;
    height: auto;
    fill: none;
    stroke-dashoffset: 0;
    stroke-dasharray: 3e3;
}
section.portfolio .col-6.portfolio-img svg path {
    stroke: #000;
    stroke-linecap: round;
    stroke-miterlimit: 10;
    stroke-width: 18px;
}
section.portfolio .pxl-post--readmore a:hover svg path {
   animation: pxl_btn_stroke .6s ease-in-out;
    -webkit-animation: pxl_btn_stroke .6s ease-in-out;
}
@keyframes pxl_btn_stroke {
    0% {
        stroke-dashoffset: 3e3
    }

    to {
        stroke-dashoffset: 0
    }
}
section.portfolio .col-6.portfolio-img .tag {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .3s ease-out;
    width: 181px;
    height: 181px;
    position: absolute;
    top: -85px;
    left: -85px;
    border-radius: 181px;
    z-index: 1;
    color: #dedddd;
    overflow: hidden;
    padding: 10px 15px;
    opacity: 0;
    visibility: hidden;
}
section.portfolio .col-6.portfolio-img {
    position: relative;
}
section.portfolio .col-6.portfolio-img .tag p{
    color: #fff;
    margin-bottom: 0;
    font-size: 22px;
    z-index: 1;
    position: relative;
    text-align: center;
    font-weight: 700;
}
section.portfolio .col-6.portfolio-img .img-area {
    position: relative;
    border-radius: 50px;
    margin-top: 60px;
    display: block;
    width: 100%;
    position: sticky;
    transition: 1.2s ease-out;
    top: 110px;
}
section.portfolio .col-6.portfolio-img .img-area img{
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 50px;
}
section.portfolio .col-6.portfolio-img button.main-btn {
    position: absolute;
    right: 30px;
    bottom: 40px;
}
section.portfolio .pxl-post--readmore {
    position: absolute;
    bottom: 40px;
    right: 30px;
}
section.portfolio .pxl-post--readmore a{
    font-size: 18px;
    color: var(--black-color);
    padding: 0 12px;
}
section.portfolio .pxl-post--readmore:before {
    content: '';
    z-index: -1;
    background-image: url(../images/btn-overlay.png);
    position: absolute;
    top: -110px;
    left: -100px;
    width: 361px;
    height: 288px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 50%;
    display: none;
}
/* client css start */
section.client {
    background: var(--black-color);
    padding: var(--p90) var(--p12);
}
section.client .col-2.track{
    width: 19.666667%;
}
section.client .col-6.leads {
    width: 41%;
}
section.client .container{
    padding: 50px 30px 50px;
    background: var(--white-color);
    border-radius: 50px 50px;
}
section.client .counter {
    border: 1px solid #E2E2E2;
    border-radius: 100%;
    width: 152px;
    height: 152px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
}
section.client .counter h2{
    font-size: var(--f35);
    margin-bottom: 0px;
}
section.client  .track-cont p{
    margin-top: 10px;
    line-height: 1.3;
    text-align: center;
    margin-bottom: 0px;
    font-weight: 600;
}
section.client .leads-sec {
    background: #E9E5FF;
    border-radius: 50px;
    padding: 5% 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}
section.client .leads-sec h3{
    margin-bottom: 0px;
}
section.client .leads-sec p{
    font-weight: 700;
}
section.client .leads-sec a.main-btn {
    width: 200px;
    margin: auto;
}

/* Cta1 css */
section.cta1 {
    background-image: linear-gradient(180deg, #794AFF 0%, #9F7DFF 100%);
    padding: 0px;
    position: relative;
    height: 250px;
    display: flex;
    align-items: center;
}
section.cta1 .cta-overlay {
    background-image: url(../images/cta1.webp);
    background-position: bottom center;
    background-repeat: no-repeat;
    background-size: cover;
    /* opacity: 1; */
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    position: absolute;
}
section.cta1 .cta1-content {
    position: relative;
    text-align: center;
}
section.cta1 h2{
    color: var(--white-color);
    font-size: var(--f45);
}
section.cta1 p{
    color: rgba(255, 255, 255, 0.6);
    font-size: var(--f20);
}
section.cta1 a.main-btn {
    display: block;
    width: 200px;
    margin: auto;
    margin-top: 30px;
}

/* Testimonial css */
section.testimonials {
    background: var(--territiary-color);
    padding: var(--p90) var(--p12);
}
section.testimonials .head-sec {
    text-align: center;
    margin-bottom: 40px;
}
section.testimonials p.subtitle {
    text-transform: uppercase;
    color: #FF7425;
    font-size: 14px;
    letter-spacing: 0.3em;
    font-weight: 700;
}
section.testimonials .head-sec h2{
    color: var(--white-color);
    text-transform: capitalize;
}
section.testimonials .head-sec h2 span{
    font-weight: 400;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #fff;
}
section.testimonials .item {
    text-align: center;
    color: var(--white-color);
    width: 90%;
    margin: auto;
}
section.testimonials .item p{
    font-size: var(--f25);
    text-align: center;
    color: var(--white-color);
    margin-bottom: var(--m50);
    line-height: 1.5;
}
section.testimonials .user h4{
    font-weight: 700;
    padding-bottom: 3px;
    letter-spacing: 0.18em;
    font-size: var(--f18);
    margin-bottom: 0;
    color: var(--white-color);
    text-transform: uppercase;
}

section.testimonials .owl-nav i{
    color: var(--white-color);
    font-size: var(--f35);
}
section.testimonials .owl-nav {
    display: flex;
    justify-content: space-between;
    position: absolute;
    top: 40%;
    transform: translateY(-60%);
}
section.testimonials .owl-carousel .owl-stage-outer{
    padding-left: 0px !important;
    padding-right: 0px !important;
}

/*Blogs css start*/
section.blog-sec {
    background: var(--black-color);
    padding: var(--p90) var(--p12);
}
section.blog-sec .head {
    text-align: center;
    margin-bottom: 40px;
}
section.blog-sec p.subtitle {
    text-transform: uppercase;
    color: #FF7425;
    font-size: 14px;
    letter-spacing: 0.3em;
    font-weight: 700;
}
section.blog-sec .head h2{
    color: var(--white-color);
    text-transform: capitalize;
}
section.blog-sec .head h2 span{
    font-weight: 400;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #fff;
}
section.blog-sec .blog-image{
width: 100%;
    height: 300px;
    overflow: hidden;
    border-radius: 20px;
    margin-bottom: 25px;
}
section.blog-sec .blog-image img{
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: all .5s ease-out;
    transform: scale(1);
}
section.blog-sec .blog-image img:hover{
     transform: scale(1.03);
}
section.blog-sec p.posted{
    font-size: 12px;
    letter-spacing: 0.2em;
    font-weight: 700;
    margin-bottom: 8px;
    text-transform: uppercase;
}
section.blog-sec p.posted a{
    color: #FF7425;
}
section.blog-sec h4{
    font-size: 20px;
    margin-bottom: 18px;
}
section.blog-sec h4 a{
    color: var(--white-color);
}
section.blog-sec h4 a:hover{
    color: #FF7425;
}
section.blog-sec .blog-author img{
    width: 40px;
    height: 40px;
    border-radius: 20px;
}
section.blog-sec .blog-author {
    display: flex;
    gap: 12px;
    align-items: center;
}
section.blog-sec .author-post span{
    font-size: 12px;
    color: #ffffff9c;
    letter-spacing: 3px;
    letter-spacing: 0.2em;
    font-weight: 700;
}
section.blog-sec .author-post p{
    font-weight: 600;
    margin-bottom: 0px;
    line-height: 1.6;
}
section.blog-sec .author-post p a{
    color: var(--white-color);
}