@import"https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap";

:root {
    --inter: "Inter", sans-serif;
    --theme-font: var(--inter);
    --theme-bg: #000000;
    --theme-color: #ffffff;
    --white: #ffffff;
    --black: #000000;
    --secondary-color: #757575;
    --tertiary-color: #0e0e0e;
    --color-primary: #18185E;   /* Main brand, CTAs, active links */
  --color-secondary: #FF6F00; /* Secondary actions, highlights */
  --color-accent: #00C853;    /* Success, positive states */
  --color-background: #f7f3ff;/* Page background */
  --color-text: #333333;      /* Primary text */
    --quaternary-color: #040404;
    --quinary-color: #c1c1c1;
    --senary-color: #191919;
    --septenary-color: #101010;
    --octonary-color: #1a1a1a;
    --nonary-color: #d9d9d9;
    --transition: all 0.3s ease-in-out;
    --shadow: 0 0 12px rgba(0, 0, 0, 0.1);
    --shadow-secondary: 0 0 31px rgba(0, 0, 0, 0.1)
}

* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box
}

*::-moz-selection {
    color: #fff;
    background-color: #1770c8
}

*::selection {
    color: #fff;
    background-color: #1770c8
}

html {
    scroll-behavior: smooth
}

body {
    font-family: var(--theme-font);
    font-size: 16px;
    line-height: 0px;
    font-weight: 400;
    color: var(--black);
    background-color: #fff;
    overflow-x: clip;
    max-width: 100vw
}

body::-webkit-scrollbar {
    width: 5px
}

body::-webkit-scrollbar-track {
    background-color: #cae6f7;
    border-radius: 5px
}

body::-webkit-scrollbar-button,
body::-webkit-scrollbar-thumb {
    background-color: var(--color-primary);
    border-radius: 5px
}

.body-active {
    height: 100vh;
    overflow: clip
}

.my-app {
    position: relative;
    min-width: 100vw;
    min-height: 100vh;
    max-width: 100vw;
    max-height: 100vh;
    overflow-x: clip
}

button {
    background-color: rgba(0, 0, 0, 0);
    border: 0px;
    outline: 0px
}
a{
    color:#ff7425;
}
a,
button {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    outline: 0px;
    border: 0px;
    transition: var(--transition);
    cursor: pointer
}

a i,
button i {
    font-size: inherit;
    line-height: inherit;
    color: inherit;
    transition: none
}

a:hover,
button:hover {
    text-decoration: none;
    border: 0px;
    outline: 0px
}

a:focus,
button:focus {
    box-shadow: none;
    outline: 0px
}

ul,
ol {
    list-style-type: none;
    list-style-position: inside;
    margin: 0px;
    padding: 0px
}

hr,
blockquote,
textarea {
    margin: 0px
}

input,
textarea {
    border: 0px;
    outline: 0px
}

input:focus,
textarea:focus {
    box-shadow: none
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0px
}

input[type=number] {
    -moz-appearance: textfield;
    -webkit-appearance: textfield;
    appearance: textfield
}

input[type=checkbox] {
    width: initial;
    height: initial
}

textarea {
    min-height: 150px;
    resize: none
}

table {
    border-collapse: collapse;
    border-spacing: 0px
}

iframe {
    border: 0px;
    width: 100%
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    font-family: var(--inter);
    padding: 0px;
    margin: 0px;
    color: var(--theme-color);
}

.container {
    padding-left: 15px !important;
    padding-right: 15px !important
}

.container-fluid {
    padding-left: 15px !important;
    padding-right: 15px !important
}

.row {
    margin-left: -15px !important;
    margin-right: -15px !important
}

.row>* {
    padding-left: 15px !important;
    padding-right: 15px !important
}

p,
th,
td,
li,
input,
textarea,
select,
label,
blockquote,
span {
    font-size: 16px;
    line-height: 30px;
    font-weight: 400;
    color: var(--theme-color)
}

.primary-text {
    font-size: 20px;
    line-height: 30px
}

.secondary-text {
    font-size: 28px;
    line-height: 38px
}

.tertiary-text {
    font-size: 14px;
    line-height: 24px
}

a,
button {
    font-size: 16px;
    line-height: 18px;
    color: var(--theme-color);
    font-weight: 500;
    cursor: pointer
}

a:hover,
button:hover {
    color: var(--color-primary)
}

h1,
.t1 {
    font-size: 100px;
    line-height: 130px
}

.light-title {
    font-size: 75px;
    line-height: 85px
}

.light-title-lg {
    font-size: 30px;
    line-height: 40px
}

h2 {
    font-size: 55px;
    line-height: 70px
}

h3 {
    font-size: 40px;
    line-height: 50px
}

h4 {
    font-size: 24px;
    line-height: 34px
}

h5 {
    font-size: 20px;
    line-height: 30px
}

h6 {
    font-size: 16px;
    line-height: 24px
}

h1 a,
h1 span,
h2 a,
h2 span,
h3 a,
h3 span,
h4 a,
h4 span,
h5 a,
h5 span,
h6 a,
h6 span,
p a,
p span {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    font-weight: inherit;
    color: inherit
}

img {
    max-width: 100%;
    height: auto;
    border: 0px;
    outline: 0px;
    -o-object-fit: cover;
    object-fit: cover
}

i {
    display: inline-flex;
    align-items: center;
    justify-content: center
}

.cursor-outer {
    margin-left: -12px;
    margin-top: -12px;
    width: 30px;
    height: 30px;
    border: 1px solid var(--color-primary);
    box-sizing: border-box;
    z-index: 10000000;
    opacity: .5;
    transition: all .14s ease-out;
    mix-blend-mode: difference
}

.dark p ,.dark h4,.dark h3,.dark h2,.dark h5,.dark h6,.dark li,.dark a{
    color:#000;
}
.dark a:hover
{
    color:var(--color-primary);
}
.cursor-outer.cursor-hover {
    opacity: 0;
    transition: none
}

.cursor-outer.cursor-big {
    opacity: 0
}

.mouseCursor {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    border-radius: 50%;
    transform: translateZ(0);
    visibility: hidden;
    text-align: center
}

.mouseCursor.cursor-big {
    width: 20px;
    height: 20px;
    margin-left: -12px;
    margin-top: -12px
}

.cursor-inner {
    margin-left: -3px;
    margin-top: -3px;
    width: 10px;
    height: 10px;
    z-index: 10000001;
    background-color: var(--color-primary);
    opacity: .8;
    transition: width .3s ease-in-out, height .3s ease-in-out, margin .3s ease-in-out, opacity .3s ease-in-out;
    mix-blend-mode: difference
}

.cursor-inner span {
    color: var(--theme-color);
    line-height: 60px;
    opacity: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 12px
}

.cursor-inner.cursor-big span {
    opacity: 1
}

.cursor-inner.cursor-hover {
    margin-left: -10px;
    margin-top: -10px;
    width: 30px;
    height: 30px;
    background-color: rgba(0, 0, 0, 0);
    border: 1px solid #686363;
    opacity: 0
}

.unset {
    max-width: unset
}

.dir-rtl {
    direction: rtl
}

.bg-img {
    background-color: var(--theme-color);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center
}

.slick-slide {
    margin: 0px 15px
}

.slick-slide img {
    display: inline-block
}

.slick-list {
    margin: 0px -15px
}

.fw-9 {
    font-weight: 900 !important
}

.fw-7 {
    font-weight: 700
}

.fw-6 {
    font-weight: 600
}

.fw-5 {
    font-weight: 500
}

.fw-4 {
    font-weight: 400
}

.text-primary {
    color: var(--color-primary)
}

.text-secondary {
    color: var(--secondary-color)
}

.text-tertiary {
    color: var(--tertiary-color)
}

.text-quaternary {
    color: var(--quaternary-color)
}

.text-quinary {
    color: var(--quinary-color)
}

.bg-primary {
    background-color: var(--color-primary)
}

.bg-secondary {
    background-color: var(--secondary-color)
}

.bg-tertiary {
    background-color: var(--tertiary-color)
}

.bg-quaternary {
    background-color: var(--quaternary-color)
}

.bg-quinary {
    background-color: var(--quinary-color)
}

.text-stroke {
    -webkit-text-fill-color: rgba(0, 0, 0, 0);
    -webkit-text-stroke: 2px var(--color-primary);
    font-family: sans-serif
}
.header{
    position:relative;
}

.gaper {
    row-gap: 30px
}

.section {
    padding: 60px 0px
}

.section__cta {
    margin-top: 65px;
    text-align: center
}

.section__content-cta {
    margin-top: 20px
}

.banner__content {
    margin-top: -8px;
    text-align: center
}

.banner__content h6 {
    letter-spacing: .15em;
    text-transform: uppercase;
    margin-bottom: 16px;
    color: var(--theme-color);
    margin-bottom: 22px
}

.banner__content h1 {
    font-size:32px;
    font-weight: 700;
    color: var(--theme-color);
    margin-bottom: 16px;
    line-height:1.25;
    text-transform: capitalize
}
.banner__content h2{
    line-height:1.5;
    font-size:1.3rem;
}
.banner .dme-counter{
    max-width:800px;
}

.cta-group {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap
}

.section__header {
    margin-bottom: 60px
}

.section__header .sub-title {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    line-height: 1;
    border: 1px solid #414141;
    color: var(--color-primary);
    border-radius: 30px;
    margin-bottom: 32px;
    text-transform: uppercase
}

.section__header .sub-title i {
    transform: rotate(-45deg)
}

.section__header .title {
    text-transform: capitalize;
    font-weight: 700
}

.section__header--secondary {
    margin-bottom: 60px
}

.section__content .sub-title {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    line-height: 1;
    border: 1px solid #414141;
    color: var(--color-primary);
    border-radius: 30px;
    margin-bottom: 32px;
    text-transform: uppercase
}

.section__content .sub-title i {
    transform: rotate(-45deg)
}

.section__content .title {
    margin-bottom: 30px;
    font-weight: 700;
    text-transform: capitalize
}

.social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap
}

.social li {
    display: inline-flex;
    align-items: center;
    justify-content: center
}

.social a {
    color: var(--tertiary-color);
    background-color: #f0efff;
    width: 40px;
    min-width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px
}

.social a:hover {
    color: var(--black);
    background-color: var(--color-primary)
}

@keyframes navLinkFade {
    from {
        opacity: 0;
        transform: translateY(50px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

@keyframes navLinkFadeReverse {
    from {
        opacity: 0;
        transform: translateY(0px)
    }

    to {
        opacity: 0;
        transform: translateY(100%)
    }
}

@keyframes rotateInfinite {
    from {
        transform: rotate(0deg)
    }

    to {
        transform: rotate(360deg)
    }
}

.slide-group {
    display: flex;
    align-items: center;
    gap: 24px
}

.slide-btn {
    width: 74px;
    min-width: 74px;
    height: 74px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #fff;
    transition: var(--transition);
    background-color: rgba(0, 0, 0, 0);
    color: #fff;
    font-size: 40px;
    z-index: 2
}

.slide-btn:hover {
    color: var(--white);
    background-color: var(--color-primary);
    border: 1px solid var(--color-primary)
}

.lines {
    overflow: hidden;
    z-index: -1;
    display: flex;
    justify-content: space-around;
    position: absolute;
    width: 100%;
    height: 100%;
    inset: 0px;
    z-index: -3
}

.lines .line {
    width: 1px;
    height: 100%;
    min-height: 100vh;
    top: 0;
    background-color: #343434;
    z-index: -1
}

.vid-m {
    position: fixed;
    right: 20px;
    bottom: 40px;
    z-index: 99;
    width: 160px;
    height: 285px;
    max-height: 285px
}

.vid-m .vid-c {
    text-align: end
}

.vid-m video {
    width: 100%;
    height: 100%;
    max-height: 285px;
    border-radius: 20px
}

.vid-m button {
    width: 34px;
    min-width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-primary);
    color: #000;
    font-size: 14px;
    margin-left: auto;
    transform: translateY(50%);
    position: relative;
    z-index: 9
}

.vid-m h5 {
    position: absolute;
    top: 30%;
    right: 100%;
    padding: 20px;
    background-color: var(--color-primary);
    color: #000;
    border-radius: 20px 20px 0px 20px;
    line-height: 0px;
    transform: translateX(30%)
}

.btn {
    padding: 16px 32px;
    font-weight: 700;
    border: 2px solid var(--color-primary);
    border-radius: 50px;
    text-transform: uppercase;
    color: var(--color-primary);
    position: relative;
    overflow: hidden
}

.btn:hover {
    border: 2px solid var(--color-primary);
    color: var(--white)
}

.btn:focus {
    box-shadow: none;
    outline: 0px
}

.btn--primary {
    z-index: 1
}

.btn--primary::before {
    content: "";
    position: absolute;
    top: 0px;
    right: 0px;
    bottom: 0px;
    width: 0px;
    height: 100%;
    background-color: var(--color-primary);
    transition: all .6s ease;
    z-index: -1
}

.btn--primary:hover {
    color: var(--black)
}

.btn--primary:hover::before {
    width: 100%;
    left: 0px
}

.btn--secondary {
    z-index: 1;
    color: var(--white);
    border: 2px solid var(--color-primary);
}

.btn--secondary::before {
    content: "";
    position: absolute;
    top: 0px;
    right: 0px;
    bottom: 0px;
    width: 0px;
    height: 100%;
    background-color: var(--color-primary);
    transition: all .6s ease;
    z-index: -1
}

.btn--secondary:hover {
    color: var(--black)
}

.btn--secondary:hover::before {
    width: 100%;
    left: 0px
}

.btn--tertiary {
    z-index: 1;
    color: var(--color-primary);
    border: 1px solid #000 !important;
    background-color: #181818;
    gap: 20px;
    display: inline-flex;
    align-items: center;
    text-transform: capitalize
}

.btn--tertiary::before {
    content: "";
    position: absolute;
    top: 0px;
    right: 0px;
    bottom: 0px;
    width: 0px;
    height: 100%;
    background-color: var(--color-primary);
    transition: all .6s ease;
    z-index: -1
}

.btn--tertiary:hover {
    border: 1px solid var(--color-primary);
    color: var(--black)
}

.btn--tertiary:hover::before {
    width: 100%;
    left: 0px
}

.progress-wrap {
    position: fixed;
    right: 30px;
    bottom: 30px;
    height: 50px;
    width: 50px;
    cursor: pointer;
    display: block;
    border-radius: 50px;
    background-color: #1f1f1f;
    box-shadow: inset 0 0 0 8px #1f1f1f;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 200ms linear;
    z-index: 999;
    overflow: hidden
}

.progress-wrap span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 34px;
    height: 34px;
    background-color: var(--white);
    border-radius: 50%;
    overflow: hidden
}

.progress-wrap span::after {
    content: "";
    font-family: "Font Awesome 6 Pro";
    font-weight: 900;
    position: absolute;
    text-align: center;
    line-height: 34px;
    font-size: 16px;
    border-radius: 50%;
    color: var(--color-primary);
    left: 50%;
    top: 50%;
    transform: translate(-50%, 200%);
    height: 34px;
    width: 34px;
    cursor: pointer;
    display: block;
    z-index: 1;
    transition: all 200ms linear
}

.progress-wrap span::before {
    position: absolute;
    content: "";
    font-family: "Font Awesome 6 Pro";
    font-weight: 900;
    text-align: center;
    line-height: 34px;
    font-size: 16px;
    border-radius: 50%;
    color: var(--color-primary);
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    height: 34px;
    width: 34px;
    cursor: pointer;
    display: block;
    z-index: 2;
    transition: all 200ms linear
}

.progress-wrap:hover span::before {
    transform: translate(-50%, -200%)
}

.progress-wrap:hover span::after {
    transform: translate(-50%, -50%)
}

.progress-wrap path {
    fill: none
}

.progress-wrap .progress-circle path {
    stroke: var(--color-primary);
    stroke-width: 4;
    box-sizing: content-box;
    transition: all 200ms linear
}

.active-progress {
    opacity: 1;
    visibility: visible;
    transform: translateY(0)
}

.dme-video-modal{
    /*height:calc(100vh - 50px);*/
}

.dme-video-modal video{
   object-fit: cover;
    display: block;
    width: 100%;
    height:100%;
}

/*.video-modal-btn a {*/
/*    width: 84px;*/
/*    min-width: 84px;*/
/*    height: 84px;*/
/*    border-radius: 50%;*/
/*    display: flex;*/
/*    align-items: center;*/
/*    justify-content: center;*/
/*    background-color: var(--color-primary);*/
/*    font-size: 20px;*/
/*    color: var(--white)*/
/*}*/

@keyframes wave {
    0% {
        transform: translate(-50%, -50%) scale(0.6)
    }

    50% {
        transform: translate(-50%, -50%) scale(1.2)
    }

    100% {
        transform: translate(-50%, -50%) scale(1.7);
        opacity: 0
    }
}

.input-email {
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
    border: 1px solid #c1c1c1
}

.input-email input {
    flex-grow: 1;
    background-color: rgba(0, 0, 0, 0);
    padding: 16px 30px;
    width: calc(100% - 80px)
}

.input-email button {
    width: 60px;
    min-width: 60px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 24px
}

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999999;
    background-color: var(--theme-bg)
}

#loader {
    display: block;
    position: relative;
    left: 50%;
    top: 50%;
    width: 150px;
    height: 150px;
    margin: -75px 0 0 -75px;
    border-radius: 50%;
    border: 3px solid rgba(0, 0, 0, 0);
    border-top-color: #9370db;
    animation: spin 2s linear infinite
}

#loader:before {
    content: "";
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border-radius: 50%;
    border: 3px solid rgba(0, 0, 0, 0);
    border-top-color: #ba55d3;
    animation: spin 3s linear infinite
}

/*#loader:after {*/
/*    content: "";*/
/*    position: absolute;*/
/*    top: 15px;*/
/*    left: 15px;*/
/*    right: 15px;*/
/*    bottom: 15px;*/
/*    border-radius: 50%;*/
/*    border: 3px solid rgba(0, 0, 0, 0);*/
/*    border-top-color: #f0f;*/
/*    animation: spin 1.5s linear infinite*/
/*}*/

/*@keyframes spin {*/
/*    0% {*/
/*        transform: rotate(0deg)*/
/*    }*/

/*    100% {*/
/*        transform: rotate(360deg)*/
/*    }*/
/*}*/

.primary-navbar {
    position: fixed;
    top: 0px;
    background-color:#fff;
    left: 0px;
    right: 0px;
    width: 100%;
    z-index: 998;
}

.primary-navbar .navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    /*gap: 30px;*/
    flex-wrap: wrap
}

.primary-navbar .navbar__menu {
    flex-grow: 1
}

.primary-navbar .navbar__menu>ul {
    display: flex;
    align-items: center;
    justify-content: flex-end
}
.navbar__item{
    z-index:0;
}
.primary-navbar .navbar__item button,
.primary-navbar .navbar__item a {
    padding: 8px;
    text-transform: uppercase;
    font-weight: 500;
    width: 100%
}

.primary-navbar .navbar__item--has-children {
    position: relative
}

.primary-navbar .navbar__item--has-children:hover>.navbar__dropdown-label {
    color: var(--color-primary)
}

.primary-navbar .navbar__item--has-children:hover>.navbar__dropdown-label::after {
    transform: rotate(180deg)
}

.primary-navbar .navbar__item--has-children:hover>.navbar__dropdown-label-sub::after {
    transform: rotate(180deg)
}

.primary-navbar .navbar__item--has-children:hover>.navbar__sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0px);
    pointer-events: all;
    /*background-color:var(--tertiary-color);*/
}

.primary-navbar .navbar__dropdown-label {
    position: relative;
    justify-content: space-between
}

.primary-navbar .navbar__dropdown-label::after {
    font-family: "Font Awesome 6 Pro";
    font-weight: 900;
    content: "";
    border: none;
    transition: transform .3s ease-in-out;
    font-size: inherit;
    transform: rotate(0deg)
}

.primary-navbar .navbar__sub-menu {
    position: absolute;
    top: 100%;
    left: 0px;
    min-width: 220px;
    max-width: 260px;
    background-color: var(--white);
    opacity: 0;
    visibility: hidden;
    transform: translateY(30px);
    pointer-events: none;
    transition: var(--transition);
    box-shadow: var(--shadow);
    padding: 20px 0px;
    border-radius: 5px;
    border:2px solid  var(--color-primary);
    z-index: 9
}

.primary-navbar .navbar__sub-menu::before {
    content: "";
    position: absolute;
    top: -8px;
    left: 25px;
    height: 15px;
    width: 15px;
    transform: rotate(45deg);
    background-color: var(--color-primary);
    transition: var(--transition);
    z-index: -1;
}

.primary-navbar .navbar__sub-menu li:nth-last-of-type(1) a {
    border-bottom: 0px;
}

.primary-navbar .navbar__sub-menu a,
.primary-navbar .navbar__sub-menu button {
    width: 100%;
    display: flex;
    padding: 16px 40px;
    color: var(--color-primary);
    position: relative;
    font-size: 14px;
    border-bottom: 1px solid rgba(206, 206, 206, .4784313725)
}

.primary-navbar .navbar__sub-menu a::before,
.primary-navbar .navbar__sub-menu button::before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 20px;
    height: 1px;
    width: 0px;
    transition: var(--transition);
    background-color: var(--color-primary)
}

.primary-navbar .navbar__sub-menu a:hover,
.primary-navbar .navbar__sub-menu button:hover {
    color: var(--color-primary)
}

.primary-navbar .navbar__sub-menu a:hover::before,
.primary-navbar .navbar__sub-menu button:hover::before {
    width: 10px
}

.primary-navbar .navbar__sub-menu .navbar__dropdown-label-sub::before {
    display: none
}

.primary-navbar .navbar__sub-menu--lg {
    min-width: 300px;
    max-width: 300px
}

.primary-navbar .navbar__sub-menu__nested {
    top: 0%;
    left: 100%;
    min-width: 200px
}

.primary-navbar .navbar__sub-menu__nested::before {
    left: -5px;
    top: 17px;
    box-shadow: -2px 2px 4px rgba(0, 0, 0, .1)
}

.primary-navbar .navbar__sub-menu-n {
    display: none
}

.primary-navbar .navbar__options {
    display: none;
    align-items: center;
    gap: 30px
}

.primary-navbar .open-mobile-menu {
    font-size: 30px;
    color: var(--white)
}
.navbar__item  a{
 color:var(--black);   
}
.navbar__logo img:not(.navbar-active .navbar__logo img){
    filter:invert(1);
}

.navbar-active .navbar__item  a{
    color:var(--black);
}
.navbar-active  .navbar__sub-menu a{
    color:var(--color-primary);
}
@keyframes stickyNavbar {
    0% {
        transform: translateY(-100%)
    }

    100% {
        transform: translateY(0px)
    }
}

.navbar-active {
    background-color: var(--white);
    animation: stickyNavbar .9s ease-in-out;
    box-shadow: var(--shadow);
    border-bottom: 1px solid var(--color-primary);
}
.navbar-active .navbar__logo{
   filter:invert(1); 
}
.secondary--navbar {
    padding: 10px 0px
}

.secondary--navbar .open-offcanvas-nav {
    width: 80px;
    min-width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    color:var(--color-primary);
    justify-content: center;
    /*border: 1px solid var(--color-primary);*/
    position: relative;
    
    font-size:40px;
}
.open-offcanvas-nav{
    display:none;
}

/*.secondary--navbar .open-offcanvas-nav::before {*/
/*    content: "";*/
/*    position: absolute;*/
/*    top: 50%;*/
/*    left: 50%;*/
/*    transform: translate(-50%, -50%);*/
/*    width: 14px;*/
/*    height: 14px;*/
/*    background-color: #414141;*/
/*    border-radius: 50%;*/
/*    transition: var(--transition)*/
/*}*/

.secondary--navbar .open-offcanvas-nav:hover {
    border: 1px solid var(--color-primary)
}

.secondary--navbar .open-offcanvas-nav:hover::before {
    background-color: var(--color-primary)
}

.offcanvas-nav .offcanvas-menu {
    position: fixed;
    inset: 0px;
    overflow: hidden;
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-100%);
    transition: var(--transition);
    z-index: 9999;
    transition-delay: .6s;
    transition: all .9s ease-in-out;
    background-color: var(--black)
}

