@charset "UTF-8";
/* ========= [ * inner pages ]  =========*/

:root {
    --bg-color: #161616;
    --theme-color: #1B1B1B;
    --main-color: #BEF402;
}

.amimation {

    position: relative;
    animation-name: rotate;
    animation-duration: 4s;
    animation-iteration-count: infinite;

}


@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    25% {
        transform: rotate(90deg);
    }

    50% {
        transform: rotate(180deg);
    }

    75% {
        transform: rotate(270deg);
    }

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

/* --------------- about pg --------------- */

.header-pg {
    background: url(../imgs/19852464_6193220-2.png);
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 0 0 50px 50px;
    padding: 200px 0 120px;
    position: relative;
    overflow: hidden;
    z-index: 4;
}

.header-pg .shape-circle {
    width: 45vw;
    height: 45vw;
    border: 10vw solid var(--main-color);
    border-radius: 50%;
    position: absolute;
    bottom: 5vw;
    right: -10%;
    -webkit-filter: blur(100px);
    filter: blur(100px);
    opacity: .3;
    z-index: -1;
}

.header-pg .shape1 {
    position: absolute;
    bottom: 24%;
    left: 11%;
    mix-blend-mode: soft-light;
    width: 145px;
}

.header-pg .caption h1 {
    font-size: 110px;
    margin-bottom: 15px;
}

.header-pg .caption h6 {
    font-size: 16px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.header-pg .caption h6 span {
    color: var(--main-color);
}

.header-pg .caption h6 a,
.header-pg .caption h6 span {
    padding: 0 5px;
}

.intro-ab .img {
    height: 480px;
    border-radius: 20px;
    margin-top: 100px;
}

.intro-ab .cont h2 {
    font-size: 60px;
    line-height: 1.2;
}

.intro-ab .cont span {
    font-weight: 100;
    font-size: 20px;
    margin: 40px 0;
}

.intro-ab .stauts h3 {
    -webkit-writing-mode: vertical-lr;
    -ms-writing-mode: tb-lr;
    writing-mode: vertical-lr;
    text-orientation: mixed;
    position: relative;
    font-size: 200px;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.2);
}

.intro-ab .stauts h3 span {
    color: #fff;
    font-size: 16px;
    font-weight: 100;
    text-transform: uppercase;
    position: absolute;
    bottom: 0;
    left: 0;
}

.intro-ab .numbers {
    margin-top: 100px;
}

.intro-ab .numbers .item {
    padding: 30px 15px;
    text-align: center;
    background: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.1), var(--theme-color));
    background: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.1), var(--theme-color));
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1), var(--theme-color));
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 30px;
}

.intro-ab .numbers .item h2 {
    font-size: 60px;
}

.intro-ab .numbers .item h2 span {
    font-size: 40px;
    font-weight: 200;
}

.intro-ab .numbers .item h6 {
    font-size: 16px;
    font-weight: 200;
    text-transform: uppercase;
    margin-top: 15px;
}

.process2 .item {
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
}

.process2 .item .img {
    position: relative;
}

.process2 .item .img>img {
    border-radius: 15px;
}

.process2 .item .img .icon {
    position: absolute;
    bottom: -1px;
    left: 0;
    padding: 15px;
    width: 75px;
    background: var(--theme-color);
    border-radius: 0 10px 0 0;
}

.process2 .item .img .icon:after {
    content: "";
    position: absolute;
    left: -1px;
    top: -20px;
    background-color: transparent;
    height: 20px;
    width: 20px;
    -webkit-transition: -webkit-box-shadow 0.3s;
    transition: -webkit-box-shadow 0.3s;
    -o-transition: box-shadow 0.3s;
    transition: box-shadow 0.3s;
    transition: box-shadow 0.3s, -webkit-box-shadow 0.3s;
    -webkit-box-shadow: 0 10px 0 0 var(--theme-color);
    box-shadow: 0 10px 0 0 var(--theme-color);
    border-bottom-left-radius: 10px;
    z-index: 4;
}

.process2 .item .img .icon:before {
    content: "";
    position: absolute;
    right: -20px;
    bottom: -1px;
    background-color: transparent;
    height: 20px;
    width: 20px;
    -webkit-transition: -webkit-box-shadow 0.3s;
    transition: -webkit-box-shadow 0.3s;
    -o-transition: box-shadow 0.3s;
    transition: box-shadow 0.3s;
    transition: box-shadow 0.3s, -webkit-box-shadow 0.3s;
    -webkit-box-shadow: 0 10px 0 0 var(--theme-color);
    box-shadow: 0 10px 0 0 var(--theme-color);
    border-bottom-left-radius: 10px;
    z-index: 4;
}

.process2 .item .cont {
    padding: 30px 15px;
}

.process2 .item.rev .img .icon {
    bottom: auto;
    top: -1px;
    border-radius: 0 0 10px 0;
}

