@font-face {
    font-family: Fraunces;
    src: url("../fonts/Fraunces.ttf");
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}


body {
    -webkit-font-smoothing: none;
    -webkit-font-smoothing: subpixel-antialiased;
    -webkit-font-smoothing: antialiased;
    font-family: "Outfit", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol {
    padding: 0;
    margin: 0;
}

p {
    color: #06162F;
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 400;
}

p strong {
    color: #06162F;
    font-weight: 600;
}

p a {
    display: inline-block;
    position: relative;
    color: #06162F;
}

ul,
ol,
li {
    list-style: none;
    position: relative;
}

a {
    text-decoration: none;
    transition: 0.2s;
}

img {
    max-width: 100%;
}

.container {
    max-width: 1618px;
    width: 98%;
    position: relative;
    z-index: 55;
}

.main_header {
    padding: 5px 0px;
    position: sticky;
    z-index: 9999;
    top: 0;
    /* transition: all 0.3s ease; */
    background-color: #fff;
}

/* .main_header::before,
.main_header::after {
    content: "";
    top: 0;
    position: absolute;
    background-repeat: no-repeat;
    background-size: contain;
    display: none;
}

.main_header::before {
    background-image: url("../images/header_bg_strip.png");
    width: 395px;
    height: 196px;
    right: 27%;
}

.main_header::after {
    background-image: url("../images/header_bg_strip2.png");
    right: 0;
    height: 105px;
    width: 228px;
} */

.main_header {
    -ms-transition: .6s ease-out;
    -moz-transition: .6s ease-out;
    -webkit-transition: .6s ease-out;
    -o-transition: .6s ease-out;
    transition: 1.5s ease-out;

    border-bottom: 1px solid #EFEFEF;
}

@keyframes slideDown {
    from {
        top: -100px
    }

    to {
        top: 0
    }
}

.main_header.sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: #fff;
    z-index: 99999;
    border-color: #ec2931;
    animation: .6s ease-out slideDown;
}

.main_header .container {
    width: 100%;
}

.head_inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.offcanvas-header .main_logo {
    /* width: auto; */
    width: 180px;
}

.offcanvas-header .main_logo a img {
    height: 60px;
    object-fit: contain;
}

.main_logo {
    width: 60px;
}

.main_logo a {
    display: block;
}

.main_logo a picture {
    display: block;
}

.head_inner .menuLink {
    display: none;
}

.menu li a {
    font-size: 18px;
    color: #000;
    font-weight: 400;
    display: block;
    padding: 8px 20px;
    text-transform: capitalize;
    transition: 0.2s;
}

.menuLink ul.menu>li.current-page-ancestor>a {
    font-weight: 500;
    color: #ec2931;
}

.header__menu .menu li.current-page-ancestor a {
    color: #ec2931;
}

.header__menu .menu li.current-page-ancestor a::after {
    width: 100%;
}

.menu li a:hover::after,
.header__menu .menu>li.current_page_item a::after {
    width: 100%;
}

.menu li a:hover {
    color: #ec2931 !important;
}

.menu li.current-menu-item>a::after {
    width: 100%;
}

.login_btn a span {
    display: inline-block;
    margin-right: 22px;
}

.header__menu .menu>li.menu-item-has-children {
    margin-right: 50px;
}

.menuLink ul li.menu-item-has-children::after {
    content: '';
    position: absolute;
    border-top: 2px solid #ec2931;
    border-left: 2px solid #ec2931;
    width: 10px;
    height: 10px;
    transform: rotate(-135deg);
    display: block;
    cursor: pointer;
    right: 20px;
    top: 15px;
    transition-duration: 0.4s;
}

.offcanvas-body>.menuLink>.menu>li.menu-item-has-children .sub-menu li.menu-item-has-children::after {
    border-color: #fff;
}

.sub-menu li a {
    display: inline-block;
    width: 100%;
}

.sub-menu li {
    margin-right: 0;
}

header ul li.current-menu-ancestor a,
.menuLink>.menu>li>a:hover {
    color: #192F5C;
}


.wrapper {
    position: relative;
    overflow: hidden;
}


.right_funnel {
    width: 280px;
    max-width: 280px;
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
    top: 0;
    right: 0;
    height: 100vh;
    overflow-y: auto;
    position: fixed;
    z-index: 9999;
    -webkit-transition: -webkit-transform 0.5s ease;
    transition: -webkit-transform 0.5s ease;
    transition: transform 0.5s ease;
    transition: transform 0.5s ease, -webkit-transform 0.5s ease;
    backface-visibility: hidden;
    background-color: #eee;
}

.right_funnel.show_funnel {
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
}

.off-canvas-content {
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    -webkit-transition: -webkit-transform 0.5s ease;
    transition: -webkit-transform 0.5s ease;
    transition: transform 0.5s ease;
    transition: transform 0.5s ease, -webkit-transform 0.5s ease;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.off-canvas-content.open_canvas {
    -webkit-transform: translateX(-280px);
    -ms-transform: translateX(-280px);
    transform: translateX(-280px);
}

.burgur-btn {
    display: block;
    cursor: pointer;
    position: relative;
    z-index: 999;
}

.bar1,
.bar2,
.bar3 {
    width: 35px;
    height: 4px;
    background-color: #303030;
    margin: 6px 0;
    transition: 0.4s;
    border-radius: 25px;
}

.change .bar1 {
    -webkit-transform: rotate(-45deg) translate(-9px, 6px);
    transform: rotate(-45deg) translate(-7px, 7px);
}

.change .bar2 {
    opacity: 0;
}

.bar2 {
    width: 28px;
    margin-left: auto;
}

.change .bar3 {
    -webkit-transform: rotate(45deg) translate(-8px, -8px);
    transform: rotate(45deg) translate(-7px, -8px);
}

.change>div {
    background-color: #ed2832;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 11;
    width: 100%;
    height: 100%;
    -webkit-transition: opacity 0.5s ease, visibility 0.5s ease;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    background: rgb(0 0 0 / 54%);
    ;
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
}

.overlay.show_overlay {
    position: absolute;
    cursor: pointer;
    opacity: 1;
    visibility: visible;
    z-index: 99999;
}

.right_funnel .offcanvas-header .header-wrap {
    justify-content: center;
}

.right_funnel .call_us {
    display: flex;
    max-width: 250px;
    margin: 30px auto 0px;
}

.right_funnel .offcanvas-header {
    height: 70px;
}

.right_funnel .offcanvas-body {
    height: calc(100% - 70px);
    overflow: auto;
    padding: 0px 0 20px;
}

/* Chrome, Edge, Safari */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    /* background: #ed2831; */
    background: #303030;
}

::-webkit-scrollbar-thumb {
    /* background: #303030; */
    background: #917757;
    border-radius: 10px;
}

/* ::-webkit-scrollbar-thumb:hover {
    background: #303030;
} */

/* Firefox */
/* * {
    scrollbar-width: thin;
    scrollbar-color: #c1c1c1 #f1f1f1;
} */

.hide_scroll {
    overflow: hidden;
}

/* body.hide_scroll header.main_header.sticky {
    top: 100px;
    z-index: 999999999999999999999999999;
} */










.right-div {
    display: flex;
    align-items: center;
    width: auto;
}

.pp_btn {
    margin-right: 20px;
}

.call_us {
    display: none;
    align-items: center;
    flex-wrap: wrap;
}

.call_title {
    width: calc(100% - 50px);
    padding-left: 12px;
}

.call_icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #ec2931;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    position: relative;
    overflow: hidden;
}

.call_icon::before {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: #303030;
    transition: .5s;
    z-index: 2;
}

.call_us:hover .call_icon::before {
    top: 0;
}

.call_title span {
    display: block;
    font-size: 15px;
    color: #000;
    font-weight: 400;
}

.call_title a {
    display: inline-block;
    color: #ec2931;
    font-size: 20px;
    font-weight: 600;
}

.call_title a:hover {
    color: #000;
}

.call_icon img {
    filter: brightness(0) invert(1);
    transition: 0.4s;
    position: relative;
    z-index: 55;
}

.call_us:hover .call_icon img {
    transform: rotate(360deg);
}

.call_btn {
    display: none;
}

.btn-ctn {
    font-size: 16px;
    color: #fff;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: auto;
    height: 45px;
    width: 100%;
    padding: 6px 20px;
    transition: 0.3s;
    position: relative;
    overflow: hidden;
    z-index: 55;
    text-align: center;
    border-radius: 30px;
    border: 2px solid #ec2931;
    text-transform: capitalize;
    background: #ec2931;
}

.btn-ctn span {
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    border-radius: 50%;
    background-color: #fff;
    /* background: #E51B23;
    background: linear-gradient(0deg, rgba(229, 27, 35, 1) 0%, rgba(185, 20, 26, 1) 100%); */
    transition: width 0.4s ease-in-out, height 0.4s ease-in-out;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.btn-ctn:hover span {
    width: 225%;
    height: 562.5px;
}

.btn-ctn:hover {
    color: #ec2931;
}


.burger {
    display: block;
    width: 40px;
    min-width: 40px;
    border: none;
    background-color: transparent;
    outline: none;
    box-shadow: none;
}

.burger span {
    display: block;
    width: 40px;
    height: 3px;
    border-radius: 8px;
    background: #ec2931;
    margin-bottom: 7px;
    margin-right: 0;
    margin-left: auto;
}

.burger span:nth-child(2) {
    width: 28px;
}

.burger span:last-child {
    margin-bottom: 0;
    /* width: 20px; */
}

.header-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.offcanvas-body .menuLink {
    margin-bottom: 20px;
    /* padding: 0 15px; */
}

.offcanvas-header {
    padding: 5px 12px;
    /* background-color: #ed1b24; */
}

.offcanvas-body .call_us {
    display: flex;
    max-width: 270px;
    margin: 0 auto;
}

.menuLink .menu>li>a {
    border-bottom: 1px solid #ec2931;
}


/*************/

#Right_Funnel {
    width: 300px;
    border: unset;
    z-index: 9999999;
    /* opacity: 0;
    transform: scale(0);
    transition: .6s;
    border-radius: 50%;
    transform-origin: top right; */
}

/* .menu-open #Right_Funnel {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
    border-radius: 0;
} */

.menu-open .offcanvas-backdrop {
    z-index: 999999;
    opacity: 0.8;
}

.offcanvas-body {
    padding: 10px 0 20px;
    position: relative;
}




/* .offcanvas-body>.menuLink>div>.menu>li {
    border-bottom: 1px solid #192F5C;
} */

.offcanvas-body>.menuLink>div>.menu>li.menu-item-has-children .sub-menu {
    background-color: #192F5C;
    display: none;
}

.offcanvas-body>.menuLink>div>.menu>li.menu-item-has-children .sub-menu li {
    border-top: 1px solid #fff;
}

.offcanvas-body>.menuLink>div>.menu>li.menu-item-has-children .sub-menu li a {
    padding-left: 30px;
    color: #fff;
}

.offcanvas-body>.menuLink>div>.menu>li.menu-item-has-children .sub-menu li.menu-item-has-children .sub-menu li a {
    padding-left: 40px;
}

.offcanvas-body>.menuLink>div>.menu>li.menu-item-has-children .sub-menu li a:hover {
    background-color: #81A469;
    color: #fff !important;
}

.offcanvas-body>.menuLink>div>.menu>li span {
    position: absolute;
    top: 0;
    right: 0;
    width: 50px;
    height: 44px;
    cursor: pointer;
    z-index: 55;
}

.right-div.tilt-hover .burger {
    cursor: pointer;
}

.banner_3d_slider {
    position: relative;
}

.banner_3d_slider .owl-stage-outer .owl-stage {
    display: flex;
}

.banner_3d_slider .owl-stage-outer .owl-stage .items {
    height: 100%;
}

.main_logo picture img {
    display: block;
    width: 100%;
    height: auto;
}

.dt_banner_wrap {
    position: relative;
    z-index: 555;
}

.dt_banner_img {
    position: relative;
    overflow: hidden;
    border-top-left-radius: 100px;
    margin-bottom: 20px;
    perspective: 900px;
    height: 100%;
}