/*.offcanvas-nav .offcanvas-menu::before {*/
/*    content: "Explore Pages";*/
/*    position: absolute;*/
/*    top: 30%;*/
/*    right: 10%;*/
/*    font-size: 6vw;*/
/*    line-height: 1.2;*/
/*    font-weight: 900;*/
/*    text-transform: uppercase;*/
/*    max-width: 30vw;*/
/*    z-index: -1;*/
/*    color: #fff;*/
/*    opacity: .1;*/
/*    text-align: end*/
/*}*/

.offcanvas-nav .offcanvas-menu .offcanvas-menu__header {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    padding: 0px 20px 0px 20px;
    justify-content: space-between
}

.offcanvas-nav .offcanvas-menu .close-offcanvas-menu {
    font-size: 36px
}

.offcanvas-nav .offcanvas-menu .offcanvas-menu__wrapper {
    position: fixed;
    inset: 0px;
    background-color: rgba(0, 0, 0, 0);
    z-index: 9999;
    padding: 60px 100px 60px 60px;
    height: 100vh;
    overflow-y: auto;
    overflow-x: clip;
    display: flex;
    flex-direction: column;
    transition: .3s ease-in-out;
    transition-delay: .3s;
    gap: 60px;
    transform: translateY(100%);
    opacity: 1;
    visibility: visible
}

.offcanvas-nav .offcanvas-menu .offcanvas-menu__wrapper::-webkit-scrollbar {
    width: 0px
}

.offcanvas-nav .offcanvas-menu .navbar__menu>ul {
    flex-direction: column
}

.offcanvas-nav .offcanvas-menu .navbar__item {
    width: 100%;
    transition: var(--transition)
}

.offcanvas-nav .offcanvas-menu .navbar__item a,
.offcanvas-nav .offcanvas-menu .navbar__item button {
    color: var(--white);
    padding: 20px 80px 20px 20px;
    line-height: 1;
    font-size: 16px;
    width: 100%;
    text-transform: uppercase;
    font-size: 24px
}

.offcanvas-nav .offcanvas-menu .navbar__item a:hover,
.offcanvas-nav .offcanvas-menu .navbar__item button:hover {
    color: var(--color-primary)
}

.offcanvas-nav .offcanvas-menu .navbar__item a::after,
.offcanvas-nav .offcanvas-menu .navbar__item button::after {
    transition: none
}

.offcanvas-nav .offcanvas-menu .nav-fade {
    transform: translateY(30px);
    opacity: 0;
    transition: all .7s ease-in-out !important
}

.offcanvas-nav .offcanvas-menu .navbar__item--has-children .navbar__dropdown-label {
    position: relative
}

.offcanvas-nav .offcanvas-menu .navbar__item--has-children .navbar__dropdown-label::after {
    content: "+";
    font-family: "Font Awesome 6 Pro";
    position: absolute;
    top: 0px;
    right: 0px;
    bottom: 0px;
    height: 100%;
    width: 60px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transform: rotate(0deg)
}

.offcanvas-nav .offcanvas-menu .navbar__item--has-children:hover .navbar__dropdown-label::after {
    transform: rotate(0deg)
}

.offcanvas-nav .offcanvas-menu .navbar__item-active {
    color: var(--color-primary) !important
}

.offcanvas-nav .offcanvas-menu .navbar__item-active::after {
    content: "" !important;
    font-family: "Font Awesome 6 Pro" !important
}

.offcanvas-nav .offcanvas-menu .navbar__sub-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: translateY(0px);
    width: 100%;
    max-width: 100%;
    padding: 0px;
    display: none;
    transition: none;
    background-color: rgba(0, 0, 0, 0);
    border-radius: 0px;
    padding-left: 30px
}

.offcanvas-nav .offcanvas-menu .navbar__sub-menu::before {
    content: none
}

.offcanvas-nav .offcanvas-menu .navbar__sub-menu a,
.offcanvas-nav .offcanvas-menu .navbar__sub-menu button {
    color: var(--white);
    padding: 16px 20px;
    font-size: 16px
}

.offcanvas-nav .offcanvas-menu .navbar__sub-menu a::before,
.offcanvas-nav .offcanvas-menu .navbar__sub-menu button::before {
    content: none
}

.offcanvas-nav .offcanvas-menu .offcanvas-menu__options {
    padding: 0px 20px
}

.offcanvas-nav .offcanvas-menu .offcanvas-menu__options a,
.offcanvas-nav .offcanvas-menu .offcanvas-menu__options button {
    width: 100%
}

.offcanvas-nav .offcanvas-menu .offcanvas-menu__social {
    transition: var(--transition);
    padding: 0px 20px
}

.offcanvas-nav .offcanvas-menu .offcanvas-menu__social a {
    font-size: 20px;
    width: 50px;
    min-width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center
}

.offcanvas-nav .offcanvas-menu__list,
.offcanvas-nav .offcanvas-menu__options,
.offcanvas-nav .offcanvas-menu__social {
    max-width: 500px
}

.offcanvas-nav .show-offcanvas-menu {
    transform: translateX(0px);
    opacity: 1;
    visibility: visible
}

.offcanvas-nav .show-offcanvas-menu .offcanvas-menu__wrapper {
    transform: translateY(0px);
    opacity: 1;
    visibility: visible
}

.offcanvas-nav .show-offcanvas-menu .nav-fade {
    animation: navLinkFade .5s ease forwards;
    transition: all .7s ease-in-out !important
}

.offcanvas-nav .nav-fade-active {
    animation: navLinkFade 1s ease reverse !important
}

.tertiary--navbar {
    background-color: #1f1f1f;
    overflow-x: clip
}

.tertiary--navbar .navbar__item a {
    text-transform: lowercase !important
}

.tertiary--navbar .navbar__options {
    gap: 0px
}

.tertiary--navbar .open-offcanvas-nav {
    padding: 25px 40px;
    flex-direction: column;
    background-color: #2c2c2c;
    text-transform: uppercase;
    font-size: 14px
}

.tertiary--navbar .open-offcanvas-nav i {
    font-size: 24px
}

.tertiary--navbar .open-offcanvas-nav:hover {
    background-color: var(--color-primary);
    color: var(--black)
}

.tertiary--navbar .tertiary-cta {
    padding: 21px 0px 21px 120px;
    background-color: var(--color-primary);
    position: relative
}

.tertiary--navbar .tertiary-cta::before {
    content: "";
    position: absolute;
    top: 0px;
    bottom: 0px;
    left: 90%;
    min-width: 50vw;
    background-color: var(--color-primary)
}

.tertiary--navbar .tertiary-cta .btn {
    border: 1px solid var(--white)
}

.tertiary--navbar .tertiary-cta .btn::before {
    background-color: var(--white)
}

.tertiary--navbar .tertiary-cta .btn:hover {
    border: 1px solid var(--white)
}

.quaternary--navbar {
    padding: 30px 0px
}

.quaternary--navbar .open-offcanvas-nav {
    font-size: 30px;
    color: #d9d9d9
}

.quaternary--navbar .open-offcanvas-nav:hover {
    color: var(--color-primary)
}

.quaternary--navbar .btn {
    border: 0px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0px
}

.quaternary--navbar .btn i {
    color: var(--color-primary)
}

.quaternary--navbar .btn::before {
    content: none
}

.quaternary--navbar .btn:hover {
    border: 0px;
    color: var(--color-primary)
}

.quinary--navbar .navbar__logo {
    display: flex;
    align-items: center;
    gap: 120px
}
.navbar__logo img{
    max-width:150px;
}
.quinary--navbar .open-offcanvas-nav {
    font-size: 30px
}

.quinary--navbar .open-offcanvas-nav:hover {
    color: var(--color-primary)
}

.banner {
    padding: 150px 0px 50px;
    /*background-color: var(--black);*/
    position: relative;
    z-index: 1;
;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index:1;
}
.banner::before{
    content:"";
    position:absolute;
    top:0;
    bottom:0;
    left:0;
    right:0;
    background-color:rgba(0,0,0,0.5);
    z-index:2;
}
.banner .container{
    position:relative;
    z-index:3;
}

/*.banner .banner__content {*/
/*    margin-top: -20px*/
/*}*/

.banner .interval {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-left: 60px
}

.banner .interval i {
    -webkit-text-fill-color: rgba(0, 0, 0, 0);
    -webkit-text-stroke: 1px var(--color-primary)
}

.banner .banner__content-inner {
    /*max-width: 400px;*/
    margin-top: 20px;
    text-align: start
}

.banner .banner__content-inner .cta {
    margin-top: 60px;
    display: flex;
    align-items: center;
    gap: 60px;
    row-gap: 24px;
    flex-wrap: wrap
}
.banner .section__content-cta .banner-btn{
    background-color:var(--color-primary);
    color:var(--white);
}
.banner .section__content-cta .banner-btn:hover{
    color:var(--color-primary);
    border-width:2px;
}
.banner .section__content-cta .banner-btn::before{
background-color: var(--white);

}
.banner .banner__content-inner h5 {
    color: var(--color-primary)
}

.banner .banner__content-inner .single p {
    color: var(--secondary-color);
    margin-top: 6px;
    text-transform: capitalize
}

.banner .banner-one-thumb {
    position: absolute;
    top: 220px;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
    width: 100%;
    max-width: 494px;
    height: auto;
    border-radius: 50%
}

.banner .star {
    position: absolute;
    top: 220px;
    left: 80px;
    z-index: -1
}

.banner .banner-social-text {
    display: flex;
    align-items: center;
    gap: 24px;
    writing-mode: vertical-rl;
    transform: rotate(-180deg)
}

.banner .banner-social-text a {
    text-transform: uppercase;
    color: var(--secondary-color);
    font-weight: 500;
    font-size: 14px
}

.banner .banner-social-text a:hover {
    color: var(--color-primary)
}

.banner .banner-left-text {
    position: absolute;
    bottom: 200px;
    left: 90px
}

.banner .banner-right-text {
    position: absolute;
    bottom: 200px;
    right: 90px
}

.banner .video-frame {
    position: absolute;
    bottom: 10px;
    right: 10%;
    width: 190px;
    min-width: 190px;
    height: 190px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px
}

.banner .video-frame img {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0px;
    animation: rotateInfinite 24s linear infinite;
    animation-play-state: running
}

.banner .video-frame:hover img {
    animation-play-state: paused
}

.banner-two {
    padding: 260px 0px 130px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    position: relative;
    z-index: 1;
    overflow: hidden
}

.banner-two::before {
    content: "";
    position: absolute;
    inset: 0px;
    background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 100%);
    z-index: -1
}

.banner-two .banner-two__meta {
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap
}

.banner-two .banner-two__meta .cta {
    display: flex;
    align-items: center;
    gap: 60px;
    row-gap: 24px;
    flex-wrap: wrap
}

.banner-two .banner-two__meta h5 {
    color: var(--white)
}

.banner-two .banner-two__meta .single p {
    color: var(--secondary-color);
    margin-top: 6px;
    text-transform: capitalize
}

.banner-two .thumb video {
    max-width: 32vw;
    max-height: 200px;
    height: 100%;
    border-radius: 100px
}

.banner-two .banner-two__content h1 {
    font-weight: 900;
    text-transform: uppercase;
    margin-top: 30px
}

.banner-two .banner-two__content h1 span {
    color: var(--color-primary)
}

.banner-two .banner-two__content .banner-two__content-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 90px
}

.banner-two .banner-two__content .arrow-wrapper {
    flex-grow: 1
}

.banner-two .banner-two__content .arrow {
    position: relative;
    display: block
}

.banner-two .banner-two__content .arrow::before {
    content: "";
    position: absolute;
    left: 0px;
    right: 0px;
    height: 2px;
    width: calc(100% - 6px);
    background-color: var(--white)
}

.banner-two .banner-two__content .arrow::after {
    content: "";
    font-family: "Font Awesome 6 Pro";
    position: absolute;
    right: 4px;
    top: 50%;
    transform: translateY(-48%);
    font-size: 24px
}

.banner-two .banner-two__content .paragraph {
    max-width: 500px
}

.banner-two .dawn {
    position: absolute;
    top: 25%;
    right: 12%;
    z-index: -1;
    max-width: 10vw
}

.banner-three {
    background-color: var(--black);
    position: relative;
    overflow-x: clip
}

.banner-three .banner-three__slider-single {
    padding: 290px 0px 360px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: right center;
    position: relative;
    z-index: 1;
    overflow: hidden
}

.banner-three .banner-three__slider-single::before {
    content: "";
    position: absolute;
    inset: 0px;
    background-image: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
    z-index: -1
}

.banner-three .banner-three__content h1 {
    font-weight: 900
}

.banner-three .banner-three__content .cta {
    display: flex;
    align-items: center;
    gap: 40px
}

.banner-three .banner-three__content .arrow {
    position: relative;
    display: block;
    width: 220px
}

.banner-three .banner-three__content .arrow::before {
    content: "";
    position: absolute;
    left: 0px;
    right: 0px;
    height: 2px;
    width: calc(100% - 6px);
    background-color: var(--white)
}

.banner-three .banner-three__content .arrow::after {
    content: "";
    font-family: "Font Awesome 6 Pro";
    position: absolute;
    right: 4px;
    top: 50%;
    transform: translateY(-48%);
    font-size: 24px
}

.banner-three .banner-three__content .btn--secondary {
    display: inline-flex;
    gap: 12px;
    text-transform: capitalize;
    border: 1px solid var(--white)
}

.banner-three .banner-three__content .btn--secondary i {
    color: var(--color-primary)
}

.banner-three .banner-three__content .btn--secondary:hover {
    border: 1px solid var(--color-primary)
}

.banner-three .banner-three__content .btn--secondary:hover i {
    color: inherit
}

.banner-three .social {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 50px;
    flex-direction: column;
    z-index: 1
}

.banner-three .social a {
    background-color: rgba(0, 0, 0, 0);
    border: 1px solid #888;
    color: #888
}

.banner-three .social a:hover {
    border: 1px solid var(--color-primary);
    color: var(--white);
    background-color: var(--color-primary)
}

.banner-three .arrow-img {
    position: absolute;
    z-index: 1;
    left: 10%;
    bottom: 15%;
    max-width: 20vw
}

.banner-three .dot-img {
    position: absolute;
    z-index: 1;
    right: 5%;
    bottom: 30%;
    max-width: 10vw
}

.banner-three .banner-three__slider-progress-wrapper {
    position: absolute;
    bottom: 60px;
    left: 0px;
    right: 0px;
    z-index: 1
}

.banner-three .banner-three__slider-progress {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    max-width: 870px
}

.banner-three .banner-three__slider-progress .single-item {
    min-width: 260px;
    opacity: .5;
    cursor: pointer
}

.banner-three .banner-three__slider-progress .single-item p {
    margin: 12px 0px
}

.banner-three .banner-three__slider-progress .single-item .slider-progress {
    width: 100%;
    height: 4px;
    background: #a5a5a5;
    position: relative
}

.banner-three .banner-three__slider-progress .single-item .inProgress {
    position: absolute;
    inset: 0px;
    background-color: var(--color-primary);
    height: 100%;
    z-index: 2
}

.banner-three .single-item-active {
    opacity: 1 !important
}

.banner-three .single-item-active span {
    color: var(--color-primary)
}

.banner-three .banner-three__meta {
    display: inline-flex;
    align-items: center;
    background-color: #1f1f1f;
    position: absolute;
    bottom: 0px;
    right: 0px;
    z-index: 2
}

.banner-three .banner-three__meta::before {
    content: "";
    position: absolute;
    top: -10px;
    left: -10px;
    height: 50px;
    width: 80px;
    border-top: 10px solid var(--color-primary);
    border-left: 10px solid var(--color-primary)
}

.banner-three .banner-three__meta .cta {
    display: flex;
    align-items: center;
    gap: 60px;
    row-gap: 24px;
    flex-wrap: wrap;
    padding: 24px
}

.banner-three .banner-three__meta h5 {
    color: var(--white)
}

.banner-three .banner-three__meta .single p {
    color: var(--secondary-color);
    margin-top: 6px;
    text-transform: capitalize
}

.banner-three .banner-three__video {
    position: relative;
    overflow: hidden;
    z-index: 1
}

.banner-three .banner-three__video::before {
    content: "";
    position: absolute;
    inset: 0px;
    opacity: .69;
    background: #000
}

.banner-three .banner-three__video .video-frame {
    width: 80px;
    min-width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    color: var(--color-primary)
}

.banner-three .banner-three__video .video-frame::before {
    content: "";
    position: absolute;
    inset: 0px;
    border: 2px dashed var(--color-primary);
    border-radius: 50%;
    animation: rotateInfinite 24s linear infinite;
    animation-play-state: running
}

.banner-three .banner-three__video .video-frame:hover {
    color: var(--white)
}

.banner-three .banner-three__video .video-frame:hover::before {
    animation-play-state: paused
}

.banner-four {
    background-color: var(--black);
    padding: 260px 0px 130px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    border-bottom: 1px solid #414141
}

.banner-four::before {
    content: "";
    position: absolute;
    inset: 0px;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: left top 100px;
    background-image: url("../images/banner/line.png")
}

.banner-four .intro {
    padding-left: 180px
}

.banner-four .intro p {
    max-width: 400px;
    margin-bottom: 30px
}

.banner-four .arrow {
    position: relative;
    display: block;
    width: 100%;
    max-width: 740px
}

.banner-four .arrow::before {
    content: "";
    position: absolute;
    left: 0px;
    right: 0px;
    height: 2px;
    width: calc(100% - 6px);
    background-color: var(--white)
}

.banner-four .arrow::after {
    content: "";
    font-family: "Font Awesome 6 Pro";
    position: absolute;
    right: 4px;
    top: 50%;
    transform: translateY(-48%);
    font-size: 24px
}

.banner-four .banner-four__content {
    position: relative;
    z-index: 9
}

.banner-four .banner-four__title {
    max-width: 1100px;
    margin-top: 70px
}

.banner-four .banner-four__title h1 {
    text-transform: uppercase;
    font-weight: 900;
    text-align: center
}

.banner-four .banner-four__title .frame {
    width: 160px;
    min-width: 160px;
    height: 160px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    display: inline-flex;
    font-size: 46px;
    position: relative;
    color: #fff
}

.banner-four .banner-four__title .frame img {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0px;
    animation: rotateInfinite 24s linear infinite;
    animation-play-state: running
}

.banner-four .banner-four__title .frame i {
    width: 110px;
    min-width: 110px;
    height: 110px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-primary)
}

.banner-four .banner-four__title .frame:hover img {
    animation-play-state: paused
}

.banner-four .small {
    position: absolute;
    top: 260px;
    left: 9%;
    z-index: 2;
    max-width: 15vw
}

.banner-four .large {
    position: absolute;
    top: 100px;
    right: 6%;
    z-index: -1;
    max-width: 30vw
}

.banner-five .banner-five__wrapper {
    gap: 30px;
    padding: 220px 0px 130px;
    display: flex;
    align-items: center;
    gap: 60px
}

.banner-five .banner-five__wrapper .slick-track {
    padding: 20px 0px !important;
    display:flex;
    align-items:stretch;
}

.banner-five .banner-five__single {
    min-width: 450px;
    width: 450px
}

.banner-five .projects-s__single {
    padding: 30px;
    border: 1px solid #414141
}

.banner-five .projects-s__single .thumb a {
    width: 100%
}

.banner-five .projects-s__single .thumb a img {
    width: 100%
}

.banner-five .projects-s__single .content {
    margin-top: 30px
}

.banner-five .projects-s__single .content h4 {
    text-transform: capitalize
}

.banner-five .projects-s__single .content p {
    margin-top: 20px;
    color: #d9d9d9
}

.dme-rating-mobile{
    display:none;
}

.cmn-banner {
    padding: 180px 0px 60px;
    background-color: var(--color-primary)
}

.cmn-banner .title {
    text-transform: uppercase;
    font-weight: 700;
    margin-top: -12px
}

.breadcrumb {
    margin: 0px;
    padding: 0px;
    border: 1px dashed #fff;
    display: inline-flex;
    padding: 10px 20px;
    border-radius: 100px;
    margin-top: 20px
}

.breadcrumb .breadcrumb-item {
    margin-top: 0px;
    color: var(--white);
    padding: 0px 0px 0px 24px;
    position: relative;
    padding-right: 16px;
    text-transform: uppercase;
    font-size: 14px
}

.breadcrumb .breadcrumb-item a {
    color: var(--theme-color);
    font-weight: 600;
    font-size: 14px
}

.breadcrumb .breadcrumb-item a:hover {
    color: #cacaca;
}

.breadcrumb .breadcrumb-item::before {
    font-family: "Font Awesome 6 Pro";
    font-weight: 900;
    content: "";
    position: absolute;
    left: 0px;
    font-size: 14px;
    color: var(--theme-color);
    padding: 0px
}

.breadcrumb .breadcrumb-item:first-of-type {
    padding-left: 0px
}

.breadcrumb .breadcrumb-item:first-of-type a:hover {
    color: #cacaca;
}

.breadcrumb .breadcrumb-item:first-of-type::before {
    content: none
}

.breadcrumb .active {
    color: var(--white);
    padding-right: 0px;
    font-weight: 600
}

.footer {
    background-color:#18185E;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: left top
}

.footer .gaper {
    row-gap: 60px
}

.footer .footer__single-meta {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    flex-wrap: wrap;
    color:#fff;
    margin: 30px 0px 40px
}

.footer .footer__single-meta a {
    max-width: 220px;
    color: var(--white);
    line-height: 28px;
    font-weight: 500;
    align-items: flex-start
}

.footer .footer__single-meta a i {
    line-height: inherit
}
.footer__cta .btn--secondary{
    border-color:#ffff;
}
.footer .footer__single-meta a:hover {
    color: #cacaca;
}

.footer .footer__single-intro {
    margin-bottom: 30px
}

.footer .footer__single-intro h5 {
    text-transform: capitalize;
    font-weight: 600
}

.footer ul li {
    margin-bottom: 12px
}

.footer ul li:nth-last-of-type(1) {
    margin-bottom: 0px
}

.footer ul li a {
    text-transform: capitalize
}

.footer ul li a:hover {
    padding-left: 6px;
    color:#cacaca;
}

.footer .footer__single-form {
    margin-top: 30px
}
.footer__single-form input::placeholder{
    color:#fff;
}
.footer .footer__copyright {
    padding: 65px 0px
}

.footer .footer__copyright .gaper {
    row-gap: 30px
}

.footer .footer__copyright-text p {
    color: #fff;
}

.footer .footer__copyright-text p a {
    font-weight: 600
}

.footer .footer__copyright-text p a:hover {
    color: var(--color-primary)
}

.footer .social {
    gap: 8px
}

.footer .social a {
    background-color: rgba(0, 0, 0, 0);
    border: 1px solid #888;
    color: #fff;
    position: relative;
    z-index: 1;
    overflow: hidden
}

/*.footer .social a::before {*/
/*    content: "";*/
/*    position: absolute;*/
/*    top: 50%;*/
/*    left: 50%;*/
/*    transform: translate(-50%, -50%);*/
/*    width: 0px;*/
/*    height: 0px;*/
/*    background-image: linear-gradient(180deg, #f90 0%, #ee332b 100%);*/
/*    transition: var(--transition);*/
/*    z-index: -1*/
/*}*/

.footer .social a:hover {
    color: var(--black);
    border: 1px solid #fff;
    background-color:#fff;
}

.footer .social a:hover::before {
    width: 100%;
    height: 100%
}

.footer-two {
    background-color: var(--black)
}

.footer-two .logo {
    margin-bottom: 30px
}

.footer-two .footer__single-meta {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    flex-wrap: wrap
}

.footer-two .footer__single-meta a {
    max-width: 220px;
    color: var(--white);
    line-height: 28px;
    font-weight: 500;
    align-items: flex-start
}

.footer-two .footer__single-meta a i {
    line-height: inherit
}

.footer-two .footer__single-meta a:hover {
    color: var(--color-primary)
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateX(-20px)
    }

    to {
        opacity: 1;
        transform: translateX(0px)
    }
}