.process2 .item.rev .img .icon:after {
    content: "";
    position: absolute;
    left: -1px;
    bottom: -20px;
    top: auto;
    background-color: transparent;
    height: 20px;
    width: 20px;
    -webkit-transition: -webkit-box-shadow 0.3s;
    transition: -webkit-box-shadow 0.3s;
    -o-transition: box-shadow 0.3s;
    transition: box-shadow 0.3s;
    transition: box-shadow 0.3s, -webkit-box-shadow 0.3s;
    -webkit-box-shadow: 0 -10px 0 0 var(--theme-color);
    box-shadow: 0 -10px 0 0 var(--theme-color);
    border-top-left-radius: 10px;
    border-bottom-left-radius: 0px;
    z-index: 4;
}

.process2 .item.rev .img .icon:before {
    content: "";
    position: absolute;
    right: -20px;
    top: -1px;
    bottom: auto;
    background-color: transparent;
    height: 20px;
    width: 20px;
    -webkit-transition: -webkit-box-shadow 0.3s;
    transition: -webkit-box-shadow 0.3s;
    -o-transition: box-shadow 0.3s;
    transition: box-shadow 0.3s;
    transition: box-shadow 0.3s, -webkit-box-shadow 0.3s;
    -webkit-box-shadow: 0 -10px 0 0 var(--theme-color);
    box-shadow: 0 -10px 0 0 var(--theme-color);
    border-top-left-radius: 10px;
    border-bottom-left-radius: 0px;
    z-index: 4;
}

.testim2 {
    background: var(--bg-color);
    border-radius: 50px;
    position: relative;
    z-index: 4;
}

.testim2 .arrows .swiper-button-prev,
.testim2 .arrows .swiper-button-next {
    position: static;
    width: 65px;
    height: 65px;
    border: 1px solid #fff2;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    margin: 0 0 0 15px !important;
}

.testim2 .arrows .swiper-button-prev::after,
.testim2 .arrows .swiper-button-next::after {
    color: #fff;
    font-size: 18px;
}

.testim2 .item {
    background: var(--theme-color);
    border-radius: 30px;
    padding: 80px 30px;
    position: relative;
}

.testim2 .item .rate {
    position: absolute;
    top: 0;
    left: 60px;
    background: var(--bg-color);
    border-radius: 0 0 20px 20px;
    padding: 10px 30px 15px;
    font-size: 13px;
    color: var(--main-color);
}

.testim2 .item .rate:after,
.testim2 .item .rate:before {
    content: "";
    position: absolute;
    left: -20px;
    top: -1px;
    background-color: transparent;
    height: 20px;
    width: 20px;
    -webkit-transition: -webkit-box-shadow 0.3s;
    transition: -webkit-box-shadow 0.3s;
    -o-transition: box-shadow 0.3s;
    transition: box-shadow 0.3s;
    transition: box-shadow 0.3s, -webkit-box-shadow 0.3s;
    -webkit-box-shadow: 0 -10px 0 0 var(--bg-color);
    box-shadow: 0 -10px 0 0 var(--bg-color);
    border-top-right-radius: 10px;
    z-index: 2;
}

.testim2 .item .rate:before {
    left: auto;
    right: -20px;
    border-top-left-radius: 10px;
    border-top-right-radius: 0;
}

.testim2 .item .quote-icon {
    position: absolute;
    bottom: -30px;
    right: 80px;
    background: var(--bg-color);
    width: 85px;
    height: 85px;
    line-height: 85px;
    text-align: center;
    border-radius: 50%;
}

.testim2 .item .quote-icon i {
    width: 70px;
    height: 70px;
    line-height: 70px;
    text-align: center;
    background: var(--theme-color);
    border-radius: 50%;
    font-size: 20px;
}

.testim2 .item .quote-icon:after {
    content: "";
    position: absolute;
    left: -18px;
    bottom: 29px;
    background-color: transparent;
    height: 30px;
    width: 20px;
    -webkit-transition: -webkit-box-shadow 0.3s;
    transition: -webkit-box-shadow 0.3s;
    -o-transition: box-shadow 0.3s;
    transition: box-shadow 0.3s;
    transition: box-shadow 0.3s, -webkit-box-shadow 0.3s;
    -webkit-box-shadow: 0 10px 0 0 var(--bg-color);
    box-shadow: 0 10px 0 0 var(--bg-color);
    border-bottom-right-radius: 20px;
    z-index: 4;
}

.testim2 .item .quote-icon:before {
    content: "";
    position: absolute;
    right: -18px;
    bottom: 29px;
    background-color: transparent;
    height: 30px;
    width: 20px;
    -webkit-transition: -webkit-box-shadow 0.3s;
    transition: -webkit-box-shadow 0.3s;
    -o-transition: box-shadow 0.3s;
    transition: box-shadow 0.3s;
    transition: box-shadow 0.3s, -webkit-box-shadow 0.3s;
    -webkit-box-shadow: 0 10px 0 0 var(--bg-color);
    box-shadow: 0 10px 0 0 var(--bg-color);
    border-bottom-left-radius: 20px;
    z-index: 4;
}