.dt_banner_img picture {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

/* .img-3d {
    width: 100%;
    border-radius: 28px;
    overflow: hidden;
    perspective: 900px;
}

.img-3d img {
    width: 100%;
    display: block;
    border-radius: 28px;
    transition: transform 0.15s ease-out, box-shadow 0.15s ease-out;
    transform-style: preserve-3d;
} */



@keyframes slideInUpSoft {
    from {
        opacity: 0;
        transform: translateY(40px) scale(1.05);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes slideOutDownSoft {
    from {
        opacity: 1;
        transform: translateY(0) scale(1);
    }

    to {
        opacity: 0;
        transform: translateY(-40px) scale(0.98);
    }
}

.slideInUpSoft {
    animation-name: slideInUpSoft;
}

.slideOutDownSoft {
    animation-name: slideOutDownSoft;
}

.banner_3d_slider .owl-carousel .animated {
    animation-duration: 1.2s;
    animation-fill-mode: both;
}

.banner_3d_slider .owl-dots {
    text-align: center;
    position: absolute;
    bottom: 120px;
    left: 0;
    right: 0;
}

.banner_3d_slider .owl-dots .owl-dot {
    width: 14px;
    height: 14px;
    background-color: #fff;
    border: 2px solid #fff;
    border-radius: 50%;
    margin: 0 2px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.banner_3d_slider .owl-dots .owl-dot.active {
    border: 2px solid #ec2931;
    background-color: #ec2931;
}

.dt_banner_img {
    transition: all 0.5s ease;
}

.dt_banner_img::before {
    content: '';
    position: absolute;
    bottom: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(0deg, transparent, transparent 30%, rgba(255, 255, 255, 0.5));
    transform: rotate(45deg);
    transition: all 0.9s ease;
    opacity: 0;
    z-index: 5;
}

.dt_banner_img:hover::before {
    opacity: 1;
    transform: rotate(45deg) translateY(100%);
}

@-webkit-keyframes circle {
    0% {
        opacity: 1;
    }

    40% {
        opacity: 1;
    }

    100% {
        width: 200%;
        height: 200%;
        opacity: 0;
    }
}

@keyframes circle {
    0% {
        opacity: 1;
    }

    40% {
        opacity: 1;
    }

    100% {
        width: 200%;
        height: 200%;
        opacity: 0;
    }
}

.dt_banner_img picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: 0.4s;
}

.dt_banner_bg {
    position: relative;
    background-image: url("../images/banner-bg.png");
    background-repeat: no-repeat;
    background-position-x: 0;
    background-position-y: 0;
    background-size: 803px;
    padding-bottom: 20px;
    padding-top: 30px;
}

.dt_banner_content {
    text-align: center;
    position: relative;
}

.dt_banner_bg::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    background-image: url("../images/banner-left-cricle.png");
    background-repeat: no-repeat;
    width: 103px;
    height: 102px;
    background-size: contain;
    background-position-x: 0;
    background-position-y: 0;
}

.dt_banner_content h1 {
    color: #000;
    font-size: 25px;
    line-height: 31px;
    margin-bottom: 20px;
    font-family: Fraunces;
    /* text-transform: capitalize; */
    font-weight: 600;
    padding: 0 20px;
}

.dt_banner_content h1 span {
    display: block;
    color: #917757;
}

.dt_banner_content p {
    padding: 0 20px;
}

.get_a_quote {
    max-width: 220px;
    margin: 0 auto 30px;
}

.banner_product_slider {
    max-width: 500px;
    margin: 10px auto 0px;
    padding: 0 20px;
}

.banner_product_slider .owl-stage-outer .owl-stage {
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner_product_img img {
    width: auto !important;
}



.dt_awards_wrap {
    position: relative;
    padding: 30px 0;
}

.main_title {
    text-align: center;
    margin-bottom: 40px;
}

.main_title h2 {
    color: #000;
    font-family: Fraunces;
    text-transform: capitalize;
    font-weight: 500;
    font-size: 24px;
}

.main_title h2 span {
    color: #ec2931;
}

.dt_awards_slider .owl-stage-outer .owl-stage {
    margin: 0 auto;
}

.awards_img {
    border: 1px solid #eee;
    border-radius: 5px;
    padding: 10px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.awards_img a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.awards_img a img {
    width: auto !important;
    transition: 0.8s;
}

.awards_img:hover img {
    transform: rotateY(360deg);
}




.dt_industery_wrap {
    position: relative;
    padding: 30px 0 20px;
}

.dt_industery_wrap .row {
    margin: 10px;
}

.dt_industery_wrap .col-md-4 {
    padding: 10px;
}

.dt_industery_wrap .main_title h2 {
    margin-bottom: 20px;
}

.main_title p:last-child {
    margin: 0;
}

.dt_industery_wrap .main_title p:first-child strong,
.dt_portfolio_wrap .main_title p:first-child strong {
    color: #ec2931;
    text-transform: uppercase;
    font-weight: 600;
}

.dt_industery_box {
    display: flex;
    padding: 20px;
    background-color: #f9f9f9;
    border: 1px solid #d6d6d6;
    border-radius: 20px;
    transition: 0.4s;
    position: relative;
    overflow: hidden;
}

.dt_industery_box:hover {
    border-color: #ec2931;
    /* background-color: #ed1c24; */
    box-shadow: 2px 1px 10px #55555580;
}

.dt_industery_box span {
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    background-color: #ec2931;
    transition: width 0.6s ease-in-out, height 0.6s ease-in-out;
    transform: translate(-50%, -50%);
}

.dt_industery_box:hover span {
    width: 225%;
    height: 562.5px;
}

.dt_industery_box a {
    display: flex;
    color: #000;
    position: relative;
    z-index: 66;
}

.dt_industery_icon {
    width: 75px;
    padding-right: 20px;
}

.dt_industery_content {
    width: calc(100% - 75px);
    padding-left: 20px;
}

.dt_industery_content h3 {
    color: #000;
    font-size: 22px;
    font-family: Fraunces;
    margin-bottom: 10px;
    transition: 0.8s;
}

.dt_industery_box:hover h3 {
    color: #fff;
}

.dt_industery_content p {
    transition: 0.8s;
}

.dt_industery_box:hover p {
    color: #fff;
}

.dt_industery_icon img {
    transition: 0.8s;
    width: auto !important;
    filter: brightness(0);
}

.dt_industery_box:hover .dt_industery_icon img {
    filter: brightness(0) invert(1);
    /* transform: rotateY(360deg); */
}

.arrow_icon img {
    transition: 0.8s;
    width: auto !important;
}

.dt_industery_box:hover .arrow_icon img {
    filter: brightness(0) invert(1);
}

.dt_industery_slider2 .swiper-wrapper {
    justify-content: center;
}

.dt_industery_slider2 .swiper-pagination {
    position: static;
    margin-top: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}


.dt_industery_slider .owl-stage-outer .owl-stage {
    margin: 0 auto;
}

.dt_industery_slider .item .dt_industery_box:first-child {
    margin-bottom: 20px;
}

.dt_industery_slider .owl-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
}

.dt_industery_slider .owl-dots .owl-dot {
    width: 14px;
    height: 14px;
    background-color: #b3b3b3;
    border: 2px solid #b3b3b3;
    border-radius: 50%;
    margin: 0 2px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dt_industery_slider .owl-dots .owl-dot.active {
    border: 2px solid #ec2931;
    background-color: #fff;
}

.dt_industery_slider .owl-dots .owl-dot.active span {
    width: 4px;
    height: 4px;
    display: flex;
    align-items: center;
    border-radius: 50%;
    background-color: #ec2931;
}



.dt_portfolio_wrap {
    position: relative;
    padding: 0px 0px 50px;
    overflow: hidden;
    background: linear-gradient(360deg, rgba(238, 238, 238, 0.48) 0%, rgba(249, 249, 249, 0.11) 89%);
}

.dt_top_content {
    background-image: url("../images/portfolio_dots.png");
    background-repeat: no-repeat;
    background-size: 60px;
    background-position-x: 0px;
    background-position-y: 0px;
    padding-top: 50px;
}

.dt_portfolio_wrap::before,
.dt_portfolio_wrap::after {
    content: "";
    position: absolute;
    background-repeat: no-repeat;
    background-size: contain;
}

.dt_portfolio_wrap::before {
    top: 0;
    right: 0;
    background-image: url("../images/portfolio_right.png");
    background-position-x: 100%;
    background-position-y: 0px;
    width: 115px;
    height: 100px;
}

.dt_portfolio_wrap::after {
    bottom: 0;
    left: 0;
    background-image: url("../images/portfolio_left.png");
    background-position-x: 0;
    background-position-y: 0;
    width: 80px;
    height: 60px;
}

.dt_portfolio_wrap .main_title p {
    margin-bottom: 10px;
}

.dt_portfolio_wrap .main_title h2 {
    margin-bottom: 20px;
}

.dt_portfolio_slider {
    padding: 0 20px;
}

.dt_portfolio_slider .owl-stage-outer .owl-stage {
    margin: 0 auto;
    display: flex;
    justify-content: center;
}

/* .dt_portfolio_slider .owl-stage-outer .owl-stage .item {
    padding-bottom: 70px;
} */

.dt_portfolio_box {
    /* display: flex; */
    margin-bottom: 0px;
    height: 50%;
}

.dt_portfolio_slider .item .dt_portfolio_box:first-child {
    margin-bottom: 50px;
}

.dt_portfolio_img {
    width: 100%;
    height: auto;
    position: relative;
    padding: 30px 0 30px 30px;
}

.dt_portfolio_img img {
    position: relative;
    z-index: 45;
}

.dt_portfolio_img::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 90%;
    height: 100%;
    background-color: #fbe8e6;
}

.dt_portfolio_content {
    width: 100%;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.portfolio_logo img {
    max-height: 40px;
    width: auto !important;
    margin: 0 auto;
}

.portfolio_logo {
    margin-bottom: 10px;
}

.dt_portfolio_content h4 {
    color: #000;
    margin-bottom: 12px;
    font-family: Fraunces;
    font-size: 18px;
}

.dt_portfolio_content .btn-ctn {
    max-width: 200px;
    margin: 0 auto;
}

.dt_portfolio_slider .owl-dots .owl-dot {
    width: 30px;
    height: 5px;
    background-color: #e6e6e6;
    border-radius: 8px;
    margin: 0 5px;
}

.dt_portfolio_slider .owl-dots .owl-dot.active {
    background-color: #ec2931;
}

.dt_portfolio_slider .owl-dots {
    text-align: center;
    margin-top: 10px;
    margin-bottom: 30px;
}

.btn__grid {
    display: block;
    align-items: center;
    justify-content: center;
    gap: 20px;
    max-width: 300px;
    margin: 0 auto;
}

.btn__grid .btn-ctn:nth-child(1) {
    background: #fff !important;
    border: none;
    color: #000;
    box-shadow: 1px 4px 25px #5556;
    margin-bottom: 20px;
}

.btn__grid .btn-ctn:nth-child(1):hover {
    color: #fff !important;
}

.btn__grid .btn-ctn:nth-child(1):hover span {
    background-color: #ec2931;
}

.btn__grid .btn-ctn:nth-child(2):hover {
    background: #fff !important;
    border-color: transparent;
    color: #000;
    box-shadow: 1px 4px 25px #5556;
}




.dt_capabilities_wrap {
    position: relative;
    padding: 30px 0;
}

.dt_capabilities_wrap .main_title h2 {
    margin-bottom: 20px;
}

.dt_capabilities_wrap .main_title p {
    max-width: 700px;
    margin: 0 auto;
}

.dt_capabilities_wrap .row {
    margin: -10px;
}

.dt_capabilities_wrap .row .col-md-4 {
    padding: 10px;
}

.dt_capabilities_box {
    border: 1px solid #eaeaea;
    background-color: #f9f9f9;
    border-radius: 12px;
    padding: 20px;
    height: 100%;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.dt_capabilities_box:hover {
    transform: translateY(-4px);
    box-shadow: 1px 5px 70px #ccccccbd;
    background-color: #fff;
}

.dt_capabilities_box h4 {
    font-size: 18px;
    margin-bottom: 10px;
    font-family: Fraunces;
    color: #000;
    font-weight: 600;
}

.dt_capabilities_box h4 a {
    display: inline-block;
    color: #000;
}

/* .dt_capabilities_box p {
    color: #666;
} */

.dt_capabilities_box p a,
.dt_capabilities_box h4 a:hover {
    color: #ec2931;
}

.dt_capabilities_box p a:hover {
    color: #000;
}

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


.dt_explore_wrap {
    background-color: #010000;
    padding: 50px 0px;
    background-image: url("../images/dt_explore_wrap.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position-x: 100%;
    background-position-y: 100%;
    position: relative;
}

.dt_explore_wrap::before,
.dt_explore_wrap::after {
    content: "";
    position: absolute;
    background-repeat: no-repeat;
    background-size: contain;
}

.dt_explore_wrap::before {
    top: 0;
    left: 0;
    background-image: url("../images/dt_explore_left.png");
    width: 215px;
    height: 215px;
}

.dt_explore_wrap::after {
    bottom: 0;
    right: 0;
    background-image: url("../images/dt_explore_right.png");
    background-position-x: 100%;
    background-position-y: 100%;
    width: 215px;
    height: 215px;
}

.dt_explore_wrap .main_title {
    text-align: center;
    margin: 0px;
}

.dt_explore_wrap .main_title p:first-child strong {
    color: #ec2931;
    text-transform: uppercase;
    font-weight: 600;
}

.dt_explore_wrap .main_title h2 {
    color: #fff;
    margin-bottom: 15px;
    text-transform: unset;
}

.dt_explore_wrap .main_title p {
    color: #BEBEBE;
    max-width: 1450px;
}

.dt__content .row .col-md-6 {
    margin: 5px 0;
}

.dt_explore_box {
    display: flex;
    flex-wrap: wrap;
}

.dt_explore_icon {
    background-color: #ec2931;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    border: 7px solid #340608;
}

.dt_explore_icon img {
    transition: 0.4s;
}

.dt_explore_box:hover .dt_explore_icon img {
    transform: rotate(360deg);
}

.dt_explore_content {
    width: calc(100% - 85px);
    padding-left: 15px;
}

.dt_explore_content h5 {
    font-family: Fraunces;
    color: #fff;
    font-weight: 400;
    font-size: 20px;
    margin-bottom: 10px;
}

.dt_explore_content h5 a {
    color: #fff;
}

.dt_explore_content p {
    color: #BEBEBE;
    font-size: 18px;
    /* max-width: 330px; */
}

.dt__content .row .col-md-6:nth-child(3) .dt_explore_content p {
    max-width: 350px;
}

.dt__content .row .col-md-6:nth-child(4) .dt_explore_content p {
    max-width: 380px;
}

.dt__content .row .col-md-6:nth-child(5) .dt_explore_content p {
    max-width: 385px;
}

.dt__content .row .col-md-6:nth-child(6) .dt_explore_content p {
    max-width: 310px;
}


.dt_explore_content p a,
.dt_explore_content h5 a:hover {
    color: #ec2931;
}

.dt_explore_content p a:hover {
    color: #fff;
}

.dt_explore_service {
    position: relative;
}

.dt__content {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}



.dt_our_solution {
    position: relative;
    padding: 50px 0px;
}

.dt_our_solution .main_title p:first-child strong {
    color: #ec2931;
    text-transform: uppercase;
    font-weight: 600;
}

/* 
.dt_our_solution .main_title p {
    color: #414141;
} */

.dt_our_solution .main_title p:first-child {
    margin-bottom: 5px;
}

.dt_our_solution .main_title h2 {
    margin-bottom: 20px;
}

.dt_our_solution .row {
    margin: -6px;
    justify-content: center;
}

.dt_our_solution .row .col-md-3 {
    padding: 6px;
    width: 50%;
}

.dt_solution_box {
    background-color: #f9f9f9;
    border: 1px solid #d6d6d6;
    border-radius: 20px;
    text-align: center;
    padding: 30px 20px;
    transition: 0.4s;
    height: 100%;
    min-height: 200px;
    position: relative;
    overflow: hidden;
}

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

.dt_solution_box p {
    font-family: Fraunces;
    position: relative;
    z-index: 55;
}

.dt_solution_box p br {
    display: none;
}

.dt_solution_box p strong {
    display: block;
}

.dt_solution_icon {
    max-width: 70px;
    margin: 0 auto 11px;
    position: relative;
    z-index: 55;
    min-height: 85px;
}

.dt_solution_icon img {
    transition: 0.6s;
}

.dt_solution_box:hover {
    border-color: #ec2931;
}

.dt_solution_box:hover p,
.dt_solution_box:hover p strong {
    color: #fff;
}

.dt_solution_box:hover .dt_solution_icon img {
    filter: brightness(0) invert(1);
    /* transform: rotateY(360deg); */
}

.dt_solution_box span {
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    background-color: #ec2931;
    transition: width 0.5s ease-in-out, height 0.5s ease-in-out;
    transform: translate(-50%, -50%);
}

.dt_solution_box:hover span {
    width: 225%;
    height: 562.5px;
}


.dt_journey_wrap {
    position: relative;
    background-color: #ec2931;
    padding: 50px 0;
    background-image: url("../images/dt_journey_bg.png");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center center;
}

.dt_journey_wrap .main_title {
    margin: 0;
}

.dt_journey_wrap .main_title h2 {
    color: #fff;
    margin-bottom: 20px;
}

.dt_journey_wrap .main_title p {
    color: #fff;
}

.dt_journey_wrap .btn__grid .btn-ctn:nth-child(1):hover span {
    background: #303030 !important;
}

.dt_journey_wrap .btn__grid .btn-ctn:nth-child(2) {
    background: #303030 !important;
    border: none;
}





.dt_experience_wrap {
    position: relative;
    padding: 50px 0 10px;
}

.digitrend_col .row .col-md-3 {
    margin: 10px 0;
}

.dt_experience_wrap .main_title p:first-child strong {
    color: #ec2931;
    text-transform: uppercase;
    font-weight: 600;
}

.dt_experience_wrap .main_title p:first-child {
    margin-bottom: 5px;
}

.dt_experience_wrap .main_title h2 {
    margin-bottom: 20px;
    text-transform: unset;
}

.digitrend_col {
    background-color: #000;
    border-radius: 14px;
    /* padding: 15px 0; */
}

.dt_experience_box {
    padding: 20px 30px;
    position: relative;
    transition: 0.4s;
    height: 100%;
}

.dt_experience_box::before,
.dt_experience_box::after {
    content: "";
    position: absolute;
    height: 20px;
    background-color: #ec2931;
    left: 0;
    right: 0;
    width: 100%;
    opacity: 0;
    transition: 0.4s;
}

/* .dt_experience_box:hover, */
/* #cards_elements article.active {
    background-color: #ec2931;
} */

/* .dt_experience_box:hover::before,
.dt_experience_box:hover::after, */
#cards_elements article.active .dt_experience_box::before,
#cards_elements article.active .dt_experience_box::after {
    opacity: 0;
}

.dt_experience_box p a {
    color: #ec2931;
    display: block;
}

/* .dt_experience_box:hover p a, */
#cards_elements article.active .dt_experience_box p a {
    color: #fff;
    text-decoration: underline;
}

.digitrend_col .row .col-md-3:nth-child(2) .dt_experience_box,
.digitrend_col .row .col-md-3:nth-child(4) .dt_experience_box {
    background-color: #ec2931;
}

.digitrend_col .row .col-md-3:nth-child(2) .dt_experience_box p a,
.digitrend_col .row .col-md-3:nth-child(4) .dt_experience_box p a {
    color: #fff;
    text-decoration: underline;
}

.digitrend_col .row .col-md-3:nth-child(2) .dt_experience_box::before,
.digitrend_col .row .col-md-3:nth-child(2) .dt_experience_box::after,
.digitrend_col .row .col-md-3:nth-child(4) .dt_experience_box::before,
.digitrend_col .row .col-md-3:nth-child(4) .dt_experience_box::after {
    opacity: 1;
}

.dt_experience_box::before {
    top: -20px;
    border-radius: 20px 20px 0 0px;
}

.dt_experience_box::after {
    bottom: -20px;
    border-radius: 0px 0px 20px 20px;
}

.dt_experience_box h5 {
    color: #fff;
    font-size: 18px;
    font-family: Fraunces;
    font-weight: 400;
    margin-bottom: 20px;
}

.dt_experience_box h5 a {
    color: #fff;
    display: inline-block;
    position: relative;
    /* text-decoration: underline; */
}

.dt_experience_box h5 a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #eeeeee8a;
}

.dt_experience_box p {
    color: #fff;
    margin: 0px;
}

.dt_experience_icon {
    display: flex;
    align-items: center;
    min-height: 90px;
    /* max-width: 150px;
    margin-bottom: 25px; */
}

.dt_experience_icon img {
    filter: brightness(0) invert(1);
}




.dt_futuristic_solution {
    position: relative;
    padding: 50px 0;
    overflow: hidden;
}

.dt_futuristic_solution::before,
.dt_futuristic_solution::after {
    content: "";
    position: absolute;
    background-image: url("../images/dt_futuristic_solution_bg.png");
    background-repeat: no-repeat;
    background-size: contain;
    width: 73px;
    height: 127px;
}

.dt_futuristic_solution::before {
    left: 0;
    bottom: 0;
}

.dt_futuristic_solution::after {
    right: 0;
    top: 0;
    transform: rotate(180deg);
}

.dt_futuristic_solution .main_title p:first-child strong {
    color: #ec2931;
    text-transform: uppercase;
    font-weight: 600;
}

.dt_futuristic_solution .main_title h2 {
    margin-bottom: 20px;
}

.dt_futuristic_solution .main_title .btn__grid {
    margin: 30px auto 0px;
}


.tab_grid {
    background-color: #f9f9f9;
    border: 1px solid #d6d6d6;
    border-radius: 2px;
    padding: 30px 30px;
}

.tab_grid .nav {
    display: none;
}

.select_link {
    position: relative;
    border-radius: 30px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 20px;
    cursor: pointer;
    /* background: #ec2931; */
    max-width: 300px;
    margin: 0 auto 10px;
    border: 1px solid #000;
}

.select_link::after {
    content: '';
    position: absolute;
    border-top: 2px solid #000;
    border-left: 2px solid #000;
    width: 10px;
    height: 10px;
    transform: rotate(-135deg);
    display: block;
    border-radius: 2px;
    cursor: pointer;
    right: 20px;
    top: 12px;
    transition-duration: .4s;
}

.change_text {
    font-size: 18px;
    color: #000;
    width: 100%;
    text-align: center;
    font-weight: 600;
}

.select_link.active-tab::after {
    transform: rotate(-315deg);
    top: 19px;
}

.tab_grid.dropdown_links .nav {
    display: block;
    max-width: 300px;
    margin: 0 auto;
}

.tab-content {
    margin-top: 20px;
}

.tab_grid .nav li button {
    width: 100%;
    border-radius: 30px;
    color: #06162F;
    font-size: 18px;
    height: 45px;
    min-width: 120px;
}

.tab_grid .nav li button.active,
.tab_grid .nav li button:hover {
    background: #ec2931;
    /* background: linear-gradient(180deg, rgba(229, 27, 35, 1) 0%, rgba(185, 20, 26, 1) 100%); */
    color: #fff;
    font-weight: 600;
}

.tab_grid .nav li {
    margin-bottom: 1px;
}

.tab_grid .tab-content .tab-pane ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: -20px;
}

.tab_grid .tab-content .tab-pane ul li {
    padding: 20px;
    width: 33.3333%;
    text-align: center;
    margin-top: 10px;
    position: relative;
}

.tab_grid .tab-content .tab-pane ul li::after {
    content: "";
    position: absolute;
    right: 0;
    top: 30px;
    width: 1px;
    background-color: #ccc;
    bottom: 30px;
    opacity: 1;
}

.tab_grid .tab-content .tab-pane ul li:nth-child(3n+3)::after {
    opacity: 0;
}

.tech_icon {
    max-width: 50px;
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
}

.tab_grid .tab-content .tab-pane ul li p {
    margin: 0;
}



.dt_build_wrap {
    background-color: #000;
    padding: 50px 0;
    position: relative;
    background-image: url("../images/dt_build_wrap_bg.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position-x: 100%;
    background-position-y: 100%;
}

.dt_build_wrap .main_title {
    margin: 0;
}

.dt_build_wrap .main_title h2 {
    color: #fff;
    max-width: 390px;
    margin: 0 auto 20px;
}

.dt_build_wrap .main_title h2 span {
    color: #fff;
    background-color: #ec2931;
    line-height: 40px;
    padding: 0 5px 5px;
    margin-left: 2px;
}

.dt_build_wrap .main_title p {
    color: #fff;
    max-width: 680px;
    margin: 0 auto 25px;
}



.dt_ratings_reviews {
    position: relative;
    padding: 50px 0;
}

.dt_ratings_reviews .main_title h2 {
    margin-bottom: 15px;
}

.dt_ratings_reviews .main_title p:first-child {
    margin-bottom: 5px;
}

.dt_ratings_reviews .main_title p:first-child strong {
    color: #ec2931;
    text-transform: uppercase;
    font-weight: 600;
}


.dt_star_free {
    position: relative;
    background-color: #ec2931;
    background-image: url("../images/dt_star_free_bg.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 30px 0;
}

.dt_star_free .main_title {
    margin: 0px;
}

.dt_star_free .main_title h2 {
    color: #fff;
    margin-bottom: 15px;
}

.dt_star_free .main_title p {
    color: #fff;
    margin-bottom: 10px;
}

.dt_star_free .btn__grid {
    margin: 25px auto 0px;
}

.dt_star_free .btn__grid .btn-ctn:nth-child(1):hover span {
    background: #303030 !important;
}

.dt_star_free .btn__grid .btn-ctn:nth-child(2) {
    background: #303030 !important;
    border: none;
}



.dt_blog_wrap {
    position: relative;
    overflow: hidden;
    padding: 50px 0;
}

/* .dt_blog_wrap p {
    color: #666;
} */

.dt_blog_wrap .main_title {
    margin-bottom: 0px;
}

.dt_blog_wrap .main_title p:first-child {
    margin-bottom: 5px;
}

.dt_blog_wrap .main_title p:first-child strong {
    color: #ec2931;
    text-transform: capitalize;
    font-weight: 600;
}

.dt_blog_wrap .row {
    margin: -15px;
}

.dt_blog_wrap .row .col-md-6 {
    padding: 15px;
}

.dt_blog_wrap .row .col-md-6:nth-child(1) {
    padding-bottom: 0;
}

.dt_blog_wrap .col-md-6 p {
    text-align: center;
}

.dt_blog_box {
    position: relative;
    height: 100%;
    overflow: hidden;
}

.dt_blog_img {
    position: relative;
    overflow: hidden;
    border-radius: 6px;
    border-bottom: 4px solid transparent;
    transition: 0.4s;
}

/* .dt_blog_img::after {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 2;
    display: block;
    content: '';
    width: 0;
    height: 0;
    background: rgba(236, 41, 49, 0.3);
    border-radius: 100%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    opacity: 0;
}

.dt_blog_box:hover .dt_blog_img::after {
    -webkit-animation: circle .75s;
    animation: circle .75s;
} */

.dt_blog_img a {
    display: block;
    height: 100%;
}

.dt_blog_img a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: 0.4s;
}

.dt_blog_box:hover .dt_blog_img {
    border-color: #ec2931;
}

.dt_blog_box:hover .dt_blog_img img {
    transform: scale(1.05);
}

.dt_blog_content {
    padding-top: 20px;
    text-align: center;
}

.dt_blog_wrap .row .col-md-4 {
    padding: 15px;
}

.blog_date p {
    margin: 0;
    padding-bottom: 10px;
}

.blog_date p {
    margin: 0;
}

.blog_date a {
    display: inline-block;
    color: #ec2931;
}

.blog_date a:hover {
    color: #000;
}

.blog_title_text {
    padding-bottom: 10px;
}

.blog_title_text h4 {
    font-family: Fraunces;
    color: #000;
    font-size: 18px;
}

.blog_title_text h4 a {
    color: #000;
}

.blog_title_text h4 a:hover {
    color: #ec2931;
}

.view_all_btn .btn-ctn {
    max-width: 220px;
    margin: 0 auto;
    display: flex;
}


.blog_para p {
    margin: 0;
}

.view_all_btn {
    margin-top: 40px;
}

.dt_contact_us {
    background-color: #000;
    position: relative;
    overflow: hidden;
    padding: 50px 0px;
}

.dt_contact_us .main_title p:first-child {
    margin-bottom: 5px;
}

.dt_contact_us .main_title p:nth-child(1) strong {
    color: #ec2931;
    text-transform: uppercase;
    font-weight: 400;
}

.dt_contact_us .main_title h2 {
    color: #fff;
    text-transform: unset;
    margin-bottom: 20px;
}

.dt_contact_us .main_title p {
    color: #fff;
}

.map_grid {
    margin-top: 20px;
}

.dt_contact_us .row {
    flex-direction: column-reverse;
}

.form_content {
    text-align: center;
}

.map_grid p {
    margin: 0px;
    color: #fff;
    max-width: 450px;
}

.map_grid p strong {
    display: block;
    color: #ec2931;
    font-family: Fraunces;
    margin-bottom: 2px;
}






.main_footer {
    position: relative;
    padding-top: 50px;
}

.main_footer .container {
    width: 100%;
    max-width: 100%;
    padding: 0;
}

.footer_head .row {
    margin: 0;
}

.footer_head .row>article {
    padding: 0px;
    width: 100%;
}

.footer_logo {
    padding: 0 20px 20px;
    border-bottom: 1px solid #1111115e;
}

.footer_logo a {
    display: block;
    max-width: 123px;
    margin: 0 auto;
}

.media_icon {
    padding: 10px 20px 10px;
    border-bottom: 1px solid #1111115e;
}

.media_icon ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.media_icon ul li {
    margin: 5px;
}

.media_icon ul li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    max-width: 40px;
    min-width: 40px;
    height: 40px;
    background-color: #f5fafd;
    border: 1px solid #cfd2d4;
    border-radius: 50%;
    padding: 2px;
    position: relative;
    overflow: hidden;
}

.media_icon ul li a::before {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ec2931;
    transition: .5s;
    z-index: 2;
}

/* .media_icon ul li a:hover {
    background-color: #ed1b24;
    border-color: #ed1b24;
} */

.media_icon ul li a img {
    transition: 0.4s;
    width: auto;
    min-height: 20px;
    height: 20px;
    max-height: 20px;
    position: relative;
    z-index: 555;
}

.media_icon ul li a:hover::before {
    top: 0;
}

.media_icon ul li a:hover img {
    transform: rotateY(360deg);
    filter: brightness(0) invert(1);
}

.footer_head .col-md-3:nth-child(3) {
    padding: 10px 20px;
    border-bottom: 1px solid #1111115e;
}

.rating_grid {
    background-color: #f5fafd;
    max-width: 250px;
    margin: 0 auto;
    text-align: center;
    border: 1px solid #acafb2;
    border-radius: 5px;
    padding: 10px 20px;
}

.rating_grid .d-flex {
    align-items: center;
    justify-content: center;
}

.rounded__score {
    margin: 0px;
    font-size: 25px;
    margin-right: 10px !important;
    font-weight: 600;
}

.rounded__review-link {
    color: #17313b;
    font-size: 15px;
    font-weight: 400;
}

.footer_bg_strip {
    background-color: #000;
}

.footer-location {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 5px 0;
}

.footer-location a {
    font-size: 18px;
    color: #fff;
    padding: 6px;
    position: relative;
    font-weight: 400;
}

.footer-location a:hover {
    color: #ec2931;
}

.footer_cols_wrap .row {
    margin: 0;
}

.footer_cols_wrap .row>article {
    padding: 0;
    width: 100%;
}

.foote_links h4 {
    color: #ec2931;
    font-size: 24px;
    font-weight: 600;
    text-align: center;
    padding: 10px 20px;
    border-bottom: 1px solid #1111115e;
}

.foote_links .menu li a {
    color: #06162F;
    padding: 10px 20px;
    text-align: center;
    font-size: 18px;
    border-bottom: 1px solid #1111115e;
}

.foote_links .menu li a:hover {
    color: #ec2931 !important;
}

/* .foote_links .menu li:last-child a {
    border-bottom: none;
} */

.copytight_wrap {
    padding: 10px 20px;
}

.copytight_wrap p {
    color: #06162F;
    margin: 0;
    font-size: 16px;
    text-align: center;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

.copytight_wrap p strong {
    color: #ec2931;
    font-weight: normal;
}

.copytight_wrap p a:first-child {
    color: #ec2931;
}

.copytight_wrap p a:first-child:hover {
    color: #000;
}

.copytight_wrap p a {
    color: #06162F;
    padding: 0 5px;
}

.copytight_wrap p a:hover {
    color: #ec2931;
}

.rating_icon {
    width: 45px;
    margin: 0 auto;
}






/********************
    Sub Pages CSS
********************/
.inner-page .main_header::after,
.inner-page .main_header::before {
    display: none;
}

.dt_subBanner_wrap {
    position: relative;
}

.dt_subBanner_img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.inner-page .dt_subBanner_img::before,
.page-template-template-Industry-html .dt_subBanner_img::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    opacity: 0.7;
}

.dt_subBanner_img .banner-picture {
    display: block;
    height: 100%;
}

.dt_subBanner_img .banner-picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.dt_subBanner_grid {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 30px 0;
    display: flex;
    align-items: center;
    min-height: 300px;
}

.dt_subBanner_content {
    text-align: center;
}

.dt_subBanner_content h1 {
    color: #fff;
    font-size: 25px;
    margin-bottom: 15px;
    font-family: Fraunces;
    font-weight: 600;
}

.dt_subBanner_content h1 br {
    display: none;
}

.dt_subBanner_content p {
    color: #fff;
}

.aboutUs-page .dt_subBanner_content p br {
    display: none;
}

.dt_subBanner_content .btn-ctn {
    max-width: 220px;
}


.dt_fostering_culture {
    position: relative;
    padding: 50px 0px;
    background-image: url("../images/dt_fostering_bg.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position-x: 100%;
    background-position-y: 100%;
}

.dt_fostering_culture::before,
.dt_fostering_culture::after {
    content: "";
    position: absolute;
    background-repeat: no-repeat;
    background-size: contain;
}

.dt_fostering_culture::before {
    left: 0;
    bottom: 0;
    background-image: url("../images/dt_fostering_left.png");
    width: 71px;
    height: 111px;
}

.dt_fostering_culture::after {
    top: 0;
    right: 0;
    background-image: url("../images/dt_fostering_right.png");
    background-position-x: 100%;
    background-position-y: 0;
    width: 89px;
    height: 114px;
}

.dt_fostering_culture .main_title h2 {
    margin-bottom: 25px;
    text-transform: unset;
}

.dt_fostering_culture .main_title .twp_img_info {
    margin-bottom: 20px;
}

.twp_img_info {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px;
    background-image: url("../images/twp_img_info_bg.png");
    background-repeat: no-repeat;
    background-size: 230px;
    background-position-x: 50%;
    background-position-y: 70%;
}

.fostering_culture {
    width: 50%;
    padding: 0 10px;
    height: 285px;
    position: relative;
}

.img_border {
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: 0.4s;
}

.img_border img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: 0.4s;
}

/* .img_border:hover img {
    transform: scale(1.05);
} */

.img_border::before {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 2;
    display: block;
    content: '';
    width: 0;
    height: 0;
    background: rgba(236, 41, 49, 0.3);
    border-radius: 100%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    opacity: 0;
}

.img_border:hover::before {
    -webkit-animation: circle .75s;
    animation: circle .75s;
}

.twp_img_info .fostering_culture:nth-child(1) .img_border {
    border-radius: 0px 60px 0 60px;
}

.twp_img_info .fostering_culture:nth-child(1)::before,
.twp_img_info .fostering_culture:nth-child(1)::after {
    content: "";
    position: absolute;
    background-repeat: no-repeat;
    background-size: contain;
}

.twp_img_info .fostering_culture:nth-child(1)::before {
    background-image: url("../images/border_line_before.png");
    right: 45%;
    bottom: -50px;
    width: 52px;
    height: 58px;
}

.twp_img_info .fostering_culture:nth-child(1)::after {
    background-image: url("../images/border_line_after.png");
    top: 10px;
    right: -60px;
    width: 53px;
    height: 60px;
    z-index: -1;
}

.twp_img_info .fostering_culture:nth-child(2) {
    margin-top: 70px;
}

.twp_img_info .fostering_culture:nth-child(2) .img_border {
    border-radius: 60px 0px 60px 0px;
}

.twp_img_info .fostering_culture:nth-child(2) .img_border::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    opacity: 0.1;
}

.dt_fostering_culture .main_title {
    margin: 0;
}

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

.main_title p a {
    color: #ec2931;
    position: relative;
    display: inline;
}

.main_title p a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background-color: #ec2931;
    opacity: 0.5;
}