.footer-two .social a {
    width: 160px;
    min-width: 160px;
    height: 70px;
    border: 1px solid #454545;
    border-radius: 100px;
    gap: 12px;
    background-color: rgba(0, 0, 0, 0);
    overflow: hidden
}

.footer-two .social a span {
    transition: all .3s ease-in-out;
    transform: translateX(-25px)
}

.footer-two .social a i {
    width: 40px;
    min-width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    background-image: linear-gradient(180deg, #f90 0%, #ee332b 100%);
    color: #fff;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-20px);
    transition: all .3s ease-in-out
}

.footer-two .social a:hover span {
    transform: translateX(0px)
}

.footer-two .social a:hover i {
    opacity: 1;
    visibility: visible;
    transform: translateX(0px);
    display: flex;
    animation: fadeIn .3s
}

.footer-two .footer__copyright {
    padding: 40px 0px;
    border-top: 1px solid #454545;
    margin-top: 65px
}

.footer-two .footer__copyright ul {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap
}

.footer-two .footer__copyright ul a {
    text-transform: capitalize;
    color: var(--white)
}

.footer-two .footer__copyright ul a:hover {
    color: var(--color-primary)
}

.footer-three {
    background-color: var(--tertiary-color);
    position: relative;
    z-index: 1
}

.footer-three .gaper {
    row-gap: 60px
}

.footer-three .footer-thumb {
    position: relative;
    margin-bottom: 30px
}

.footer-three .footer-thumb img {
    width: 100%;
    min-height: 200px
}

.footer-three .footer-thumb .footer-thumb__content {
    position: absolute;
    top: 40px;
    left: 0px;
    padding: 10px 20px 10px 40px;
    background-color: #414141;
    border-radius: 20px;
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px
}

.footer-three .footer-thumb .footer-thumb__content h5 {
    text-transform: capitalize
}

.footer-three .footer-three__group {
    padding-left: 30px
}

.footer-three .footer-three__group .intro {
    margin-bottom: 24px
}

.footer-three .footer-three__group h5 {
    font-weight: 600;
    text-transform: capitalize;
    margin-top: -8px
}

.footer-three .footer-three__group ul {
    display: flex;
    align-items: center;
    gap: 30px;
    row-gap: 24px;
    flex-wrap: wrap
}

.footer-three .footer-three__group a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--white);
    font-weight: 400;
    line-height: 1.4
}

.footer-three .footer-three__group a i {
    color: var(--secondary-color);
    transition: var(--transition)
}

.footer-three .footer-three__group a:hover {
    color: var(--color-primary)
}

.footer-three .footer-three__group a:hover i {
    color: var(--color-primary)
}

.footer-three .footer-three__group .cta {
    margin-top: 30px
}

.footer-three .footer-three__group .cta a {
    color: var(--color-primary)
}

.footer-three .footer-three__group .cta a i {
    color: var(--color-primary)
}

.footer-three .footer-three__copyright {
    padding: 40px 0px;
    border-top: 1px solid #454545;
    margin-top: 65px
}

.footer-three .footer-three__copyright .gaper {
    row-gap: 30px !important
}

.footer-three .footer-three__copyright .footer__copyright-text p {
    color: var(--secondary-color)
}

.footer-three .footer-three__copyright .footer__copyright-text p a {
    font-weight: 600
}

.footer-three .footer-three__copyright .footer__copyright-text p a:hover {
    color: var(--color-primary)
}

.footer-four {
    position: relative
}

.footer-four::before {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    width: 100%;
    max-width: 1410px;
    height: 1px;
    background-color: #414141;
    margin-left: auto;
    margin-right: auto
}

.footer-four .cta-t a {
    width: 100%;
    padding: 80px 20px;
    justify-content: center;
    display: flex;
    gap: 40px;
    text-transform: uppercase;
    background-color: var(--white);
    color: var(--black);
    border-radius: 200px
}

.footer-four .cta-t a:hover {
    color: var(--black);
    background-color: var(--color-primary)
}

.footer-four .cta-t p {
    color: var(--secondary-color);
    margin-top: 30px;
    text-align: center
}

.footer-four .copy-t {
    padding-bottom: 30px
}

.footer-four .copy-t ul {
    display: flex;
    align-items: center;
    gap: 24px
}

.footer-four .copy-t a {
    color: var(--white)
}

.footer-four .copy-t a:hover {
    color: var(--color-primary)
}

.footer-four .footer-three__copyright {
    padding: 40px 0px;
    border-top: 1px solid #454545
}

.footer-four .footer-three__copyright .gaper {
    row-gap: 30px !important
}

.footer-four .footer-three__copyright .footer__copyright-text p {
    color: var(--secondary-color)
}

.footer-four .footer-three__copyright .footer__copyright-text p a {
    font-weight: 600
}

.footer-four .footer-three__copyright .footer__copyright-text p a:hover {
    color: var(--color-primary)
}

.footer-cmn {
    background-color: #101010
}

.agency {
    background-color: #fff;
    z-index: 1;
    position: relative;
   padding: 60px 0px;
}

.agency video{
    /*width:70%;*/
    object-fit:cover;
    height:650px;
}
.agency .title {
    color:#000;
    font-size:35px;
}
.agency .paragraph p,.skill-bar-title p{
    color:#000;
}
.agency .agency__thumb {
    position: relative;
    overflow: hidden;
    text-align: end;
    z-index: 1
}

.what-you-get h5,.what-you-get h4,.what-you-get p{
    color:#000;
}
.what-you-get .agency-service-box{
    background-color:#fff;
    padding:20px;
}
.agency .agency__thumb img {
    max-width: 100%;
    height: 700px;
}
.agency .agency__thumb video{
    border:1px solid var(--color-primary);
    width:100%;
}
.agency .agency__thumb .thumb-one {
    position: absolute;
    top: 0px;
    left: 0px;
    max-width: 80%
}

.agency .agency__thumb .thumb-two {
    margin-top: 100px;
    z-index: 2;
    position: relative;
    max-width: 80%
}



.agency .star {
    position: absolute;
    top: 50%;
    left: 40px;
    z-index: -1
}

.agency .skill-wrap {
    margin-top: 40px
}

.agency .skill-bar-single {
    margin-bottom: 30px
}

.agency .skill-bar-single:nth-last-of-type(1) {
    margin-bottom: 0px
}

.agency .skill-bar-wrapper {
    margin-top: 15px
}

.agency .skill-bar {
    height: 8px;
    border-radius: 100px;
    background-color: #363636;
    position: relative
}

.agency .skill-bar-percent {
    position: absolute;
    top: 0px;
    left: 0px;
    bottom: 0px;
    background-color: var(--color-primary);
    border-radius: inherit
}

.agency .percent-value {
    position: absolute;
    bottom: calc(100% + 15px);
    right: 0px;
    color:#000;
}

.agency .dot-large {
    position: absolute;
    bottom: 40px;
    right: 4%;
    max-width: 25vw;
    z-index: -1
}

.agency-two .agency__thumb::before,
.agency-two .agency__thumb::after {
    content: none
}

.agency-two .clutch {
    width: 220px;
    border-radius: 100px
}

.agency-two .clutch img {
    border-radius: 100px
}

.agency-two .cta {
    margin-top: 40px;
    display: flex;
    align-items: center;
    gap: 60px;
    row-gap: 24px;
    flex-wrap: wrap
}

.agency-two h5 {
    color: var(--white)
}

.agency-two .single p {
    color: var(--secondary-color);
    margin-top: 6px;
    text-transform: capitalize
}
.featured-project h4{
    color:#000;
}
.portfolio {
    overflow-x: clip
}
.portfolio-achivement{
 flex-wrap:Wrap;
}
.portfolio-achivement > span{
    margin-right:50px;
}
.project-portfolio .portfolio__single img{
    height:auto!important;
   object-position: left;
}
.project-portfolio  .portfolio__single::before,
.project-portfolio  .portfolio__single::after{
    display:none;
}
/*.portfolio .portfolio__text-slider {*/
/*    margin-bottom: 60px*/
/*}*/

.portfolio .portfolio__text-slider-single h2,.portfolio .portfolio__text-slider-single p {
    /*margin-top: -20px;*/
    font-weight: 900;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 0px
}
 .portfolio .portfolio__text-slider-single p{
     font-size:36px;
     line-height:38px;
 }
.portfolio .portfolio__text-slider-single h2 i ,.portfolio .portfolio__text-slider-single p  i{
    color: #FF6F00;
    margin-right:10px;
}

.portfolio .portfolio__text-slider-single:nth-of-type(even) h2 {
    font-family: sans-serif;
    -webkit-text-fill-color: rgba(0, 0, 0, 0);
    -webkit-text-stroke: 2px var(--white)
}

.portfolio .portfolio__text-slider-single:nth-of-type(even) h2 i {
    -webkit-text-fill-color: rgba(0, 0, 0, 0);
    -webkit-text-stroke: 2px var(--color-primary)
}

.portfolio .portfolio__text-slider-single:nth-of-type(even) h2 a:hover {
    -webkit-text-stroke-color: var(--color-primary)
}

.portfolio .portfolio__single {
    height:100%;
    position: relative;
    z-index: 1;
    overflow: hidden
}

.portfolio .portfolio__single::before {
    content: "";
    position: absolute;
    left: 20px;
    bottom: 20px;
    width: 0px;
    height: 0px;
    transition: var(--transition);
    background-color: var(--color-primary)
}

.portfolio .portfolio__single::after {
    content: "";
    position: absolute;
    right: 20px;
    bottom: 20px;
    height: 0px;
    width: 0px;
    transition: var(--transition);
    background-color: var(--color-primary)
}

.portfolio .portfolio__single a {
    width: 100%;
    height:100%;
}

.project-portfolio .portfolio__single img{
    width:auto!important;
}
.portfolio .portfolio__single img {
    width: 100%;
    min-height: 300px;
    height:100%;
     object-position: left;
}

.portfolio .portfolio__single .portfolio__single-content {
    position: absolute;
    top: 0px;
    right: 0px;
    padding: 40px;
    background-color: var(--white);
    text-align: end;
    display: flex;
    flex-direction: column;
    gap: 60px;
    align-items: flex-end;
    justify-content: flex-end;
    transform: translateY(-160%) scale(1.4);
    transition: var(--transition);
    max-width: 90%
}

.portfolio .portfolio__single .portfolio__single-content a {
    width: auto
}

.portfolio .portfolio__single .portfolio__single-content a i {
    font-size: 56px;
    color: var(--color-primary)
}

.portfolio .portfolio__single .portfolio__single-content h4 a {
    color: var(--black);
    font-weight: 600
}

.portfolio .portfolio__single .portfolio__single-content h4 a:hover {
    color: var(--color-primary)
}

.portfolio .portfolio__single:hover::before {
    width: 1px;
    height: calc(100% - 40px)
}

.portfolio .portfolio__single:hover::after {
    height: 1px;
    width: calc(100% - 40px)
}

.portfolio .portfolio__single:hover .portfolio__single-content {
    transform: translateY(0px) scale(1)
}

.portfolio .portfolio__single-active::before {
    width: 1px;
    height: calc(100% - 40px)
}

.portfolio .portfolio__single-active::after {
    height: 1px;
    width: calc(100% - 40px)
}

.portfolio .portfolio__single-active .portfolio__single-content {
    transform: translateY(0px) scale(1)
}

.portfolio .portfolio__single-alt-wrapper {
    background-color: var(--color-primary);
    padding: 20px;
    border: 1px solid var(--black);
    height: 100%!important;
}

.portfolio .portfolio__single-alt {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    min-height: 300px;
    position:relative;
}
.portfolio__single-alt h4{
    z-index:9;
}
.portfolio__single-alt a.dme-contact-link{
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    color:#fff;
    right:0;
    z-index:1;
}

.portfolio .portfolio__single-alt h4 {
    text-transform: uppercase
}

.portfolio .portfolio__single-alt .arr {
    position: absolute;
    bottom: 60px;
    left: 60px;
    font-size: 120px;
    font-weight: 900;
    z-index:5;
    color: rgba(255,255,255);
}

.portfolio .portfolio__single-alt img {
    max-width: 25%
}

.portfolio .portfolio__single-alt .dot-one {
    position: absolute;
    top: 40px;
    left: 40px;
    z-index: -1
}

.portfolio .portfolio__single-alt .dot-two {
    position: absolute;
    bottom: 40px;
    right: 40px;
    z-index: -1
}

/*.portfolio-two .portfolio__text-slider {*/
/*    margin-bottom: 80px*/
/*}*/

.portfolio-two .portfolio__text-slider-single h2 {
    margin-top: -20px;
    font-weight: 900;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 0px
}

.portfolio-two .portfolio__text-slider-single h2 i {
    color: var(--color-primary)
}

.portfolio-two .portfolio__text-slider-single:nth-of-type(even) h2 {
    font-family: sans-serif;
    -webkit-text-fill-color: rgba(0, 0, 0, 0);
    -webkit-text-stroke: 2px var(--white)
}

.portfolio-two .portfolio__text-slider-single:nth-of-type(even) h2 i {
    -webkit-text-fill-color: rgba(0, 0, 0, 0);
    -webkit-text-stroke: 2px var(--color-primary)
}

.portfolio-two .portfolio-two__filter-btn {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    row-gap: 24px;
    justify-content: space-between
}

.portfolio-two .portfolio-two__filter-btn button {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    text-transform: uppercase
}

.portfolio-two .portfolio-two__filter-btn button span {
    color: #474747;
    transition: var(--transition)
}

.portfolio-two .portfolio-two__filter-btn button:hover {
    color: var(--color-primary)
}

.portfolio-two .portfolio-two__filter-btn button:hover span {
    color: var(--white)
}

.portfolio-two .portfolio-two__filter-btn .active {
    color: var(--color-primary)
}

.portfolio-two .portfolio-two__filter-btn .active span {
    color: var(--white)
}

.filter-item-space {
    margin-bottom: 30px
}

.masonry-grid {
    margin-bottom: -30px
}

.portfolio-three {
    position: relative;
    z-index: 1
}

.portfolio-three .slick-track {
    display: flex
}

.portfolio-three .portfolio__single {
    position: relative;
    z-index: 1;
    overflow: hidden;
    height: 100%;
    flex: 1
}

.portfolio-three .portfolio__single::before,
.portfolio-three .portfolio__single::after {
    content: none
}

.portfolio-three .portfolio__single a {
    width: 100%;
    height: 100%
}

.portfolio-three .portfolio__single img {
    width: 100%;
    height: 100%;
    min-height: 360px
}

.portfolio-three .portfolio__single .portfolio__single-content {
    position: absolute;
    bottom: 0px;
    top: unset;
    right: unset;
    left: 0px;
    padding: 40px;
    background-color: var(--white);
    text-align: end;
    display: flex;
    flex-direction: column;
    gap: 60px;
    align-items: flex-end;
    justify-content: flex-end;
    transform: translateY(160%) scale(1.4);
    transition: var(--transition);
    max-width: 90%
}

.portfolio-three .portfolio__single .portfolio__single-content a {
    width: auto
}

.portfolio-three .portfolio__single .portfolio__single-content a i {
    font-size: 56px;
    color: var(--color-primary)
}

.portfolio-three .portfolio__single .portfolio__single-content h4 a {
    color: var(--black);
    font-weight: 600
}

.portfolio-three .portfolio__single .portfolio__single-content h4 a:hover {
    color: var(--color-primary)
}

.portfolio-three .portfolio__single:hover .portfolio__single-content {
    transform: translateY(160%) scale(1.4)
}

.portfolio-three .slick-center .portfolio__single-content {
    transform: translateY(0px) scale(1)
}

.portfolio-three .slick-center:hover .portfolio__single-content {
    transform: translateY(0px) scale(1)
}

.portfolio-three .slide-group {
    position: absolute;
    padding: 0px 20px;
    top: 70%;
    left: 0%;
    right: 0%;
    transform: translateY(-70%);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    z-index: 2;
    width: 100%;
    max-width: 1700px;
    margin-left: auto;
    margin-right: auto
}
.offer-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.offer {
    position: relative;
    z-index: 1;
    overflow: hidden;
    background-color:#fff;
    
}
.offer p,.offer .title,.offer h3 a{
    color:#000;
}
.offer::before{
     content: "";
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: scroll;
  opacity: 0.1; 
  z-index: 1;
}
.offer .container{
    position:relative;
    z-index:99;
}
.offer .btn--secondary,.signature-logo .btn--secondary
,.section-graphics .btn--secondary,.cta-btn .btn--secondary{
    color:var(--color-primary);
}
.offer-list{
    display:flex;
    flex-wrap:wrap;
    gap:5px;
      
}
.offer-list li{
    flex-basis:calc(50% - 3px);
    color:#000;
}
.offer-list li> img{
    margin-right:5px;
}
.banner__content{
    padding-top:5px;
}
.offer .star {
    position: absolute;
    bottom: 20%;
    z-index: -1;
    left: 40%;
    transform: translate(-40%, -20%)
}

.offer .offer__cta .sub-title {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    line-height: 1;
    border: 1px solid #414141;
    color: #404040;
    border-radius: 30px;
    margin-bottom: 32px;
    text-transform: uppercase;
    margin-bottom: 20px;
    transition: var(--transition)
}

.offer .offer__cta .sub-title i {
    transform: rotate(-45deg);
    color: var(--color-primary);
    opacity: .5;
    transition: var(--transition)
}

.offer .offer__cta h2 a {
    justify-content: space-between;
    text-transform: capitalize;
    width: 100%;
    font-weight: 500;
    color: var(--color-primary);
    gap: 16px
}

.offer .offer__cta h2 a i {
    font-weight: 900;
    -webkit-text-fill-color: rgba(0, 0, 0, 0);
    -webkit-text-stroke: 1px #404040;
    transition: var(--transition)
}

.offer .offer__cta .offer__cta-single {
    position: relative;
    margin-bottom: 65px
}

.offer .offer__cta .offer__cta-single:nth-last-of-type(1) {
    margin-bottom: 0px
}

.offer .offer__cta .offer-thumb-hover {
    width: 200px;
    height: 270px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    inset-inline-start: 0;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position-x: 75%;
    opacity: 0;
    transition: opacity .3s, transform .7s cubic-bezier(0.23, 1, 0.32, 1);
    margin: -200px 0 0 -150px;
    overflow: hidden;
    pointer-events: none;
    z-index: -1
}

.offer .offer__cta .offer__cta-single:hover .sub-title {
    color: var(--color-primary)
}

.offer .offer__cta .offer__cta-single:hover .sub-title i {
    opacity: 1
}

.offer .offer__cta .offer__cta-single:hover h2 a {
    color: var(--color-primary)
}

.offer .offer__cta .offer__cta-single:hover h2 a i {
    -webkit-text-fill-color: unset;
    -webkit-text-stroke: 0px;
    color: var(--color-primary)
}

.offer .offer__cta .offer__cta-single:hover .offer-thumb-hover {
    opacity: 1
}

.offer-two .offer-two__slider,
.offer-two .offer-two__slider-rtl {
    margin: -60px 0px
}

.offer-two .offer-two__slider .offer__cta,
.offer-two .offer-two__slider-rtl .offer__cta {
    direction: ltr
}

.offer-two .offer__cta {
    padding: 60px 0px
}

.offer-two .offer__cta .sub-title {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    line-height: 1;
    border: 1px solid #414141;
    color: #404040;
    border-radius: 30px;
    margin-bottom: 32px;
    text-transform: uppercase;
    margin-bottom: 20px;
    transition: var(--transition)
}

.offer-two .offer__cta .sub-title i {
    transform: rotate(-45deg);
    color: var(--color-primary);
    opacity: .5;
    transition: var(--transition)
}

.offer-two .offer__cta h2 a {
    justify-content: space-between;
    text-transform: capitalize;
    width: 100%;
    font-weight: 500;
    color: #404040;
    gap: 16px
}

.offer-two .offer__cta h2 a i {
    font-weight: 900;
    -webkit-text-fill-color: rgba(0, 0, 0, 0);
    -webkit-text-stroke: 1px #404040;
    transition: var(--transition)
}

.offer-two .offer__cta .offer__cta-single {
    position: relative
}

.offer-two .offer__cta .offer-thumb-hover {
    width: 140px;
    height: 140px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    inset-inline-start: 0;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position-x: 75%;
    opacity: 0;
    transition: opacity .3s, transform .7s cubic-bezier(0.23, 1, 0.32, 1);
    margin: -120px 0 0 -120px;
    overflow: hidden;
    pointer-events: none;
    z-index: 1
}

.offer-two .offer__cta .offer__cta-single:hover .sub-title {
    color: var(--color-primary)
}

.offer-two .offer__cta .offer__cta-single:hover .sub-title i {
    opacity: 1
}

.offer-two .offer__cta .offer__cta-single:hover h2 a {
    color: var(--color-primary)
}

.offer-two .offer__cta .offer__cta-single:hover h2 a i {
    -webkit-text-fill-color: unset;
    -webkit-text-stroke: 0px;
    color: var(--color-primary)
}

.offer-two .offer__cta .offer__cta-single:hover .offer-thumb-hover {
    opacity: 1
}
.testimonial .testimonial__text-slider-single p{
font-size:36px;
line-height:38px;
}

.testimonial .testimonial__text-slider-single h2,.testimonial .testimonial__text-slider-single p {
    /*margin-top: -20px;*/
    font-weight: 900;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 0px;
    font-family: sans-serif;
    -webkit-text-fill-color: rgba(0, 0, 0, 0);
    -webkit-text-stroke: 2px var(--white)
}

.testimonial .testimonial__text-slider-single h2 i,.testimonial .testimonial__text-slider-single p i {
    -webkit-text-fill-color: #ff7425;
    -webkit-text-stroke: 0px #ff7425;
    margin-right:10px;
    color:#ff7425;
}
.testimonial h4{
    color:#000;
}
.testimonial h5{
    color:var(--color-primary);
}
.testimonial .testimonial__text-slider-single h2 a:hover {
    -webkit-text-stroke-color: var(--color-primary)
}

.testimonial .testimonial-s__slider .thumb {
    position: relative
}

.testimonial .testimonial-s__slider .thumb svg {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -80px
}

.testimonial .testimonial-s__slider .testimonial-s__content .quote i {
    font-size: 56px;
    color: var(--color-primary)
}

.testimonial .testimonial-s__slider .testimonial-s__content .content {
    margin: 30px 0px
}

.testimonial .testimonial-s__slider .testimonial-s__content h4 {
    font-weight: 400;
    text-transform: capitalize
}

.testimonial .testimonial-s__slider .testimonial-s__content .content-cta p {
    color: var(--color-primary);
    margin-top: 6px
}

.testimonial .slide-group {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0px;
    flex-direction: column
}

.testimonial .slide-group button {
    position: relative;
    z-index: 9
}

.testimonial .slide-group button:nth-of-type(1) {
    transform: rotate(90deg)
}

.testimonial .slide-group button:nth-of-type(2) {
    transform: rotate(90deg)
}

.testimonial .other-section {
    position: absolute;
    left: 0px;
    bottom: 130px;
    width: 330px;
    opacity: .25;
    transform: translateX(-40%)
}

.testimonial-two {
    background: url("../images/testimonial/line.png"), var(--tertiary-color);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: left bottom;
    position: relative;
    z-index: 1;
    overflow: hidden
}

.testimonial-two .testimonial-two__thumb img {
    border-radius: 500px
}

.testimonial-two .quote {
    margin: 30px 0px
}

.testimonial-two .quote i {
    font-size: 60px;
    color: var(--color-primary)
}

.testimonial-two blockquote {
    color: #c1c1c1
}

.testimonial-two .author-meta {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 30px
}

.testimonial-two .author-meta img {
    width: 80px;
    height: 80px;
    border-radius: 50%
}

.testimonial-two .author-meta h5 {
    margin-bottom: 6px
}

.testimonial-two .star {
    position: absolute;
    top: 80px;
    right: 120px;
    z-index: -1
}

.testimonial-three {
    background-color: var(--tertiary-color)
}

.blog {
    background-color: var(--tertiary-color)
}
.blog-wrapper .blog__single{
    padding:15px;
    border-radius:12px;
    box-shadow:0 6px 10px rgba(0,0,0,0.4);
}
.blog-wrapper h5 a{
    color:#000;
}

.blog .blog__single-thumb a {
    width: 100%
}