.testim2 .item p {
    color: #fff;
    font-size: 20px;
    font-weight: 300;
}

.testim2 .item .info .img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
}

.testim2 .item .info span {
    font-size: 14px;
    font-weight: 300;
    color: #c4c4c4;
}

.testim2 .testim-slider {
    overflow: hidden;
}

.testim2 .testim-slider .swiper-pagination {
    position: absolute;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    left: 0;
    bottom: 0px;
    font-size: 100px;
    line-height: 1;
}

.testim2 .testim-slider .swiper-pagination .swiper-pagination-total {
    font-size: 60px;
}

.testim2 .testim-slider .swiper-pagination .swiper-pagination-total:before {
    content: '/';
    position: relative;
    margin: 0 15px 0 5px;
    font-weight: 100;
    font-size: 30px;
}

.team1 {
    position: relative;
}

.team1 .shape-circle {
    width: 45vw;
    height: 45vw;
    border: 10vw solid var(--main-color);
    border-radius: 50%;
    position: absolute;
    top: -15vw;
    right: -10%;
    -webkit-filter: blur(100px);
    filter: blur(100px);
    opacity: .3;
    z-index: -1;
}

.team1 .item {
    background: var(--bg-color);
    border-radius: 15px;
    position: relative;
}

.team1 .item:hover .img {
    padding: 0;
}

.team1 .item:hover .img img {
    -webkit-mask-image: none;
    mask-image: none;
}

.team1 .item:hover .social {
    opacity: 1;
}

.team1 .item .cont {
    position: absolute;
    left: 30px;
    bottom: 20px;
}

.team1 .item .cont span {
    font-size: 14px;
    font-weight: 300;
}

.team1 .item .social {
    position: absolute;
    bottom: 80px;
    right: 15px;
    opacity: 0;
    -webkit-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s;
}

.team1 .item .social li {
    width: 45px;
    height: 45px;
    line-height: 45px;
    text-align: center;
    font-size: 14px;
    background: var(--main-color);
    color: #1d1d1d;
    border-radius: 5px;
    margin-bottom: 5px;
}

.team1 .item .icon {
    position: absolute;
    bottom: 0;
    right: 0;
    background: var(--theme-color);
    width: 70px;
    height: 60px;
    border-radius: 5px 0 0 0;
    cursor: pointer;
    z-index: 4;
}

.team1 .item .icon:after,
.team1 .item .icon:before {
    content: "";
    position: absolute;
    left: -20px;
    bottom: 0;
    background-color: transparent;
    height: 20px;
    width: 20px;
    -webkit-transition: -webkit-box-shadow 0.3s;
    transition: -webkit-box-shadow 0.3s;
    -o-transition: box-shadow 0.3s;
    transition: box-shadow 0.3s;
    transition: box-shadow 0.3s, -webkit-box-shadow 0.3s;
    -webkit-box-shadow: 0 10px 0 0 var(--theme-color);
    box-shadow: 0 10px 0 0 var(--theme-color);
    border-bottom-right-radius: 10px;
    z-index: 4;
}

.team1 .item .icon:before {
    left: auto;
    right: 0;
    bottom: auto;
    top: -20px;
}

.team1 .item .icon i {
    background: var(--bg-color);
    width: 45px;
    height: 45px;
    line-height: 45px;
    text-align: center;
    border-radius: 5px;
    font-size: 14px;
    margin-left: 10px;
    margin-top: 10px;
}

.team1 .item .img {
    position: relative;
    height: 450px;
    padding: 0 20px;
}

.team1 .item .img img {
    -webkit-mask-image: url(../imgs/team/mask.svg);
    mask-image: url(../imgs/team/mask.svg);
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-position: center center;
    mask-position: center center;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    border-radius: 15px;
}

.faqs-pg .img {
    border-radius: 20px;
    margin-bottom: 30px;
    height: 300px;
}

.faqs-pg .img2 {
    border-radius: 20px;
    height: 100%;
}

.faqs-pg .quote {
    padding: 60px 40px;
    background: var(--main-color);
    height: 100%;
    color: #1b1b1b;
    border-radius: 20px;
}

.faqs-pg .accordion-item {
    background: transparent;
    border-radius: 10px;
    border: 0;
    border-radius: 0;
    margin-bottom: 5px;
}

.faqs-pg .accordion-item .accordion-header {
    background: transparent;
}