.main_title p a:hover::after {
    display: none;
}




.dt_sw_wrap {
    background-color: #020202;
    position: relative;
    padding: 50px 0;
    background-image: url("../images/dt_sw_wrap_bg.png");
    background-repeat: no-repeat;
    background-position-x: 100%;
    background-size: 200px;
}

.dt_sw_wrap::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    background-image: url("../images/dt_sw_before.png");
    background-repeat: no-repeat;
    background-size: contain;
    width: 135px;
    height: 151px;
}

.dt_sw_wrap .main_title h2 {
    color: #fff;
    margin-bottom: 20px;
}

.dt_sw_wrap .main_title p {
    color: #fff;
}

#counter {
    display: flex;
    flex-wrap: wrap;
    margin: -10px;
    justify-content: center;
}

.counter_col {
    width: 50%;
    padding: 10px;
}

.counter-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 130px;
    height: 130px;
    border: 1px solid #eeeeee69;
    border-radius: 50%;
    margin: 0 auto;
    transition: 0.4s;
    padding: 15px;
    text-align: center;
}

.counter-box .d-flex {
    align-items: center;
}

.count.percent {
    color: #fff;
    font-size: 30px;
    font-family: Fraunces;
}

.counter-box p {
    margin: 0;
    color: #fff;
    line-height: 15px;
    font-size: 14px;
}

.count_title {
    color: #fff;
    font-size: 30px;
    font-weight: 200;
    line-height: 0;
}

.counter-box:hover {
    border: 5px solid #ec2931;
    background-color: #fff;
}

.counter-box:hover p {
    color: #000;
}

.counter-box:hover .count_title,
.counter-box:hover .percent {
    color: #ec2931;
}





.dt_customers {
    position: relative;
    padding: 50px 0;
}

.dt_customers .main_title {
    margin-bottom: 15px;
}

.dt_customers .main_title h2 {
    margin-bottom: 10px;
}

.logo_box img {
    width: auto !important;
}

.customer_slider .owl-stage {
    margin: 0 auto;
}

.customer_slider .owl-stage .owl-item .items {
    height: 100%;
    padding: 20px 10px;
}

.logo_box {
    border: 1px solid #EFEFEF;
    border-radius: 4px;
    padding: 10px;
    min-height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.4s;
    height: 100%;
    box-shadow: 0px 0px 30px transparent;
}

.customer_slider .owl-stage .owl-item .items:hover .logo_box {
    box-shadow: 0px 0px 30px #66666640;
}

/* .customer_slider .owl-stage .owl-item.center .logo_box {
    box-shadow: 0px 0px 30px #66666640;
} */

.dt_customers .owl-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 25px;
}

.dt_customers .owl-dots .owl-dot {
    width: 14px;
    height: 14px;
    background-color: #b3b3b3;
    border: 2px solid #b3b3b3;
    border-radius: 50%;
    margin: 0 2px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dt_customers .owl-dots .owl-dot.active {
    border: 2px solid #ec2931;
    background-color: #fff;
}

.dt_customers .owl-dots .owl-dot.active span {
    width: 4px;
    height: 4px;
    display: flex;
    align-items: center;
    border-radius: 50%;
    background-color: #ec2931;
}



.dt_competencies {
    position: relative;
    background-color: #000;
    padding: 50px 0;
    text-align: center;
    background-image: url("../images/dt_competencies_bg.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center top;
}

.dt_competencies .main_title {
    margin-bottom: 30px;
}

.dt_competencies .row {
    margin: -10px;
}

.dt_competencies .row .col-md-3 {
    padding: 10px;
}

.dt_competencies .main_title h2 {
    color: #fff;

}

.dt_competencies_box p {
    color: #fff;
    transition: 0.4s;
    position: relative;
    z-index: 55;
}

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

.dt_competencies_title {
    margin-bottom: 20px;
    position: relative;
    z-index: 55;
}

.dt_competencies_title h5 {
    color: #ec2931;
    font-family: Fraunces;
    font-size: 22px;
    font-weight: 500;
    transition: 0.4s;
}

.dt_competencies_box {
    background-color: #151515;
    padding: 20px 15px;
    border: 1px solid #ffffff47;
    border-radius: 4px;
    height: 100%;
    transition: 0.4s;
    position: relative;
    overflow: hidden;
}

.dt_competencies_box span {
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    background-color: #ec2931;
    transition: width 0.6s ease-in-out, height 0.6s ease-in-out;
    transform: translate(-50%, -50%);
}

.dt_competencies_box:hover span {
    width: 450%;
    height: 800.5px;
}

.dt_competencies_box:hover {
    border-color: #ec2931;
    /* background-color: #ed1b24; */
}

.dt_competencies_box:hover h5,
.dt_competencies_box:hover p {
    color: #fff;
}




.dt_our_leaders {
    position: relative;
    overflow: hidden;
    padding: 50px 0px;
    background-image: url("../images/dt_our_leaders_after.png");
    background-repeat: no-repeat;
    background-size: 160px;
    background-position-x: 100%;
    background-position-y: -60px;
}

.team_slider .owl-stage-outer .owl-stage {
    margin: 0 auto;
}

.dt_our_leaders .main_title {
    margin-bottom: 10px;
}

.dt_our_leaders .main_title h2 {
    margin-bottom: 8px;
}

.team_slider img {
    width: auto !important;
}

.team_slider .owl-stage .owl-item {
    padding: 10px;
}

.team_slider .items,
.team_slider2 .items {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    transition: 0.6s;
}

/* .team_slider .centerActive .items {
    -webkit-transform: scale(1.19);
    -ms-transform: scale(1.19);
    transform: scale(1.19);
    width: 95%;
    margin: 0 auto;
} */

.profile_img {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    height: 450px;
}

.profile_img img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    object-position: center;
}

.profile_img .profile_title {
    background-color: #000;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 10px;
}

.profile_title p {
    color: #fff;
    margin: 0;
    text-align: center;
    font-family: Fraunces;
    font-size: 18px;
    line-height: 20px;
    text-transform: capitalize;
}

.profile_content ul {
    display: flex;
    justify-content: center;
    align-items: center;
}

.profile_content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px;
    height: 60%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    transition: 0.4s;
    background-image: url("../images/profile_content_bg.png");
    z-index: 55;
    background-position-x: 100%;
    background-position-y: 100%;
    background-repeat: no-repeat;
    background-size: 100% 100%;
}

.profile_content ul li a {
    display: block;
    margin: 0 8px;
}

.profile_content ul li a img {
    width: 22px !important;
    height: 22px !important;
    object-fit: contain;
    transition: 0.4s;
    filter: brightness(0) invert(1);
}

.profile_content ul li a:hover img {
    transform: rotate(360deg);
}

.profile_content .profile_title {
    margin-bottom: 10px;
}

.sub_title p {
    color: #fff;
    margin-bottom: 0;
}

.sub_title {
    display: inline-block;
    border-bottom: 2px solid #000;
    padding: 0px 20px 10px;
    margin-bottom: 20px;
}



.team_slider .owl-dots {
    text-align: center;
}

.team_slider .owl-dots .owl-dot {
    height: 4px;
    width: 40px;
    background-color: #D9D9D9;
    margin: 0 3px;
    border-radius: 20px;
}

.team_slider .owl-dots .owl-dot.active {
    background-color: #ec2931;
}




.dt_technology_partner {
    position: relative;
    background: #E8E9EB;
    background: linear-gradient(0deg, rgba(232, 233, 235, 0.18) 0%, rgba(232, 233, 235, 0.41) 100%);
    padding: 50px 0;
}

.dt_technology_partner .main_title h2 {
    margin-bottom: 10px;
}

.dt_technology_slider .owl-stage-outer .owl-stage {
    margin: 0 auto;
}

.dt_technology_slider .items {
    padding: 20px 12px;
}

.tech_img {
    border: 1px solid #EFEFEF;
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
    min-height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.4s;
    height: 100%;
    box-shadow: 0px 0px 25px transparent;
}

.tech_img img {
    width: auto !important;
    margin: 0 auto;
    height: 55px;
    min-height: 55px;
    object-fit: contain;
}

.dt_technology_slider .owl-stage .owl-item:hover .tech_img {
    box-shadow: 0px 0px 25px #66666657;
}

.dt_technology_partner .main_title {
    margin-bottom: 20px;
}

.owl-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
}

.team_slider .owl-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
}

.team_slider .owl-nav button {
    background-color: #000 !important;
    color: #fff !important;
    font-size: 30px !important;
    width: 50px;
    height: 50px;
    margin: 0 8px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.s;
}

.team_slider .owl-nav button:hover {
    background-color: #ec2931 !important;
}

.team_slider .owl-nav button span {
    font-weight: 200;
    font-size: 40px;
    line-height: 0;
}

.team_slider .owl-nav button.owl-prev,
.team_slider .owl-nav button.owl-next {
    padding: 0 0 12px !important;
}



.AI-page .dt_subBanner_grid,
.page-template-template-Industry-html .dt_subBanner_grid,
.page-template-template-AI .dt_subBanner_grid {
    background-image: url("../images/AI-banner-before.png");
    background-repeat: no-repeat;
    background-size: 400px;
    background-position-x: 50%;
}

.dt_subBanner_content h1 span {
    color: #ec2931;
}

.banner_SubTitle {
    color: #ec2931;
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 20px;
}

.city_slider .owl-stage-outer .owl-stage {
    margin: 0 auto;
}

.city_slider .items {
    padding: 20px 12px;
}

.city_slider .owl-stage .owl-item:hover .tech_img {
    box-shadow: 0px 0px 25px #66666657;
}


.dt_AI_service {
    position: relative;
    padding: 50px 0;
    overflow: hidden;
    background: linear-gradient(360deg, rgba(238, 238, 238, 0.48) 0%, rgba(249, 249, 249, 0.11) 89%);
}

.dt_AI_service .row {
    margin: -15px;
    justify-content: center;
}

.dt_AI_service .row .col-md-4 {
    padding: 15px;
}

.dt_AI_service .main_title {
    margin-bottom: 30px;
}

.AI_service_box {
    background-color: #f9f9f9;
    border: 1px solid #0000003d;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    height: 100%;
    padding: 20px 15px 20px 20px;
    transition: 0.4s;
    box-shadow: 5px 8px 30px transparent;
}

.AI_service_box:hover {
    background-color: #fff;
    box-shadow: 1px 12px 30px #6666664f;
    border-color: #ec2931;
}

.AI_service_title {
    padding-bottom: 10px;
}

.AI_service_title h3 {
    color: #000;
    font-size: 20px;
    font-family: Fraunces;
    text-transform: capitalize;
}