.blog .blog__single-thumb a img {
    width: 100%;
    object-fit:contain;
    max-height: 200px;
    height:100%;
   transition: all 0.4s ease-in-out;
}

.blog .blog__single-content {
    margin-top: 40px
}

.blog .blog__single-meta {
    display: flex;
    align-items: center;
    gap: 30px;
    row-gap: 16px;
    flex-wrap: wrap;
    margin-top: 30px
}

.blog .blog__single-meta a {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    line-height: 1;
    border: 1px solid #414141;
    color: var(--color-primary);
    border-radius: 30px;
    text-transform: uppercase
}

.blog .blog__single-meta a i {
    transform: rotate(-45deg)
}

.blog-main ul,.blog-main ol {
    list-style-type: unset;
    list-style-position: inside;
}

.blog .blog__single-meta p {
    color: var(--secondary-color)
}

.blog-two {
    background-color: var(--black)
}

.blog-two .blog-two__slider-single {
    position: relative;
    z-index: 1;
    overflow: hidden
}

.blog-two .blog-two__slider-single::before {
    content: "";
    position: absolute;
    inset: 0px;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000 100%);
    transform: translateY(100%);
    transition: var(--transition)
}

.blog-two .blog-two__slider-single .blog__single-content {
    position: absolute;
    bottom: 0px;
    left: 0px;
    right: 0px;
    padding: 40px;
    width: 100%;
    transform: translateY(200%);
    transition: var(--transition);
    margin: 0px
}

.blog-two .blog-two__slider-single:hover::before {
    transform: translateY(0px)
}

.blog-two .blog-two__slider-single:hover .blog__single-content {
    transform: translateY(0px)
}

.blog-two .slick-center::before {
    transform: translateY(0px)
}

.blog-two .slick-center .blog__single-content {
    transform: translateY(0px)
}

.blog-three .blog-three__wrapper {
    padding-top: 65px;
    border-top: 1px solid #414141
}

.blog-three .blog-three__single {
    padding: 30px 0px;
    border-bottom: 1px solid #414141
}

.blog-three .blog-three__single:nth-of-type(1) {
    padding-top: 0px
}

.blog-three .blog-three__single:nth-last-of-type(1) {
    padding-bottom: 0px;
    border-bottom: 0px
}

.blog-three .blog-three__single:hover h4 a {
    color: var(--color-primary);
    text-decoration: underline
}

.blog-three .blog__single-content h4 {
    max-width: 650px
}

.blog-three .blog__single-content h4 a {
    text-transform: capitalize
}

.blog-three .blog__single-meta {
    display: flex;
    align-items: center;
    gap: 30px;
    row-gap: 16px;
    flex-wrap: wrap;
    margin-top: 30px
}

.blog-three .blog__single-meta a {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    line-height: 1;
    border: 1px solid #414141;
    color: var(--color-primary);
    border-radius: 30px;
    text-transform: uppercase
}

.blog-three .blog__single-meta a i {
    transform: rotate(-45deg)
}

.blog-three .blog__single-meta p {
    color: var(--secondary-color)
}

.blog-three .blog-single-img a {
    width: 100%
}

.blog-three .blog-single-img img {
    width: 100%
}

.sponsor .sponsor__slider-item {
    text-align: center
}

.sponsor .sponsor__slider-item img {
    max-width: 100%;
    height: auto;
    margin-left: auto;
    margin-right: auto;
    opacity: .25;
    transition: var(--transition)
}

.sponsor .slick-center img {
    opacity: 1
}

.sponsor-three {
    background-color: var(--tertiary-color)
}

.next-page .next__text-slider-single h2 {
    margin-top: -14px;
    margin-bottom: -14px
}

.next-page .next__text-slider-single h2 a {
    font-weight: 900;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 30px
}

.next-page .next__text-slider-single h2 a i {
    color: var(--color-primary)
}

.next-page .next__text-slider-single:nth-of-type(even) h2 a {
    font-family: sans-serif;
    -webkit-text-fill-color: rgba(0, 0, 0, 0);
    -webkit-text-stroke: 2px var(--white);
    color: rgba(0, 0, 0, 0)
}

.next-page .next__text-slider-single:nth-of-type(even) h2 a i {
    -webkit-text-fill-color: rgba(0, 0, 0, 0);
    -webkit-text-stroke: 2px var(--color-primary)
}

.next-page .next__text-slider-single:nth-of-type(even) h2 a:hover {
    -webkit-text-stroke-color: var(--color-primary)
}

.liner {
    position: relative
}

.liner::before {
    content: "";
    position: absolute;
    top: 0px;
    right: 0px;
    width: 60%;
    border-top: 1px solid #414141
}

.award {
    background-color: var(--tertiary-color);
    position: relative;
    z-index: 1;
    overflow: hidden
}

.award .award-thumb img {
    border-radius: 0px 1000px 1000px 0px
}

.award .award__content .title span {
    color: var(--color-primary)
}

.award .award__content-meta {
    display: flex;
    gap: 16px;
    justify-content: space-between;
    margin-top: 40px;
    position: relative
}

.award .award__content-meta::before {
    content: "";
    position: absolute;
    top: 50px;
    left: 0px;
    right: 0px;
    height: 1px;
    width: 100%;
    background-color: var(--color-primary)
}

.award .single {
    position: relative
}

.award .single::before {
    content: "";
    position: absolute;
    top: 50px;
    left: 0px;
    border: 15px solid rgba(0, 0, 0, 0);
    border-top-color: var(--color-primary)
}

.award .single h4 {
    color: #fff;
    font-weight: 700
}

.award .single h4:nth-of-type(1) {
    color: var(--color-primary);
    font-weight: 500;
    margin-bottom: 50px
}

.award .single p {
    margin-top: 10px;
    color: var(--secondary-color)
}

.award .star,
.award .star-two,
.award .dot,
.award .dot-two {
    position: absolute;
    z-index: -1
}

.award .star {
    top: 100px;
    left: 50%;
    transform: translateX(-50%);
    max-width: 10vw
}

.award .star-two {
    bottom: 60px;
    left: 20%;
    max-width: 2vw
}

.award .dot {
    top: 40%;
    left: 6%;
    max-width: 10vw
}

.award .dot-two {
    bottom: 60px;
    left: 50%;
    transform: translateX(-45%);
    max-width: 10vw
}

.video-modal {
    position: relative
}

.video-modal .modal-bg {
    width: 100%;
    min-height: 360px
}

.video-modal .video-frame {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 190px;
    min-width: 190px;
    height: 190px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px
}

.video-modal .video-frame img {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0px;
    animation: rotateInfinite 24s linear infinite;
    animation-play-state: running
}

.video-modal .video-frame i {
    width: 120px;
    min-width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-primary);
    color: var(--white)
}

.video-modal .video-frame:hover img {
    animation-play-state: paused
}

.cta-s .cta__wrapper {
    max-width: 1320px;
    margin-left: auto;
    margin-right: auto;
    padding: 100px 20px;
    border-radius: 20px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center
}

.cta-s .footer__single-form {
    max-width: 650px;
    margin-left: auto;
    margin-right: auto
}

.cta-s .footer__single-form .input-email {
    border-radius: 100px;
    border: 1px solid #c1c1c1
}
.footer .list-inline li.list-inline-item {
    margin-bottom: 12px!important;
}
.cta-s .footer__single-form .input-email input {
    padding: 24px 30px;
    width: calc(100% - 100px)
}

.cta-s .footer__single-form .input-email button {
    width: 100px;
    min-width: 100px
}

.cta-s .star,
.cta-s .star-two {
    position: absolute;
    z-index: -1;
    opacity: .25
}

.cta-s .star {
    left: 40px;
    top: 20%;
    max-width: 10vw
}

.cta-s .star-two {
    right: 60px;
    bottom: 10%;
    max-width: 10vw
}

.cta-two .cta-two-wrapper {
    max-width: 1350px;
    padding: 80px 65px;
    background-position: center center;
    background-size: cover;
    background-color: var(--color-primary);
    border-radius: 20px
}

.cta-two span {
    padding: 10px;
    background-color: #fff;
    color: #000;
    border-radius: 20px;
    border-top-left-radius: 0px;
    display: inline-block
}

.cta-two h2,
.cta-two h5 {
    text-transform: capitalize
}

.cta-two h2 {
    font-weight: 700;
    margin-bottom: 30px;
    margin-top: 30px
}

.cta-two .btn {
    background-color: rgba(0, 0, 0, 0);
    border: 1px solid #fff !important;
    color:#fff;
}

.service-f {
    position: relative;
    z-index: 1;
    overflow: hidden
}

.service-f .service-f-single {
    padding: 40px 0px;
    display: flex;
    align-items: center;
    gap: 16px;
    justify-content: space-between;
    border-top: 1px solid #414141;
    padding-right: 90px;
    position: relative
}

.service-f .service-f-single:nth-last-of-type(1) {
    border-bottom: 1px solid #414141
}

.service-f .service-f-single .toggle-service-f {
    position: relative
}

.service-f .service-f-single .toggle-service-f::before {
    content: "+";
    font-family: "Font Awesome 6 Pro";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--white);
    font-size: 18px
}

.service-f .service-f-single-active .toggle-service-f::before {
    content: "";
    font-family: "Font Awesome 6 Pro";
    color: var(--color-primary);
    font-size: 18px
}

.service-f .service-f-single-active .single-item .sub-title {
    opacity: 1
}

.service-f .single-item .sub-title {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    line-height: 1;
    border: 1px solid #414141;
    color: var(--white);
    border-radius: 30px;
    margin-bottom: 32px;
    text-transform: uppercase;
    margin-bottom: 20px;
    transition: var(--transition);
    opacity: .5
}

.service-f .single-item .sub-title i {
    transform: rotate(-45deg);
    color: var(--color-primary);
    transition: var(--transition)
}

.service-f .single-item h4 {
    margin-bottom: 24px
}

.service-f .single-item p {
    max-width: 450px
}

.service-f .single-item ul {
    min-width: 220px
}

.service-f .single-item li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px
}

.service-f .single-item li:nth-last-of-type(1) {
    margin-bottom: 0px
}

.service-f .single-item li i {
    font-size: 14px;
    color: var(--color-primary)
}

.service-f button {
    width: 50px;
    min-width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #1d1d1d;
    position: absolute !important;
    top: 50%;
    transform: translateY(-50%);
    right: 0px
}

.service-f .p-single {
    display: none
}

.service-f .dot-img {
    position: absolute;
    top: 50%;
    left: 6%;
    max-width: 15vw;
    z-index: -1
}

.work-steps {
    position: relative;
    z-index: 1;
    overflow: hidden
}

.work-steps .work-steps__single {
    padding-top: 230px;
    position: relative
}

.work-steps .work-steps__single h5 {
    position: relative;
    z-index: 2;
    padding: 16px 30px;
    border: 1px dashed #414141;
    background-color: var(--black);
    border-radius: 100px;
    overflow: hidden;
    text-transform: capitalize;
    transition: var(--transition)
}

.work-steps .work-steps__single h5::before {
    content: "";
    position: absolute;
    inset: 0px;
    width: 0%;
    border-radius: 100px;
    background: linear-gradient(90deg, #ff7425 0%, rgba(255, 116, 37, 0) 60.08%);
    z-index: -1;
    transition: var(--transition)
}

.work-steps .work-steps__single span {
    position: absolute;
    top: 0px;
    right: 0px;
    width: 60px;
    min-width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #1f1f1f;
    text-align: center;
    color: #8d8d8d;
    line-height: 1.4;
    transition: var(--transition)
}

.work-steps .work-steps__single span::after {
    content: "";
    position: absolute;
    top: calc(100% + 30px);
    left: 50%;
    transform: translateX(-50%);
    height: 0px;
    width: 1px;
    background-color: #414141;
    transition: var(--transition)
}

.work-steps .work-steps__single .work-thumb-hover {
    width: 600px;
    height: 220px;
    position: absolute;
    top: 100%;
    inset-inline-start: 0;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position-x: 75%;
    opacity: 0;
    transition: opacity .3s, transform .7s cubic-bezier(0.23, 1, 0.32, 1);
    margin: 60px 0 0 -150px;
    overflow: hidden;
    pointer-events: none;
    z-index: -1
}

.work-steps .work-steps__single:hover span {
    background-color: var(--color-primary);
    color: var(--white)
}

.work-steps .work-steps__single:hover span::after {
    height: 108px
}

.work-steps .work-steps__single:hover h5 {
    border: 1px solid rgba(0, 0, 0, 0)
}

.work-steps .work-steps__single:hover h5::before {
    width: 100%
}

.work-steps .work-steps__single:hover .work-thumb-hover {
    opacity: 1
}

.work-steps .work-steps__single-active span {
    background-color: var(--color-primary);
    color: var(--white)
}

.work-steps .work-steps__single-active span::after {
    height: 108px
}

.work-steps .work-steps__single-active h5 {
    border: 1px solid rgba(0, 0, 0, 0)
}

.work-steps .work-steps__single-active h5::before {
    width: 100%
}

.work-steps .work-steps__single-active .work-thumb-hover {
    opacity: 1
}

.work-steps .work-two {
    margin-top: 100px
}

.work-steps .work-three {
    margin-top: 200px
}

.work-steps .work-four {
    margin-top: 300px
}

.work-steps .video-frame {
    position: absolute;
    top: 33%;
    right: 12%;
    width: 190px;
    min-width: 190px;
    height: 190px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: var(--color-primary)
}

.work-steps .video-frame img {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0px;
    animation: rotateInfinite 24s linear infinite;
    animation-play-state: running
}

.work-steps .video-frame:hover img {
    animation-play-state: paused
}

.work-alt {
    background-color: var(--tertiary-color)
}

.four-info .primary-text {
    margin-bottom: 24px;
    font-weight: 600
}

.projects-s .projects-s__single {
    padding: 30px;
    border: 1px solid #414141
}

.projects-s .projects-s__single .thumb a {
    width: 100%
}

.projects-s .projects-s__single .thumb a img {
    width: 100%
}

.projects-s .projects-s__single .content {
    margin-top: 30px
}

.projects-s .projects-s__single .content h4 {
    text-transform: capitalize
}

.projects-s .projects-s__single .content p {
    margin-top: 20px;
    color: #d9d9d9
}

.projects-s .gaper {
    margin-bottom: 65px
}

.projects-s .gaper:nth-last-of-type(1) {
    margin-bottom: 0px
}

.project__text-slider {
    margin-bottom: 80px;
    padding: 40px 0px;
    border-top: 1px solid #414141;
    border-bottom: 1px solid #414141
}

.project__text-slider-single h2 {
    font-weight: 700;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 0px
}

.project__text-slider-single h2 i {
    color: var(--color-primary);
    font-size: 30px
}

@keyframes fde {
    0% {
        transform: translateY(40px);
        display: none;
        opacity: 0;
        visibility: hidden
    }

    100% {
        transform: translateY(0px);
        display: block;
        opacity: 1;
        visibility: visible
    }
}

@keyframes fdee {
    0% {
        transform: translateX(-100px)
    }

    100% {
        transform: translateY(0px)
    }
}

.team-slider-s {
    overflow-x: clip
}

.team-slider-s .team-s__slider-single {
    overflow: hidden
}

.team-slider-s .team-s__slider-single .content {
    transform: translateY(100%);
    transition: var(--transition);
    display: none;
    opacity: 0;
    visibility: hidden
}

.team-slider-s .team-s__slider-single .thumb {
    position: relative;
    overflow: hidden
}

.team-slider-s .team-s__slider-single .thumb a {
    width: 100%
}

@keyframes rer {
    0% {
        transform: translateY(-200%);
        display: none;
        opacity: 0
    }

    100% {
        display: block;
        opacity: 1;
        transform: translateY(0px)
    }
}

.team-slider-s .team-s__slider-single .thumb .thumb__content {
    position: absolute;
    bottom: 0px;
    left: 0px;
    padding: 30px;
    background-color: #1a1a1a;
    background-size: cover;
    background-position: left bottom;
    height: 130px;
    width: 240px;
    overflow-y: clip;
    transition: all .4s ease-in-out;
    display: none
}

.team-slider-s .team-s__slider-single .thumb .thumb__content p {
    color: var(--color-primary);
    margin-top: 8px
}

.team-slider-s .team-s__slider-single .thumb .thumb__content .info {
    transform: translateY(-200%);
    display: none;
    transition: var(--transition);
    margin-bottom: 20px
}

.team-slider-s .team-s__slider-single .thumb .thumb__content .info p {
    color: var(--white)
}

.team-slider-s .team-s__slider-single .thumb .thumb__content .social-alt {
    position: absolute;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    justify-content: center;
    top: 0px;
    left: 100%;
    bottom: 0px;
    width: 60px;
    height: 100%;
    background: linear-gradient(90deg, #f90 0%, #cc2500 100%);
    transition: all .4s ease-in-out;
    transition-delay: 0s;
    transform: translateY(100%)
}

.team-m .team-m__single img{
    width:100%;
}

.team-slider-s .team-s__slider-single .thumb .thumb__content .social-alt a {
    width: auto
}

.team-slider-s .team-s__slider-single .thumb .thumb__content .social-alt a:hover {
    color: var(--white)
}

.team-slider-s .team-s__slider-single .thumb:hover .thumb__content {
    height: 220px
}

.team-slider-s .team-s__slider-single .thumb:hover .thumb__content .info {
    transform: translateY(0px);
    display: block;
    animation: rer .4s ease-in-out
}

.team-slider-s .team-s__slider-single .thumb:hover .thumb__content .social-alt {
    transform: translateY(0px)
}

.team-slider-s .slick-track {
    display: flex !important;
    align-items: center !important;
    justify-content: start !important
}

.team-slider-s .slick-center-active .content {
    transform: translateY(0px);
    display: block;
    opacity: 1;
    visibility: visible;
    animation: fde .6s ease-in-out;
    max-width: 340px
}

.team-slider-s .slick-center-active .team-wrap {
    display: flex;
    align-items: center;
    height: 100%;
    gap: 24px;
    padding: 25px 20px;
    background-color: #131313
}

.team-slider-s .slick-center-active .team-wrap .thumb {
    max-width: 290px;
    min-width: 290px
}

.team-slider-s .slick-center-active .team-wrap .thumb img {
    width: 100%;
    min-height: 500px
}

.team-slider-s .slick-center-active .team-wrap .intro p {
    color: var(--color-primary);
    margin-top: 6px
}

.team-slider-s .slick-center-active .team-wrap hr {
    background-color: #414141;
    height: 1px;
    margin: 24px 0px;
    opacity: 1
}

.team-slider-s .slick-center-active .team-wrap .inner p,
.team-slider-s .slick-center-active .team-wrap .inner span {
    font-size: 14px
}

.team-slider-s .slick-center-active .team-wrap .skill-wrap {
    margin: 24px 0px
}

.team-slider-s .slick-center-active .team-wrap .skill-bar-single {
    margin-bottom: 10px
}

.team-slider-s .slick-center-active .team-wrap .skill-bar-single:nth-last-of-type(1) {
    margin-bottom: 0px
}

.team-slider-s .slick-center-active .team-wrap .skill-bar-wrapper {
    margin-top: 10px
}

.team-slider-s .slick-center-active .team-wrap .skill-bar-wrapper span {
    color: #757575
}

.team-slider-s .slick-center-active .team-wrap .skill-bar {
    height: 5px;
    border-radius: 100px;
    background-color: #fff;
    position: relative
}

.team-slider-s .slick-center-active .team-wrap .skill-bar-percent {
    position: absolute;
    top: 0px;
    left: 0px;
    bottom: 0px;
    background-color: var(--color-primary);
    border-radius: inherit
}

.team-slider-s .slick-center-active .team-wrap .percent-value {
    position: absolute;
    bottom: calc(100% + 10px);
    right: 0px
}

.team-slider-s .slick-center-active .team-wrap .social {
    margin-top: 30px;
    justify-content: flex-start;
    gap: 14px
}

.team-slider-s .slick-center-active .team-wrap .social a {
    border: 1px solid #888;
    color: #888;
    background-color: rgba(0, 0, 0, 0)
}

.team-slider-s .slick-center-active .team-wrap .social a:hover {
    color: var(--white);
    background-color: var(--color-primary);
    border: 1px solid var(--color-primary)
}

.team-slider-s .team-r .slide-group {
    position: absolute;
    top: 50%;
    left: 0%;
    right: 0%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 9;
    max-width: 86%;
    padding: 0px 15px;
    margin-left: auto;
    margin-right: auto;
    display: none
}

.team-slider-s .team-r .slide-group button {
    background-color: var(--white);
    color: var(--color-primary)
}

.team-slider-s .team-r .slide-group button:hover {
    background-color: var(--color-primary);
    color: var(--white)
}

.team-slider-s .team-r:hover .slide-group {
    display: flex
}

.mission-s .mission-s__single {
    height: 100%;
    background-color: #131313
}

.mission-s .mission-s__single--alt {
    padding: 80px 60px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    transition: var(--transition);
    border: 10px solid rgba(0, 0, 0, 0)
}

.mission-s .mission-s__single--alt:hover {
    border: 10px solid var(--color-primary)
}

.mission-s .mission-s__single--alt h3 {
    text-transform: capitalize
}

.mission-s .mission-s__single--alt p {
    text-transform: capitalize
}

.achievements .achievements__slider-single {
    text-align: center
}

.service-t {
    position: relative;
    overflow-x: clip;
    z-index: 1
}

.service-t .service-t-single-wrapper {
    position: relative;
    z-index: 1;
    padding: 3px 3px 0px 3px
}

.service-t .service-t-single-wrapper::before {
    content: "";
    position: absolute;
    inset: 0px;
    width: 100%;
    height: 0%;
    background-image: linear-gradient(to bottom, #ff7425, transparent);
    z-index: -1;
    transition: var(--transition)
}

.service-t .service-t-single-wrapper:hover::before {
    height: 100%
}

.service-t .service-t-single-wrapper:hover .cta a i {
    -webkit-text-stroke: 1px var(--color-primary)
}

.service-t .service-t-single-wrapper:hover .cta a span {
    transform: translateY(0px);
    color: var(--color-primary)
}

.service-t .service-t__slider-single {
    padding: 40px;
    background-color: var(--tertiary-color);
    position: relative
}

.service-t .service-t__slider-single .sub-title {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    line-height: 1;
    border: 1px solid #414141;
    border-radius: 30px;
    margin-bottom: 32px;
    text-transform: uppercase;
    color: var(--white)
}

.service-t .service-t__slider-single .sub-title i {
    transform: rotate(-45deg);
    color: var(--color-primary)
}

.service-t .service-t__slider-single h4 a {
    font-size: 30px;
    font-weight: 700
}

.service-t .service-t__slider-single ul {
    margin: 30px 0px 40px
}

.service-t .service-t__slider-single ul li {
    list-style-type: disc;
    margin-bottom: 16px;
    font-weight: 500;
    text-transform: capitalize
}

.service-t .service-t__slider-single ul li:nth-last-of-type(1) {
    margin-bottom: 0px
}

.service-t .service-t__slider-single .cta a {
    display: flex;
    align-items: center;
    gap: 20px;
    text-transform: uppercase;
    overflow: hidden
}

.service-t .service-t__slider-single .cta a i {
    font-size: 36px;
    -webkit-text-fill-color: rgba(0, 0, 0, 0);
    -webkit-text-stroke: 1px var(--white);
    transition: var(--transition)
}

.service-t .service-t__slider-single .cta a span {
    color: var(--white);
    font-size: inherit;
    line-height: inherit;
    transition: inherit;
    transform: translateY(200%)
}

.service-t .slide-group {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0px;
    right: 0px;
    max-width: 96%;
    margin-left: auto;
    margin-right: auto;
    padding: 0px 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: -1
}

.service-t .slide-group button {
    z-index: 2
}

.ux-process {
    position: relative;
    z-index: 1;
    overflow: hidden
}

.ux-process .intro-btn h4 {
    position: relative;
    padding-left: 40px;
    margin-bottom: 0px
}

.ux-process .intro-btn h4::before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0px;
    width: 15px;
    height: 15px;
    background-color: #ff8e5e
}

.ux-process .service-f-single {
    padding: 24px 0px;
    display: flex;
    align-items: center;
    gap: 16px;
    justify-content: space-between;
    border-top: 1px solid #414141;
    padding-right: 160px;
    position: relative
}

.ux-process .service-f-single:nth-last-of-type(1) {
    border-bottom: 1px solid #414141
}

.ux-process .service-f-single:nth-of-type(2) .intro-btn h4::before {
    background-color: #d7f890
}

.ux-process .service-f-single:nth-of-type(3) .intro-btn h4::before {
    background-color: #757575
}

.ux-process .service-f-single:nth-of-type(4) .intro-btn h4::before {
    background-color: #84d6d7
}

.ux-process .service-f-single:nth-of-type(5) .intro-btn h4::before {
    background-color: #348cff
}

.ux-process .service-f-single:nth-of-type(6) .intro-btn h4::before {
    background-color: #fed56a
}

.ux-process .service-f-single .toggle-service-f {
    position: relative
}

.ux-process .service-f-single .toggle-service-f::before {
    content: "+";
    font-family: "Font Awesome 6 Pro";
    position: absolute;
    top: 50%;
    right: 0px;
    transform: translateY(-50%);
    color: var(--white);
    font-size: 18px
}

.ux-process .service-f-single-active .toggle-service-f::before {
    content: "";
    font-family: "Font Awesome 6 Pro";
    color: var(--color-primary);
    font-size: 18px
}

.ux-process .body-cn {
    max-width: 640px
}

.ux-process .body-cn p {
    max-width: 100% !important
}

.ux-process button {
    background-color: rgba(0, 0, 0, 0);
    position: absolute !important;
    top: 50%;
    transform: translateY(-50%);
    right: 0px
}

.ux-process .p-single {
    display: none
}

.poster img,
.poster-small img {
    width: 100%;
    min-height: 260px
}

.details-group h3 {
    margin-bottom: 30px;
    font-weight: 500;
    color:#000;
    text-transform: capitalize
}

.details-group p {
    margin-bottom: 24px;
      color:#000;
}

.details-group p:nth-last-of-type(1) {
    margin-bottom: 0px
}

.project-sl {
    display: flex;
    align-items: center;
    position: relative;
    overflow-x: clip;
    margin: 0px -15px
}

.project-sl .project-sl__single {
    padding: 0px 15px;
    max-width: 360px;
    min-width: 360px;
    width: 100%;
    border-right: 1px solid #414141
}

.project-sl .project-sl__single:hover a {
    color: var(--color-primary)
}

.project-sl .thumb {
    margin-bottom: 100px
}

.project-sl .thumb a {
    width: 100%;
    height: 430px;
    display: block
}

.project-sl .thumb a img {
    width: 100%;
    height: 100%
}

.project-sl .content {
    display: flex;
    align-items: center;
    justify-content: center
}

.project-sl .content h2 {
    height: 400px
}

.project-sl .content h2 a {
    writing-mode: vertical-rl;
    transform: rotate(-180deg);
    text-transform: capitalize
}

.project-d .project-d-group h3 {
    margin-bottom: 40px
}

.project-d .project-d-group p {
    margin-bottom: 30px
}

.project-d .project-d-group p:nth-last-of-type(1) {
    margin-bottom: 0px
}

.project-d .project-d-group ul {
    margin-top: 20px
}

.project-d .project-d-group ul li {
    margin-bottom: 12px;
    list-style-type: disc
}

.project-d .project-d-group ul li:nth-last-of-type(1) {
    margin-bottom: 0px
}

.project-d .poster__slider-wrapper {
    position: relative;
    overflow: hidden;
    margin: 60px 0px
}

.project-d .poster__slider-wrapper img {
    width: 100%;
    min-height: 300px
}

.project-d .poster__slider-wrapper .slide-group {
    padding: 0px 30px;
    position: absolute;
    top: 50%;
    left: 0px;
    right: 0px;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between
}

.project-d .poster__slider-wrapper .slide-group button {
    z-index: 2
}

.project-d .project-d-o__single {
    padding: 30px;
    border: 1px solid #414141;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap
}

.project-d .project-d-o__single h5 {
    position: relative;
    padding-left: 20px
}

.project-d .project-d-o__single h5::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0px;
    transform: translateY(-50%);
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: var(--color-primary)
}

.project-d .project-d-o__single p {
    color: #757575;
    margin-top: 12px
}

.project-d .project-d-o__single .thumb {
    width: 100px;
    min-width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-primary);
    border-radius: 5px
}