.faqs-pg .accordion-item .accordion-header button {
    background: transparent;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.faqs-pg .accordion-item .accordion-header button:after {
    background-image: url(../imgs/plus-solid.svg);
    -webkit-filter: invert(1);
    filter: invert(1);
}

.faqs-pg .accordion-item .accordion-header button:not(.collapsed):after {
    background-image: url(../imgs/minus-solid.svg);
}

.faqs-pg .accordion-item .accordion-body {
    padding: 0;
    padding: 30px;
}

.faqs-pg .accordion-item .accordion-body p {
    font-size: 14px;
}

.faqs-pg .accordion-button::after {
    width: 15px;
    height: 15px;
    background-size: contain;
}

@media screen and (max-width: 768px) {
    .intro {
        overflow: hidden;
        padding: 100px 0 !important;
    }

    .intro h2 {
        font-size: 30px !important;
    }

    .intro .img {
        display: none;
    }

    .numbers-sec .item h2 {
        font-size: 90px;
    }
}

/* --------------- Services pg --------------- */

.services3 {
    position: relative;
}

.services3 .item {
    padding: 40px 30px;
    background: -webkit-linear-gradient(45deg, #383838, var(--theme-color));
    background: -o-linear-gradient(45deg, #383838, var(--theme-color));
    background: linear-gradient(45deg, #383838, var(--theme-color));
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    margin-top: 30px;
}

.services3 .item .icon {
    position: relative;
    width: 70px;
    margin-bottom: 50px;
}

.services3 .item .icon:after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: -30px;
    border-left: 2px solid var(--main-color);
}

.services3 .item h5 {
    margin-bottom: 30px;
}

.services3 .item a {
    font-size: 14px;
    text-transform: uppercase;
    margin-top: 40px;
}

.services3 .item a svg {
    width: 15px;
    margin-left: 5px;
}

.services3 .shape-circle {
    width: 45vw;
    height: 45vw;
    border: 10vw solid var(--main-color);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: -10%;
    -webkit-filter: blur(100px);
    filter: blur(100px);
    opacity: .4;
    z-index: -1;
}

.intro-se .img {
    height: 400px;
    border-radius: 30px;
}

.intro-se .img1 {
    position: relative;
}

.intro-se .img1 .butn-pad {
    position: absolute;
    top: -1px;
    right: 0;
    padding: 0 10px 10px;
    background: var(--theme-color);
    border-radius: 0 0 30px 30px;
    -webkit-transform: translateX(50%);
    -ms-transform: translateX(50%);
    transform: translateX(50%);
}

.intro-se .img1 .butn-pad:before {
    content: "";
    position: absolute;
    right: -49px;
    top: 1px;
    background-color: transparent;
    height: 60px;
    width: 50px;
    -webkit-transition: -webkit-box-shadow 0.3s;
    transition: -webkit-box-shadow 0.3s;
    -o-transition: box-shadow 0.3s;
    transition: box-shadow 0.3s;
    transition: box-shadow 0.3s, -webkit-box-shadow 0.3s;
    -webkit-box-shadow: 0 -30px 0 0 var(--theme-color);
    box-shadow: 0 -30px 0 0 var(--theme-color);
    border-top-left-radius: 30px;
    z-index: 2;
}

.intro-se .img1 .butn-pad:after {
    content: "";
    position: absolute;
    left: -49px;
    top: 1px;
    background-color: transparent;
    height: 60px;
    width: 50px;
    -webkit-transition: -webkit-box-shadow 0.3s;
    transition: -webkit-box-shadow 0.3s;
    -o-transition: box-shadow 0.3s;
    transition: box-shadow 0.3s;
    transition: box-shadow 0.3s, -webkit-box-shadow 0.3s;
    -webkit-box-shadow: 0 -30px 0 0 var(--theme-color);
    box-shadow: 0 -30px 0 0 var(--theme-color);
    border-top-right-radius: 30px;
    z-index: 2;
}

.price2 .sec-head2 .img {
    height: 400px;
    border-radius: 30px;
}

.price2 .price-items .item {
    padding: 20px;
}

.price2 .price-items .item.spcial {
    background: var(--bg-color);
}

.price2 .price-items .item.spcial .amount h2 {
    color: var(--main-color);
}

.price2 .price-items .item.spcial .order a {
    background: #fff;
}

.price2 .price-items .item .amount h2 {
    font-size: 52px;
}

.price2 .price-items .item .amount h2 span {
    font-size: 20px;
}

.price2 .price-items .item .cont {
    padding: 15px 30px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.price2 .price-items .item .cont li {
    font-size: 15px;
    color: #c4c4c4;
    margin: 7px 0;
    padding-left: 30px;
    position: relative;
}

.price2 .price-items .item .cont li:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #fff;
}

.price2 .price-items .item .order a {
    padding: 8px 25px;
    border-radius: 30px;
    background: var(--main-color);
    color: #1b1b1b;
    font-size: 14px;
    text-transform: uppercase;
}

.call-marq {
    position: relative;
}

.call-marq .main-marq {
    overflow: hidden;
    padding: 20px 0;
}

.call-marq .main-marq:after {
    display: none;
}

.call-marq .main-marq.bg-color {
    position: relative;
    z-index: 2;
}

.call-marq .main-marq.bg-color .item h4 span {
    color: var(--main-color) !important;
    text-transform: uppercase;
    font-weight: 400;
    font-size: 50px;
}

.call-marq .main-marq.bg-light {
    -webkit-transform: rotate(-5deg) translateY(-10px);
    -ms-transform: rotate(-5deg) translateY(-10px);
    transform: rotate(-5deg) translateY(-10px);
}

.call-marq .main-marq.bg-light .item h4 {
    color: #1b1b1b !important;
    font-size: 30px !important;
    text-transform: uppercase;
    font-weight: 400;
}

.serv-hed2 {
    position: relative;
}

.serv-hed2 .shape-circle {
    width: 45vw;
    height: 45vw;
    border: 10vw solid var(--main-color);
    border-radius: 50%;
    position: absolute;
    top: -5vw;
    right: -10%;
    -webkit-filter: blur(100px);
    filter: blur(100px);
    opacity: .3;
    z-index: -1;
}

.serv-hed2 .fit-img {
    max-height: 90vh;
}

.serv-hed2 .list li {
    position: relative;
    padding-left: 30px;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 5px 0;
}

.serv-hed2 .list li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 40%;
    width: 5px;
    height: 5px;
    background: #fff;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.serv-details .accordion-item {
    background: transparent;
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0;
}

.serv-details .accordion-item.active {
    border-color: var(--main-color);
}

.serv-details .accordion-item.active button {
    color: var(--main-color) !important;
}

.serv-details .accordion-item .accordion-header {
    background: transparent;
}

.serv-details .accordion-item .accordion-header button {
    background: transparent;
    color: inherit;
    font-size: 20px;
    font-weight: 500;
    line-height: 28px;
    padding: 20px 0;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.serv-details .accordion-item .accordion-header button span {
    font-size: 14px;
    margin-right: 80px;
}

.serv-details .accordion-item .accordion-header button:after {
    display: none;
}

.serv-details .accordion-item .accordion-body {
    padding: 0 0 15px 90px;
}

.serv-details .accordion-item .accordion-body p {
    font-size: 14px;
}

/* --------------- Team pg --------------- */

/* --------------- Testimonials --------------- */

/* --------------- Careers pg --------------- */

/* --------------- Careers pg --------------- */

.pricing-pg .item {
    padding: 60px 40px;
    background: var(--bg-color);
    border-radius: 20px;
    position: relative;
}

.pricing-pg .item .recom {
    position: absolute;
    top: -1px;
    left: 50%;
    padding: 0 15px 10px;
    font-size: 13px;
    text-transform: uppercase;
    color: var(--main-color);
    background: var(--theme-color);
    border-radius: 0 0 20px 20px;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}

.pricing-pg .item .recom:before {
    content: "";
    position: absolute;
    right: -38px;
    top: 1px;
    background-color: transparent;
    height: 50px;
    width: 40px;
    -webkit-transition: -webkit-box-shadow 0.3s;
    transition: -webkit-box-shadow 0.3s;
    -o-transition: box-shadow 0.3s;
    transition: box-shadow 0.3s;
    transition: box-shadow 0.3s, -webkit-box-shadow 0.3s;
    -webkit-box-shadow: 0 -20px 0 0 var(--theme-color);
    box-shadow: 0 -20px 0 0 var(--theme-color);
    border-top-left-radius: 20px;
    z-index: 2;
}

.pricing-pg .item .recom:after {
    content: "";
    position: absolute;
    left: -38px;
    top: 1px;
    background-color: transparent;
    height: 50px;
    width: 40px;
    -webkit-transition: -webkit-box-shadow 0.3s;
    transition: -webkit-box-shadow 0.3s;
    -o-transition: box-shadow 0.3s;
    transition: box-shadow 0.3s;
    transition: box-shadow 0.3s, -webkit-box-shadow 0.3s;
    -webkit-box-shadow: 0 -20px 0 0 var(--theme-color);
    box-shadow: 0 -20px 0 0 var(--theme-color);
    border-top-right-radius: 20px;
    z-index: 2;
}

.pricing-pg .list li {
    font-weight: 300;
    margin-bottom: 15px;
    position: relative;
}



.pricing-pg .list li:last-of-type {
    margin-bottom: 0;
}

.pricing-pg .butn {
    display: block !important;
    width: 100%;
}

.pricing-pg .butn .text {
    padding: 15px;
    width: 100%;
    -webkit-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s;
}

.pricing-pg .butn .text:hover {
    background: var(--main-color);
    color: #1b1b1b;
}

/* --------------- Portfolio pg --------------- */

.work3 .item {
    position: relative;
    margin-top: 120px;
}

.work3 .item:hover .tags,
.work3 .item:hover .cont {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translate(0);
    -ms-transform: translate(0);
    transform: translate(0);
}

.work3 .item .tags {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--theme-color);
    padding: 10px 30px 20px;
    border-radius: 0 0 0 30px;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateX(20px) translateY(-20px);
    -ms-transform: translateX(20px) translateY(-20px);
    transform: translateX(20px) translateY(-20px);
    -webkit-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s;
}

.work3 .item .tags a {
    padding: 8px 22px;
    background: rgba(255, 255, 255, 0.05);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    font-size: 13px;
    text-transform: uppercase;
    -webkit-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s;
    margin: 0 2px;
}

.work3 .item .tags a:hover {
    background: var(--main-color);
    color: #1b1b1b;
}

.work3 .item .tags:after,
.work3 .item .tags:before {
    content: "";
    position: absolute;
    left: -40px;
    top: 0px;
    background-color: transparent;
    height: 40px;
    width: 40px;
    -webkit-transition: -webkit-box-shadow 0.3s;
    transition: -webkit-box-shadow 0.3s;
    -o-transition: box-shadow 0.3s;
    transition: box-shadow 0.3s;
    transition: box-shadow 0.3s, -webkit-box-shadow 0.3s;
    -webkit-box-shadow: 0 -20px 0 0 var(--theme-color);
    box-shadow: 0 -20px 0 0 var(--theme-color);
    border-top-right-radius: 20px;
    z-index: 4;
}

.work3 .item .tags:before {
    left: auto;
    right: 0;
    bottom: -40px;
    top: auto;
}

.work3 .item .img {
    border-radius: 20px;
    overflow: hidden;
}

.work3 .item .cont {
    position: absolute;
    bottom: 15px;
    left: 15px;
    color: #1b1b1b;
    border-radius: 15px;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
    -webkit-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s;
}

.work3 .item .cont .nam {
    font-size: 13px;
    text-transform: uppercase;
    padding: 20px 25px 10px 40px;
    background: #fff;
    border-radius: 25px 25px 0 0;
    position: relative;
}

.work3 .item .cont .nam:after {
    content: '';
    position: absolute;
    top: 55%;
    left: 20px;
    width: 5px;
    height: 5px;
    background: #1b1b1b;
    border-radius: 50%;
}

.work3 .item .cont .nam:before {
    content: "";
    position: absolute;
    right: -20px;
    bottom: 0;
    background-color: transparent;
    height: 40px;
    width: 20px;
    -webkit-transition: -webkit-box-shadow 0.3s;
    transition: -webkit-box-shadow 0.3s;
    -o-transition: box-shadow 0.3s;
    transition: box-shadow 0.3s;
    transition: box-shadow 0.3s, -webkit-box-shadow 0.3s;
    -webkit-box-shadow: 0 20px 0 0 #fff;
    box-shadow: 0 20px 0 0 #fff;
    border-bottom-left-radius: 20px;
    z-index: 4;
}

.work3 .item .cont h6 {
    font-size: 18px;
    padding: 10px 25px 20px;
    background: #fff;
    border-radius: 0 25px 25px 25px;
    margin-top: -1px;
}

.work-hed2 .fit-img {
    max-height: 90vh;
}

.proj-details .accordion-item {
    background: transparent;
    border: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 0;
}

.proj-details .accordion-item.active {
    border-color: var(--main-color);
}

.proj-details .accordion-item.active button {
    color: var(--main-color) !important;
}

.proj-details .accordion-item .accordion-header {
    background: transparent;
}

.proj-details .accordion-item .accordion-header button {
    background: transparent;
    color: inherit;
    font-size: 20px;
    font-weight: 500;
    line-height: 28px;
    padding: 15px 0;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.proj-details .accordion-item .accordion-header button span {
    font-size: 14px;
    margin-right: 80px;
}

.proj-details .accordion-item .accordion-header button:after {
    display: none;
}

.proj-details .accordion-item .accordion-body {
    padding: 0 0 15px 90px;
}

.proj-details .accordion-item .accordion-body p {
    font-size: 14px;
}

/* --------------- Portfolio pg --------------- */

.blog-hed .caption h1 {
    font-size: 55px;
}

.blog-mp .bord {
    position: relative;
}

.blog-mp .bord:after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.blog-mp .item {
    margin-bottom: 50px;
}

.blog-mp .item .info .author-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.blog-mp .item .info .author-info,
.blog-mp .item .info .date {
    font-size: 13px;
    text-transform: uppercase;
}

.blog-mp .item .info .author-info span,
.blog-mp .item .info .date span {
    display: block;
    line-height: 22px;
}

.blog-mp .item .info .author-info .sub-color {
    text-transform: capitalize !important;
}

.blog-mp .item .img {
    border-radius: 15px;
    height: 255px;
    overflow: hidden;
}

.blog-mp .main-blog .item {
    margin-bottom: 0;
}

.blog-mp .main-blog .item .img {
    height: 350px;
}

.post-header .caption .tags a {
    padding: 7px 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
}

.post-header .caption .tags a:hover {
    background: #fff;
    color: #1d1d1d !important;
}

.post-header .bg-img {
    height: 75vh;
    min-height: 480px;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
}

.post-header .bg-img .row {
    position: absolute;
    bottom: 30px;
    left: 30px;
    z-index: 4;
}

.main-post .spec-letter {
    font-size: 60px;
    line-height: 50px;
    padding-right: 10px;
    float: left;
}

.main-post .post-qoute {
    position: relative;
    padding: 40px;
    padding-left: 120px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.main-post .post-qoute h6 {
    position: relative;
    font-weight: 400;
}

.main-post .post-qoute h6:before {
    content: '“';
    position: absolute;
    top: 80px;
    left: -100px;
    font-size: 180px;
    line-height: 0;
}

.main-post .post-qoute .author {
    font-size: 14px;
    color: var(--main-color);
}

.main-post .iner-img {
    height: 400px;
}

.main-post .iner-img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
}

.main-post .unorder-list li,
.main-post .order-list li {
    margin-top: 10px;
    opacity: .7;
    padding-left: 15px;
    position: relative;
}

.main-post .unorder-list li:before,
.main-post .order-list li:before {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #ccc;
    position: absolute;
    left: 0;
    top: 10px;
}

.main-post .order-list li {
    padding-left: 0;
}

.main-post .order-list li:before {
    display: none;
}

.main-post .order-list li span {
    font-size: 13px;
}

.main-post .info-area .tags span,
.main-post .info-area .share-icon span {
    font-size: 14px;
    margin-right: 5px;
    opacity: .7;
}

.main-post .info-area .tags a,
.main-post .info-area .share-icon a {
    padding: 7px 20px;
    font-size: 13px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 30px;
    margin-right: 5px;
    -webkit-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s;
}

.main-post .info-area .tags a:hover,
.main-post .info-area .share-icon a:hover {
    background: var(--main-color);
    color: #1d1d1d;
}

.main-post .info-area .share-icon a {
    width: 35px;
    height: 35px;
    line-height: 35px;
    font-size: 11px;
    text-align: center;
    padding: 0;
}

.main-post .author-area {
    padding: 40px;
    background: rgba(255, 255, 255, 0.02);
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
}

.main-post .author-area .author-img .img {
    width: 100px;
    height: 100px;
    border-radius: 10px;
    overflow: hidden;
}

.main-post .next-prv-post .thumb-post {
    width: 100%;
    padding: 40px;
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.main-post .next-prv-post .thumb-post:after {
    content: '';
    background: var(--theme-color);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    z-index: -1;
    opacity: .7;
    -webkit-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s;
}

.main-post .next-prv-post .thumb-post:first-of-type {
    margin-right: 15px;
}

.main-post .next-prv-post .thumb-post:last-of-type {
    margin-left: 15px;
}

.comments-post .item-box {
    position: relative;
}

.comments-post .item-box p {
    font-size: 14px;
    width: 80%;
}

.comments-post .item-box.replayed {
    margin-left: 30px;
}

.comments-post .item-box .replay-butn {
    position: absolute;
    top: 15px;
    right: 15px;
}

.comments-post .item-box .replay-butn a {
    font-size: 13px;
    padding: 8px 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    -webkit-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s;
}

.comments-post .item-box .replay-butn a:hover {
    background: var(--main-color);
    color: #1d1d1d;
}

.comments-from input,
.comments-from textarea {
    width: 100%;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0;
    background: transparent;
    color: #fff;
    padding: 15px 0;
    -webkit-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s;
}

.comments-from input:focus,
.comments-from textarea:focus {
    border-color: #fff;
}

.comments-from textarea {
    min-height: 180px;
}

.comments-from button {
    padding: 15px 35px;
    width: 100%;
    background: #fff;
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
    color: #1d1d1d;
    text-transform: uppercase;
    font-size: 16px;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    overflow: hidden;
    -webkit-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s;
}

.comments-from button .text {
    position: relative;
    z-index: 4;
}

.comments-from button:hover {
    color: #1d1d1d;
    background: var(--main-color);
}

.sidebar .search-box {
    position: relative;
}

.sidebar .search-box input {
    color: #fff;
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 30px;
    width: 100%;
    background: transparent;
}

.sidebar .search-box input:focus {
    border-color: #fff;
}

.sidebar .search-box .icon {
    position: absolute;
    top: 50%;
    right: 15px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.sidebar .widget {
    margin-top: 50px;
}

.sidebar .widget .title-widget {
    margin-bottom: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.sidebar .widget.catogry li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 15px;
    margin-bottom: 7px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 30px;
}

.sidebar .widget.catogry li:last-of-type {
    margin-bottom: 0;
}

.sidebar .widget.last-post-thum .item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 30px;
}

.sidebar .widget.last-post-thum .item:last-of-type {
    margin-bottom: 0;
}

.sidebar .widget.last-post-thum .item:hover .img a .date {
    opacity: 1;
}

.sidebar .widget.last-post-thum .item .img {
    width: 90px;
    height: 100px;
    border-radius: 5px;
    overflow: hidden;
}

.sidebar .widget.last-post-thum .item .img a {
    width: 100%;
    height: 100%;
    position: relative;
}

.sidebar .widget.last-post-thum .item .img a .date {
    position: absolute;
    top: 50%;
    left: 50%;
    font-size: 14px;
    width: 50px;
    height: 50px;
    text-align: center;
    background: rgba(0, 0, 0, 0.1);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    z-index: 3;
    opacity: 0;
    -webkit-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s;
}

.sidebar .widget.last-post-thum .item .img a .date span {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    line-height: 1;
}

.sidebar .widget.last-post-thum .item .img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.sidebar .widget.last-post-thum .item .cont {
    padding-left: 25px;
}

.sidebar .widget.last-post-thum .item .cont h6 {
    font-size: 17px;
}

.sidebar .widget.last-post-thum .item .cont .tag {
    font-size: 12px;
    padding: 5px 15px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.03);
    margin-bottom: 10px;
}

.sidebar .widget.tags a {
    font-size: 14px;
    padding: 8px 15px;
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.02);
    margin: 2px 0;
    -webkit-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s;
}

.sidebar .widget.tags a:hover {
    background: var(--main-color);
}

/* --------------- Careers pg --------------- */

.contact-pg input,
.contact-pg textarea {
    width: 100%;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    background: transparent;
    color: #fff;
    padding: 15px 0;
    -webkit-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s;
}

.contact-pg input:focus,
.contact-pg textarea:focus {
    border-color: #fff;
}

.contact-pg textarea {
    min-height: 100px;
}

.contact-pg .butn2 {
    border: 0;
    color: #fff;
}

.contact-pg .butn2:hover {
    background: var(--main-color) !important;
    color: #1b1b1b;
}

.contact-pg .butn2:hover .arrow {
    background: #fff;
}

/* ====================== [ Start Responsive ] ====================== */

@media screen and (max-width: 992px) {
    .header-pg .shape1 {
        width: 150px;
    }

    .work-hed2 .fz-80,
    .serv-hed2 .fz-80 {
        font-size: 65px !important;
    }

    .intro-ab .stauts h3 {
        -webkit-writing-mode: inherit;
        -ms-writing-mode: inherit;
        writing-mode: inherit;
    }

    .testim2 .item {
        margin-top: 0 !important;
    }

    .intro-se .img2 {
        display: none;
    }

    .intro-se .img1 .butn-pad {
        left: 50%;
        right: auto;
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        transform: translateX(-50%);
    }

    .work3 {
        padding-top: 70px;
    }

    .work3 .item {
        margin-top: 50px;
    }

    .blog-mp .bord:after {
        display: none;
    }
}

@media screen and (max-width: 768px) {
    h1 {
        letter-spacing: -1px;
    }

    h2 {
        letter-spacing: -1px;
    }

    h3 {
        font-size: 32px;
        letter-spacing: normal;
    }

    h4 {
        font-size: 28px;
        letter-spacing: normal;
    }

    .header-pg .caption h1 {
        font-size: 60px;
    }

    .header-pg .shape1 {
        width: 100px;
    }

    .work-hed2 .fz-80,
    .serv-hed2 .fz-80 {
        font-size: 35px !important;
    }

    .intro-ab .cont h2 {
        font-size: 38px;
    }

    .intro-ab .stauts h3 {
        font-size: 90px;
    }

    .price2 .price-items .item {
        padding: 40px 20px;
    }

    .price2 .price-items .item .cont {
        padding: 30px 15px;
        border: 0;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .price2 .price-items .item .order {
        margin: 15px 0 0 !important;
    }

    .post-header h1 {
        font-size: 30px !important;
    }

    .post-header .info {
        display: block !important;
    }

    .main-post .post-qoute {
        padding: 30px !important;
    }

    .main-post .post-qoute h6:before {
        position: relative;
        left: 0;
    }

    .main-post .info-area {
        display: block !important;
    }

    .main-post .info-area .tags {
        margin-bottom: 15px;
    }

    .main-post .author-area {
        padding: 30px 15px;
    }

    .main-post .author-area .flex {
        display: block !important;
    }

    .main-post .author-area .author-img {
        margin-bottom: 15px;
    }
}