.AI_service_title h3 span {
    color: #ec2931;
}

.AI_service_para {
    padding-bottom: 10px;
}

.AI_service_para p {
    margin: 0;
    color: #666;
}

.AI_service_box:hover p {
    color: #000;
}

.AI_service_box ul li {
    color: #666;
    font-size: 16px;
    font-weight: 400;
    font-family: "Outfit", sans-serif;
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    background-image: url("../images/check-right.png");
    background-repeat: no-repeat;
    background-size: 17px;
    background-position-x: 0;
    background-position-y: 5px;
}

.dt_Pplatform_wrap {
    position: relative;
    padding: 50px 0;
}

.dt_Pplatform_wrap::before {
    content: "";
    position: absolute;
    left: 0;
    top: -80px;
    background-image: url("../images/dt_Pplatform_bg.png");
    width: 50px;
    height: 160px;
    background-size: contain;
    background-repeat: no-repeat;
}

.dt_Pplatform_wrap::after {
    content: "";
    position: absolute;
    top: 0;
    background-image: url("../images/dt_Pplatform_after.png");
    width: 60px;
    height: 160px;
    background-size: contain;
    background-repeat: no-repeat;
    right: 40px;
    margin: 0 auto;
}

.dt_Pplatform_wrap .main_title h2 {
    max-width: 350px;
    margin: 0 auto 12px;
}



.dt_logocricle {
    width: 220px;
    height: 220px;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px #917757;
    padding: 35px;
    margin: 30px auto;
    position: relative;
    overflow: hidden;
}

.dt_logocricle img {
    transition: 0.4s;
}

.dt_logos_wrap:hover .dt_logocricle img {
    transform: scale(1.2) rotate(45deg);
}

.social_logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.log_cricle a {
    display: flex;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    box-shadow: 0px 4px 3px #ec2931;
    align-items: center;
    justify-content: center;
    padding: 15px;
    margin: 0 20px;
    position: relative;
    overflow: hidden;
    z-index: 55;
    background-color: #fff;
    transition: all 0.3s ease;
}

.log_cricle:hover a {
    animation: moveAround 2s infinite ease-in-out;
}

@keyframes moveAround {
    0% {
        transform: translate(0, 0) scale(1.05);
    }

    25% {
        transform: translate(5px, -5px) scale(1.05);
    }

    50% {
        transform: translate(0, 0) scale(1.05);
    }

    75% {
        transform: translate(-5px, 5px) scale(1.05);
    }

    100% {
        transform: translate(0, 0) scale(1.05);
    }
}

.dt_logos_wrap .social_logo:nth-child(1) .log_cricle:nth-child(1) {
    margin-bottom: -60px;
}

.dt_logos_wrap .social_logo:nth-child(1) .log_cricle:nth-child(2) {}

.dt_logos_wrap .social_logo:nth-child(1) .log_cricle:nth-child(3) {
    margin-bottom: -60px;
}


.dt_logos_wrap .social_logo:nth-child(3) .log_cricle:nth-child(1) {
    margin-top: -60px;
}

.dt_logos_wrap .social_logo:nth-child(3) .log_cricle:nth-child(2) {}

.dt_logos_wrap .social_logo:nth-child(3) .log_cricle:nth-child(3) {
    margin-top: -60px;
}

.log_cricle {
    position: relative;
}

.log_cricle::after {
    content: "";
    position: absolute;
    left: 0;
    width: 1px;
    height: 100px;
    background-color: #D9D9D9;
    right: 0;
    margin: 0 auto;
    z-index: -1;
}

.dt_logos_wrap .social_logo:nth-child(1) .log_cricle::after {
    top: 20px;
}

.dt_logos_wrap .social_logo:nth-child(1) .log_cricle:nth-child(1)::after {
    transform: rotate(-20deg);
    left: 30px;
    top: 20px;
}

.dt_logos_wrap .social_logo:nth-child(1) .log_cricle:nth-child(3)::after {
    transform: rotate(20deg);
    right: 30px;
}

.dt_logos_wrap .social_logo:nth-child(3) .log_cricle::after {
    bottom: 20px;
}


.dt_logos_wrap .social_logo:nth-child(3) .log_cricle:nth-child(1)::after {
    transform: rotate(20deg);
    left: 40px;
    bottom: 20px;
}

.dt_logos_wrap .social_logo:nth-child(3) .log_cricle:nth-child(3)::after {
    transform: rotate(-20deg);
    right: 40px;
}

















.dt_built_wrap {
    position: relative;
    background-color: #000;
    padding: 50px 0;
    background-image: url("../images/built_bg.png");
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: center;
}

.dt_built_wrap .main_title h2 {
    color: #fff;
    margin-bottom: 20px;
}

.dt_built_wrap .main_title p {
    color: #fff;
}

.tech_stack_content {
    background-color: #ec2931;
    text-align: center;
    padding: 20px;
    border-radius: 20px;
    position: relative;
}

.tech_stack .nav {
    text-align: center;
    justify-content: center;
    gap: 5px;
}

.tech_stack .nav .nav-item {
    width: 22%;
    text-align: center;
}

.tech_stack .nav .nav-item .nav-link {
    padding: 15px;
    background-color: #151515;
    border: 1px solid #ffffff3b;
    width: 100%;
    height: 100%;
    border-radius: 5px;
}

.tech_stack .nav .nav-item .nav-link.active {
    border-color: #ED1C24;
}

.tech_stack_content p {
    color: #fff;
    margin: 0;
}

.tech_stack_content img {
    max-width: 60px;
    margin: 0 auto 10px;
}







.dt_team_wrap {
    position: relative;
    overflow: hidden;
    padding: 50px 0;
}

.dt_team_wrap .main_title {
    margin-bottom: 25px;
}

.dt_team_wrap .main_title p:first-child {
    margin-bottom: 5px;
}

.dt_team_wrap .main_title p:first-child strong {
    color: #ec2931;
    text-transform: uppercase;
    font-weight: 400;
}

.dt_team_wrap .main_title h2 {
    margin-bottom: 5px;
    text-transform: unset;
}

.dt_team_wrap .row {
    margin: -12px;
    justify-content: center;
}

.dt_team_wrap .row .col-md-3 {
    padding: 12px;
}

.team_profile_box {
    background-color: #fff;
    padding: 10px;
    box-shadow: 1px 1px 20px #4444446b;
    border-radius: 10px 10px 100px 10px;
    transition: 0.4s;
}

.team_profile_box:hover {
    background-color: #ec2931;
}

.team_profile_box .profile_img {
    height: 320px;
}

.team_profile_box .profile_img img {
    transition: 0.6s;
    filter: grayscale(100%);
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    -ms-filter: grayscale(100%);
    -o-filter: grayscale(100%);
}

.team_profile_box .profile_content {
    position: static;
    background-image: none;
    height: auto;
    padding: 15px 50px 20px 10px;
    display: block;
}

.team_profile_box .profile_title p {
    color: #000;
    text-align: left;
}

.team_profile_box .sub_title {
    display: block;
    border: none;
    padding: 0px;
    margin: 0px 0 10px;
}

.team_profile_box .sub_title p {
    color: #666;
}

.team_profile_box ul {
    justify-content: flex-start;
    margin: -8px;
}

.team_profile_box ul li {
    padding: 8px;
}

.team_profile_box ul li a {
    padding: 0;
    margin: 0;
}

.team_profile_box ul li a img {
    filter: unset;
    width: 18px !important;
    height: 18px !important;
}

.team_profile_box:hover .profile_title p,
.team_profile_box:hover .sub_title p {
    color: #fff;
}

.team_profile_box:hover ul li a img {
    filter: brightness(0) invert(1);
}

.team_profile_box:hover .profile_img img {
    height: 320px;
    transition: 0.6s;

    filter: unset;
    -webkit-filter: unset;
    -moz-filter: unset;
    -ms-filter: unset;
    -o-filter: unset;
}





.dt_full_AIService {
    background-color: #000;
    position: relative;
    padding: 50px 0 0;
    background-image: url("../images/AIService_bg.png");
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: center;
}

.dt_full_AIService::after {
    content: "";
    position: absolute;
    top: 10px;
    left: 0;
    background-image: url("../images/services_img.png");
    background-repeat: no-repeat;
    background-size: contain;
    width: 50px;
    height: 220px;
}

.accordion_Tab {
    background-color: transparent;
    margin-bottom: 30px;
}

.accordion_Tab .accordion-item {
    border-radius: 0px;
    background-color: transparent !important;
    border: none;
}

.accordion_Tab .accordion-item .accordion-button.collapsed {
    color: #999999;
}

.accordion_Tab .accordion-item .accordion-button {
    border-radius: 0px;
    padding: 12px 0px;
    background-color: transparent;
    border-left: none;
    outline: none;
    box-shadow: none;
    border-right: none;
    border-top: 1px solid #414141;
    border-bottom: none;
    color: #ec2931;
}

.accordion_Tab .accordion-item .accordion-button::after {
    display: none;
}

.accordion_Tab .accordion-item h4 {

    display: block;
    font-family: Fraunces;
    font-size: 22px;
}

.accordion_Tab .accordion-body {
    padding: 0px 0px 20px;
    /* border-top: 1px solid #414141; */
}

.service_acc p {
    color: #fff;
}

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

.service_acc_img {
    margin-top: 20px;
}

.dt_full_AIService .main_title {
    margin-bottom: 0px;
    text-align: left;
}

.dt_full_AIService .main_title p:first-child {
    margin-bottom: 20px;
}

.dt_full_AIService .main_title p:first-child strong {
    color: #ec2931;
    text-transform: uppercase;
    font-weight: 400;
}

.dt_full_AIService .main_title h2 {
    color: #fff;
    margin-bottom: 15px;
}

.dt_full_AIService .main_title p {
    color: #fff;
}

.accordion_Tab .accordion-item:nth-child(1) .accordion-button {
    border-top: none;
}



.dt_artifficial_intelligence {
    position: relative;
    padding: 50px 0;
    background-image: url("../images/dt_artifficial_intelligence_bg.png");
    background-repeat: no-repeat;
    background-size: contain;
    background-position-x: 50%;
    background-position-y: -220px;
}

.dt_artifficial_intelligence::before {
    content: "";
    position: absolute;
    left: -10px;
    bottom: -60px;
    background-image: url("../images/dt_artifficial_intelligence_before.png");
    background-repeat: no-repeat;
    background-size: contain;
    width: 250px;
    height: 250px;
}

.dt_artifficial_intelligence .main_title h2,
.DigiTrends_global .main_title h2 {
    margin-bottom: 10px;
}

.dt_artifficial_intelligence .main_title p:first-child,
.DigiTrends_global .main_title p:first-child {
    margin-bottom: 10px;
}

.dt_artifficial_intelligence .main_title p:first-child strong,
.DigiTrends_global .main_title p:first-child strong {
    color: #ec2931;
    text-transform: uppercase;
    font-weight: 400;
}

.services_action::after {
    content: "";
    position: absolute;
    right: -10px;
    top: -50px;
    background-image: url("../images/services_action_after.png");
    background-repeat: no-repeat;
    width: 50px;
    height: 50px;
    background-size: contain;
}

.services_action .owl-stage {
    display: flex;
    padding-left: 1px;
    justify-content: center;
    margin: 0 auto;
}

.services_action .owl-stage .items {
    height: 100%;
}

.services_action_box {
    background-color: rgb(232, 233, 235, 0.3);
    border-radius: 20px;
    padding: 30px;
    position: relative;
    overflow: hidden;
    border: 1px solid #0003;
    height: 100%;
    transition: 0.4s;
}

.services_action_box span {
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    background-color: #ec2931;
    transition: width 0.5s ease-in-out, height 0.5s ease-in-out;
    transform: translate(-50%, -50%);
}

.services_action_box:hover span {
    width: 225%;
    height: 562.5px;
}


.services_action_box .d-flex {
    align-items: center;
    margin-bottom: 20px;
    position: relative;
    z-index: 55;
}

.services_action_icon {
    width: 79px;
    height: 79px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    display: flex;
    border: 1px solid #0000000a;
    padding: 22px;
    transition: 0.4s;
}

.services_action_box:hover .services_action_icon {
    border-color: #fff;
    background-color: #fff;
}

.services_action_icon img {
    width: auto !important;
    transition: 0.4s;
}

.services_action_title {
    width: calc(100% - 79px);
    padding-left: 20px;
}

.services_action_title h5 {
    font-family: Fraunces;
    color: #000;
    font-size: 20px;
    transition: 0.4s;
}

.services_action_box:hover h5 {
    color: #fff;
}

.services_action_box p {
    color: #666;
    position: relative;
    z-index: 55;
    transition: 0.4s;
}

.services_action_box:hover p {
    color: #fff;
}

.services_action_box p:nth-last-child(2) {
    margin-bottom: 0;
}

.services_action .owl-dots .owl-dot {
    width: 30px;
    height: 5px;
    background-color: #D9D9D9;
    border-radius: 8px;
    margin: 0 5px;
}

.services_action .owl-dots .owl-dot.active {
    background-color: #ec2931;
}

.services_action .owl-dots {
    text-align: center;
    margin-top: 30px;
}




.DigiTrends_global {
    position: relative;
    padding: 50px 0;
    border-top: 1px solid #11111145;
    background: linear-gradient(360deg, rgba(238, 238, 238, 0.48) 0%, rgba(249, 249, 249, 0.11) 89%);
}

.DigiTrends_global::before {
    content: "";
    position: absolute;
    top: 10px;
    left: 10px;
    background-image: url("../images/DigiTrends_global_before.png");
    background-repeat: no-repeat;
    background-size: contain;
    width: 60px;
    height: 40px;
    opacity: 0.6;
}

.DigiTrends_global::after {
    content: "";
    position: absolute;
    top: -14%;
    right: 0;
    background-image: url("../images/DigiTrends_global_after.png");
    background-repeat: no-repeat;
    background-size: contain;
    background-position-x: 100%;
    width: 270px;
    height: 270px;
}

.reviews_slider_box {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 20px;
    border-radius: 70px;
    position: relative;
    overflow: hidden;
    transition: 0.4s;
    height: 110px;
}

.reviews_slider_box::before,
.reviews_slider_box::after {
    content: "";
    position: absolute;
    background-repeat: no-repeat;
    background-size: contain;
    width: 79px;
    height: 75px;
    z-index: 55;
    background-position: center;
    transition: 0.4s;
    opacity: 0;
}

.reviews_slider_box::before {
    top: 0;
    left: 0;
    background-image: url("../images/reviews_slider_box_before.png");
}

.reviews_slider_box::after {
    bottom: 0;
    right: -3px;
    background-image: url("../images/reviews_slider_box_after.png");
}

.reviews_slider_box>span {
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    transition: width 0.5s ease-in-out, height 0.5s ease-in-out;
    transform: translate(-50%, -50%);

    background: #EC2931;
    background: linear-gradient(90deg, rgba(236, 41, 49, 1) 0%, rgba(0, 0, 0, 1) 100%);
}

.reviews_slider_box:hover>span {
    width: 225%;
    height: 562.5px;
}

.reviews_slider_box:hover:hover::before,
.reviews_slider_box:hover:hover::after {
    opacity: 0.2;
}

.company_logo {
    position: relative;
    z-index: 55;
    max-width: 100%;
    margin: 0 auto;
    width: auto;
}

.badge_detail {
    position: relative;
    z-index: 55;
    width: 190px;
    padding-left: 10px;
}

.reviews_slider_box img {
    transition: 0.4s;
    width: auto !important;
    height: auto !important;
}

.badge_detail span {
    color: #000;
    font-size: 21px;
    font-weight: 600;
    margin-right: 10px;
    transition: 0.4s;
}

.badge_detail p {
    margin: 0;
    color: #ec2931;
    font-size: 18px;
    font-weight: 400;
    transition: 0.4s;
}

.badge_detail .d-flex {
    align-items: center;
}

.reviews_slider_box:hover .badge_detail span,
.reviews_slider_box:hover .badge_detail p {
    color: #fff;
}

.reviews_slider_box:hover .company_logo img {
    filter: brightness(0) invert(1);
}

.DigiTrends_global .dt_technology_slider {
    margin-top: 20px;
}

.DigiTrends_global .dt_technology_slider .owl-dots {
    display: none;
}

.DigiTrends_global .dt_technology_slider .tech_img {
    height: 150px;
}

.DigiTrends_global .dt_technology_slider .tech_img img {
    height: 75px;
    min-height: 75px;
}





.dt_FAQ_wrap {
    position: relative;
}

.dt_FAQ_img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.dt_FAQ_img picture {
    width: 100%;
    display: block;
    height: 100%;
}

.dt_FAQ_img picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.dt_FAQ_content {
    position: relative;
    padding: 40px 0;
}

.dt_FAQ_content::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    opacity: 0.9;
}

.dt_FAQ_content .main_title {
    margin-bottom: 20px;
    text-align: left;
}

.dt_FAQ_content .main_title p:nth-child(1) {
    margin-bottom: 10px;
}

.dt_FAQ_content .main_title p:nth-child(1) strong {
    color: #ec2931;
    text-transform: uppercase;
    font-weight: 400;
}

.dt_FAQ_content .main_title h2 {
    margin-bottom: 10px;
    max-width: 460px;
}

.dt_FAQ_content .accordion .accordion-item {
    border-radius: 0px;
    background-color: transparent;
    border-top: none;
    border-right: none;
    border-left: none;
    border-bottom: 1px solid #D9D9D9;
    padding-bottom: 15px;
    margin-bottom: 15px;
}

.dt_FAQ_content .accordion .accordion-item:last-child {
    margin-bottom: 0px;
}

.dt_FAQ_content .accordion .accordion-item .accordion-button {
    border-radius: 0;
    background-color: transparent;
    padding: 0px;
    outline: none;
    border: none;
    box-shadow: none;
}

.dt_FAQ_content .accordion .accordion-item .accordion-button::after {
    background-image: url("../images/accordion-arrow.png");
    filter: brightness(0%);
}

.dt_FAQ_content .accordion .accordion-item .accordion-button:not(.collapsed)::after {
    filter: unset;
}

.dt_FAQ_content .accordion .accordion-item .accordion-button h4 {
    color: #000;
    font-size: 20px;
    font-weight: 500;
    display: flex;
}

.dt_FAQ_content .accordion .accordion-item .accordion-button h4 span {
    color: #ec2931;
    margin-right: 5px;
    width: 25px;
}

.dt_FAQ_content .accordion .accordion-body {
    padding: 5px 0px 0px 28px;
}

.dt_FAQ_content .accordion .accordion-body p:last-child {
    margin-bottom: 0;
}

.dt_FAQ_content .accordion .accordion-body p {
    color: #666;
    display: flex;
}

.dt_FAQ_content .accordion .accordion-body p strong {
    color: #000;
    margin-right: 5px;
    width: 25px;
}


.dt_contact_wrap {
    position: relative;
    padding: 30px 0 50px;
}


.dt_contact_bg {
    background-color: #fff;
    box-shadow: 0 0 30px #cccccc8a;
    padding: 40px 30px;
    position: relative;
    overflow: hidden;
    background-image: url("../images/dt_contact_bg.png");
    background-repeat: no-repeat;
    background-size: 100px;
    background-position-x: 100%;
}

.dt_contact_bg::before {
    content: "";
    position: absolute;
    left: 10px;
    top: 10px;
    background-image: url("../images/border_line_before.png");
    background-repeat: no-repeat;
    background-size: contain;
    width: 52px;
    height: 58px;
}

.dt_contact_bg .main_title {
    margin: 0px;
    background-image: url("../images/dt_contact_bg_dots.png");
    background-repeat: no-repeat;
    background-size: 80px;
    background-position-x: 50%;
    background-position-y: 100%;
    padding-bottom: 80px;
}

.dt_contact_bg .main_title p:first-child {
    margin-bottom: 10px;
}

.dt_contact_bg .main_title p:first-child strong {
    color: #ec2931;
    text-transform: uppercase;
    font-weight: 400;
}