.project-d .quote-pj {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 40px 160px 40px 0px;
    border: 1px solid #414141;
    border-left: 0px;
    border-right: 0px;
    margin-top: 40px
}

.project-d .quote-pj .quote {
    margin-bottom: 30px
}

.project-d .quote-pj .quote i {
    color: var(--color-primary);
    font-size: 56px
}

.project-d .quote-pj .cont {
    max-width: 800px
}

.project-d .quote-pj h4 {
    color: var(--secondary-color)
}

.project-d .project-d__slider img {
    width: 100%;
    min-height: 280px
}

.blog-main {
    position: relative
}

.blog-main .blog-main__sidebar,
.blog-main .blog-main__content {
    position: sticky;
    top: 140px
}

.blog-main .blog-main__single {
    margin-bottom: 65px
}

.blog-main .blog-main__single:nth-last-of-type(1) {
    margin-bottom: 0px
}

.blog-main .blog-main__single .thumb {
    padding: 30px;
    border: 1px solid #414141;
    border-radius: 10px
}

.blog-main .blog-main__single .thumb .thumb-link {
    position: relative
}

.blog-main .blog-main__single .thumb .thumb-link a {
    width: 100%
}

.blog-main .blog-main__single .thumb .thumb-link a img {
    width: 100%;
    min-height: 240px
}

.blog-main .blog-main__single .thumb .thumb-link .video-wrap {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%)
}

.blog-main .blog-main__single .thumb .thumb-link .video-wrap a {
    width: 104px;
    min-width: 104px;
    height: 104px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--white);
    color: #000;
    font-size: 30px
}

.blog-main .blog-main__single .video-wrap a {
    position: relative;
    z-index: 1
}

.blog-main .blog-main__single .video-wrap a::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: calc(100% + 20px);
    height: calc(100% + 20px);
    border-radius: 50%;
    background-color: inherit;
    opacity: .8;
    z-index: -1;
    animation: wave 3s linear infinite
}

.blog-main .blog-main__single .video-wrap a::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: calc(100% + 40px);
    height: calc(100% + 40px);
    border-radius: 50%;
    background-color: inherit;
    opacity: .4;
    z-index: -2;
    animation: wave 6s linear infinite;
    animation-delay: 1s
}

.blog-main .blog-main__single .meta {
    display: flex;
    align-items: center;
    gap: 24px;
    row-gap: 16px;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 30px
}

.blog-main .blog-main__single .meta__left {
    display: flex;
    align-items: center;
    gap: 24px
}

.blog-main .blog-main__single .meta__left span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #d9d9d9
}

/*.blog-main .blog-main__single .meta__left strong {*/
/*    color: var(--theme-color)*/
/*}*/

.blog-main .blog-main__single .meta__left p {
    font-size: 14px;
    color: #646464
}

.blog-main .blog-main__single .meta__right {
    flex-grow: 1;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: flex-end
}

.blog-main .blog-main__single .meta__right a {
    width: auto;
    line-height: 20px;
    padding: 6px 10px;
    border-radius: 30px;
    font-weight: 400;
    color: #646464;
    background-color: #eee
}

.blog-main .blog-main__single .meta__right a:hover {
    background-color: #dff0fa
}

.blog-main .blog-main__single .content {
    padding: 30px 30px 0px
}

.blog-main .blog-main__single .content .h4 {
    margin-bottom: 20px
}

.blog-main .blog-main__single .content a {
    letter-spacing: 0px
}

.blog-main .blog-main__single .content a:hover {
    color: var(--color-primary)
}

.blog-main .blog-main__single .content .cta {
    margin-top: 30px
}

.blog-main .blog-main__single .content .cta a {
    width: 42px;
    min-width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0px;
    background-color: var(--color-primary);
    font-size: 18px;
    color: #fff;
}

.blog-main .blog-main__single .content .cta a:hover {
    background-color: var(--color-primary);
    color: var(--white);
}

.blog-main .blog-main__sidebar {
    background-color: #101010;
    padding: 30px
}

.blog-main .widget {
    margin-bottom: 40px
}

.blog-main .widget:nth-last-of-type(1) {
    margin-bottom: 0px
}

.blog-main .widget .widget__head {
    margin-bottom: 30px
}

.blog-main .widget .widget__head .h5 {
    font-weight: 500
}

.blog-main .widget .form-group-input {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid #414141;
    background-color: var(--black);
    padding-right: 20px
}

.blog-main .widget .form-group-input input {
    width: 100%;
    padding: 12px 20px 12px 20px;
    background-color: var(--black);
    color: #fff
}

.blog-main .widget .form-group-input button {
    font-size: 20px;
    color: #646464
}

.blog-main .widget .form-group-input button:hover {
    color: var(--color-primary)
}

.blog-main .widget__list li {
    list-style-type: disc;
    margin-bottom: 14px
}

.blog-main .widget__list li:nth-last-of-type(1) {
    margin-bottom: 0px
}

.blog-main .widget__list a {
    font-size: 16px;
    color: #fff;
    font-weight: 500
}

.blog-main .widget__list a:hover {
    color: var(--color-primary)
}

.blog-main .widget__latest .latest-single {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-bottom: 30px;
    border-bottom: 1px solid #414141;
    margin-bottom: 30px
}

.blog-main .widget__latest .latest-single:nth-last-of-type(1) {
    margin-bottom: 0px;
    padding-bottom: 0px;
    border: 0px solid rgba(0, 0, 0, 0)
}

.blog-main .widget__latest .latest-thumb {
    width: 80px;
    height: 80px;
    min-width: 80px
}

.blog-main .widget__latest .latest-thumb a {
    width: 100%
}

.blog-main .widget__latest .latest-thumb img {
    width: 100%
}

.blog-main .widget__latest .latest-content p {
    color: #646464;
    line-height: 26px !important;
    margin-bottom: 6px
}

.blog-main .widget__latest .latest-content a {
    color: var(--theme-color);
    font-size: 16px;
    font-weight: 400;
    text-transform: capitalize;
    letter-spacing: 0px
}

.blog-main .widget__latest .latest-content a:hover {
    color: var(--color-primary)
}

.blog-main .widget__tags ul {
    display: flex;
    align-items: center;
    gap: 24px;
    justify-content: space-between;
    flex-wrap: wrap
}

.blog-main .widget__tags ul a {
    font-size: 14px;
    color: #646464;
    text-transform: capitalize
}

.blog-main .widget__tags ul a:hover {
    color: var(--color-primary)
}

.blog-main .widget-big a {
    width: 100%
}

.blog-main .widget-big a img {
    width: 100%;
    min-height: 200px
}

.blog-main .pagination-wrapper {
    padding-top: 50px;
    margin-top: 65px;
    border-top: 1px solid #414141
}

.blog-main .pagination {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    flex-wrap: wrap
}

.blog-main .pagination a {
    width: 50px;
    min-width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #d9d9d9;
    background-color: #000;
    color: #fff;
    transition: var(--transition)
}

.blog-main .pagination a:hover {
    background-color: var(--color-primary);
    color: var(--white);
    border: 1px solid var(--color-primary)
}

.blog-main .pagination .active {
    background-color: var(--color-primary);
    color: var(--white);
    border: 1px solid var(--color-primary)
}

.blog-main .pagination button {
    font-size: 20px;
    color: var(--theme-color)
}

.blog-main .pagination button:hover {
    color: var(--color-primary)
}
.blog-details a{
    display:inline;
    color:var(--color-primary);
}
.blog-details a:hover{
    color:#000;
}

.blog-details .bd-thumb img {
    width: 100%;
    min-height: 240px
}

.blog-details .bd-content {
    padding: 30px
}

.blog-details .bd-meta {
    margin-bottom: 30px
}

.blog-details .bd-meta .meta__left {
    display: flex;
    align-items: center;
    gap: 24px
}

.blog-details .bd-meta .meta__left span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #d9d9d9
}

.blog-details .bd-meta .meta__left strong {
    color: var(--theme-color)
}

.blog-details .bd-meta .meta__left p {
    font-size: 14px;
    color: #646464
}

.blog-details .bd-content-info .paragraph {
    margin-top: 20px;
    margin-bottom: 50px
}

.blog-details .bd-group {
    display: flex;
    gap: 16px
}

.blog-details .bd-group img {
    width: calc(50% - 8px);
    height: 100%
}

.blog-details .bd-content__alt {
    margin-top: 30px
}

.blog-details .bd-content__alt ul {
    margin-top: 30px
}

.blog-details .bd-content__alt li {
    list-style-type: disc;
    margin-bottom: 10px
}

.blog-details .bd-content__alt li:nth-last-of-type(1) {
    margin-bottom: 0px
}

.blog-details .bd-quote {
    padding: 48px 80px;
    background-color: #1e1e1e
}

.blog-details .bd-tags {
    padding: 30px 0px;
    border: 1px solid #414141;
    border-left: 0px;
    border-right: 0px;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 40px
}

.blog-details .bd-tags .tags-left,
.blog-details .bd-tags .tags-right {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap
}

.blog-details .bd-tags .tags-left .tags-content {
    display: flex;
    align-items: center;
    gap: 10px
}

.blog-details .bd-tags .tags-left .tags-content a {
    font-size: 14px;
    color: #646464;
    padding: 6px 10px;
    border-radius: 30px;
    background-color: #1b1b1b
}

.blog-details .bd-tags .tags-left .tags-content a:hover {
    background-color: var(--color-primary);
    color: var(--white)
}

.blog-details .bd-tags .tags-right {
    justify-content: flex-end
}

.blog-details .bd-tags .tags-right .social {
    gap: 12px
}

.blog-details .bd-tags .tags-right a {
    width: 30px;
    min-width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #414141;
    color: #d9d9d9;
    font-size: 12px;
    background-color: rgba(0, 0, 0, 0)
}

.blog-details .bd-tags .tags-right a:hover {
    color: var(--color-primary);
    border: 1px solid var(--color-primary);
    background-color: var(--white)
}

.blog-details .blog-details__pagination a {
    font-size: 16px;
    font-weight: 600;
    color: var(--theme-color);
    transition: var(--transition)
}

.blog-details .blog-details__pagination a i {
    font-size: 24px;
    transition: none
}

.blog-details .blog-details__pagination a:hover {
    color: var(--color-primary)
}

.blog-details .blog-details__pagination .single--alt {
    text-align: end
}

.blog-details .blog-details__pagination .latest-single {
    padding: 25px 30px;
    background-color: #1e1e1e;
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 30px
}

.blog-details .blog-details__pagination .latest-single .latest-thumb {
    width: 80px;
    min-width: 80px;
    height: 80px
}

.blog-details .blog-details__pagination .latest-single .latest-thumb img {
    width: 100%
}

.blog-details .blog-details__pagination .latest-single .latest-content {
    text-align: start
}

.blog-details .blog-details__pagination .latest-single .latest-content p {
    color: #646464;
    font-size: 14px;
    line-height: 26px !important;
    margin-bottom: 6px
}

.blog-details .blog-details__pagination .latest-single .latest-content a {
    color: var(--theme-color);
    text-transform: capitalize;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0px
}

.blog-details .blog-details__pagination .latest-single .latest-content a:hover {
    color: var(--color-primary)
}

.paragraph p {
    margin-bottom: 30px
}

.paragraph p:nth-last-of-type(1) {
    margin-bottom: 0px
}

.comment-form input,
.comment-form textarea {
    background-color: var(--white);
    border-radius: 0px
}

.comment-form textarea {
    min-height: 200px
}

.comment-form .cta__group {
    justify-content: flex-start;
    margin-top: 40px
}

.comment-form .cta__group i {
    transform: rotate(-45deg)
}

.comment-form .cta__group .btn {
    background-color: var(--color-primary);
    color: var(--white);
    text-transform: capitalize;
    border: 1px solid #414141 !important;
    display: flex;
    align-items: center;
    border-radius: 6px;
    gap: 12px
}

.comment-form .cta__group .btn::before {
    content: none
}

.comment-form .cta__group .btn:hover {
    color: var(--white);
    border: 1px solid var(--tertiary-color) !important
}

.comment-form .cta__group .btn i {
    transition: none
}

.comment-form .form-group-wrapper {
    margin-bottom: 30px
}

.form-group-single {
    margin-bottom: 20px
}

.form-group-single label,
.form-group-single p {
    margin-bottom: 10px;
    text-transform: capitalize
}

.form-group-single input,
.form-group-single textarea {
    padding: 12px 20px;
    background-color: #101010;
    border: 1px solid #414141;
    border-radius: 5px;
    width: 100%;
    text-transform: capitalize
}

.form-group-single input::-moz-placeholder,
.form-group-single textarea::-moz-placeholder {
    color: #969696
}

.form-group-single input::placeholder,
.form-group-single textarea::placeholder {
    color: #969696
}

.form-group-single textarea {
    min-height: 200px;
    max-height: 200px
}

.form-group-wrapper {
    display: flex;
    align-items: center;
    gap: 30px;
    row-gap: 20px;
    margin-bottom: 20px
}

.form-group-wrapper .form-group-single {
    width: calc(50% - 15px);
    margin-bottom: 0px
}

.audio-player {
    margin-top: 30px
}

.audio-player audio {
    width: 100%
}

.thumb-radio {
    padding: 75px 40px;
    background: #131313
}

.team-m .team-m__single .thumb {
    position: relative;
    overflow: hidden
}

.team-m .team-m__single .thumb a {
    width: 100%
}

@keyframes rer {
    0% {
        transform: translateY(-200%);
        display: none;
        opacity: 0
    }

    100% {
        display: block;
        opacity: 1;
        transform: translateY(0px)
    }
}

.team-m .team-m__single .thumb .thumb__content {
    position: absolute;
    bottom: 0px;
    left: 0px;
    padding: 30px;
    background-color: #1a1a1a;
    background-size: cover;
    background-position: left bottom;
    height: 80px;
    width: 280px;
    overflow-y: clip;
    transition: all .4s ease-in-out
}

.team-m .team-m__single .thumb .thumb__content p {
    color: var(--color-primary);
    margin-top: 8px
}

.team-m .team-m__single .thumb .thumb__content .info {
    transform: translateY(-200%);
    display: none;
    transition: var(--transition);
    margin-bottom: 20px
}

.team-m .team-m__single .thumb .thumb__content .info p {
    color: var(--white)
}