.dt_contact_bg .main_title h2 {
    margin-bottom: 40px;
}

.dt_contact_bg .main_title .btn-ctn {
    max-width: 330px;
}

.AIdev_img_grid {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    margin-bottom: 30px;
}

.AIdev_img_grid::before,
.AIdev_img_grid::after {
    content: "";
    position: absolute;
    background-repeat: no-repeat;
    background-size: contain;
}

.AIdev_img_grid::before {
    left: 20%;
    bottom: 5px;
    background-image: url("../images/AIdev_img_before.png");
    width: 43px;
    height: 66px;
}

.AIdev_img_grid::after {
    top: -42px;
    right: 19%;
    background-image: url("../images/AIdev_img_after.png");
    width: 43px;
    height: 86px;
}

.mobile_none {
    display: none;
}

.AIdev_img_grid .AI_dev_img:nth-child(1) {
    width: 35%;
    height: 285px;
}

.AIdev_img_grid .AI_dev_img:nth-child(2) {
    width: 65%;
    height: 370px;
}

.AI_dev_img {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    z-index: 55;
}

.AI_dev_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: 0.4s;
}

.dt_logos_wrap.mobile-left,
.dt_portfolio_slider.dt_portfolio_slider_mobile,
.digitrend_col.digitrend_col_mobile {
    display: none !important;
}


.page-template-template-casestudy-listing-html .dt_subBanner_wrap .dt_subBanner_img {
    background-color: #000;
}

.page-template-template-casestudy-listing-html .dt_subBanner_wrap .dt_subBanner_img .banner-picture img {
    width: auto !important;
    margin-left: auto !important;
    display: block;
}

.page-template-template-casestudy-listing-html .dt_subBanner_wrap .dt_subBanner_img::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    opacity: 0.7;
}

.page-template-template-casestudy-listing-html .dt_subBanner_wrap .dt_subBanner_grid {
    background-image: url("../images/AI-banner-before.png");
    background-repeat: no-repeat;
    background-size: 400px;
    background-position-x: 50%;
}

.page-template-template-casestudy-listing-html .dt_portfolio_wrap {
    padding: 30px 0 50px;
}

.page-template-template-casestudy-listing-html .dt_portfolio_wrap::before,
.page-template-template-casestudy-listing-html .dt_portfolio_wrap::after {
    display: none;
}

.page-template-template-casestudy-listing-html .dt_portfolio_wrap .main_title {
    margin: 0 !important;
}

.new_portfolio_img .banner-picture {
    width: 100%;
    height: 100% !important;
    display: block;
}

.new_portfolio_img .banner-picture img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    object-position: center left;
}

.new_portfolio_wrap {
    position: relative;
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
}

.new_portfolio_img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.new_portfolio_content {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.new_portfolio_content::after {
    content: "";
    position: absolute;
    background-color: #ffffffcf;
    left: 10px;
    top: -80px;
    width: 500px;
    height: 640px;
    border-radius: 50%;
    box-shadow: -15px 15px 60px #5555556b;
}

.portfolio_cricle_grid {
    margin-left: auto;
    padding: 30px 30px;
    border-radius: 50px;
    text-align: center;
    background-image: url("../images/portfolio_cricle_bg.png");
    background-repeat: no-repeat;
    background-size: 310px;
    background-position-x: 50%;
    background-position-y: 100%;
    position: relative;
    z-index: 55;
}

.content_logo {
    max-width: 220px;
    margin: 0 auto 20px;
}

.portfolio_GB h3 {
    font-size: 20px;
    font-family: Fraunces;
    margin-bottom: 15px;
}

.Digipill__grid p {
    margin: 0;
}

.Digipill__grid p strong {
    color: #ED1C24;
    text-transform: uppercase;
}

.Digipill__grid .btn-ctn {
    display: inline-flex;
    width: auto;
    margin-top: 20px;
    border: transparent;
    background: #808080;
    background: linear-gradient(180deg, rgba(128, 128, 128, 1) 0%, rgba(58, 58, 58, 1) 100%);
}

.Digipill__grid .btn-ctn:hover {
    color: #fff;
}

.Digipill__grid .btn-ctn span {
    background-color: #303030;
}


.new_portfolio2_wrap {
    position: relative;
    overflow: hidden;
}

.new_portfolio2_img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.new_portfolio2_content {
    position: relative;
    text-align: center;
    padding: 60px 0 0;
    z-index: 666;
    background-image: url("../images/new_portfolio2_dotted.png");
    background-repeat: no-repeat;
    background-size: 130px;
    background-position-y: 20px;
}

.new_portfolio2_img .banner-picture {
    display: block;
    height: 100%;
    width: 100%;
}

.new_portfolio2_img .banner-picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.new_portfolio2_content .portfolio_GB {
    margin-bottom: 20px;
    background-color: #ffffffb2;
    box-shadow: 1px 1px 20px #cccccc8f inset;
    padding: 30px 20px;
    border-radius: 30px;
}

.mobile_app_img {
    max-width: 450px;
    margin: 0 auto;
}

.new_portfolio3_wrap {
    position: relative;
    padding: 70px 0 0;
    background-color: #f9f9f9;
}

.new_portfolio3_wrap::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    background-image: url("../images/top-corner.png");
    background-repeat: no-repeat;
    background-size: cover;
    width: 120px;
    height: 100px;
}

.new_portfolio3_wrap .portfolio_cricle_grid {
    padding-bottom: 80px;
    background-color: #ffffffb2;
    box-shadow: 1px 1px 20px #cccccc8f inset;
    background-position-y: 90%;
    margin: 0 auto 30px !important;
}

/* .new_portfolio3_wrap .portfolio_cricle_grid {
    padding: 0;
    text-align: left;
    background-position-x: 0px;
} */

/* .new_portfolio3_wrap .portfolio_cricle_grid .content_logo {
    margin-left: 0;
} */

.new_portfolio3_wrap .portfolio_cricle_grid h3 {
    width: 100%;
}

.new_portfolio3_wrap .portfolio_cricle_grid::after {
    display: none !important;
}

.new_portfolio3_wrap .row {
    align-items: center;
}

.new_portfolio3_wrap .portfolio_cricle_grid .Digipill__grid {
    width: 100%;
}




.new_portfolio4_wrap {
    position: relative;
    padding: 50px 0;
}

.new_portfolio4_bg {
    background-color: #000;
    border-radius: 20px;
    padding: 30px 20px 0;
    background-image: url("../images/right-img-bg.png");
    background-repeat: no-repeat;
    background-position-x: 100%;
    background-position-y: 50%;
    background-size: 350px;
}

.new_portfolio4_bg .row {
    flex-direction: column-reverse;
}

.new_portfolio4_bg .portfolio_cricle_grid {
    margin: 0 auto 20px !important;
    border: 1px solid #fff;
}

.new_portfolio4_bg .portfolio_cricle_grid h3 {
    color: #fff;
}

.new_portfolio4_bg .portfolio_cricle_grid p {
    color: #fff;
}



.BeSmart_portfolio_wrap {
    background-color: #fefefe;
    position: relative;
    text-align: center;
    background-image: url("../images/portfolio_right.png");
    background-repeat: no-repeat;
    background-size: 190px;
    background-position-x: 100%;
    background-position-y: 0;
    position: relative;
    overflow: hidden;
    border-top: 1px solid #ccc;
}

.BeSmart_portfolio_wrap .container {
    width: 100%;
    padding: 0px;
}

.BeSmart_portfolio_wrap::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    background-image: url("../images/reviews_slider_box_after2.png");
    background-repeat: no-repeat;
    background-size: contain;
    width: 170px;
    height: 120px;
}

.BeSmart_portfolio_wrap .row .portfolio_GB {
    margin-bottom: 20px;
    position: relative;
    padding: 40px 10px !important;
    border-radius: 40%;
}

.BeSmart_portfolio_wrap .row .portfolio_GB::after {
    content: "";
    position: absolute;
    background-color: #ffffffcf;
    left: 0px;
    top: 0;
    width: 100%;
    height: 470px;
    border-radius: 50%;
    box-shadow: 3px 30px 10px #55555526;
    right: 0px;
}

.BeSmart_portfolio_wrap .row .portfolio_GB .content_logo,
.BeSmart_portfolio_wrap .row .portfolio_GB h3,
.BeSmart_portfolio_wrap .row .portfolio_GB p,
.BeSmart_portfolio_wrap .row .portfolio_GB .Digipill__grid {
    position: relative;
    z-index: 666;
}









.page-template-template-casstudies-details-html .dt_subBanner_wrap {
    background-color: #000;
    background-image: url("../images/work-details-corner-left.png");
    background-repeat: no-repeat;
    background-size: 95px;
    background-position-x: 0;
    background-position-y: 100%;
}

.page-template-template-casstudies-details-html .dt_customers {
    background-image: url("../images/portfolio_right.png");
    background-repeat: no-repeat;
    background-size: 100px;
    background-position-x: 100%;
    background-position-y: 0;
}

.page-template-template-casstudies-details-html .dt_customers::after {
    content: "";
    position: absolute;
    left: -10px;
    bottom: -120px;
    background-image: url("../images/customer_trues_before.png");
    background-repeat: no-repeat;
    background-size: contain;
    width: 150px;
    height: 260px;
}

.key_Objectives {
    position: relative;
    padding: 30px 0;
    background-image: url("../images/portfolio_left.png");
    background-repeat: no-repeat;
    background-size: 60px;
    background-position-x: 0;
    background-position-y: 100%;
}

.key_Objectives::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    background-image: url("../images/key-object-cricle-right.png");
    background-repeat: no-repeat;
    background-size: contain;
    width: 80px;
    height: 90px;
    background-position-x: 100%;
}

.key_Objectives .main_title {
    margin-bottom: 30px;
}

.key_objectsImg_cricle {
    border: 1px solid #555;
    padding: 10px;
    width: 100%;
    height: 100%;
    margin: 0 auto;
    border-radius: 10px;
}

.inner_gradent {
    background: #000;
    background: linear-gradient(360deg, rgba(0, 0, 0, 1) 0%, rgba(237, 28, 36, 1) 93%);
    border-radius: 10px;
    padding: 10px;
    box-shadow: 1px 2px 6px #00000061;
}

.inner_gradent img {
    width: 100%;
}

.object_numbers {
    position: relative;
    padding-bottom: 25px;
}

.object_numbers::after {
    content: "";
    position: absolute;
    left: 25px;
    top: 0;
    bottom: 0;
    width: 1px;
    background-color: #555;
}

.key_Objectives .row article:nth-child(3) .object_numbers {
    padding-bottom: 0px;
    padding-top: 25px;
}

.object_numbers .d-flex {
    margin-bottom: 15px;
    position: relative;
}

.object_numbers .d-flex:last-child {
    margin-bottom: 0px;
}

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

.cricle_number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 23px;
    font-family: Fraunces;
    text-transform: capitalize;
    border: 4px solid #fff;
    background-color: #ED1C24;
    color: #fff;
    position: relative;
    z-index: 555;
    padding: 0px;
}

.cricle_number::before {
    content: "";
    position: absolute;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 1px solid #555;
}

.cricle_para {
    width: calc(100% - 50px);
    padding-left: 15px;
    position: relative;
}

.key_Objectives .row article:nth-child(3) .object_numbers .d-flex:last-child::after {
    content: "";
    position: absolute;
    left: 10px;
    top: 0;
    bottom: 0;
    width: 30px;
    background-color: #fff;
    height: 100%;
    z-index: 55;
}


.Challenges_wrap {
    background-color: #000;
    position: relative;
    text-align: center;
    padding: 50px 0px;
    background-image: url("../images/Challenges_bg.png");
    background-repeat: no-repeat;
    background-size: 979px;
    background-position-x: 50%;
    background-position-y: 150%;
    overflow: hidden;
}

.Challenges_wrap::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    background-image: url("../images/Challenges_after.png");
    background-repeat: no-repeat;
    background-size: contain;
    background-position-x: 100%;
    background-position-y: 0;
    width: 195px;
    height: 204px;
}

.Challenges_wrap .main_title {
    margin: 0px;
}

.Challenges_wrap .main_title h2 {
    color: #fff;
    margin-bottom: 20px;
}

.Challenges_wrap .main_title p {
    color: #fff;
}

.Challenges_slider {
    margin-top: 30px;
}

.Challenges_slider .owl-stage-outer .owl-stage {
    display: flex;
}

.Challenges_slider .owl-stage-outer .owl-stage .items {
    height: 100%;
    padding: 15px 10px;
}

.Challenges_slider .main_title {
    border: 1px solid #511215;
    padding: 20px 10px;
    border-radius: 20px;
    box-shadow: 2px 2px 20px #000;
}

.Challenges_slider .owl-dots {
    text-align: center;
    margin-top: 20px;
}

.Challenges_slider .owl-dots .owl-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #fff;
    margin: 5px;
    border: 1px solid #fff;
}

.Challenges_slider .owl-dots .owl-dot.active {
    background-color: #ED1C24;
}

.Results_Wrap {
    position: relative;
    padding: 50px 0;
}

.result_info h5 {
    margin-bottom: 15px;
    position: relative;
    font-family: Fraunces;
    font-size: 22px;
}

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

.Results_Wrap .main_title {
    padding: 40px 15px;
    background-color: #ffffff1a;
    border-radius: 20px;
    box-shadow: 0 0 8px 4px #5553;
    border-bottom: 5px solid #ec2931;
    border-right: 5px solid #ec2931;
    overflow: hidden;
    position: relative;
}

.Results_mobile_slider .owl-nav {
    margin-top: 30px;
}

.Results_mobile_slider .owl-nav button.owl-prev,
.Results_mobile_slider .owl-nav button.owl-next {
    background-color: #ED1C24;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    margin: 0 5px;
    padding: 10px !important;
    transition: 0.4s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.Results_mobile_slider .owl-nav button.owl-prev img {
    transform: rotate(180deg);
}

.Results_mobile_slider .owl-nav button img {
    width: 13px;
    filter: brightness(0) invert(1);
    transition: 0.4s;
}

.Results_mobile_slider .owl-stage {
    counter-reset: my-counter;
    display: flex;
    padding-left: 5px;
}

.Results_mobile_slider .owl-stage .owl-item {
    position: relative;
    counter-increment: my-counter;
}

.Results_mobile_slider .owl-stage .owl-item::before {
    content: counter(my-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 40px;
    height: 40px;
    text-align: center;
    border-radius: 50%;
    background: #ED1C24;
    color: #fff;
    font-weight: 600;
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 555;
}

.result_info {
    padding-left: 50px;
    position: relative;
    height: 100%;
    padding-top: 8px;
}

.result_info::before {
    content: "";
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 1px;
    background-color: #ED1C24;
}

.Results_mobile_slider .owl-stage .items {
    height: 100%;
}




.porftolio_slider_new img {
    width: auto !important;
}

.porftolio_slider_new .owl-nav button.owl-prev,
.porftolio_slider_new .owl-nav button.owl-next {
    width: 60px;
    min-width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.porftolio_slider_new .owl-nav button.owl-prev img,
.porftolio_slider_new .owl-nav button.owl-next img {
    width: 15px !important;
}

.porftolio_slider_new .owl-nav button.owl-prev img {
    transform: rotate(180deg);
}

.porftolio_slider_new .porftolio_new_box {
    background-color: #f7f7f7;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    display: block;
    text-align: center;
    padding: 50px 20px 40px;
    border: 1px solid #ccc;
    box-shadow: 1px 1px 10px #ccc;
    width: 100%;
}

.porftolio_slider_new .porftolio_new_box::before,
.porftolio_slider_new .porftolio_new_box::after {
    content: "";
    position: absolute;
    background-image: url("../images/shadow-cricle2.png");
    background-repeat: no-repeat;
    background-size: contain;
    width: 247px;
    height: 247px;
}

.porftolio_slider_new .porftolio_new_box::before {
    top: -100px;
    left: -100px;
}

.porftolio_slider_new .porftolio_new_box::after {
    bottom: -100px;
    right: -100px;
}

.porftolio_slider_new .porftolio_new_box .porftolio_new_box_logo {
    max-width: 200px;
    margin: 0 auto 20px;
    text-align: center;
}

.porftolio_slider_new .porftolio_new_box .porftolio_new_box_logo img {
    min-width: 50px !important;
    margin: 0 auto;
    min-height: 50px !important;
    max-height: 50px !important;
}

.porftolio_slider_new .owl-item {
    padding: 15px;
}

.porftolio_slider_new .porftolio_new_box .porftolio_new_IMG {
    max-width: 250px;
    margin: 0 auto 30px;
    height: 250px;
}

.porftolio_slider_new .porftolio_new_box .porftolio_new_IMG img {
    height: 100%;
    margin: 0 auto;
}

.page-template-template-casstudies-details-html .dt_portfolio_wrap .main_title {
    margin-bottom: 20px;
}

.porftolio_slider_new .owl-nav {
    margin-top: 10px;
    margin-bottom: 20px;
}

.porftolio_new_button .btn-ctn {
    display: inline-flex;
    width: auto;
    color: #fff;
    margin-top: 10px;
    border: transparent;
    background: gray;
    background: linear-gradient(180deg, rgba(128, 128, 128, 1) 0%, rgba(58, 58, 58, 1) 100%);
}

.porftolio_new_button .btn-ctn span {
    background-color: #303030;
}


.project_strip {
    background-color: #ED1C24;
    position: relative;
    overflow: hidden;
    background-image: url("../images/w-icon.png");
    background-repeat: repeat-x;
    background-size: 140px;
    padding: 125px 0 20px;
    background-position-x: 50%;
    margin-bottom: 10px;
}

.project_strip::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 58%;
    background: #ED1C24;
    background: linear-gradient(360deg, rgba(237, 28, 36, 1) 0%, rgba(135, 16, 21, 1) 100%);
}

.project_strip .main_title {
    margin: 0;
}

.project_strip .main_title h2 {
    color: #fff;
}

.lets_talk {
    text-align: center;
    margin-top: 20px;
}

.lets_talk .btn-ctn {
    display: inline-flex;
    width: auto;
    background-color: #fff;
    color: #000;
    padding: 5px 50px;
    border: none;
}

.lets_talk .btn-ctn:hover {
    border-color: #5a5a5a;
    color: #fff;
}

.lets_talk .btn-ctn span {
    border: transparent;
    background: gray;
    background: linear-gradient(180deg, rgba(128, 128, 128, 1) 0%, rgba(58, 58, 58, 1) 100%);
}


.FSW__wraper {
    position: relative;
    padding: 30px 0;
}

.FSW__wraper .container {
    padding: 22px;
}

.FSW__wraper .container .row {
    background-color: #eeeeee9e;
    border-radius: 30px;
    padding: 30px;
    position: relative;
    box-shadow: 0px 1px 5px #555;
}

.FSW__wraper .container .row::after {
    content: "";
    position: absolute;
    top: 8px;
    left: 8px;
    right: 8px;
    bottom: 8px;
    border: 8px double #ec2931;
    border-radius: 30px;
}

.Fintech_SW_slider .items {
    display: flex;
    align-items: center;
    gap: 10px;
}

.Fintech_SW_img {
    position: relative;
}

.Fintech_SW_slider .items .Fintech_SW_img:nth-child(1) {
    width: 48%;
}

.Fintech_SW_slider .items .Fintech_SW_img:nth-child(2) {
    width: 52%;
}

.Fintech_SW_slider .items .Fintech_SW_img:nth-child(1)::before {
    content: "";
    position: absolute;
    right: -5px;
    top: -5px;
    background-image: url("../images/Fintech_SW_img_before.png");
    background-repeat: no-repeat;
    background-size: contain;
    width: 35px;
    height: 70px;
}

.Fintech_SW_slider .items .Fintech_SW_img:nth-child(1)::after {
    content: "";
    position: absolute;
    left: -1px;
    bottom: -10px;
    background-image: url("../images/Fintech_SW_img_after.png");
    background-repeat: no-repeat;
    background-size: contain;
    width: 36px;
    height: 59px;
}

.Fintech_SW_inner {
    border-radius: 190px;
    overflow: hidden;
    position: relative;
    z-index: 555;
}

.Fintech_SW_inner img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
}

.Fintech_SW_slider .items .Fintech_SW_img:nth-child(1) .Fintech_SW_inner {
    height: 250px;
}

.Fintech_SW_slider .items .Fintech_SW_img:nth-child(2) .Fintech_SW_inner {
    height: 300px;
}

.FSW__wraper .main_title .btn-ctn {
    width: auto;
}

.FSW__wraper .row .col-md-6>.Fintech_SW_slider {
    display: none;
}

.Fintech_SW_logos .owl-stage {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.Fintech_logos {
    text-align: center;
}

.Fintech_logos img {
    width: auto !important;
    margin: 0 auto;
}

.FSW__wraper .main_title h2 {
    margin-bottom: 35px;
}

.FSW__wraper .main_title {
    margin-bottom: 30px;
}

.Fintech_SW_slider .owl-dots {
    text-align: center;
}

.Fintech_SW_slider .owl-dots .owl-dot {
    width: 16px;
    height: 16px;
    background-color: #ccc;
    border-radius: 50%;
    border: 5px solid #ccc;
    margin: 5px;
}

.Fintech_SW_slider .owl-dots .owl-dot.active {
    background-color: #fff;
    border-color: #ec2931;
}




#requestAfree {
    z-index: 9999999;
}

#requestAfree.modal {
    transition: all .6s ease-in-out !important;
}