.team-m .team-m__single .thumb .thumb__content .social-alt {
    position: absolute;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    justify-content: center;
    top: 0px;
    left: 100%;
    bottom: 0px;
    width: 60px;
    height: 100%;
    background: linear-gradient(90deg, #f90 0%, #cc2500 100%);
    transition: all .4s ease-in-out;
    transition-delay: 0s;
    transform: translateY(100%)
}

.team-m .team-m__single .thumb .thumb__content .social-alt a {
    width: auto
}

.team-m .team-m__single .thumb .thumb__content .social-alt a:hover {
    color: var(--white)
}

.team-m .team-m__single .thumb:hover .thumb__content {
    height: 100px
}

.team-m .team-m__single .thumb:hover .thumb__content .info {
    transform: translateY(0px);
    display: block;
    animation: rer .4s ease-in-out
}

.team-m .team-m__single .thumb:hover .thumb__content .social-alt {
    transform: translateY(0px)
}

.team-det .team-det__thumb {
    height: 100%;
    position: relative;
    overflow: hidden
}

.team-det .team-det__thumb img {
    width: 100%;
    height: 100%
}

.team-det .team-det__thumb .social-alt {
    position: absolute;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    justify-content: center;
    right: 70px;
    bottom: 0px;
    width: 60px;
    height: 180px;
    background: linear-gradient(90deg, #f90 0%, #cc2500 100%)
}

.team-det .team-det__thumb .social-alt a {
    width: auto
}

.team-det .team-det__thumb .social-alt a:hover {
    color: var(--white)
}

.team-det .team-det__content {
    background-color: #1a1a1a;
    padding: 30px;
    height: 100%
}

.team-det .intro {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: space-between;
    border-bottom: 1px solid #414141;
    padding-bottom: 40px
}

.team-det .intro-left h4 {
    text-transform: capitalize;
    font-weight: 600
}

.team-det .intro-left p {
    color: var(--color-primary);
    margin-top: 8px
}

.team-det .intro-right a {
    display: flex;
    gap: 12px
}

.team-det .content {
    margin: 40px 0px
}

.team-det .content h5 {
    margin-bottom: 30px
}

.team-det .skill-wrap {
    margin: 24px 0px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px
}

.team-det .skill-bar-single {
    margin-bottom: 10px;
    width: 100%;
    max-width: 340px
}

.team-det .skill-bar-wrapper {
    margin-top: 10px
}

.team-det .skill-bar-wrapper span {
    color: #757575
}

.team-det .skill-bar {
    height: 5px;
    border-radius: 100px;
    background-color: #fff;
    position: relative
}

.team-det .skill-bar-percent {
    position: absolute;
    top: 0px;
    left: 0px;
    bottom: 0px;
    background-color: var(--color-primary);
    border-radius: inherit
}

.team-det .percent-value {
    position: absolute;
    bottom: calc(100% + 10px);
    right: 0px
}

.team-det .team-det__info {
    margin-top: 30px;
    padding: 30px;
    background-color: #1a1a1a
}

.team-det .team-det__info h4 {
    padding-bottom: 30px;
    margin-bottom: 40px;
    border-bottom: 1px solid #414141
}

.team-det .team-det__info .group {
    margin-bottom: 30px
}

.team-det .team-det__info .group h5 {
    margin-bottom: 20px
}

.team-det .team-det__info .group h5 span {
    color: var(--color-primary)
}

.team-det .team-det__info .group:nth-last-of-type(1) {
    margin-bottom: 0px
}

.portfolio-m .portfolio-m__single {
    height: 100%;
    position: relative;
    overflow: hidden
}

.portfolio-m .portfolio-m__single .thumb a {
    width: 100%;
    height: 100%
}

.portfolio-m .portfolio-m__single .thumb a img {
    width: 100%;
    height: 100%;
    min-height: 360px
}

.portfolio-m .portfolio-m__single .content {
    position: absolute;
    inset: 0px;
    background-color: rgba(0, 0, 0, .8);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 40px;
    transform: translateY(100%);
    transition: all .4s ease-in-out
}

.portfolio-m .portfolio-m__single .content i {
    font-size: 120px;
    -webkit-text-fill-color: rgba(0, 0, 0, 0);
    -webkit-text-stroke: 2px var(--color-primary)
}

.portfolio-m .portfolio-m__single .content a {
    text-transform: capitalize
}

.portfolio-m .portfolio-m__single .tr {
    text-align: end
}

.portfolio-m .portfolio-m__single:hover .content {
    transform: translateY(0px)
}

.feedback-s .feedback-s__single {
    padding: 40px;
    background-color: #191919;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0)
}

.feedback-s .feedback-s__single:hover {
    border: 1px solid var(--color-primary)
}

.feedback-s .feedback-s__single:hover .quote i {
    color: var(--color-primary) !important
}

.feedback-s .content .quote {
    margin-bottom: 20px
}

.feedback-s .content .quote i {
    font-size: 56px;
    color: var(--secondary-color);
    transition: var(--transition)
}

.feedback-s .content p {
    color: #888;
    text-transform: capitalize
}

.feedback-s hr {
    margin: 40px 0px;
    background-color: #414141;
    height: 1px
}

.feedback-s .author {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap
}

.feedback-s .author .thumb {
    width: 70px;
    height: 70px;
    min-width: 70px;
    border-radius: 50%
}

.feedback-s .author p {
    color: var(--color-primary);
    margin-top: 4px;
    text-transform: capitalize
}

.feedback-s .btn--secondary {
    border: 0px solid rgba(0, 0, 0, 0) !important;
    font-weight: 400;
    color: var(--color-primary);
    text-decoration: underline;
    text-transform: capitalize;
    padding: 0px
}

.feedback-s .btn--secondary::before {
    content: none
}

.faq .faq__thumb {
    padding-right: 30px
}

.faq .faq__thumb img {
    width: 100%;
    min-height: 260px
}
.accordion{
    background-color:#fff;
}
.faq-section .accordion .accordion-item {
    margin-bottom: 30px;
  box-shadow: 0px 4px 25px 0px rgba(0, 0, 0, 0.06);
}
.faq-section .accordion-body,.faq-section h3 ,.faq-section .accordion-button{
    color:#000;
    background-color:#fff;
}
.faq-section .accordion-button:not(.collapsed)::after,.faq-section .accordion-button::after{
    background-image:none;
    content: "\f322";
    color:var(--color-primary);
    font-family: "Font Awesome 6 Pro";
}
.faq-section .accordion-button::after{
     content: "\f324";
}
.accordion-button:focus{
    border:none;
    box-shadow:none;
}

.faq .accordion .accordion-item:last-of-type {
    margin-bottom: 0px
}

.faq .accordion .accordion-item .accordion-button:not(.collapsed) {
    color: #fff;
    background-color: rgba(0, 0, 0, 0);
    border-radius: 0px
}

.faq .accordion .accordion-item .accordion-button:not(.collapsed)::after {
    color: var(--color-primary);
    content: "";
    font-family: "Font Awesome 6 Pro";
    transform: rotate(0deg)
}

.faq .accordion .accordion-item .accordion-button {
    border-radius: 0px;
    color: #fff;
    position: relative;
    box-shadow: 0px 0px 0px;
    text-transform: capitalize;
    background-color: rgba(0, 0, 0, 0)
}

.faq .accordion .accordion-item .accordion-button::after {
    content: "+";
    font-family: "Font Awesome 6 Pro";
    font-weight: 900;
    background-image: none;
    font-size: 16px;
    color: var(--color-primary);
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transform: rotate(0deg)
}

.faq .accordion .faq-one-active {
    border-top: 3px solid var(--color-primary)
}

.faq .accordion h5 {
    display: flex;
    align-items: center;
    gap: 16px;
    text-transform: uppercase
}

.faq .accordion h5 button {
    padding: 0px;
    font-size: inherit;
    line-height: 26px;
    font-weight: 500;
    border: none;
    outline: none;
    box-shadow: 0px 0px 0px;
    padding: 30px 30px;
    text-transform: uppercase
}

.faq .accordion .accordion-body {
    padding: 0px 30px 30px;

    border-top: 0px solid rgba(0, 0, 0, 0)
}

.faq .accordion .accordion-body p {
    color: #fff;
    text-transform: capitalize;
    max-width: 1200px
}

.contact-m .contact-m__single {
      padding: 40px 65px;
    background-color: #f7f3ff;
    text-align: center;
    height: 100%;
}

.contact-m .thumb {
    margin-bottom: 30px
}
.contact-m .thumb i{
    font-size:30px;
    color:var(--color-primary);
}

.contact-m h4 {
    margin-bottom: 30px;
    color:#000;
    text-transform: capitalize
}

.contact-m p {
      color:#000;
    margin-bottom: 6px
}

.contact-m p:nth-last-of-type(1) {
    margin-bottom: 0px;
      color:#000;
}

.contact-m p a {
     color:#000;
}

.contact-m p a:hover {
    color: var(--color-primary);
}

.contact-m .map-wrapper {
    margin-top: 30px
}


.contact-m .map-wrapper iframe {
    width: 100%;
    height: 100%;
    min-height: 300px
}

.contact-m .contact__map {
    height: 100%
}

.contact-m .contact-main__form {
    padding: 60px 40px;
    background-color: var(--color-primary);
}

.contact-m .contact-main__form h3 {
    font-weight: 900
}

.contact-m .contact-main__form .group-wrapper {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 40px
}

.contact-m .contact-main__form .group-wrapper .group-input {
    width: calc(50% - 15px);
    margin-bottom: 0px
}

.contact-m .contact-main__form .group-input {
    width: 100%;
    margin-bottom: 40px
}

.contact-m .contact-main__form input,
.contact-m .contact-main__form textarea {
  background-color: rgba(0, 0, 0, 0);
    padding: 0px 16px 16px 0px;
    border-bottom: 2px solid #fff;
    width: 100%;
}

.contact-m .contact-main__form input::placeholder, .contact-m .contact-main__form textarea::placeholder{
   color:#fff; 
}
.contact-m .contact-main__form input:focus, .contact-m .contact-main__form textarea:focus {
    border-bottom: 2px solid #cacaca;
}

.contact-m .contact-main__form .form-cta {
    margin-top: 40px
}

.contact-m .contact-main__form .form-cta .btn {
        border: 2px solid #fff;
    color: var(--white);
}

.contact-m .contact-main__form .form-cta .btn:hover {
       border: 2px solid #fff;
    color: #fff;
}

.contact-m .contact-main__form .subject {
    width: 100%;
    float: unset;
    border: 0px;
    height: auto;
    line-height: 28px;
    background-color: rgba(0, 0, 0, 0);
    padding: 0px 20px 20px 0px;
    border-bottom: 2px solid #414141
}

.contact-m .contact-main__form .subject::after {
    position: absolute;
    top: 30%;
    right: 20px;
    width: 10px;
    height: 10px;
    margin-top: -8px;
    border-color: #fff
}

.contact-m .contact-main__form .subject .list {
    width: 100%
}

.contact-m .contact-main__form .subject .list .option {
    color: var(--black) !important;
    padding: 10px 30px
}

.error span {
    font-weight: 500;
    color: var(--white);
    text-transform: uppercase
}

.error .thumb {
    margin: 60px 0px
}

.error h2 {
    letter-spacing: 18px;
    font-weight: 400;
    text-transform: uppercase;
    margin-bottom: 20px;
    line-height: 1.6
}

.section__header .title div,
.section__content .title div {
    text-transform: lowercase !important;
    font-weight: 600
}

.section__header .title div:nth-child(1),
.section__content .title div:nth-child(1) {
    text-transform: capitalize !important
}

.g-ind {
    position: relative;
    z-index: 99
}

.home-light {
    background-color: #fff
}

.home-light .light .sub-title {
    border-color: #d9d9d9;
    color: var(--color-primary)
}

.home-light .slide-group .slide-btn {
    border-color: #d9d9d9;
    color: #d9d9d9
}

.home-light .slide-group .slide-btn:hover {
    color: #000
}

.home-light .banner {
    --theme-color: black;
    background-color: #fff
}

.home-light .banner .video-frame i {
    width: 60%;
    min-width: 60%;
    height: 60%;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #000;
    color: #fff
}

.home-light .banner__content h1 {
    color: #000
}

.home-light .portfolio {
    --theme-color: black
}

.home-light .portfolio .portfolio__single-alt-wrapper {
    background-color: #fff
}

.home-light .portfolio .portfolio__single-alt-wrapper h4 a {
    color: var(--white)
}

.home-light .portfolio .portfolio__single-alt-wrapper h4 a:hover {
    color: var(--color-primary)
}

.home-light .portfolio .portfolio__text-slider-single {
    --white: black
}

.home-light .offer h2,
.home-light .offer p {
    color: #000 !important
}

.home-light .offer h2 a,
.home-light .offer p a {
    color: #000 !important
}

.home-light .offer h2 a:hover,
.home-light .offer p a:hover {
    color: var(--color-primary) !important
}

.home-light .offer .offer__cta .sub-title {
    background-color: #000;
    color: var(--color-primary)
}

.home-light .offer .btn--secondary {
    border-color: var(--color-primary);
    color: var(--color-primary)
}

.home-light .offer .btn--secondary:hover {
    color: #000
}

.home-light .testimonial {
    --theme-color: black;
    --white: black
}

.home-light .next-page {
    --theme-color: black;
    --white: black
}

.home-light .lines .line {
    background-color: #d9d9d9
}

.home-light .navbar-active {
    background-color: #fff;
    border-color: #d9d9d9
}

.home-two-light {
    background-color: #fff
}

.home-two-light .light .sub-title {
    border-color: #d9d9d9;
    color: var(--color-primary)
}

.home-two-light .slide-group .slide-btn {
    border-color: #d9d9d9;
    color: #d9d9d9
}

.home-two-light .slide-group .slide-btn:hover {
    color: #000
}

.home-two-light .primary-navbar .open-mobile-menu {
    color: #000
}

.home-two-light .primary-navbar .btn--secondary {
    border-color: var(--color-primary);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px
}

.home-two-light .primary-navbar .btn--secondary:hover {
    color: #000
}

@media only screen and (min-width: 1200px) {

    .home-two-light .primary-navbar .navbar__item a,
    .home-two-light .primary-navbar .navbar__item button {
        color: #000
    }

    .home-two-light .primary-navbar .navbar__item a:hover,
    .home-two-light .primary-navbar .navbar__item button:hover {
        color: var(--color-primary)
    }
}

.home-two-light .banner-two {
    background-color: #fff;
    --white: black;
    --theme-color: black;
}

.home-two-light .banner-two::before {
    content: none
}

.home-two-light .banner-two .btn--secondary {
    border-color: var(--color-primary);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    gap: 10px
}

.home-two-light .banner-two .btn--secondary:hover {
    color: #000
}

.home-two-light .spo-light .sub-title {
    background-color: #000;
    color: var(--color-primary)
}

.home-two-light .portfolio {
    --theme-color: black
}

.home-two-light .portfolio .portfolio__single-alt-wrapper {
    background-color: #fff
}

.home-two-light .portfolio-two .portfolio-two__filter-btn button {
    color: #888
}

.home-two-light .portfolio-two .portfolio-two__filter-btn button span {
    color: #888;
    transition: var(--transition)
}

.home-two-light .portfolio-two .portfolio-two__filter-btn button:hover {
    color: var(--color-primary)
}

.home-two-light .portfolio-two .portfolio-two__filter-btn button:hover span {
    color: var(--color-primary)
}

.home-two-light .portfolio-two .portfolio-two__filter-btn .active {
    color: var(--color-primary)
}

.home-two-light .portfolio-two .portfolio-two__filter-btn .active span {
    color: var(--color-primary)
}

.home-two-light .offer-two-light {
    --theme-color: black
}

.home-two-light .offer-two-light .offer__cta h2 a {
    color: #888
}

.home-two-light .offer-two-light .offer__cta h2 a:hover {
    color: var(--color-primary)
}

.home-two-light .blog-two-light {
    background-color: #fff
}

.home-two-light .blog-two-light .section__header--secondary {
    --theme-color: black
}

.home-two-light .next-page {
    --theme-color: black;
    --white: black
}

.home-two-light .next-p-two-light .sub-title {
    background-color: #000;
    color: var(--color-primary)
}

.home-two-light .lines .line {
    background-color: #d9d9d9
}

.home-two-light .navbar-active {
    background-color: #fff;
    border-color: #d9d9d9
}

.home-two-light .liner::before {
    background-color: #d9d9d9
}

.home-three-light {
    background-color: #fff
}

.home-three-light .light .sub-title {
    border-color: #d9d9d9;
    color: var(--color-primary)
}

.home-three-light .slide-group .slide-btn {
    border-color: #d9d9d9;
    color: #d9d9d9
}

.home-three-light .slide-group .slide-btn:hover {
    color: #000
}

.home-three-light .service-f-light {
    background-color: #fff;
    --theme-color: black;
    --white: black
}

.home-three-light .service-f-light button {
    background-color: #e4e4e4;
    color: #757575
}

.home-three-light .service-f-light .service-f-single {
    border-color: #d9d9d9
}

.home-three-light .service-f-light .service-f-single .sub-title {
    background-color: #000;
    color: var(--color-primary)
}

.home-three-light .service-f-light .service-f-single-active button {
    color: var(--color-primary)
}

.home-three-light .service-f-light .service-f-single-active h4 {
    color: var(--color-primary)
}

.home-three-light .portfolio-three {
    --theme-color: black
}

.home-three-light .portfolio-three .portfolio__text-slider {
    --white: black
}

.home-three-light .work-steps-light {
    --theme-color: black
}

.home-three-light .work-steps-light .video-frame i {
    width: 60%;
    min-width: 60%;
    height: 60%;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #000;
    color: #fff
}

.home-three-light .work-steps-light .work-steps__single h5 {
    background-color: #fff
}

.home-three-light .blog-three-light {
    --theme-color: black
}

.home-three-light .blog-three-light .blog-three__wrapper {
    border-color: #d9d9d9
}

.home-three-light .blog-three-light .blog-three__single {
    border-color: #d9d9d9
}

.home-three-light .blog-three-light .blog-three__single .sub-title {
    background-color: #000;
    color: var(--color-primary)
}

.home-three-light .next-page {
    --theme-color: black;
    --white: black
}

.home-four-light {
    background-color: #fff
}

.home-four-light .quaternary--navbar .open-offcanvas-nav {
    color: #757575
}

.home-four-light .quaternary--navbar .btn {
    color: #000
}

.home-four-light .quaternary--navbar .btn i {
    color: var(--color-primary)
}

.home-four-light .quaternary--navbar .btn:hover {
    color: var(--color-primary)
}

.home-four-light .light .sub-title {
    border-color: #d9d9d9;
    color: var(--color-primary)
}

.home-four-light .slide-group .slide-btn {
    border-color: #d9d9d9;
    color: #d9d9d9
}

.home-four-light .slide-group .slide-btn:hover {
    color: #000
}

.home-four-light .banner-four {
    background-color: #fff;
    --theme-color: black;
    border-color: #d9d9d9
}

.home-four-light .banner-four::before {
    background-image: url("../images/banner/line-l.png")
}

.home-four-light .banner-four .intro p {
    color: #474747
}

.home-four-light .four-info {
    --theme-color: black
}

.home-four-light .project__text-slider {
    border-color: #d9d9d9;
    --theme-color: black
}

.home-four-light .projects-s {
    --theme-color: black
}

.home-four-light .projects-s .projects-s__single {
    border-color: #d9d9d9
}

.home-four-light .projects-s .projects-s__single p {
    color: #000
}

.home-four-light .projects-s a:hover {
    color: var(--color-primary)
}

.home-four-light .projects-s .btn {
    color: #757575
}

.home-four-light .projects-s .btn:hover {
    color: var(--black)
}

.home-four-light .footer-four {
    --theme-color: black
}

.home-four-light .footer-four::before {
    background-color: #d9d9d9
}

.home-four-light .footer-four .cta-t a {
    background-color: var(--color-primary);
    color: #fff
}

.home-four-light .footer-four .cta-t a:hover {
    background-color: var(--black);
    color: var(--color-primary)
}

.home-four-light .footer-four .copy-t a {
    color: var(--black)
}

.home-four-light .footer-four .copy-t a:hover {
    color: var(--color-primary)
}

.home-four-light .footer-four .footer-three__copyright {
    border-color: #d9d9d9
}

.home-four-light .navbar-active {
    background-color: #fff;
    border-color: #d9d9d9
}

.home-five-light {
    background-color: #fff
}

.home-five-light .quinary--navbar .open-offcanvas-nav {
    color: #757575
}

.home-five-light .quinary--navbar .navbar__item a,
.home-five-light .quinary--navbar .navbar__item button {
    color: #000
}

.home-five-light .quinary--navbar .navbar__item a:hover,
.home-five-light .quinary--navbar .navbar__item button:hover {
    color: var(--color-primary)
}

.home-five-light .quinary--navbar .btn {
    color: #000
}

.home-five-light .quinary--navbar .btn i {
    color: var(--color-primary)
}

.home-five-light .quinary--navbar .btn:hover {
    color: var(--black)
}

.home-five-light .light .sub-title {
    border-color: #d9d9d9;
    color: var(--color-primary)
}

.home-five-light .slide-group .slide-btn {
    border-color: #d9d9d9;
    color: #d9d9d9
}

.home-five-light .slide-group .slide-btn:hover {
    color: #000
}

.home-five-light .banner-five .projects-s__single {
    border-color: #d9d9d9
}

.home-five-light .banner-five .projects-s__single a {
    color: #000
}

.home-five-light .banner-five .projects-s__single a:hover {
    color: var(--color-primary)
}

.home-five-light .testimonial {
    --theme-color: black
}

.home-five-light .testimonial .testimonial__text-slider {
    --white: black
}

.home-five-light .footer-four {
    --theme-color: black
}

.home-five-light .footer-four::before {
    background-color: #d9d9d9
}

.home-five-light .footer-four .cta-t a {
    background-color: var(--color-primary);
    color: #fff
}

.home-five-light .footer-four .cta-t a:hover {
    background-color: #000;
    color: var(--color-primary)
}

.home-five-light .footer-four .copy-t a {
    color: var(--black)
}

.home-five-light .footer-four .copy-t a:hover {
    color: var(--color-primary)
}

.home-five-light .footer-four .footer-three__copyright {
    border-color: #d9d9d9
}

.home-five-light .navbar-active {
    background-color: #fff;
    border-color: #d9d9d9
}

@media only screen and (max-width: 1699.98px) {
    .primary-navbar .navbar__sub-menu__nested {
        left: calc(100% - 24px)
    }

    .banner .banner-left-text {
        left: 20px
    }

    .banner .banner-right-text {
        right: 20px
    }

    .banner .banner__content {
        padding-left: 24px
    }

    .banner-three .banner-three__slider-single {
        padding: 290px 0px 460px
    }

    .banner-three .banner-three__slider-progress-wrapper {
        bottom: 260px
    }

    .portfolio .portfolio__single-alt .arr {
        font-size: 56px;
        left: 40px;
        bottom: 40px
    }

    .portfolio-three .slide-group {
        position: static;
        margin-top: 60px;
        justify-content: center;
        transform: translate(0px)
    }

    .testimonial .slide-group {
        right: 40px
    }

    .service-t .slide-group {
        position: static;
        justify-content: center;
        transform: translate(0px);
        margin-top: 40px
    }
}

@media only screen and (max-width: 1439.98px) {
    .contact-m .contact-m__single {
        padding: 40px 20px
    }
}

@media only screen and (max-width: 1399.98px) {

    h1,
    .t1,
    .light-title {
        font-size: 55px;
        line-height: 80px
    }

    h2 {
        font-size: 40px;
        line-height: 50px
    }

    h3 {
        font-size: 30px;
        line-height: 40px
    }

    .light-title-lg {
        font-size: 24px;
        line-height: 34px
    }

    .primary-navbar .navbar__item a,
    .primary-navbar .navbar__item button {
        font-size: 14px
    }

    .banner .banner-one-thumb {
        max-width: 300px
    }

    .banner-four .banner-four__title {
        max-width: 700px;
        padding-left: 180px
    }

    .banner-four .banner-four__title h1 {
        text-align: start
    }

    .banner-four .banner-four__title .frame {
        margin: 0px 20px;
        width: 100px;
        min-width: 100px;
        height: 100px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 30px;
        display: inline-flex
    }

    .banner-four .banner-four__title .frame i {
        width: 60px;
        min-width: 60px;
        height: 60px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center
    }

    .portfolio .portfolio__single .portfolio__single-content h4 {
        font-size: 18px
    }

    .blog-two .blog-two__slider-single .blog__single-content {
        padding: 40px 20px
    }

    .work-steps .work-steps__single h5 {
        padding: 16px 20px;
        font-size: 16px
    }

    .work-steps .work-steps__single .work-thumb-hover {
        width: 300px;
        height: 120px
    }

    .work-steps .video-frame {
        width: 120px;
        min-width: 120px;
        height: 120px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 20px
    }

    .testimonial .slide-group {
        position: relative;
        inset: 0px;
        z-index: 9;
        flex-direction: row;
        margin-top: 40px;
        transform: translate(0px)
    }

    .testimonial .slide-group button {
        transform: rotate(0deg) !important
    }

    .ux-process .service-f-single {
        padding-right: 100px
    }
}

@media only screen and (max-width: 1199.98px) {
    .primary-navbar {
        padding: 21px 0px
    }

    /*.primary-navbar .navbar__menu {*/
    /*    display: none*/
    /*}*/

    .tertiary--navbar {
        padding: 0px
    }

    .mobile-menu {
        position: fixed;
        inset: 0px;
        overflow: hidden;
        transition: var(--transition);
        opacity: 0;
        visibility: hidden;
        transform: translateY(100%);
        transition: var(--transition);
        z-index: 9999;
        transition: all .6s ease-in-out;
        max-width: 400px;
        background-color: var(--black)
    }

    .mobile-menu .mobile-menu__header {
        display: flex;
        align-items: center;
        gap: 24px;
        flex-wrap: wrap;
        padding: 0px 40px;
        justify-content: space-between
    }

    .mobile-menu .close-mobile-menu {
        font-size: 36px
    }

    .mobile-menu .mobile-menu__wrapper {
        position: fixed;
        inset: 0px;
        max-width: 400px;
        background-color: var(--black);
        z-index: 9999;
        padding: 60px 0px;
        height: 100vh;
        overflow-y: auto;
        overflow-x: clip;
        display: flex;
        flex-direction: column;
        transition: .6s ease-in-out;
        transition-delay: .6s;
        gap: 60px;
        transform: translateY(100%);
        opacity: 1;
        visibility: visible
    }

    .mobile-menu .mobile-menu__wrapper::-webkit-scrollbar {
        width: 0px
    }

    .mobile-menu .mobile-menu__list>ul {
        flex-direction: column
    }

    .mobile-menu .mobile-menu__list>ul>li>a,
    .mobile-menu .mobile-menu__list>ul>li button {
        border-bottom: 1px solid #414141
    }

    .mobile-menu .mobile-menu__list>ul>li:nth-of-type(1) {
        border-top: 1px solid #414141
    }

    .mobile-menu .navbar__item {
        width: 100%;
        transition: var(--transition)
    }

    .mobile-menu .navbar__item a,
    .mobile-menu .navbar__item button {
        color: var(--white);
        padding: 20px 80px 20px 40px;
        line-height: 1;
        font-size: 16px
    }

    .mobile-menu .navbar__item a:hover,
    .mobile-menu .navbar__item button:hover {
        color: var(--color-primary)
    }

    .mobile-menu .navbar__item a::after,
    .mobile-menu .navbar__item button::after {
        transition: none
    }

    .mobile-menu .nav-fade {
        transform: translateY(30px);
        opacity: 0;
        transition: all .7s ease-in-out !important
    }

    .mobile-menu .navbar__item--has-children .navbar__dropdown-label::after {
        content: "+";
        font-family: "Font Awesome 6 Pro";
        position: absolute;
        top: 0px;
        right: 0px;
        bottom: 0px;
        height: 100%;
        width: 60px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        transform: rotate(0deg);
        border-left: 1px solid #414141
    }

    .mobile-menu .navbar__item--has-children:hover .navbar__dropdown-label::after {
        transform: rotate(0deg)
    }

    .mobile-menu .navbar__item-active {
        color: var(--color-primary) !important
    }

    .mobile-menu .navbar__item-active::after {
        content: "" !important;
        font-family: "Font Awesome 6 Pro" !important
    }

    .mobile-menu .navbar__sub-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: translateY(0px);
        width: 100%;
        max-width: 100%;
        padding: 0px;
        display: none;
        transition: none;
        background-color: rgba(0, 0, 0, 0);
        border-radius: 0px
    }

    .mobile-menu .navbar__sub-menu::before {
        content: none
    }

    .mobile-menu .navbar__sub-menu a,
    .mobile-menu .navbar__sub-menu button {
        color: var(--white);
        padding: 20px 40px;
        font-size: 14px;
        border-bottom: 1px solid #414141
    }

    .mobile-menu .navbar__sub-menu a::before,
    .mobile-menu .navbar__sub-menu button::before {
        content: none
    }

    .mobile-menu .navbar__sub-menu li:nth-last-of-type(1) a,
    .mobile-menu .navbar__sub-menu li:nth-last-of-type(1) button {
        border-bottom: 1px solid #414141
    }

    .mobile-menu .mobile-menu__options {
        padding: 0px 40px
    }

    .mobile-menu .mobile-menu__options a,
    .mobile-menu .mobile-menu__options button {
        width: 100%
    }

    .mobile-menu .mobile-menu__social {
        transition: var(--transition);
        padding: 0px 40px
    }

    .mobile-menu .mobile-menu__social a {
        font-size: 20px;
        width: 50px;
        min-width: 50px;
        height: 50px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center
    }

    .mobile-menu__backdrop {
        background-color: #302d2b;
        position: fixed;
        inset: 0px;
        width: 100%;
        height: 100%;
        z-index: 999;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all .6s ease-in-out;
        cursor: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABUAAAAVBAMAAABbObilAAAAMFBMVEVMaXH////////////////////////////////////////////////////////////6w4mEAAAAD3RSTlMAlAX+BKLcA5+b6hJ7foD4ZP1OAAAAkUlEQVR4XkWPoQ3CUBQAL4SktoKAbCUjgAKLJZ2ABYosngTJCHSD6joUI6BZgqSoB/+Shqde7sS9x3OGk81fdO+texMtRVTia+TsQtHEUJLdohJfgNNPJHyEJPZTsWLoxShqsWITazEwqePAn69Sw2TUxk1+euPis3EwaXy8RMHSZBIlRcKKnC5hRctjMf57/wJbBlAIs9k1BAAAAABJRU5ErkJggg==), progress
    }

    .mobile-menu__backdrop-active {
        transform: translateY(0px);
        opacity: 1;
        visibility: visible
    }

    .show-menu {
        transform: translateX(0px);
        opacity: 1;
        visibility: visible
    }

    .show-menu .mobile-menu__wrapper {
        transform: translateY(0px);
        opacity: 1;
        visibility: visible
    }

    .show-menu .nav-fade {
        animation: navLinkFade .5s ease forwards;
        transition: all .7s ease-in-out !important;
    }

    .nav-fade-active {
        animation: navLinkFade 1s ease reverse !important;
    }

    .agency .agency__content {
        padding-left: 0px;
    }
  

    .banner-two .banner-two__content .banner-two__content-cta {
        gap: 30px
    }

    .cta-s .footer__single-form .input-email {
        gap: 0px
    }

    .cta-s .footer__single-form .input-email input {
        padding: 16px 30px
    }

    .cta-s .footer__single-form .input-email button {
        width: 60px;
        min-width: 60px;
        font-size: 16px
    }

    .footer-two .footer__copyright ul {
        gap: 16px;
        row-gap: 10px
    }

    .footer-three .footer-three__group {
        padding-left: 0px
    }

    .work-steps .work-three {
        margin-top: 60px
    }

    .work-steps .work-four {
        margin-top: 120px
    }

    .work-steps .video-frame {
        top: 28%;
        right: 20%
    }

    .ux-process .body-cn {
        max-width: 480px
    }

    .project-sl .thumb {
        margin-bottom: 60px
    }

    .project-sl .content h2 {
        height: 260px
    }

    .project-d .quote-pj {
        padding-right: 0px
    }

    .project-d .quote-pj .secondary-text {
        font-size: 20px
    }

    .project-d .quote-pj .cont {
        max-width: 600px
    }

    .faq .accordion .accordion-body {
        padding: 0px 20px 30px
    }

    .faq .accordion h5 button {
        padding: 30px 20px
    }
}

@media only screen and (max-width: 991.98px) {
    /*.offer-list{*/
    /*    display:block;*/
    /*}*/
    
    .primary-navbar .menu__list {
        display: none;
    }
  .primary-navbar .navbar__options {
    display: flex;
}

    .primary-text {
        font-size: 16px
    }

    h1,
    .t1,
    .light-title {
        font-size: 36px;
        line-height: 60px
    }

    h2 {
        font-size: 30px;
        line-height: 40px
    }

    h3,
    .light-title-lg {
        font-size: 24px;
        line-height: 34px
    }

    .cursor-inner,
    .cursor-outer {
        display: none
    }

    .section {
        padding: 60px 0px
    }

    .section__cta {
        margin-top: 40px
    }

    .section__content-cta {
        margin-top: 40px
    }

    .banner .banner-one-thumb {
        top: 160px;
        left: 70%
    }

    .banner-three .banner-three__slider-single {
        padding: 180px 0px 560px
    }

    .banner-three .banner-three__slider-progress,
    .banner-three .banner-three__content {
        padding-left: 80px
    }

    .banner-four {
        padding: 200px 0px 100px
    }

    .banner-five .banner-five__wrapper {
        padding: 160px 0px 100px;
        gap: 30px
    }

    .banner-five .banner-five__single {
        min-width: 280px;
        width: 280px
    }

    .banner-five .projects-s__single h4 {
        font-size: 20px
    }
     .banner h1{
         font-size:26px;
     }
    .cmn-banner {
        padding: 160px 0px 60px
    }

    .cmn-banner .title {
        margin-top: -8px
    }

    .agency .agency__content {
        padding-left: 0px
    }


    .portfolio .portfolio__text-slider-single h2,
    .portfolio-two .portfolio__text-slider-single h2 {
        margin-top: -14px
    }


    .testimonial .testimonial__text-slider-single h2 {
        margin-top: -14px
    }
       .agency .agency__thumb .thumb-two{
        max-width:100%;
        margin-top:0px;
    }

    .next-page .next__text-slider-single h2 {
        margin-top: -10px;
        margin-bottom: -10px
    }

    .banner-two {
        padding: 180px 0px 100px
    }

    .banner-two .banner-two__meta {
        gap: 30px;
        row-gap: 40px
    }

    .banner-two .banner-two__meta .cta {
        gap: 30px;
        row-gap: 30px
    }

    .banner-two .thumb img {
        max-width: calc(100vw - 30px)
    }

    .banner-two .banner-two__content .banner-two__content-cta {
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start
    }

    .award .award__thumb img {
        max-width: 100%
    }

    .service-f .service-f-single {
        flex-direction: column;
        align-items: flex-start;
        row-gap: 60px
    }

    .service-f .service-f-single .p-sm {
        display: none !important
    }

    .team-slider-s .team-r .slide-group {
        position: static;
        transform: translate(0px);
        margin-top: 40px;
        justify-content: center;
        display: flex
    }
   /* .section.team-m .col-md-4{*/
   /*     flex: 0 0 auto;*/
   /* width: 50%;*/
   /*}*/

    .ux-process .service-f-single {
        flex-direction: column;
        align-items: flex-start;
        padding-right: 60px
    }

    .ux-process .body-cn {
        max-width: 100%
    }

    .project-sl .project-sl__single {
        padding: 0px 15px;
        max-width: 280px;
        min-width: 280px;
        width: 100%
    }

    .team-m .team-m__single .thumb img {
        width: 100%
    }

    .team-m .team-m__single .thumb .thumb__content {
        display: block;
        height: 60px;
        padding: 20px;
        width: calc(100% - 60px)
    }

    .team-m .team-m__single .thumb .thumb__content .info p {
        font-size: 14px
    }

    .team-m .team-m__single .thumb:hover .thumb__content {
        height: 100px
    }

    .faq .faq__thumb {
        padding-right: 0px
    }
}

@media only screen and (max-width: 768px) {
    .dme-course-wrapper .container .row{
        padding-right:0%;
    }
     .section.team-m .col-md-4 h4{
       font-size:15px;
       line-height:18px;
   }
   .footer .footer__single-intro{
       margin-bottom:12px;
   }
   .footer .gaper{
       row-gap:30px;
   }
   .btn{
       padding:16px 20px;
   }
     .banner h1 {
        
        font-size:30px;
        font-weight:700!important;
    }
   .dme-rating-mobile{
    display:block;
}
.dme-rating-desktop{
    display:none;
}
    .dme-youtube-wrapper .youtube{
        height:350px;
    }
    .accordion-button{
        font-size:19px!important;
    }
    .maxImg-height{
        height: 270px !important;
        width: 100%;
        object-fit: cover;
    }
    .footer .footer__single-meta a{
        max-width:100%;
    }
  
    .tertiary--navbar .navbar {
        gap: 24px
    }
     .offer-list{
        display:block;
    }

    .tertiary--navbar .tertiary-cta {
        padding-left: 24px
    }

    .offcanvas-nav .offcanvas-menu .offcanvas-menu__wrapper {
        padding: 60px 0px
    }
    
    .agency__thumb{
     max-height:400px;   
    }
.agency .agency__thumb img{
        height:100%;
        width:100%;
    }
    .agency .title{
        font-size:24px;
    }
    .blog .blog__single-thumb a img {
    object-fit:unset;
    max-height: 250px;
}

    .offcanvas-nav .offcanvas-menu .navbar__item a,
    .offcanvas-nav .offcanvas-menu .navbar__item button {
        font-size: 16px
    }

    .offcanvas-nav .offcanvas-menu .navbar__sub-menu a,
    .offcanvas-nav .offcanvas-menu .navbar__sub-menu button {
        font-size: 14px
    }

    .offcanvas-nav .offcanvas-menu .offcanvas-menu__social {
        gap: 16px
    }

    .offcanvas-nav .offcanvas-menu .offcanvas-menu__social a {
        width: 46px;
        min-width: 46px;
        height: 46px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 16px
    }

    .offcanvas-nav .offcanvas-menu .offcanvas-menu__list,
    .offcanvas-nav .offcanvas-menu .offcanvas-menu__options,
    .offcanvas-nav .offcanvas-menu .offcanvas-menu__social {
        max-width: 320px
    }

    .progress-wrap {
        bottom: 10px;
        right: 15px;
        width: 40px;
        height: 40px
    }

    .progress-wrap span {
        width: 30px;
        height: 30px
    }

    .banner .video-frame {
        width: 140px;
        min-width: 140px;
        height: 140px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 20px
    }

    .banner .banner__content {
        margin-top: -16px;
        padding-left: 0px
    }

    .banner .banner-one-thumb {
        top: 240px;
        left: 60%;
        max-width: 200px
    }

    .banner .banner__content-inner .cta {
        -moz-column-gap: 24px;
        column-gap: 24px
    }

    .banner-three .banner-three__slider-single {
        padding: 180px 0px 660px
    }

    .banner-four .intro {
        padding-left: 0px
    }

    .banner-four .banner-four__title {
        max-width: 700px;
        padding-left: 0px
    }

    .video-modal .video-frame {
        width: 140px;
        min-width: 140px;
        height: 140px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 20px
    }
     .banner-five .projects-s__single {
        padding: 20px
    }
    
 
    .agency .star,.agency .dot-large{
        display:none;
    }

    .video-modal .video-frame i {
        width: 80px;
        min-width: 80px;
        height: 80px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center
    }

    .work-steps .work-steps__single {
        padding-top: 140px
    }

    .work-steps .work-steps__single:hover span::after {
        height: 40px
    }

    .work-steps .work-two {
        margin-top: 0px
    }

    .work-steps .work-three {
        margin-top: 40px
    }

    .work-steps .work-four {
        margin-top: 40px
    }

    .team-slider-s .team-s__slider-single {
        width: auto;
        max-width: 100%
    }

    .team-slider-s .team-s__slider-single .thumb img {
        width: 100%
    }

    .team-slider-s .team-s__slider-single .thumb .thumb__content {
        display: block;
        height: 110px;
        padding: 20px;
        width: calc(100% - 60px)
    }

    .team-slider-s .team-s__slider-single .thumb .thumb__content .info p {
        font-size: 14px
    }

    .team-slider-s .team-s__slider-single .thumb:hover .thumb__content {
        height: 200px
    }

    .team-slider-s .slick-center-active {
        width: auto
    }

    .team-slider-s .slick-center-active .team-wrap {
        padding: 0px
    }

    .team-slider-s .slick-center-active .content {
        display: none !important
    }

    .team-slider-s .slick-center-active .thumb {
        min-width: 100% !important;
        max-width: 100% !important
    }

    .team-slider-s .slick-center-active .thumb img {
        height: auto !important;
        min-height: auto !important
    }

    .mission-s .mission-s__single--alt {
        padding: 60px 20px
    }

    .project-d .poster__slider-wrapper .slide-group {
        justify-content: center;
        transform: translate(0px);
        position: static;
        margin-top: 40px
    }

    .portfolio-m .portfolio-m__single .content {
        padding: 40px 30px
    }

    .footer-two .social a {
        width: 70px;
        min-width: 70px;
        height: 70px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center
    }

    .footer-two .social a i {
        display: flex;
        transform: translateX(0px) !important;
        opacity: 1;
        visibility: visible
    }

    .footer-two .social a span {
        display: none
    }

    .footer-two .social a:hover i {
        animation: none
    }
}

@media only screen and (max-width: 575.98px) {

    h1,
    .t1,
    .light-title {
        font-size: 24px;
        line-height: 40px
    }

    h2 {
        font-size: 24px;
        line-height: 34px
    }

    h3,
    .light-title-lg {
        font-size: 20px;
        line-height: 30px
    }

    h4 {
        font-size: 18px;
        line-height: 28px
    }

    h5 {
        font-size: 18px;
        line-height: 28px
    }

    .mobile-menu {
        max-width: 320px
    }

    .mobile-menu .mobile-menu__wrapper {
        max-width: 320px
    }

    .mobile-menu .mobile-menu__header,
    .mobile-menu .mobile-menu__options,
    .mobile-menu .mobile-menu__social {
        padding: 0px 24px
    }

    .mobile-menu .mobile-menu__social {
        gap: 16px
    }

    .mobile-menu .mobile-menu__social a {
        width: 46px;
        min-width: 46px;
        height: 46px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 16px
    }

    .mobile-menu .navbar__item a,
    .mobile-menu .navbar__item button {
        font-size: 14px;
        padding: 20px 70px 20px 24px
    }

    .secondary--navbar .open-offcanvas-nav {
        width: 60px;
        min-width: 60px;
        height: 60px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center
    }

    .tertiary--navbar .open-offcanvas-nav {
        padding: 25px
    }

    .offcanvas-nav .offcanvas-menu::before {
        content: none
    }

    .banner {
        padding: 200px 0px 50px;
    }

    .banner h1 {
        letter-spacing: 1px;
    }
    

    .banner h1 .text-stroke {
        -webkit-text-stroke: .5px var(--color-primary)
    }

    .banner .interval {
        gap: 20px;
        margin-left: 10px
    }

    .banner .banner__content {
        margin-top: -10px
    }

    .banner .banner__content-inner {
        margin-top: 24px
    }

    .banner .banner__content-inner .cta {
        flex-direction: column;
        align-items: flex-start;
        margin-top: 40px
    }

    .banner .video-frame {
        position: relative;
        inset: unset;
        left: 15px;
        margin-top: 40px;
        width: 140px;
        min-width: 140px;
        height: 140px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center
    }

    .banner .star {
        left: 40px;
        top: 120px
    }

    .banner-three .social {
        display: none
    }

    .banner-three .banner-three__slider-progress,
    .banner-three .banner-three__content {
        padding-left: 0px
    }

    .banner-three .banner-three__video img {
        min-height: 140px
    }

    .banner-three .banner-three__video .video-frame {
        width: 60px;
        min-width: 60px;
        height: 60px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center
    }

    .banner-four .banner-four__title {
        max-width: 300px
    }

    .banner-four .banner-four__title .frame {
        width: 80px;
        min-width: 80px;
        height: 80px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        display: inline-flex;
        font-size: 20px
    }

    .banner-four .banner-four__title .frame i {
        width: 50px;
        min-width: 50px;
        height: 50px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center
    }

   

    .portfolio .portfolio__text-slider-single h2,
    .portfolio-two .portfolio__text-slider-single h2 {
        margin-top: -8px
    }

    .portfolio .portfolio__text-slider-single:nth-of-type(even) h2,
    .portfolio-two .portfolio__text-slider-single:nth-of-type(even) h2 {
        -webkit-text-stroke: .5px var(--white)
    }
    .sponsor-section img{
        height:60px;
        object-fit:contain;
        /*max-width:calc(50vh - 15px);*/
    }

    .testimonial .testimonial__text-slider-single h2 {
        margin-top: -8px;
        -webkit-text-stroke: .5px var(--white)
    }

    .testimonial-two blockquote {
        font-size: 20px
    }

    .next-page .next__text-slider-single h2 {
        margin-top: -6px;
        margin-bottom: -6px
    }

    .next-page .next__text-slider-single:nth-of-type(even) h2 a {
        -webkit-text-stroke: .5px var(--white)
    }

    .award .award__content-meta {
        flex-wrap: wrap;
        row-gap: 40px
    }

    .award .award__content-meta::before {
        content: none
    }

    .award .award__content-meta .single::before {
        content: none
    }

    .award .award__content-meta .single h4:nth-of-type(1) {
        margin-bottom: 16px
    }

    .blog-two .blog__single-meta {
        gap: 16px
    }

    .blog-two .blog__single-meta a,
    .blog-two .blog__single-meta p {
        font-size: 14px
    }

    .work-steps .work-two {
        margin-top: 40px
    }

    .cta-two .cta-two-wrapper {
        padding: 80px 20px
    }

    .projects-s .projects-s__single {
        padding: 20px
    }

    .service-t .service-t__slider-single {
        padding: 40px 24px
    }

    .blog-main .blog-main__sidebar {
        padding: 30px 20px
    }

    .blog-main .blog-main__sidebar .widget__list a,
    .blog-main .blog-main__sidebar .widget__tag a,
    .blog-main .blog-main__sidebar .widget__latest a {
        font-size: 14px !important
    }

    .blog-main .blog-main__single {
        margin-bottom: 40px
    }

    .blog-main .blog-main__single .thumb,
    .blog-main .blog-main__single .content {
        padding: 30px 20px
    }

    .blog-details .bd-content {
        padding: 30px 20px
    }

    .blog-details .bd-quote {
        padding: 40px 20px
    }

    .custom-quote .custom-quote__right {
        animation-direction: normal
    }

    .custom-quote .quote-wrapper {
        height: 1200px
    }

    .form-group-wrapper {
        flex-direction: column;
        row-gap: 30px
    }

    .form-group-wrapper .form-group-single {
        width: 100%
    }

    .feedback-s .feedback-s__single {
        padding: 40px 30px
    }

    .contact-m .contact-main__form {
        padding: 60px 30px
    }

    .contact-m .contact-main__form .group-wrapper {
        flex-direction: column
    }

    .contact-m .contact-main__form .group-wrapper .group-input {
        width: 100%
    }

    .footer-four .cta-t a {
        padding: 30px 20px;
        gap: 20px
    }
}

@media only screen and (max-width: 424.98px) {
    .navbar__logo{
     width:150px;   
    }
    .banner-five .banner-five__single {
        padding: 0px 15px
    }

    .blog-details .blog-details__pagination .latest-single {
        flex-direction: column;
        align-items: flex-start
    }

    .thumb-radio {
        padding: 80px 20px
    }

    .thumb-radio .radio {
        margin: 0px 0px
    }
}

@media only screen and (min-width: 1440px) {
    .container {
        max-width: 1440px
    }

    .banner-four .banner-four__title h1 {
        font-size: 150px;
        font-weight: 700;
        line-height: 170px
    }

    .projects-s .row>* {
        padding-left: 30px !important;
        padding-right: 30px !important
    }

    .projects-s .row {
        margin-left: -30px !important;
        margin-right: -30px !important
    }
}

@media only screen and (min-width: 1200px) {
    .mobile-menu {
        display: none
    }
}

/*# sourceMappingURL=main.min.css.map */

/* global recognzied section */
.certification .certification-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    line-height: 1;
    border: 1px solid #414141;
    color: var(--color-primary);
    border-radius: 30px;
    margin-bottom: 32px;
    text-transform: uppercase;
}