/* Right slide modal base */
.modal.modal-right .modal-dialog {
    position: fixed;
    right: 0;
    top: 0;
    margin: 0;
    width: 100%;
    max-width: 900px;
    /* adjust as needed */
    height: 100%;
    transform: translateX(100%);
    transition: transform 0.4s ease-in-out;
}

.modal.modal-right .modal-content {
    height: 100vh;
    border-radius: 0;
}

/* When modal is shown */
.modal.modal-right.show .modal-dialog {
    transform: translateX(0);
}

/* Backdrop smooth fade */
.modal-backdrop {
    transition: opacity 0.3s ease;
}

.dt_container .contact_form_bottom {
    margin-top: 0px;
}

.contact_form_bottom h1 {
    color: #fff;
    margin-bottom: 20px;
    font-family: Fraunces;
    text-transform: capitalize;
    font-size: 24px;
    text-align: center;
}

.contact_form_bottom h1 span {
    color: #ED1C24;
}

/* Mobile full width */
@media (max-width: 768px) {
    .modal.modal-right .modal-dialog {
        max-width: 100%;
    }
}

.modal-full {
    min-width: 100%;
    margin: 0;
}

.modal.modal-right .modal-content {
    height: calc(100vh - 0px);
    overflow-y: auto;
    border: none;
    background-color: #000;
    position: relative;
}

.modal.modal-right .modal-content::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
}

.modal-full .modal-content {
    min-height: 100vh;
    border-radius: 0;
}

.dt_container {
    max-width: 1600px;
    margin: 0 auto;
    width: 100%;
}

.dt_logo_wrap {
    display: flex;
    align-items: center;
}

.dt_logo_wrap img {
    width: 256px;
}

.modal-full .modal-header .btn-close {
    border: none;
    background-image: none;
    opacity: 1;
    width: 30px;
    height: 30px;
    outline: none;
    box-shadow: none;
}

.pp_btn .btn-ctn {
    cursor: pointer;
}

.right_content_wrap {
    border: 1px solid #ED1C24;
    border-radius: 20px;
    padding: 25px 30px;
    position: relative;
    margin-top: 30px;
}

.right_content_wrap h2 {
    color: #fff;
    margin-bottom: 20px;
    font-family: Fraunces;
    font-size: 22px;
}

.right_content_wrap p {
    color: #fff;
    margin: 0px;
}

.right_content_wrap p strong {
    display: block;
    color: #ED1C24;
    font-size: 20px;
    font-family: Fraunces;
}

.right_content_wrap .icon_list li {
    display: flex;
    margin-top: 25px;
}

.icon_list_icon {
    width: 30px;
}

.icon_list_content {
    width: calc(100% - 30px);
}

.right_content_wrap p a {
    display: inline-block;
    color: #fff;
    font-weight: 600;
}

.right_content_wrap p a:hover {
    color: #ED1C24;
}