.certification-img img{
 height: 100%;
 object-fit:unset;
width:100%;
}

 .video-container iframe{
    min-height: 250px;
}
.banner .form-container{
    max-width:450px;
    width:100%;
    margin-right:20px;
  background: var(--color-primary);
    overflow: hidden; 
    box-shadow: 0px 0px 15px rgb(255 255 255 / 70%);
    border-color: var(--color-primary)!important;
    margin-left: auto;
}
.banner .form-container .btn{
    border:2px solid #fff;
    color:#fff;
}
.form-control {
    transition: all 0.3s ease-in-out;
}
.form-control:focus {
    box-shadow: 0px 0px 10px #ff75252a;
    border-color: var(--color-primary);
}
.btn:hover {
    background: #fff;
    color: var(--white);
}
/* global recognzied section */
  .agency-service-box {
    border: 1px solid #fff;
    background: var(--color-primary);
    border-radius: 20px;
    padding: 15px 15px;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    text-align:center;
    position:relative;
    height: 100%;
    transition:all 0.5s ease-in-out;
}
.agency-service-img{
        border-radius: 8px;
    border: 1px solid #D4DCFF;
    background: #F3F7FB;
    width: 70px;
    height: 70px;
    display:flex;
    padding:5px;
    line-height: 70px;
    text-align: center;
    font-size: 40px;
}
.agency-service-img>img{
    border-radius:20%;
    width:150px;
    
}
.agency-service-box:hover{
    transform:scale(1.1);
    
}
.agency-service-box .btn{
    color:#fff;
    border-color:#fff;
}
 /*.agency-service-box:hover:before{*/
 /*    position:absolute;*/
 /*    content:'';*/
 /*    inset:0;*/
 /*    z-index:999;*/
 /*    background-color:rgba(0,0,0,0.5);*/
 /*}*/
 .agency-apply-box{
  display:flex;
  flex-direction:column;
  align-items:Center;
  text-align:Center;
 
 }
 .agency-apply-box figure{
     border:4px solid white;
     border-radius:12px;
     width:100%;
     margin:0;
      position:relative;
      
 }
 .agency-apply-box figure img{
     width:100%;
     border-radius:8px;
 }
  .agency-apply-box .apply-box-title{
      position:absolute;
      bottom:0;
      left:0;
      right:0;
     background-color: #18185ec9;
       border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  border-top:4px solid #fff;
  
  padding:5px;
  /*min-height:70px;*/
  }
 .agency-apply-box  .apply-box-title h4{
      color:#fff;
  }
  

.accordion-button{
    font-size:22px;
    line-height:normal;
}
.accordion-button,.accordion-body{
    background-color:#fff;
    color:#000;
}
.accordion-button:not(.collapsed){
    color:var(--color-primary);
     background-color:#fff;
}
.accordion-button:focus:not(.collapsed){
    /*box-shadow:0 0 rgba();*/
}
.whatsapp-float {
    position: fixed;
    bottom: 40px;
    left: 20px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: transform 0.3s ease-in-out;
}
.call-float{
     right: 20px;
     left:unset;
     background-color:#fff;
     
}
.rc-logo{
  border-radius:50%;
}
.card-logo {
  border-radius:1.5rem;
  /*background-color: #fff;*/
  overflow: hidden;
  display: flex;
  flex-direction:column;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding:10px;
  position:relative;
   z-index:20;
  transition:all 0.5s ease-in;
}
.card-logo.card-logo-1{
    background-color:transparent!important;
    box-shadow:none!important;
     transition: filter 0.3s ease, transform 0.3s ease;
}

/* Container default: nothing blurred */
.card-container{
  position: relative;
}
.signature-logo h4{
    color:#000;
}
/* When any card is hovered, blur others */
/*.card-container:hover .card-logo,.card-container:hover .card-button {*/
/*  filter: blur(2px) brightness(0.9);*/
/*  transition: filter 0.3s ease;*/
/*}*/

/* Keep the hovered card sharp */
/*.card-container .card-logo:hover {*/
/*  filter: none;*/
/*}*/


.card-logo-footer{
/*display:none;*/
/*margin-top:5px;*/
/*color:var(--color-primary);*/
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  margin-top: 0;
  width:100%;
  color: var(--color-primary);
  display:flex;
  justify-content:flex-start;
  transition: max-height 0.3s ease, opacity 0.3s ease, margin-top 0.3s ease;
}

.card-logo.card-logo-1 .card-logo-footer span{
    font-size:8px;
color:var(--color-primary);
}

.card-logo.card-logo-1:hover .card-logo-footer{
    /*display:block; */
    max-height: 50px; /* adjust based on text size */
  opacity: 1;
  margin-top: 5px;
}
.card-logo:hover .card-logo-footer span{
    font-size:8px;
}
/*.card-logo-footer{*/
/*    position: absolute;*/
/*    bottom: 0px;*/
/*    left: 0px;*/
/*    right:0;*/
/*    height:50px;*/
/*    display:flex;*/
/*    align-item:Center;*/
/*    padding: 5px;*/
/*    background-color: rgba(0,0,0,0.8);*/
/*    overflow-y: clip;*/
/*    transition: all .4s ease-in-out;*/
/*}*/

.card-logo.card-logo-1:hover{
     z-index:30;
 transform:scale(1.2);
}

.card-logo img {
    /*border-radius:50%;*/
  max-height: 200px;
  
  object-fit: contain;
  transition: transform 0.3s ease;
  filter: drop-shadow(0 0 0 transparent);
}

.digi-logo-wrapper .card-logo img{
    border-radius:unset;
}

.card-logo:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  /*transform: translateY(-5px);*/
}

/*.card-logo:hover img {*/
/*  transform: scale(1.05);*/
/*  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));*/
/*}*/

.section-graphics{
    padding:60px 15px;
}
.section-graphics h4,.section-graphics p{
    color:#000;
}
.graphic-logo-wrapper {
    overflow: hidden;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 0px 6px 5px rgb(255 255 255);
    border: 5px ridge #ff5e14;
    /*outline: 2px solid var(--color-primary);*/
    /*outline-offset: 7px;*/
  }

  .graphic-logo-wrapper:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
  }

  .graphic-logo {
    width: 100%;
    height: auto;
    display: block;
    /*border-radius: 12px;*/
  }

  .section-graphics h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
  }

  .section-graphics p.subheading {
    color: #aaa;
    font-size: 1rem;
    margin-bottom: 2rem;
  }

  .section-graphics .btn--primary {
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    /*background-color: #ff5e14;*/
    border: none;
    color: #fff;
    font-weight: 600;
    transition: all 0.3s ease;
  }

 .section-graphics  .btn--primary:hover {
    background-color: #e64e0f;
  }
  .offer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.offer-list li {
  position: relative;
  padding-left: 32px; /* space for icon */
  margin-bottom: 12px;
  line-height: 1.6;
  background-repeat: no-repeat;
  background-size: 20px 20px;
  background-position: 0 4px;
  background-image: url('/assets/images/service-icon.png');
}

.dme-seo-link{
    display:inline;
}
.dme-seo-line{
    display:inline;
}

ul.dme-list{
    list-style-type:disc;
}
ol.dme-list{
    list-style-type:initial;
}
.dme-youtube-wrapper .youtube {
  position: relative;
  width: 100%;
  max-width: 560px;
  height:400px;
  margin: auto;
  /*padding-bottom: 56.25%; */
  background-color: #000;
  background-size: cover;
  background-position: center center;
  cursor: pointer;
  overflow: hidden;
  border-radius: 10px;
  transition: box-shadow 0.3s;
}

.dme-youtube-wrapper .youtube:hover {
  box-shadow: 0 0 20px rgba(0,0,0,0.4);
}

.dme-youtube-wrapper .play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 68px;
  height: 48px;
  background-color: rgba(0, 0, 0, 0.8);
  border-radius: 14%; 
  transform: translate(-50%, -50%);
}

.dme-youtube-wrapper .play-button::before {
  content: "";
  position: absolute;
  left: 26px;
  top: 14px;
  width: 0;
  height: 0;
  border-left: 18px solid #fff;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
}


#portfolio-image {
  /*border-radius: 5px;*/
  cursor: pointer;
  transition: 0.3s;
}

#portfolio-image:hover {opacity: 0.7;}

/* The Modal (background) */
.portfolio-modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1000; /* Sit on top */
  padding-top: 100px; /* Location of the box */
  padding-bottom:100px;
  left: 0;
  top: 0;
  bottom:0;
  width: 100%; /* Full width */
  height: 100vh; /* Full height */
  height:100dvh;
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.9); /* Black w/ opacity */
  overflow:hidden;

}

/* Modal Content (image) */
.portfolio-modal-content {
  margin: auto;
  display: block;
  width: 80%;
  height:100%;
  max-width: 700px;
  object-fit:contain;
}


/* The Close Button */
.portfolio-close {
  position: absolute;
  top: 15px;
  right: 35px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
  z-index:999;
  cursor:pointer;
}

.close:hover,
.close:focus {
  color: #bbb;
  text-decoration: none;
  cursor: pointer;
}


.dme-course-wrapper{
 background-size:100% 100%;
 background-repeat:no-repeat;
 position:relative;
}
.dme-course-wrapper .row{
    padding-right:25%;
}
.dme-course-wrapper::before{
content:'';
position:absolute;
top:0;
left:0;
right:0;
bottom:0;
background-color:rgba(0,0,0,0.5);    
z-index:1;
}
.dme-course-wrapper .container{
    position:relative;
    z-index:9;
}

/* course page modal css */
.course-modal,.course-tab-modal,.service-modal {
    display: none;
    position: fixed;
    top: 50vh; /* Use viewport units */
    left: 50vw;
    transform: translate(-50%, -50%);
    background: white;
    padding: 10px 15px;
     z-index: 9999; /* Boosted */
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(0,0,0,0.3);
    width: 100%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
}
.course-tab-modal {
    background-image:url("/assets/images/footer/course-poup-bg.webp");
    background-repeat:no-repeat;
    background-size:Cover;
    color:#000;
    min-height:400px;
}
.course-tab-wrapper h2{
    color:#fff;
}
.close-btn{
    font-size:25px;
    cursor:pointer;
     z-index:10000;
}
.text-center.course-tab-item {
    text-align: center;
    border-radius: 12px;
    padding: 10px;
    font-size:24px;
    font-weight:bold;
    background-color: var(--color-primary);
}

.course-tab-content{
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
     color:#000;
}
.course-tab-content .course-tab-item a{
      color:#000;
}
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.5);
    z-index: 999;
    display:none;
}

body.modal-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
    height: 100%;
}

       .course-modal  .close-btn,.service-modal .close-btn {
            position: absolute;
            top: 10px;
            right: 15px;
            font-size: 24px;
            cursor: pointer;
            color: #666;
            z-index:10000;
        }


       .course-modal .form-group,.service-modal .form-group {
            margin: 5px 0;
        }


       .course-modal  label,.service-modal label {
            display: block;
            margin-bottom: 5px;
            font-weight: bold;
            color:black;
        }


       .service-modal   input, .service-modal select,.course-modal   input, .course-modal select {
            width: 100%;
            padding: 4px;
            border: 1px solid #ddd;
            border-radius: 4px;
            color:#000;
            with:100%;
        }
        .course-modal select ,.service-modal select{
            max-width:400px;
            width:fit-content;
        }


       .course-modal  button,.service-modal button {
            margin:0 auto;
        }


        .course-modal button:disabled {
            background: #cccccc;
            cursor: not-allowed;
        }


     .success-message {
            color: green;
            display: none;
            text-align: center;
            margin-top: 10px;
        }


        .error-message {
            color: red;
            display: none;
            text-align: center;
            margin-top: 10px;
        }
.dme-course-cnt{
 display:flex;
 gap:20px;
}

/*internship page css*/
.internship-list{
 display:flex;
 gap:20px;
 flex-wrap:wrap;
 justify-content:Center;
}
.sponsor-section img{
    border:2px solid #000;
}
.job-title h2 {
    font-size: 16px;
    letter-spacing: 1px;
    font-weight: 700;
    padding: 8px 20px;
    margin: 0 auto;
    background: #e7f1fd;
    color: var(--color-primary);
    display: inline-block;
    text-transform: uppercase;
    border-radius: 50px;
}
.resume-form{
    background: var(--color-primary);
    box-shadow: 1px 1px 20px 0 #afafaf;
    color: #fff;
    height: 100%;
       border-radius: 0.375rem;
    padding: 30px;
}

.resume-form .form-group{
    margin-bottom:20px;
}
.resume-form .form-control {
    display: block;
    width: 100%;
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #000;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #dee2e6;
    border-radius: 0.375rem;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
.resume-form input.btn-submit {
    background-color:#fff;
    color: var(--color-primary);
    border:1px solid #fff;
    border: none;
    width: 100%;
    font-size: 20px;
    padding: 10px 0px;
    border-radius: 4px;
}
.file-area {
    width: 100%;
    position: relative;
}
.file-area input[type=file] {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    cursor: pointer;
}
.file-area .file-dummy {
    width: 100%;
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.2);
    border: .125rem dashed rgba(255, 255, 255, 0.2);
    text-align: center;
    transition: background 0.3s ease-in-out;
}
.career-content {
    background-color: #f7f7f7;
    box-shadow: 0rem 0rem .1875rem #cccc;
}
.form-content h3 {
    font-size: 30px;
    color: var(--color-primary);
    text-transform: uppercase;
    font-weight: 600;
    padding-top: 30px;
}
.form-content .givearing {
    color: #ff7800;
    font-size: 30px;
    text-transform: uppercase;
    font-weight: 600;

}
.ultext li {
    list-style: none;
    font-weight: 500;
    color: var(--color-primary);
    position: relative;
    padding-left: 32px;
    margin-bottom: 12px;
    line-height: 1.6;
    background-repeat: no-repeat;
    background-size: 20px 20px;
    background-position: 0 4px;
    background-image: url('/assets/images/service-icon.png');
}
ul.cv-boxm li a {
    margin: .4375rem;
    float: left;
    font-weight: 600;
    color: #ff7800;
}
.form-content p {
    font-weight: normal;
    color: #2c2c2c;
}
p.mobnum a {
    font-size: 30px;
    color: #000;
    font-weight: 700;
}

.accby {
    color: var(--color-primary)!important;
    font-size: 23px;
    font-weight: 600!important;
    padding-top: 30px;
    padding-left: 8px;
}

.footer-newsletter {
    padding: 50px 0;
    background: var(--color-primary);
    text-align: center;
    font-size: 15px;
    position: relative;
}
.footer-newsletter h2 {
    color: #fff;
    font-size: 34px;
}
.footer-newsletter .gb-button-wrapper  .whatsapp-btn,.footer-newsletter .gb-button-wrapper .call-btn{
    border-radius:0.54rem;
    color:black;
    text-transform:capitalize;
    border:none;
    font-size:20px;
    font-weight:normal;
}
.footer-newsletter .gb-button-wrapper span{
    font-size:20px;
}

/* 100% Image Width on Smaller Screens */
@media only screen and (max-width: 700px){
  .modal-content {
    width: 100%;
  }
  .footer-newsletter .gb-button-wrapper a{
      margin-bottom:10px;
  }
  .footer-newsletter .gb-button-wrapper span{
      display:none;
  }
}
.hero-3 {
    position: relative;
}
.hero-3.banner::before{
    content:none;
}
.hero-3 .line-shape {
    position: absolute;
    top: 46%;
    left: 48%;
    transform: translate(-50%, -50%);
}
.hero-3 .hero-content {
    max-width: 580px;
    text-align:left;
}
.hero-3 .hero-content h6 {
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #6A47ED;
    display: inline-block;
    margin-bottom: 10px;
}
.hero-3 .hero-content h1 span {
    /*background: linear-gradient(90deg, #6A47ED 35.31%, #FB17FF 100%);*/
    background:#6A47ED;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hero-3 .hero-content h1 {
    font-size: 36px;
    color:#000;
    font-weight: 700;
}
.hero-3 .hero-content p {
    font-size: 16px;
    font-weight: 500;
    color:#000;
    max-width: 545px;
    margin-top: 20px;
}

.hero-3 .hero-content .hero-button {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-top: 50px;
}
.main-button {
    position: relative;
    display: flex;
    align-items: center;
}

.main-button .theme-btn {
    position: relative;
    z-index: 2;
    display: inline-block;
    border: none;
    text-transform: uppercase;
    text-align: center;
    background-color: var(--color-primary);
    color: var(--white);
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
    padding: 19.5px 35px;
    border-radius: 30px;
}
.main-button .arrow-btn {
    width: 51px;
    height: 51px;
    line-height: 51px;
    text-align: center;
  background-color: var(--color-primary);
    color: var(--white);
    border-radius: 50%;
    display: inline-block;
    transition: all 0.4s ease-in-out;
}
.team-card-items {
    margin-top: 30px;
    border-radius: 20px;
    background: #18185E;
    box-shadow: 0px 4px 50px 0px rgba(0, 0, 0, 0.08);
    position: relative;
}
.team-card-items .team-image {
    padding: 16px 16px 0 16px;
}
.team-card-items .team-image img {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    transition: all 0.4s ease-in-out;
}
.team-card-items .team-content {
    padding: 20px 20px;
    color:#000;
}
.team-card-items .team-content *{
    color:#fff;
}
.team-card-items .icon-shape {
    position: absolute;
    bottom: 30px;
    right: 0;
}
.team-card-items .social-profile {
    transition: all 0.6s ease-in-out;
    position: absolute;
    top: -153%;
    left: 31%;
    transform: translate(-50%, -50%);
    display: grid;
    gap: 10px;
}
.team-card-items .social-profile ul {
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease-in-out;
}
.team-card-items .social-profile .plus-btn {
    z-index: 2;
    cursor: pointer;
    width: 36px;
    height: 36px;
    line-height: 36px;
    text-align: center;
    font-size: 18px;
    font-weight: 500;
    display: inline-block;
    background: var(--white);
    color: var(--black);
    transition: all 0.4s ease-in-out;
    border-radius: 50%;
}
.team-card-items .social-profile ul li a {
    width: 36px;
    height: 36px;
    line-height: 36px;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    display: block;
    background: var(--white);
    color: var(--black);
    box-shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.08);
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    text-align: center;
    margin: 0 auto;
    border-radius: 50%;
}
/*service section css*/
.service-box-items {
    margin-top: 30px;
    display: flex;
    flex-direction:Column;
    align-items:center;
    gap: 15px;
    padding: 40px 20px;
    height:100%;
    position: relative;
    border: 1px solid #E5E5E5;
    border-radius: 20px;
}
.service-box-items .content h4,.service-box-items .content p {
    margin-bottom: 5px;
    color:#000;
}
.service-section h4,.service-section p{
    color:#000;
}
.service-box-items img{
    max-width:150px;
}
.link-btn {
    color: var(--color-primary);
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    display: inline-block;
}
/*about section css*/
.section-title {
    position: relative;
    z-index: 99;
    margin-bottom: 30px;
    margin-top: -1px;
}
.about-wrapper .about-content .circle-progress-bar-wrapper {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-top: 50px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}
.about-wrapper .about-content .circle-progress-bar-wrapper .single-circle-bar {
    display: flex;
    align-items: center;
    gap: 10px;
}
.about-wrapper .about-content .circle-progress-bar-wrapper .single-circle-bar .circle-bar {
    position: relative;
    height: 120px;
    width: 120px;
}
.about-wrapper .about-content .circle-progress-bar-wrapper .single-circle-bar .circle-bar div {
    position: absolute;
    height: 100px;
    width: 100px;
    border-radius: 50%;
}

 .about-wrapper    .about-content .circle-progress-bar-wrapper .single-circle-bar .circle-bar .background {
    background-color: #DFE2FF !important;
}
.about-wrapper h2,.about-wrapper p,.about-wrapper h6{
    color:#000;
}
.about-wrapper .about-content .circle-progress-bar-wrapper .single-circle-bar .circle-bar .rotate {
    /*clip: rect(0 50px 100px 0);*/
    background-color: var(--color-primary) !important;
}
.about-wrapper .about-content .circle-progress-bar-wrapper .single-circle-bar .circle-bar .left {
    clip: rect(0 50px 100px 0);
    opacity: 1;
    background-color: #f7f3ff !important;
}
.about-wrapper .about-content .circle-progress-bar-wrapper .single-circle-bar .circle-bar .right {
    clip: rect(0 50px 100px 0);
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
    opacity: 0;
    background-color: var(--color-primary) !important;
}
.about-wrapper .about-content .circle-progress-bar-wrapper .single-circle-bar .circle-bar div span {
    position: absolute;
    font-size: 20px;
    line-height: 92px;
    height: 90px;
    width: 90px;
    left: 5px;
    top: 5px;
    font-weight: 600;
    text-align: center;
    border-radius: 50%;
    background-color:#f7f3ff;
    color: var(--black);
}
.about-wrapper .about-content .circle-progress-bar-wrapper .single-circle-bar .circle-bar div {
    position: absolute;
    height: 100px;
    width: 100px;
    border-radius: 50%;
}
.section-title .sub-title.bg-color-2 {
    background: rgba(56, 75, 255, 0.1);
}
.about-image,.about-image img{
    height:100%;
}
.about-wrapper .sub-title {
    padding: 6px 20px;
    border-radius: 100px;
    display: inline-block;
    background-color:#f7f3ff;
    margin-bottom: 20px;
}
.about-wrapper .sub-title span {
    display: inline-block;
    font-weight: 700;
    text-transform: uppercase;
    color:var(--color-primary);
    font-size: 14px;
}
.certificate-section ul li{
    color:#000;
}
.certificate-section h4,.certificate-section p{
     color:#000;
}
.light-bg{
    background-color:var(--color-background);
}
.bg-dark-blue{
    color:#fff;
    background-color: #18185E;
}
.bg-dark-blue p,.bg-dark-blue h3,.bg-dark-blue h2,.bg-dark-blue a{
    color:#fff;
}
.bg-dark-blue a:hover{
    color:#cacaca;
}
/*[class^="elfsight-app-"] span[class^="ButtonBase_"]{*/
/*    color:#fff;*/
/*}*/
[class^="elfsight-app-"] span{
    color:#000;
}

/*analytics section css*/
.sec-analytics{
    color:#000;
    box-sizing:border-box;
}
.sec-analytics p,.sec-analytics td{
    color:#000;
}
.sec-analytics th{
    color:var(--color-primary);
    font-weight:600;
}
.sd-project-indistries span{
   background-color:var(--color-primary);
   color:#fff;
   padding:10px 20px;
   border-bottom-right-radius:12px;
   border-width:0px;
 box-shadow:0 2px 4px rgba(0,0,0,0.2);
}
.sec-analytics .analytics-header{
     margin-right:0px!important;
     padding-left:0px!important;
     padding-right:0px!important;
     margin-left:0px!important;
 }
.sec-analytics .portfolio-content-header{
     margin-right:-15px;
     margin-left:-15px;
         padding-left:0px!important;
     padding-right:0px!important;
 }
.sec-analytics .sd--websiteName{
     background-color:black;
     padding:5px 10px;
     color:#fff;
     display:inline-block;
 }
.sec-analytics  .sd-rsults{
   color:var(--color-primary);  
   font-size:30px;
   font-weight:bold;
   margin-bottom:10px;
 }
.sec-analytics .analytics-content{
    box-sizing:border-box;
    overflow:hidden;
    box-shadow:0 5px 10px rgba(0,0,0,0.3);
    margin-bottom:60px;
    border-radius:12px;
    padding: 0 15px 20px;
}
.sec-analytics figure{
    overflow:hidden;
    border-radius:6px;
}
.sd-resultGraph{
    transition:transform 1.5s ease;
}

.sd-resultGraph:hover{
    transform:Scale(1.2);
}


/*creative section css */
.creative-card figure{
    overflow:hidden;
    margin-bottom:0px;
}
.creative-card img{
    transition:all 2s ease;
}
.creative-card img:hover{
    transform:scale(1.05);
}
.underline-center{
  position: relative;
  padding-bottom: 10px;        /* space for the underline */
  margin: 0;
}

/* The underline: fixed width 100px, starts from middle (scaleX(0)) and expands */
.underline-center::after{
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 150px;                /* underline fixed width */
  height: 4px;                 /* thickness */
  background:#ff7800;  
  border-radius: 2px;
  transform: translateX(-50%) scaleX(0); /* center horizontally, collapsed */
  transform-origin: center;    /* grow from center */
  animation: underline-expand 0.6s cubic-bezier(.2,.9,.3,1) 0.08s forwards;
}

/* Keyframes: expand from center -> full width (scaleX 0 -> 1) */
@keyframes underline-expand {
  from { transform: translateX(-50%) scaleX(0); }
  to   { transform: translateX(-50%) scaleX(1); }
}

/* Respect user preference for reduced motion */
@media (prefers-reduced-motion: reduce) {
  .underline-center::after{
    animation: none;
    transform: translateX(-50%) scaleX(1);
  }
}

:root {
    --primary-blue: #18185E;
    --accent-blue: #2B2B8F;
    --glass-bg: rgba(5, 10, 30, 0.85);
}
.overlay-disabled .page-overlay {
opacity: 0;
display: none;
}
.page-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,1);
    /*backdrop-filter: blur(15px); */
    /*-webkit-backdrop-filter: blur(15px);*/
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    color: #fff;
    transition: opacity 0.4s ease;
}


.page-overlay.hidden {
     opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
      transition: opacity .4s ease;
    pointer-events: none;
}

/* Close Button Styling */
.page-overlay-close {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 28px;
    color: rgba(255,255,255,0.6);
    cursor: pointer;
    transition: 0.3s;
}
.page-overlay-close:hover {
    color: #fff;
    transform: rotate(90deg);
}

/* Typography */
.page-overlay h2 {
    font-size: clamp(32px, 5vw, 56px); 
    font-weight: 800;
    letter-spacing: -1px;
    line-height: normal;
    margin-bottom: 15px;
    background: linear-gradient(to right, #fff, #a0a0ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.page-overlay h2>span {
    font-size: clamp(16px, 2.5vw, 28px); 
}
.page-overlay .sub-heading h3 {
    font-size: 20px;
    font-weight: 400;
    font-style: italic;
    margin-bottom: 40px;
    color: rgba(255,255,255,0.7);
    display: flex;
    align-items: center;
    text-align: center;
    width: 100%;
    gap: 20px; /* Space between the text and the lines */
}

.page-overlay .sub-heading h3::before,
.page-overlay .sub-heading h3::after {
    content: "";
    height: 2px; /* Thickness of the line */
    flex: 1;    /* Makes the lines take up available space */
}

/* The left line: fades from transparent to solid */
.page-overlay .sub-heading h3::before {
    background: linear-gradient(to left, #333, transparent);
}

/* The right line: fades from solid to transparent */
.page-overlay .sub-heading h3::after {
    background: linear-gradient(to right, #333, transparent);
}

/* Modern Button Group */
.button-group {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-modern {
    position: relative;
    padding: 18px 45px;
    border-radius: 12px; 
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255,255,255,0.1);
    overflow: hidden;
}

/* Gradients with Glow */
.page-overlay .agency { background: var(--primary-blue); box-shadow: 0 0 20px rgba(24, 24, 94, 0.4); }
.page-overlay .consultancy { background: #000; box-shadow: 0 0 20px rgba(0, 0, 0, 0.4); }
.page-overlay .courses { background: var(--accent-blue); box-shadow: 0 0 20px rgba(43, 43, 143, 0.4); }
/* Hidden by default */
/*#welcomeOverlay {*/
/*    display: none;*/
/*}*/

/* Only shown when JS explicitly allows it */
#welcomeOverlay.show {
    display: flex; /* or block */
    animation: slideUp 0.5s ease-out;
}

#welcomeOverlay.hidden {
    display: none;
}

.btn-modern:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.5);
    border-color: rgba(255,255,255,0.5);
    color:#fff;
}

.consultancy:hover{
    border:1px solid var(--primary-blue);
}


.cookie-card {
    border: 1px solid var(--color-primary);
    position: fixed;
    bottom: 24px;
    right: 24px;
    max-width: 380px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 24px;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    font-family: 'Inter', sans-serif;
}
#cookie-banner {
    display: none;
}

.cookie-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.cookie-header h3 {
    margin: 0;
    font-size: 1.1rem;
    color: var(--text-dark);
}

.cookie-text {
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--text-light);
    margin-bottom: 20px;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
}

.cookie-card button {
    flex: 1;
    justify-content: center;
    padding: 10px 16px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    font-size: 0.85rem;
}

.btn-allow {
    background-color: var(--color-primary);
    color: white;
}

.btn-allow:hover {
    color:#fff;
    transform: translateY(-2px);
}

.cookie-card .btn-decline {
    background-color: transparent;
    color: var(--text-dark);
    border: 1px solid #e5e7eb;
}

.btn-decline:hover {
    background-color: #f9fafb;
}

@media screen and (max-width:767px){
    .counter-item .counter-field{
        height:2.5rem;
    }
    .counter-section .row{
        row-gap:20px;
    }
    .counter-section span.counter,span.counter-symbol{
    font-size:2.5rem;
    line-height:2.5rem;
}
}
@media screen and (max-width:375px){
    .cookie-card {
        right:10px;
        left: 10px;
    }
}