.comming_soon_wrap {
    padding: 30px 0;
    position: relative;
    height: 100vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.comming_soon_logo {
    width: 120px;
    margin: 0 auto 30px;
}

.comming_soon_logo a {
    display: block;
}

.comming_soon_logo a img {
    
    width: 100%;
    height: 100%;
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(236, 41, 48, 0.705);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 15px rgba(236, 41, 48, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(236, 41, 48, 0);
    }
}

@keyframes pulse-counter {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(236, 41, 48, 0.805);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 15px rgba(236, 41, 48, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(236, 41, 48, 0);
    }
}

.comming_soon_wrap .dt_banner_content h1 {
    padding: 0px;
}

.comming_soon_wrap .dt_banner_content p {
    padding: 0px;
    color: #06162F;
}

.comming_soon_wrap .dt_banner_content p:last-child {
    margin: 0px;
}

.comming_soon_wrap .dt_banner_content p a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.comming_soon_wrap .dt_banner_content p a:hover {
    color: #ED1C24;
}

.comming_soon_wrap .dt_banner_content p a img {
    width: 28px;
    margin-right: 10px;
}

.email__title a {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 400;
    color: #06162F;
}

.email__title a:hover {
    color: #ED1C24;
}

.call_icon {
    transition: 0.4s;

}

.email__title a .call_icon {
    margin-right: 10px;
    width: 40px;
    height: 40px;
    padding: 10px;
}

.email__title a .call_icon {
    margin-right: 10px;
}

.email__title a:hover .call_icon {
    background-color: #000;
}



/*************************/
.mm_none {
    display: none;
}

.dt_banner_toparea {
    display: none;
}

/********************
   Gravity form
********************/
.gform_validation_errors {
    display: none !important;
}

.gform-loader {
    display: none !important;
}

.Results_dektop_slider {
    display: none !important;
}





@media only screen and (max-width: 1200px) {
    .menuLink .mega-menu-wrap>ul.mega-menu {
        left: 0 !important;
        width: 100% !important;
        height: auto !important;
        float: none !important;
        position: static !important;
        max-height: unset !important;
        text-indent: unset !important;
        visibility: visible !important;
    }

    .menuLink .mega-menu-wrap .mega-menu-toggle {
        display: none !important;
    }

    .menuLink .mega-menu-wrap>ul.mega-menu {
        background-color: transparent !important;
    }

    .menuLink .mega-menu-wrap>ul.mega-menu>li.mega-menu-item.mega-toggle-on>a {
        background-color: transparent !important;
    }

    .menuLink .mega-menu-wrap>ul.mega-menu>li>.mega-menu-link {
        font-size: 18px !important;
        color: #000 !important;
        font-weight: 400 !important;
        display: block !important;
        padding: 8px 20px !important;
        text-transform: capitalize !important;
        transition: 0.2s !important;
        height: auto !important;
        border-bottom: 1px solid #ec2931 !important;
    }

    .menuLink .mega-menu-wrap>ul.mega-menu>li.mega-current-menu-item .mega-menu-link {
        font-weight: 500 !important;
        color: #ec2931 !important;
        background-color: transparent !important;
    }

    .menuLink .mega-menu-wrap>ul.mega-menu>li.mega-menu-item>ul.mega-sub-menu {
        padding: 0px !important;
        background-color: #000 !important;
        background-image: url("../images/menu_bg_cricle.png") !important;
        background-repeat: no-repeat !important;
        background-position-x: -150px !important;
        background-position-y: -150px !important;
    }

    .mena_menu_title p:last-child {
        margin-bottom: 0px !important;
    }

    .mena_menu_title p {
        color: #fff;
        font-size: 18px;
    }

    .mena_menu_title p strong {
        color: #fff !important;
        font-family: Fraunces;
        font-weight: 600;
        font-size: 30px;
    }

    .menuLink .mega-menu-wrap>ul.mega-menu>li>.mega-sub-menu>li>ul>li>ul>li .mega-menu-link {
        color: #fff !important;
        font-size: 18px !important;
        font-family: "Outfit", sans-serif !important;
        font-weight: 600 !important;
        text-transform: capitalize !important;
        transition: 0.4s !important;
    }

    .menuLink .mega-menu-wrap>ul.mega-menu>li>.mega-sub-menu>li>ul>li>ul>li .mega-menu-link:hover {
        color: #ED1C24 !important;
    }

    .menuLink .mega-menu-wrap>ul.mega-menu>li>.mega-sub-menu>li>ul>li>ul>li .mega-menu-link strong {
        display: block;
        font-weight: 400 !important;
        color: #ffffff94;
        font-size: 15px;
        line-height: 22px;
        margin-top: 6px;
    }

    .menuLink .mega-menu-wrap>ul.mega-menu>li>.mega-sub-menu>li {
        padding: 20px 20px !important;
        background-image: url("../images/menu_bg_cricle.png") !important;
        background-repeat: no-repeat !important;
        background-position-x: 220% !important;
        background-position-y: 113% !important;
        background-size: 329px !important;
    }

    .menuLink .mega-menu-wrap>ul.mega-menu>li.mega-menu-item.mega-menu-flyout>ul.mega-sub-menu {
        padding: 15px 20px !important;
    }

    .menuLink .mega-menu-wrap>ul.mega-menu>li.mega-menu-item.mega-menu-flyout>ul.mega-sub-menu>li {
        padding: 0px !important;
        background-color: transparent !important;
    }

    .menuLink .mega-menu-wrap>ul.mega-menu>li.mega-menu-item.mega-menu-flyout>ul.mega-sub-menu>li .mega-menu-link {
        font-size: 18px !important;
    }

    .menuLink .mega-menu-wrap>ul.mega-menu>li.mega-menu-item.mega-menu-flyout>ul.mega-sub-menu>li .mega-menu-link {
        background-color: transparent !important;
        color: #fff !important;
        font-family: "Outfit", sans-serif !important;
        font-weight: 600 !important;
        text-transform: capitalize !important;
        padding: 10px 12px !important;
        border-bottom: 1px solid #ffffff70 !important;
        transition: 0.4s !important;
    }

    .menuLink .mega-menu-wrap>ul.mega-menu>li.mega-menu-item.mega-menu-flyout>ul.mega-sub-menu>li .mega-menu-link:hover {
        color: #ED1C24 !important;
    }

    .menuLink .mega-menu-wrap>ul.mega-menu>li.mega-menu-item.mega-menu-flyout>ul.mega-sub-menu>li:last-child .mega-menu-link {
        border-bottom: none !important;
    }

    .menuLink .mega-menu-wrap>ul.mega-menu>li>a.mega-menu-link .mega-indicator {
        width: 50px !important;
        position: relative !important;
        height: 40px !important;
        margin: 0px !important;
        right: -15px;
    }

    .menuLink .mega-menu-wrap>ul.mega-menu>li>a.mega-menu-link .mega-indicator::after {
        display: none !important;
    }

    .menuLink .mega-menu-wrap>ul.mega-menu>li>a.mega-menu-link .mega-indicator::before {
        content: '';
        position: absolute;
        border-top: 2px solid #ec2931;
        border-left: 2px solid #ec2931;
        width: 10px;
        height: 10px;
        transform: rotate(-135deg);
        display: block;
        cursor: pointer;
        right: 12px;
        top: 12px;
        transition-duration: 0.4s;
    }
}

@media only screen and (max-width: 600px) {
    .dt_banner_desktop {
        display: none;
    }

    .dt_banner_toparea {
        display: block;
    }


    .dt_banner_content .dt_banner_toparea .dt_banner_img {
        /* border-bottom-right-radius: 100px; */
        border-radius: 0 0 20px 20px;
    }


    .dt_banner_content .banner_product_slider {
        order: 5;
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(25px) saturate(180%);
        border: 1px solid rgba(255, 255, 255, 0.3);
        background-image: radial-gradient(at 0% 0%, rgb(236 41 49 / 17%) 0, transparent 50%), radial-gradient(at 100% 100%, rgba(0, 200, 255, 0.1) 0, transparent 50%);
        box-shadow: 1px 1px 10px 0px rgba(31, 38, 135, 0.37);
    }

    .dt_banner_content h1 span {
        display: unset;
    }

    .dt_explore_service {
        display: flex;
        flex-direction: column;
        margin-top: 60px;
    }

    .dt_portfolio_slider .owl-dots .owl-dot {
        width: 18px;
    }

    .dt_explore_service .dt_explore_img {
        order: 2;
        margin-top: -340px;
    }


    .dt_banner_bg {
        background-position: bottom center;
        background-size: cover;
    }

    .banner_product_slider {
        max-width: 450px;
        width: 95%;
        background-color: rgba(255, 255, 255, 0.51);
        border-radius: 10px;
        border: 1px solid #fff9;
        box-shadow: 0px 0px 20px rgba(255, 255, 255, 0.51);
        padding: 30px 20px 20px;
    }

    .dt_banner_content p {
        color: #ec2931;
    }

    .dt_banner_bg::after {
        display: none;
    }

    /* .dt_blog_wrap {
        background-image: url("../images/mobile-background.png");
        background-position: bottom center;
        background-size: cover;
    } */

    .dt_blog_content {
        padding: 20px 20px 40px;
    }

    .row.our_blog_title {
        margin-bottom: 30px;
        padding: 0px 15px;
    }

    .blog_title_text h4 {
        font-size: 20px;
        position: relative;
        margin-bottom: 20px;
    }

    .blog_title_text h4::before {
        content: '';
        position: absolute;
        height: 2px;
        width: 140px;
        background: linear-gradient(to right, transparent, #ec2931, transparent);
        bottom: -14px;
        left: 29%;
    }

    .blog_title_text h4::after {
        content: '';
        position: absolute;
        height: 8px;
        width: 8px;
        border-radius: 50%;
        background: #ec2931;
        bottom: -17px;
        left: 49%;
    }

    .dt_blog_box .dt_blog_img {
        border-color: #ec2931;
    }

    .row.our_blog_title .col-md-6 {
        padding: 0;
    }

    .row.our_blog_title .col-md-6:nth-child(1) {
        margin-bottom: 10px;
    }

    .row.our_blog_title p {
        margin: 0;
    }

    /* .dt_industery_slider .dt_industery_box:hover {
        box-shadow: none !important;
    } */

    .dt_journey_wrap .main_title {
        background: rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(15px);
        border: 1px solid rgba(255, 255, 255, 0.4);
        border-radius: 24px;
        text-align: center;
        color: white;
        box-shadow: 0px 0px 50px -12px rgb(87 87 87 / 50%);
        padding: 40px 10px;
    }

    .dt_explore_wrap .main_title p {
        margin-bottom: 10px;
    }

    .dt__content .container {
        display: none;
    }

    .dt_blog_wrap .main_title p:first-child strong {
        text-transform: uppercase;
    }

    .dt_explore_service2 .owl-nav button.owl-prev,
    .dt_explore_service2 .owl-nav button.owl-next,
    .digitrend_col_mobile .owl-nav button.owl-prev,
    .digitrend_col_mobile .owl-nav button.owl-next {
        background-color: #ec2931;
        color: #fff;
        width: 50px;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        margin: 0 5px;
    }

    .dt_explore_service2 .owl-nav button>div,
    .digitrend_col_mobile .owl-nav button>div {
        height: 100%;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .dt_explore_service2 .owl-nav button img,
    .digitrend_col_mobile .owl-nav button img {
        width: 13px;
        filter: brightness(0) invert(1);
        transition: 0.4s;
    }

    .dt_explore_service2 .owl-nav button.owl-prev img,
    .digitrend_col_mobile .owl-nav button.owl-prev img {
        transform: rotate(180deg);
    }

    .digitrend_col.digitrend_col_mobile {
        background: #f7e5e5;
        border-radius: 20px;
        padding-bottom: 30px;
        border-bottom: 2px solid #ec2931;
        box-shadow: 0 0 8px 2px #e7e7e7;
    }

    .digitrend_col.digitrend_col_mobile .owl-stage-outer {
        background: #000;
        border-radius: 20px;
    }

    .digitrend_col.digitrend_col_mobile .owl-nav {
        margin-top: 30px;
    }

    .owl-carousel.digitrend_col.digitrend_col_mobile .owl-item img {
        width: auto;
    }

    .digitrend_col.digitrend_col_mobile .dt_experience_icon {
        margin-bottom: 20px;
        justify-content: center;
    }

    .digitrend_col.digitrend_col_mobile .dt_experience_box h5 {
        text-align: center;
        position: relative;
        margin-bottom: 30px;
    }

    .digitrend_col.digitrend_col_mobile .dt_experience_box p {
        text-align: center;
    }

    .digitrend_col.digitrend_col_mobile .dt_experience_box p a {
        margin-top: 20px;
        margin-bottom: 20px;
        max-width: 180px;
        margin-left: auto;
        margin-right: auto;
        border: 2px solid #fff;
        padding: 8px 20px;
        border-radius: 30px;
        color: #fff;
        box-shadow: 0 0 8px 4px #ec2931;
    }

    .dt_explore_service2 {
        padding: 0 10px;
    }

    .dt_explore_box {
        position: relative;
        padding: 15px;
        background: rgba(10, 10, 10, 0.22);
        backdrop-filter: blur(25px);
        border-radius: 40px;
        overflow: hidden;
        border: 1px solid rgba(255, 255, 255, 0.1);
        transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    }

    .dt_explore_service2 .owl-nav {
        margin-top: 30px;
        padding: 0 20px 30px;
    }

    .dt_portfolio_img {
        margin-bottom: 0px;
    }

    .dt_capabilities_box p a {
        min-width: 170px;
        height: 48px;
        line-height: 48px;
        background: linear-gradient(to right, #ec2931 0%, #ff6464 100%);
        color: #fff;
        transition: all 0.6s ease-in-out;
        padding-right: 30px;
        border-radius: 40px;
        position: relative;
    }

    .dt_capabilities_box p a::before {
        content: '';
        position: absolute;
        height: 42px;
        width: 42px;
        border-radius: 50%;
        right: 3px;
        z-index: 2;
        background-color: #fff;
        top: 3px;

    }

    .dt_capabilities_box p a::after {
        content: '';
        position: absolute;
        height: 42px;
        width: 42px;
        border-radius: 50%;
        right: -11px;
        z-index: 2;
        top: 12px;
        background-image: url('../images/btn-icon-arrow-red.png');
        background-repeat: no-repeat;
        background-size: 25px;
        filter: invert(1);
        transform: rotate(320deg);
    }

    .dt_capabilities_box p a:hover {
        color: #fff;
        background: linear-gradient(to right, #080808 0%, #0c0b0b 100%);
    }

    .dt_explore_icon {
        width: 90px;
        height: 90px;
    }

    .dt_explore_content {
        width: calc(100% - 20px);
        text-align: center;
    }

    .dt_explore_box {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 20px;
        padding-top: 30px;
        border: 1px solid #939393;
        position: relative;
        width: 95%;
        margin: 0 auto;
    }

    .dt_awards_wrap .container {
        padding: 0 35px;
    }

    .dt_awards_slider {
        position: relative;
    }

    .dt_awards_slider .owl-nav {
        margin: 0px;
    }

    .dt_awards_slider .owl-stage-outer .owl-stage {
        display: flex;
        padding-left: 3px;
    }

    .dt_awards_slider .owl-nav button {
        width: 35px;
        height: 35px;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: #eee !important;
        border-radius: 50%;
        position: absolute;
        top: 40%;
        box-shadow: 2px 2px 10px #4444444d;
    }

    .dt_awards_slider .owl-nav button img {
        width: 8px;
        /* filter: brightness(0) invert(1); */
    }

    .dt_awards_slider .owl-nav button.owl-prev img {
        transform: rotate(180deg);
    }

    .dt_awards_slider .owl-nav button.owl-prev {
        left: -15px;
    }

    .dt_awards_slider .owl-nav button.owl-next {
        right: -15px;
    }

    .dt_capabilities_wrap {
        padding: 30px 0 0px;
    }

    .dt_capabilities_wrap .container {
        padding: 0;
        width: 100%;
    }

    .dt_capabilities_wrap .main_title {
        max-width: 93%;
        margin: 0 auto 25px;
    }

    .dt_capabilities_wrap .row {
        margin: 0px;
        border-radius: 0px;
        padding: 25px 10px 40px;
    }

    .dt_capabilities_box {
        border-bottom: 3px solid #ec2931;
    }

    .dt_capabilities_box h4 {
        position: relative;
        margin-bottom: 25px;
        margin-top: 15px;
    }

    .dt_capabilities_box h4::after {
        content: '';
        position: absolute;
        height: 2px;
        width: 80px;
        background: linear-gradient(to right, transparent, #ec2931 50%) left,
            linear-gradient(to left, #ec2931, transparent 50%) right;
        bottom: -15px;
        left: 40%;
    }



    .dt_capabilities_box:hover {
        background: linear-gradient(to top, rgb(236 41 49 / 14%) 0%, rgba(236, 41, 49, 0) 50%);
    }

    .dt_industery_icon img {
        filter: invert(1);
    }

    .dt_industery_icon {
        width: 85px;
        height: 85px;
        padding: 18px;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 50%;
        background-color: #ec2931;
    }

    .dt_industery_wrap .main_title p:first-child strong,
    .dt_portfolio_wrap .main_title p:first-child strong {
        padding: 7px 30px;
        border: 1px solid #ec2931;
        border-radius: 30px;
    }

    .dt_industery_wrap .main_title p:first-child,
    .dt_portfolio_wrap .main_title p:first-child {
        margin-bottom: 20px;
    }


    .dt_industery_wrap .item {
        padding: 0px 5px 7px 0px;
    }

    .dt_industery_box {
        box-shadow: 3px 3px 5px #ec29313b !important;
        border: 1px solid #ec2931;
    }

    .dt_awards_slider .item {
        padding: 10px;
    }

    .dt_awards_slider .item .awards_img {
        box-shadow: 0px 6px 10px 0px #f5f5f5 !important;
        border-bottom: 2px solid #ec2931;
    }

    .cs_counter_wrap .main_title {}

    .tech_img {
        box-shadow: 0px 0px 4px 1px #e1e1e1 !important;
        border-radius: 20% 20%;
        border: 1px solid #f1f1f1;
        min-height: 140px;
        filter: drop-shadow(0px 3px 0px #ec2931);
    }

    .logo_box {
        min-height: 115px;
        box-shadow: 0px 0px 10px #ccc;
    }

    .dt_team_wrap .row {
        display: none;
    }

    .team_slider2 .owl-nav button.owl-prev,
    .team_slider2 .owl-nav button.owl-next {
        background-color: #ec2931;
        color: #fff;
        width: 50px;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        margin: 0 5px;
    }

    .team_slider2 .owl-nav button img {
        width: 13px;
        filter: brightness(0) invert(1);
        transition: 0.4s;
    }

    .team_slider2 .owl-nav button.owl-prev img {
        transform: rotate(180deg);
    }

    .team_slider2 .items {
        padding: 15px 18px;
    }

    .dt_logos_wrap.mobile-left,
    .dt_portfolio_slider.dt_portfolio_slider_mobile,
    .digitrend_col.digitrend_col_mobile {
        display: block !important;
    }

    .dt_logos_wrap.mobile-left {
        margin-bottom: 40px;
    }

    .dt_capabilities_wrap .main_title {
        margin-bottom: 0px !important;
    }

    .dt_logos_wrap,
    .dt_portfolio_slider,
    .digitrend_col {
        display: none !important;
    }

    .dt_portfolio_slider.dt_portfolio_slider_mobile .owl-dots {
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: 10px;
        margin-bottom: 50px;
    }

    .dt_portfolio_slider.dt_portfolio_slider_mobile .owl-dot,
    .dt_industery_slider .owl-dots .owl-dot {
        width: 8px;
        height: 8px;
        background-color: #d1d1d1;
        border: 2px solid #d1d1d1;
        border-radius: 50%;
        margin: 0 4px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .dt_portfolio_slider.dt_portfolio_slider_mobile .owl-dot.active {
        border: 2px solid #ec2931;
        background-color: #fff;
    }

    .dt_portfolio_slider.dt_portfolio_slider_mobile .owl-dot.active span {
        width: 4px;
        height: 4px;
        display: flex;
        align-items: center;
        border-radius: 50%;
        background-color: #ec2931;
    }

    .dt_capabilities_wrap .main_title h2 {
        position: relative;
    }

    .dt_capabilities_wrap .main_title h2::after {
        content: '';
        position: absolute;
        height: 1px;
        width: 50%;
        left: 25%;
        background-color: #ec2931;
        bottom: -8px;
    }

    .dt_journey_wrap {
        background: radial-gradient(circle at top right, #ec2931, #7a0d13);
    }

    .dt_star_free {
        margin: 10px;
        border-radius: 20px;
        border: 3px solid #fff;
        box-shadow: 5px 5px 0px 0 #ec2931;
        position: relative;
    }

    .dt_star_free::before {
        content: '';
        background-image: url('../images/Logo.png');
        background-repeat: no-repeat;
        height: 45px;
        width: 45px;
        left: 5px;
        top: 5px;
        position: absolute;
        background-size: contain;
        opacity: 0.7;
        box-shadow: 0 0 2px 0px #dbdbdb;
        border-radius: 50%;
    }

    .dt_build_wrap {
        position: relative;
    }

    .dt_build_wrap {
        position: relative;
        border-top: 3px solid #ec2931;
        border-bottom: 3px solid #ec2931;
    }

    .dt_build_wrap::before {
        content: '';
        position: absolute;
        background-image: url('https://dt.esmtestserver.com/wp-content/uploads/2026/01/left-graphic.webp');
        left: 0;
        bottom: 0;
        height: 280px;
        width: 280px;
        background-size: contain;
        opacity: 0.4;
    }

    .dt_build_wrap::after {
        content: '';
        position: absolute;
        background-image: url('https://dt.esmtestserver.com/wp-content/uploads/2026/01/left-graphic.webp');
        right: 0;
        top: 0;
        height: 280px;
        width: 280px;
        background-size: contain;
        opacity: 0.4;
        transform: rotate(180deg);
    }

    .dt_build_wrap .main_title h2 {
        position: relative;
        margin-bottom: 30px;
    }

    .dt_build_wrap .main_title h2::before {
        content: '';
        position: absolute;
        height: 2px;
        width: 140px;
        background: linear-gradient(to right, transparent, #ec2931, transparent);
        bottom: -14px;
        left: 32%;
    }

    .dt_technology_partner .main_title h2 {
        position: relative;
        margin-bottom: 30px;
    }

    .digitrend_col.digitrend_col_mobile .dt_experience_box h5::before,
    .dt_technology_partner .main_title h2::before {
        content: '';
        position: absolute;
        height: 2px;
        width: 140px;
        background: linear-gradient(to right, transparent, #ec2931, transparent);
        bottom: -14px;
        left: 30%;
    }

    .dt_build_wrap .main_title h2::after,
    .dt_technology_partner .main_title h2::after {
        content: '';
        position: absolute;
        height: 8px;
        width: 8px;
        border-radius: 50%;
        background: #ec2931;
        bottom: -17px;
        left: 49%;
    }

    .digitrend_col.digitrend_col_mobile .dt_experience_box h5::after {
        content: '';
        position: absolute;
        height: 8px;
        width: 8px;
        border-radius: 50%;
        background: #ec2931;
        bottom: -17px;
        left: 48%;
    }

    .footer_logo img {
        animation: pulse 2s infinite;
        border-radius: 50%;
    }

    @keyframes pulse {
        0% {
            transform: scale(0.95);
            box-shadow: 0 0 0 0 rgba(236, 41, 48, 0.705);
        }

        70% {
            transform: scale(1);
            box-shadow: 0 0 0 15px rgba(236, 41, 48, 0);
        }

        100% {
            transform: scale(0.95);
            box-shadow: 0 0 0 0 rgba(236, 41, 48, 0);
        }
    }

    @keyframes pulse-counter {
        0% {
            transform: scale(1);
            box-shadow: 0 0 0 0 rgba(236, 41, 48, 0.805);
        }

        70% {
            transform: scale(1);
            box-shadow: 0 0 0 15px rgba(236, 41, 48, 0);
        }

        100% {
            transform: scale(1);
            box-shadow: 0 0 0 0 rgba(236, 41, 48, 0);
        }
    }

    .dt_portfolio_img::before {
        /* clip-path: polygon(
            50% 0%,
            100% 25%,
            100% 75%,
            50% 100%,
            0% 75%,
            0% 25%
        );
        width:90%;
        left:25px; */
        content: '';
        background: url('https://dt.esmtestserver.com/wp-content/uploads/2026/01/background-slider-img.webp') no-repeat;
        background-size: cover;
        background-position: center;
        width: 100%;
        mask-image: radial-gradient(circle, black 50%, rgba(0, 0, 0, 0) 100%);
        -webkit-mask-image: radial-gradient(circle, black 5%, rgba(0, 0, 0, 0) 100%);

    }

    .dt_portfolio_slider .item .dt_portfolio_box:first-child {
        margin-bottom: 20px;
    }

    .dt_explore_content p a {
        position: relative;
    }

    .dt_explore_content p a::after {
        content: '';
        position: absolute;
        height: 42px;
        width: 42px;
        border-radius: 50%;
        right: -50px;
        z-index: 2;
        top: 3px;
        background-image: url('../images/btn-icon-arrow-redcolor.png');
        background-repeat: no-repeat;
        background-size: 25px;
        transform: rotate(320deg);
    }

    .dt_explore_content p a:hover::after {
        filter: brightness(0) invert(1);
    }

    .dt_blog_box {
        border-radius: 20px;
        border: 1px solid #cbc2c3;
        box-shadow: 0 0 10px 2px #e5e5e5;
    }

    .dt_portfolio_img {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-bottom: 35px;
    }

    .dt_portfolio_img img {
        width: 320px !important;
        height: 350px;
        object-fit: contain;
    }

    .dt_banner_bg {
        padding-top: 0px;
        background-image: none;
    }

    .dt_banner_toparea .dt_banner_img {
        margin-bottom: 0;
    }

    .dt_banner-bottomarea {
        padding: 20px;
        border-radius: 30px;
        box-shadow: 0 0 10px 3px #e5e5e5;
        width: 90%;
        margin: 0 auto;
        margin-top: -100px;
        background-color: #fff;
        position: relative;
        z-index: 2;
        margin-bottom: 40px !important;
    }

    .dt_banner-bottomarea p {
        color: #010000;
    }

    .get_a_quote {
        margin: 0 auto 10px;
    }

    .dt_banner_content .banner_product_slider {
        width: 100%;
        border-radius: 0px;
        box-shadow: none;
        background: #fef9ff;
    }

    .banner_product_slider .owl-dots {
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: 20px;
    }

    .banner_product_slider .owl-dots .owl-dot {
        width: 8px;
        height: 8px;
        background: #d7d7d7;
        border-radius: 50%;
        margin: 0 2px;
    }

    .banner_product_slider .owl-dots .owl-dot.active {
        background: #ec2931;
    }

    .dt_our_solution .row .col-md-3 {
        width: 100%;
    }

    .dt_solution_box {
        min-height: 120px;
        display: flex;
        align-items: center;
        padding: 10px 40px;
        border-radius: 100px;
        border: 2px solid transparent;
        background: linear-gradient(#ffffff, #ffffffd1) padding-box, linear-gradient(to left, #ff8186, #adadad5e) border-box;
        box-shadow: 0 5px 3px 0px #ffc8c8;
    }

    .dt_our_solution .row {
        row-gap: 12px;
    }

    .dt_solution_icon {
        margin: 0;
        margin-right: 25px;
        max-width: 60px;
        min-height: auto;
    }

    .dt_solution_box p {
        text-align: left;
        margin-bottom: 0;
    }

    .footer-location a {
        position: relative;
        margin: 0 3px;
    }

    .footer-location a::after {
        content: '/';
        position: absolute;
        right: -6px;
    }

    .footer-location a:last-child::after {
        display: none;
    }

    .media_icon.media_icon_mobile {
        display: block !important;
    }

    .media_icon,
    .dt_futuristic_solution .main_title .btn__grid,
    .dt_industery_slider {
        display: none !important;
    }

    .btn_grid_mobile {
        display: block !important;
        margin-top: 40px;
    }

    .dt_industery_box .arrow_icon img {
        position: absolute;
        right: -15px;
        transform: rotate(320deg);
        bottom: -8px;
    }

    .dt_industery_slider .owl-dots {
        margin-top: 0px;
    }

    .dt_industery_wrap {
        padding: 30px 0 50px;
    }

    .dt_portfolio_wrap {
        background: linear-gradient(360deg, rgba(238, 238, 238, 0.48) 100%, rgba(249, 249, 249, 0.11) 89%);
    }

    .dt_portfolio_wrap::after {
        height: 55px;
    }

    .tab_grid {
        background-color: transparent;
        border: none;
    }

    .tab_grid .tab-content .tab-pane ul li {
        /* padding-bottom:0px; */
        position: relative;
    }

    .tab_grid .tab-content .tab-pane ul li::before {
        content: '';
        position: absolute;
        width: 80px;
        height: 1px;
        background-color: #ccc;
        bottom: 0px;
        left: 22px;
    }

    .tab_grid .tab-content .tab-pane ul li:nth-child(n+4)::before {
        display: none;
    }

    .banner_product_img img {
        max-width: 105px;
        margin: 0 auto;
    }

    .dt_ratings_reviews .main_title p:first-child strong,
    .dt_futuristic_solution .main_title p:first-child strong,
    .dt_experience_wrap .main_title p:first-child strong,
    .dt_our_solution .main_title p:first-child strong,
    .dt_explore_wrap .main_title p:first-child strong,
    .dt_blog_wrap .main_title p:first-child strong,
    .dt_contact_us .main_title p:nth-child(1) strong {
        padding: 7px 30px;
        border: 1px solid #ec2931;
        border-radius: 30px;
    }

    .dt_ratings_reviews .main_title p:first-child,
    .dt_experience_wrap .main_title p:first-child,
    .dt_our_solution .main_title p:first-child,
    .dt_explore_wrap .main_title p:first-child,
    .dt_blog_wrap .main_title p:first-child,
    .dt_contact_us .main_title p:nth-child(1) {
        margin-bottom: 20px;
    }

    /* About us */

    .dt_competencies_box {
        background: linear-gradient(#000000, #292929d1) padding-box, linear-gradient(to left, #ec2931, #ffffff5e) border-box;
        border: 2px solid #ffffff47;
    }

    .dt_competencies .row .col-md-3:nth-child(odd) .dt_competencies_box {
        border-radius: 50px 10px;
    }

    .dt_competencies .row .col-md-3:nth-child(even) .dt_competencies_box {
        border-radius: 10px 50px;
    }

    .dt_subBanner_content {
        padding: 40px 15px;
        background-color: #ffffff1a;
        border-radius: 20px;
        box-shadow: 0 0 8px 4px #ffffff4d;
        border-bottom: 2px solid #ec2931;
        border-right: 2px solid #ec2931;
        overflow: hidden;
        position: relative;
    }

    .dt_subBanner_content::before {
        content: '';
        background-color: #e27477;
        height: 60px;
        width: 60px;
        top: 0;
        left: 0;
        filter: blur(40px);
        position: absolute;
    }

    .dt_subBanner_content::after {
        content: '';
        background-color: #e27477;
        height: 60px;
        width: 60px;
        right: 0;
        bottom: 0;
        filter: blur(40px);
        position: absolute;
    }

    .fostering_culture {
        height: 210px;
    }

    .twp_img_info .fostering_culture:nth-child(1) .img_border,
    .twp_img_info .fostering_culture:nth-child(2) .img_border {
        border-radius: 0px 40px 0 40px;
    }

    .logo_box {
        box-shadow: 0px 6px 10px 0px #f5f5f5 !important;
        border-bottom: 2px solid #ec2931;
        position: relative;
        border-radius: 10px 10px 5px 5px;
    }

    .logo_box::before {
        content: '';
        height: 0px;
        width: 0px;
        position: absolute;
        left: 0px;
        top: 0px;
        border-bottom: 25px solid transparent;
        border-left: 35px solid #ec2931cc;
        border-radius: 10px 0 0;
    }

    .dt_customers .owl-dots .owl-dot {
        width: 8px;
        height: 8px;
        background-color: #d7d7d7;
        border: 2px solid #d7d7d7;
        border-radius: 50%;
        margin: 0 3px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .profile_content ul {
        background: #fff;
        border-radius: 20px;
        padding: 20px 25px;
        column-gap: 30px;
        margin-bottom: 20px;
        box-shadow: 0 0 8px 2px #878787;
    }

    .profile_img {
        border-radius: 20px;
        height: 440px !important;
    }

    .profile_img .profile_title {
        display: none;
    }

    .profile_content {
        position: static;
        margin-top: -50px;
        background: #fff;
    }

    .profile_content .profile_title {
        order: 2;
    }

    .profile_title p {
        color: #ec2931;
    }

    .sub_title {
        order: 3;
        margin-bottom: 10px;
    }

    .sub_title p {
        color: #000;
    }

    .profile_content ul li a img {
        filter: brightness(1) invert(0);
    }

    .team_slider .items,
    .team_slider2 .items {
        padding: 20px;
        box-shadow: 0 0 8px 4px #e5e5e5;
        border-radius: 20px;
        width: 98%;
        margin: 0 auto;
        position: relative;
    }

    .team_slider .items::after {
        content: '';
        background-color: #ec2931;
        width: 100%;
        height: 100%;
        border-radius: 60px;
        position: absolute;
        left: 0;
        z-index: 99;
        top: auto;
        margin-top: 10px;
    }

    .dt_fostering_culture .main_title h2 {
        position: relative;
        margin-bottom: 60px;
    }

    .dt_fostering_culture .main_title h2::before {
        content: '';
        background-color: #ec2931;
        height: 3px;
        width: 90px;
        border-radius: 30px;
        margin: 20px auto;
        position: absolute;
        bottom: -38px;
        left: 37%;
    }

    .dt_fostering_culture .main_title h2::after {
        background-color: #ec2931;
        content: "";
        position: absolute;
        left: 0px;
        bottom: -21px;
        height: 10px;
        width: 10px;
        animation-duration: 1.3s;
        animation-timing-function: linear;
        animation-iteration-count: infinite;
        animation-direction: alternate-reverse;
        animation-name: watermark-animate;
        border-radius: 50%;
    }

    @keyframes watermark-animate {
        0% {
            left: 37%;
        }

        100% {
            left: 62%;
        }
    }

    .dt_our_leaders .main_title h2,
    .dt_competencies .main_title h2 {
        position: relative;
        margin-bottom: 30px !important;
    }

    .dt_our_leaders .main_title h2::after,
    .dt_competencies .main_title h2::after {
        content: '';
        background: url('../images/separator.png') no-repeat;
        background-size: contain;
        position: absolute;
        width: 180px;
        height: 10px;
        left: 25%;
        bottom: -18px;
    }

    .dt_competencies .row {
        margin-top: 20px;
    }

    .dt_technology_slider .owl-nav button.owl-prev,
    .dt_technology_slider .owl-nav button.owl-next {
        background-color: #ec2931;
        color: #fff;
        width: 50px;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        margin: 0 5px;
    }

    .dt_technology_slider .owl-nav button.owl-prev img,
    .dt_technology_slider .owl-nav button.owl-next img,
    .team_slider .owl-nav button.owl-prev img,
    .team_slider .owl-nav button.owl-next img {
        width: 13px !important;
        filter: brightness(0) invert(1);
        transition: 0.4s;
    }

    .dt_technology_slider .owl-nav button.owl-prev img,
    .team_slider .owl-nav button.owl-prev img {
        transform: rotate(180deg);
    }

    .team_slider .owl-nav button.owl-prev,
    .team_slider .owl-nav button.owl-next {
        padding: 0 !important;
    }

    .dt_competencies_box {
        padding: 30px 15px;
    }

    .dt_competencies_title h5 {
        position: relative;
        margin-bottom: 30px;
    }

    .dt_competencies_title h5::after {
        content: '';
        position: absolute;
        height: 2px;
        width: 80px;
        background: linear-gradient(to right, transparent, #ec2931 50%) left, linear-gradient(to left, #f54046, transparent 50%) right;
        bottom: -15px;
        left: 35%;
    }

    .counter_col {
        width: 45%;
    }

    .counter-box {
        width: 150px;
        height: 150px;
        padding: 20px;
        border: 5px solid transparent;
        background: linear-gradient(#ffffff, #ffffffd1) padding-box, linear-gradient(to left, #ff8186, #adadad5e) border-box;
        animation: pulse-counter 3s infinite;
        border-radius: 50%;
    }

    .counter-box .percent {
        color: #ec2931;
    }

    .counter-box .count_title {
        color: #ec2931;
    }

    .counter-box p {
        color: #000;
    }

    .dt_sw_wrap {
        background-color: #020202e0;
    }

    .dt_sw_wrap .main_title h2 {}

    /* AI PAGE */

    .AIdev_img_grid .AI_dev_img:nth-child(2) {
        height: 330px;
    }

    .AIdev_img_grid .AI_dev_img:nth-child(1) {
        height: 240px;
    }

    .AI_service_title h3 {
        position: relative;
        margin-bottom: 15px;
    }

    .AI_service_title h3::before {
        content: '';
        position: absolute;
        bottom: -10px;
        background-color: #ec2931;
        height: 2px;
        width: 20%;
        left: 0;
    }

    .AI_service_title h3::after {
        content: '';
        position: absolute;
        bottom: -15px;
        background-color: #000;
        height: 2px;
        width: 15%;
        left: 0;
    }

    .team_slider2 .items {
        padding: 0px !important;
        margin-bottom: 30px;
    }

    .team_profile_box {
        padding: 20px;
    }

    .dt_contact_bg {
        position: relative;
        overflow: hidden;
        border-radius: 20px;
    }

    .dt_contact_bg::after {
        content: '';
        background: #ec2931;
        height: 60px;
        width: 60px;
        right: -20px;
        bottom: -20px;
        border-radius: 50%;
        position: absolute;
    }

    .dt_AI_service .main_title h2 {
        position: relative;
        margin-bottom: 50px !important;
    }

    .dt_AI_service .main_title h2::after {
        content: '';
        background: url('../images/separator.png') no-repeat;
        background-size: contain;
        position: absolute;
        width: 180px;
        height: 10px;
        left: 27%;
        bottom: -22px;
    }

    .city_slider .tech_img {
        border-bottom: 2px solid #ec2931;
        filter: unset;
        border-radius: 10px;
        box-shadow: 0 0 4px 0px #f0f0f0;
        min-height: 120px;
        padding: 20px;
    }

    .AI_service_box {
        background-color: #f9f9f9;
        border: 1px solid #00000012;
        position: relative;
        overflow: hidden;
        border-radius: 20px;
        height: 100%;
        padding: 20px 15px 20px 20px;
        transition: 0.4s;
        box-shadow: 0px 0px 8px 2px #00000021;
        position: relative;
    }

    .AI_service_box::after {
        content: '';
        background-color: #d8242a;
        height: 60px;
        width: 60px;
        right: 0;
        top: 0;
        filter: blur(50px);
        position: absolute;
    }

    .AI_service_box ul li {
        padding-left: 35px;
    }

    .AI_service_box ul {
        padding: 15px;
        background-color: #ffe8e8;
        border-radius: 20px;
        border-bottom: 2px solid #d1d1d1;
        margin-top: 15px;
        margin-bottom: 10px;
        position: relative;
        box-shadow: inset 0 0 10px rgb(255 0 0 / 29%);
    }

    .AI_service_box ul::after {
        content: '';
        background-image: url('../images/Logo.png');
        background-repeat: no-repeat;
        background-size: 150px;
        position: absolute;
        height: 100%;
        top: 0%;
        width: 100%;
        background-position: center;
        opacity: 0.1;
    }

    .dt_FAQ_content .main_title {
        text-align: center;
    }

    .dt_team_wrap .main_title p:first-child strong,
    .dt_artifficial_intelligence .main_title p:first-child strong,
    .DigiTrends_global .main_title p:first-child strong,
    .dt_FAQ_content .main_title p:nth-child(1) strong,
    .dt_contact_bg .main_title p:first-child strong {
        padding: 7px 30px;
        border-width: 1px;
        border-style: solid;
        border-color: rgb(236, 41, 49);
        border-image: initial;
        border-radius: 30px;
    }

    .dt_team_wrap .main_title p:first-child,
    .dt_artifficial_intelligence .main_title p:first-child,
    .DigiTrends_global .main_title p:first-child,
    .dt_FAQ_content .main_title p:nth-child(1),
    .dt_contact_bg .main_title p:first-child {
        margin-bottom: 30px;
    }

    .reviews_slider_box::before,
    .reviews_slider_box::after {
        opacity: 0.4;
    }

    .reviews_slider_box .company_logo img {
        filter: brightness(0) invert(1);
    }

    .reviews_slider_box>span {
        background: linear-gradient(90deg, rgba(236, 41, 49, 1) 0%, rgba(0, 0, 0, 1) 100%);
        width: 225%;
        height: 562px;
        top: 0;
        left: 160px;
    }

    .badge_detail span {
        color: #fff;
    }

    .badge_detail p {
        color: #fff;
    }

    .owl-carousel.team_slider2 .owl-stage-outer {
        overflow: unset;
    }

    .team_slider2 .team_profile_box {
        border-radius: 20px;
        position: relative;
    }

    .team_slider2 .team_profile_box::after {
        content: '';
        background-color: #ec2931;
        width: 100%;
        height: 100%;
        border-radius: 60px;
        position: absolute;
        left: 0;
        z-index: 99;
        top: auto;
        margin-top: 10px;
    }

    .team_slider2 .team_profile_box .profile_content {
        padding: 15px 10px 15px 10px;
        position: relative;
        z-index: 9;
        display: grid;
        place-items: center;
        justify-content: center;
    }

    .team_slider2 .team_profile_box .profile_content {
        padding: 15px 10px 15px 10px;
        position: relative;
        z-index: 9;
        display: grid;
        place-items: center;
        justify-content: center;
        margin-top: 0;
    }

    .team_profile_box ul {
        margin-top: -50px;
    }

    .team_profile_box .profile_content ul li a img {
        filter: brightness(0);
    }

    .team_profile_box:hover {
        background-color: transparent;
    }

    .team_profile_box:hover .profile_title p {
        color: #ec2931;
    }

    .team_profile_box:hover .sub_title p {
        color: #000;
    }

    .team_profile_box .profile_title p {
        color: #ec2931;
    }

    .team_profile_box .profile_img img {
        filter: grayscale(0);
        -webkit-filter: grayscale(0);
    }

    .team_profile_box .sub_title {
        border-bottom: 2px solid #666;
        padding: 0px 20px 10px;
    }

    .team_profile_box .sub_title p {
        color: #666;
        font-size: 16px;
    }

    .dt_FAQ_content .accordion .accordion-item .accordion-button h4 {
        padding-right: 20px;
    }

    .dt_FAQ_content .accordion .accordion-body p:last-child {
        padding-right: 25px;
    }

    .dt_FAQ_content .accordion .accordion-body {
        padding: 8px 0px 8px 0px;
    }

    .services_action_box {
        width: 98%;
        margin: 0 auto;
    }

    .banner_product_slider.banner_product_slider_mob {
        display: block !important;
    }

    .page-template-template-blog-html .dt_subBanner_wrap .dt_subBanner_img::before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background-color: #000;
        opacity: .7;
    }

    .Challenges_wrap .container>.main_title h2 {
        position: relative;
        margin-bottom: 35px;
        padding-bottom: 10px;
    }

    .Challenges_wrap .container>.main_title h2::before {
        content: '';
        position: absolute;
        height: 2px;
        width: 140px;
        background: linear-gradient(to right, transparent, #ec2931, transparent);
        bottom: -14px;
        left: 0px;
        right: 0px;
        margin: 0 auto;
    }

    .Challenges_wrap .container>.main_title h2::after {
        content: '';
        position: absolute;
        height: 8px;
        width: 8px;
        border-radius: 50%;
        background: #ec2931;
        bottom: -17px;
        left: 49%;
    }

    .dt_industery_slider.dt_industery_slider_mobile {
        display: block !important;
    }

    .dt_logos_wrap.mobile-left,
    .dt_portfolio_slider.dt_portfolio_slider_mobile,
    .digitrend_col.digitrend_col_mobile {
        display: block !important;
    }

    .dt_banner_wrap .row .col-md-6:nth-child(2) {
        display: none;
    }

}

@media(min-width:601px) {
    .btn_grid_mobile {
        display: none !important;
    }
}

.offcanvas-body .call_us {
    max-width: 290px;
}

.right_funnel .offcanvas-header .header-wrap {
    justify-content: space-between;
}

.right_funnel .offcanvas-header .header-wrap .close img {
    width: 30px;
    height: 30px;
}

.right_funnel.show_funnel .call_title br {
    display: none;
}

.right_funnel.show_funnel .call_title p {
    margin-bottom: 0;
}

.offcanvas-header .main_logo {
    display: flex;
    justify-content: start;
}

.off-canvas-content.open_canvas .burgur-btn {
    margin-right: 30px;
}

.right_funnel .offcanvas-header {
    margin-bottom: 20px;
}

.right_funnel .offcanvas-body {
    height: calc(100% - 120px);
}

.right_funnel {
    width: 320px;
    max-width: 320px;
}

.change .bar1,
.change .bar2,
.change .bar3 {
    transform: none;
    opacity: 1;
}

.change>div {
    background-color: #303030;
}

.media_icon.media_icon_mobile {
    display: none;
}

.tech_icon .wp-caption-text {
    display: none;
}

.tab_grid .tab-content .tab-pane ul li:last-child::after {
    display: none;
}

.banner_product_slider_mob {
    display: none !important;
}

/* Contact Form Code */

.form_content h3 {
    color: #ec2931;
    font-family: Fraunces;
    text-transform: capitalize;
    font-weight: 500;
    font-size: 22px;
    text-align: left;
}

.contact_form_bottom {
    margin-top: 25px;
}

.contact_form_bottom form input[type="text"],
.contact_form_bottom form input[type="email"],
.contact_form_bottom form input[type="tel"],
.contact_form_bottom form textarea {
    background-color: #2e2e2e9c !important;
    color: #fff !important;
    text-align: left !important;
    border-radius: 30px !important;
    min-height: 45px !important;
    font-size: 16px !important;
    padding-left: 25px !important;
    border: 1px solid #75757596 !important;
}

.contact_form_bottom form input[type="text"]:focus,
.contact_form_bottom form input[type="email"]:focus,
.contact_form_bottom form input[type="tel"]:focus,
.contact_form_bottom form textarea:focus {
    box-shadow: 0 0 3px 0 rgb(187 28 28 / 30%)
}

.contact_form_bottom form textarea {
    border-radius: 18px !important;
}

.contact_form_bottom form .gfield p,
.contact_form_bottom form .ginput_container_consent label {
    font-size: 16px;
    color: #fff;
    text-align: left;
    line-height: 26px;
}

.contact_form_bottom form .gfield {
    position: relative;
}

.contact_form_bottom form .gfield .gfield_validation_message {
    color: #ec2931 !important;
    position: absolute;
    left: 15px;
    bottom: -18px;
}

.contact_form_bottom form .gform_fields {
    row-gap: 25px !important;
}

.contact_form_bottom form .ginput_container_consent label {
    margin-top: -4px;
}

.contact_form_bottom form .ginput_container_consent input::before {
    color: #000 !important;
}

.contact_form_bottom form .gform_footer {
    margin-top: 40px !important;
}

.contact_form_bottom form .gfield p {
    margin-bottom: 0px;
}

.contact_form_bottom form .gfield {
    position: relative;
}

.contact_form_bottom form .ginput_container_consent label span {
    display: none !important;
}

.contact_form_bottom form .gfield p a {
    color: #ec2931;
}

.contact_form_bottom form .gfield p a:hover {
    color: #e5e5e5;
}

.contact_form_bottom form .gform_footer input[type="submit"] {
    font-size: 16px !important;
    color: rgb(255, 255, 255) !important;
    font-weight: 500;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-width: auto;
    height: 45px !important;
    width: 100%;
    z-index: 55;
    transition: 0.3s;
    border-radius: 30px !important;
    /*     background: rgb(236, 41, 49)!important; */
    background: transparent !important;
    box-shadow: none !important;
    width: 150px !important;
    padding: 8px 25px;
}


.contact_form_bottom form .gform_footer:hover span {
    width: 225%;
    height: 562.5px;
}

.contact_form_bottom form .gform_footer:hover input[type="submit"] {
    color: #000 !important;
}

.contact_form_bottom form .gform_footer:hover {
    border-color: #fff !important;
}

.contact_form_bottom form .gform_footer {
    position: relative;
    overflow: hidden;
    background-color: #ec2931 !important;
    border-radius: 30px !important;
    border-width: 2px;
    border-style: solid;
    border-color: rgb(236, 41, 49) !important;
    text-align: center;
    justify-content: center;
    max-width: 150px;
}

.contact_form_bottom form .gform_footer span {
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    border-radius: 50%;
    background-color: #fff !important;
    transition: width 0.4s ease-in-out, height 0.4s ease-in-out;
    transform: translate(-50%, -50%);
    z-index: 0;
}

/* Blog Page */

.dt_blog_grid {
    padding: 30px 0 20px;
}

.dt_blog_grid .main_title h2 {
    margin-bottom: 15px;
}

.dt_blog_grid .tab_grid .nav button {
    min-width: 85px;
    border: 1px solid rgba(0, 0, 0, 0.14);
    border-radius: 4px;
    font-size: 18px;
}

.dt_blog_grid .tab_grid {
    background: transparent;
    border: none;
    padding: 0;
    padding-bottom: 30px;
}

.dt_blog_grid .tab_grid .nav li button.active,
.dt_blog_grid .tab_grid .nav li button:hover {
    background: linear-gradient(to bottom, #ED1C24 0%, #871015 100%);
    border-color: transparent;
    font-weight: 400;
}

.blog_list .blog_para p {
    color: #666666;
    margin-bottom: 15px;
}

.blog_list .dt_blog_box {
    margin-bottom: 40px;
    border-bottom: 1px solid #d9d9d9;
}

.blog_list .dt_blog_box:last-child {
    border: none;
    margin-bottom: 20px;
    padding-bottom: 20px;
}

.blog_readmore a {
    color: #ED1C24;
    font-size: 18px;
    font-weight: 500;
}

.blog_readmore a:hover {
    color: #000;
}

.dt_subscribe_newsletter {
    padding-bottom: 50px;
}

.dt_subscribe_newsletter .container {
    border-radius: 45px;
    background-color: #000;
    position: relative;
    overflow: hidden;
}

.subscribe_main {
    padding: 30px 0;
}

.subscribe_inner {
    max-width: 95%;
    padding: 30px 10px;
    margin: 0 auto;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.30);
    background: rgba(255, 255, 255, 0.10);
    border-radius: 20px;
    backdrop-filter: blur(5px);
}

.subscribe_inner .main_title h2,
.subscribe_inner .main_title p {
    color: #fff;
}

.dt_subscribe_newsletter .container::before {
    content: '';
    background: url('https://dt.esmtestserver.com/wp-content/uploads/2026/01/texture-left.png') no-repeat;
    position: absolute;
    left: 0;
    top: 0;
    background-size: contain;
    height: 100%;
    width: 200px;
    z-index: -1;
}

.dt_subscribe_newsletter .container::after {
    content: '';
    background: url('https://dt.esmtestserver.com/wp-content/uploads/2026/01/texture-right.png') no-repeat;
    position: absolute;
    right: 0;
    bottom: 0;
    background-size: contain;
    height: 167px;
    width: 220px;
    z-index: -1;
}

.subscribe_main {
    position: relative;
}

.subscribe_inner .main_title h2 {
    margin-bottom: 15px;
}

.subscribe_main::before {
    content: '';
    background: url('https://dt.esmtestserver.com/wp-content/uploads/2026/01/circle-image-left.png') no-repeat;
    height: 144px;
    width: 140px;
    left: -10px;
    bottom: 0;
    background-size: contain;
    position: absolute;
    z-index: 0;
    top: auto;
}

.subscribe_main::after {
    content: '';
    background: url('https://dt.esmtestserver.com/wp-content/uploads/2026/01/dots-background.png') no-repeat;
    height: 213px;
    width: 840px;
    z-index: -1;
    background-size: contain;
    left: 0;
    bottom: 0;
    position: absolute;
}

.subscribe-form {
    margin-top: 35px;
}

.subscribe-form form .gform_footer {
    margin-top: 25px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

.page-template-template-blog-html .dt_subBanner_grid {
    background-image: url("https://dt.esmtestserver.com/wp-content/uploads/2026/01/AI-banner-before-1.png");
    background-repeat: no-repeat;
    background-size: 400px;
    background-position-x: 50%;
}

.dt_blog_grid .main_title p:first-child strong {
    color: #ec2931;
    text-transform: uppercase;
    font-weight: 400;
}

.subscribe_inner .main_title {
    margin-bottom: 10px;
}

.subscribe-form form .gform_footer {
    background-color: #fff !important;
    border-color: #fff !important;
}

.subscribe-form form .gform_footer input[type="submit"] {
    color: #000 !important;
}

/* Rating section  */

.rating-section .item {
    padding: 25px;
    border-radius: 15px;
    border: 1px solid #d7d7d7;
    box-shadow: 0 0 4px 0 #dddddd;
    background-color: #F5FAFD;
    position: relative;
    overflow: hidden;
}

.rating-section .item::after {
    content: '';
    height: 140px;
    width: 40px;
    right: -30px;
    bottom: -50px;
    position: absolute;
    z-index: 2;
    background: #ec2931;
    transform: rotate(45deg);
}

.rating-section .review-title p {
    margin-bottom: 0;
    font-weight: 600;
}

.rating-section .review-head {
    display: flex;
    gap: 15px;
    align-items: center;
}

.rating-section .review-head .review-img {
    width: 50px;
    height: 50px;
    background-color: #ec2931;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}

.rating-section .review-head .review-img span {
    color: #fff;
    font-size: 24px;
}

.review-ratings,
.review-bottom {
    margin: 20px 0;
}

.review-ratings img,
.review-bottom img {
    width: auto !important;
}

.review-title span {
    color: #666666;
}

.review-title {
    line-height: 24px;
}

.rating-section .owl-stage-outer .owl-stage {
    margin: 0 auto;
}

.rating-section .owl-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
}

.rating-section .owl-dots .owl-dot {
    width: 14px;
    height: 14px;
    background-color: #b3b3b3;
    border: 2px solid #b3b3b3;
    border-radius: 50%;
    margin: 0 2px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rating-section .owl-dots .owl-dot.active {
    border: 2px solid #ec2931;
    background-color: #fff;
}

.rating-section .owl-dots .owl-dot.active span {
    width: 4px;
    height: 4px;
    display: flex;
    align-items: center;
    border-radius: 50%;
    background-color: #ec2931;
}