@import"https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&display=swap";
:root {
    --sp-grotesk: "Space Grotesk", sans-serif;
    --mont: "Montserrat", sans-serif;
    --theme-font: var(--sp-grotesk);
    --theme-bg: #0f0f0f;
    --theme-color: #ffffff;
    --white: #ffffff;
    --black: #000000;
    --primary-color: #151515;
    --secondary-color: #1b1b1b;
    --tertiary-color: #181818;
    --quaternary-color: #686868;
    --quinary-color: #f70354;
    --senary-color: #949494;
    --septenary-color: #d9d9d9;
    --octonary-color: #414141;
    --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)
}


*::-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;
    font-weight: 400;
    color: var(--theme-color);
    background-color: var(--theme-bg);
    overflow-x: clip;
    max-width: 100vw;
    min-height: 100vh
}

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(--quinary-color);
    border-radius: 5px
}

.body-active {
    height: 100vh;
    overflow: clip
}

.my-app {
    position: relative;
    width: 100vw;
    min-height: 100vh;
    overflow-x: clip
}

button {
    background-color: rgba(0, 0, 0, 0);
    border: 0px;
    outline: 0px
}

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
}

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;
    opacity: 1
}

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(--sp-grotesk);
    padding: 0px;
    margin: 0px;
    color: var(--theme-color)
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--sp-grotesk)
}

p,
th,
td,
li,
input,
textarea,
select,
label,
blockquote,
span {
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
    color: #fff;
}

.text-xl {
    font-size: 24px;
    line-height: 34px
}

.text-sm {
    font-size: 15px;
    line-height: 24px
}

.text-xs {
    font-size: 14px;
    line-height: 24px
}

a,
button {
    font-size: 16px;
    color: #fff;
    font-weight: 500;
    cursor: pointer;
    display: inline-flex;
    gap: 8px
}

a:hover,
button:hover {
    color: var(--theme-color)
}

h1,
.title-xxl {
    font-size: 55px;
    line-height: 65px
}

.light-title-xxl {
    font-size: 130px;
    line-height: 140px
}

.light-title-xl {
    font-size: 110px;
    line-height: 120px
}

.light-title-lg {
    font-size: 90px;
    line-height: 100px
}

.light-title-md {
    font-size: 60px;
    line-height: 70px
}

.light-title-sm {
    font-size: 65px;
    line-height: 75px
}

.light-title-xs {
    font-size: 40px;
    line-height: 50px
}

h2,
.title-xl {
    font-size: 45px;
    line-height: 55px
}

h3,
.title-lg {
    font-size: 30px;
    line-height: 40px
}

h4,
.title-md {
    font-size: 24px;
    line-height: 34px
}

h5,
.title-sm {
    font-size: 20px;
    line-height: 30px
}

h6,
.title-xs {
    font-size: 16px;
    line-height: 24px
}

h1 a,
h1 span,
.title-xxl a,
.title-xxl span,
h2 a,
h2 span,
.title-xl a,
.title-xl span,
h3 a,
h3 span,
.title-lg a,
.title-lg span,
h4 a,
h4 span,
.title-md a,
.title-md span,
h5 a,
h5 span,
.title-sm a,
.title-sm span,
h6 a,
h6 span,
.title-xs a,
.title-xs 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
}

span {
    display: inline-block
}

.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 12px
}

.slick-slide img {
    display: inline-block
}

.slick-list {
    margin: 0px -12px
}

.fw-9 {
    font-weight: 900 !important
}

.fw-7 {
    font-weight: 700 !important
}

.fw-6 {
    font-weight: 600
}

.fw-5 {
    font-weight: 500
}

.fw-4 {
    font-weight: 400
}

.text-primary {
    color: var(--primary-color)
}

.text-secondary {
    color: var(--secondary-color)
}

.text-tertiary {
    color: var(--tertiary-color)
}

.text-quaternary {
    color: var(--quaternary-color) !important
}

.text-quinary {
    color: var(--quinary-color)
}

.text-senary {
    color: var(--senary-color)
}

.text-septenary {
    color: var(--septenary-color)
}

.text-octonary {
    color: var(--octonary-color)
}

.bg-primary {
    background-color: var(--primary-color)
}

.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)
}

.bg-grd-one {
    background-image: linear-gradient(180deg, #262626 0%, rgba(38, 38, 38, 0.1) 100%)
}

.bg-grd-two {
    background-image: linear-gradient(90deg, #262626 0%, rgba(38, 38, 38, 0.1) 100%)
}

.gaper {
    row-gap: 24px
}

.pt-120 {
    padding-top: 120px
}

.pb-120 {
    padding-bottom: 120px
}

.pt-60 {
    padding-top: 60px
}

.section__cta {
    margin-top: 40px;
    text-align: center
}

.section__content-cta {
    margin-top: 45px
}

.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-weight: 700;
    color: var(--theme-color);
    margin-bottom: 16px;
    text-transform: capitalize
}

.section__header {
    margin-bottom: 20px;
    margin-top: -8px
}

.section__header .sub-title {
    margin-bottom: 20px;
    color: var(--quinary-color);
    font-weight: 500;
    display: block;
    text-transform: capitalize
}

.section__header--secondary {
    margin-bottom: 60px
}

.section__header--secondary h2 span {
    font-weight: 700 !important
}

.section__content {
    margin-top: -6px
}

.section__content .sub-title {
    font-weight: 500;
    margin-bottom: 20px;
    color: var(--quinary-color);
    text-transform: capitalize;
    display: block
}

.section__content .sub-title-two {
    color: #fff;
    position: relative;
    display: inline-block;
    margin-bottom: 12px;
    margin-top: -8px
}

.section__content .sub-title-two::before {
    content: "";
    position: absolute;
    bottom: -12px;
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
    border-radius: 20px
}

.section__content .title {
    margin-top: 30px;
    text-transform: capitalize;
    font-weight: 700;
    color: #fff
}

.section__content p {
    color: var(--quinary-color);
    margin-top: 24px
}

.cta-group {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap
}

.social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap
}

.social a {
    font-size: 24px
}

.social a svg,
.social a i {
    background-clip: text;
    background-image: linear-gradient(180deg, #1da1f2 0%, #00fafa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: rgba(0, 0, 0, 0)
}

.social a:nth-of-type(2) svg,
.social a:nth-of-type(2) i {
    background-image: linear-gradient(180deg, #ffa800 0%, #ae01ff 100%)
}

.social a:nth-of-type(3) svg,
.social a:nth-of-type(3) i {
    background-image: linear-gradient(211deg, #ff676a 0%, #c543d3 41.61%, #0074fd 100%)
}

.social a:nth-of-type(4) svg,
.social a:nth-of-type(4) i {
    background-image: linear-gradient(223deg, #ff004d 0%, #cf1178 100%)
}

.tw,
.fb,
.in,
.yt {
    width: 48px;
    min-width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    font-size: 20px
}

.tw i,
.fb i,
.in i,
.yt i {
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: rgba(0, 0, 0, 0);
    background-image: linear-gradient(180deg, #1da1f2 0%, #00fafa 100%)
}

.tw::before,
.fb::before,
.in::before,
.yt::before {
    content: "";
    position: absolute;
    inset: 0px;
    z-index: -1;
    border-radius: 50%
}

.tw i {
    background-image: linear-gradient(180deg, #1da1f2 0%, #00fafa 100%)
}

.tw::before {
    background: rgba(255, 255, 255, .01);
    box-shadow: 10px 10px 5px 0px rgba(255, 255, 255, .1) inset, 0px -5px 25px 0px rgba(29, 161, 242, .35) inset;
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px)
}

.in i {
    background-image: linear-gradient(180deg, #1da1f2 0%, #00fafa 100%)
}

.in::before {
    background: rgba(255, 255, 255, .01);
    box-shadow: 10px 10px 5px 0px rgba(255, 255, 255, .1) inset, 0px -5px 25px 0px rgba(174, 1, 255, .35) inset;
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px)
}

.fb i {
    background-image: linear-gradient(211deg, #ff676a 0%, #c543d3 41.61%, #0074fd 100%)
}

.fb::before {
    background: rgba(255, 255, 255, .01);
    box-shadow: 10px 10px 5px 0px rgba(255, 255, 255, .1) inset, 0px -5px 25px 0px rgba(73, 99, 237, .45) inset;
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px)
}

.yt i {
    background-image: linear-gradient(223deg, #ff004d 0%, #cf1178 100%)
}

.yt::before {
    background: rgba(255, 255, 255, .01);
    box-shadow: 10px 10px 5px 0px rgba(255, 255, 255, .1) inset, 0px -5px 25px 0px rgba(255, 0, 77, .35) inset;
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px)
}

@keyframes rotateInfinite {
    from {
        transform: rotate(0deg)
    }
    to {
        transform: rotate(360deg)
    }
}

.slide-btn-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 #414141;
    transition: var(--transition);
    background-color: rgba(0, 0, 0, 0);
    color: #414141;
    font-size: 40px;
    z-index: 2
}

.slide-btn:hover {
    color: #fff;
    background-color: var(--primary-color);
    border: 1px solid var(--primary-color)
}

@keyframes globalImageAnimation {
    0% {
        opacity: .2
    }
    100% {
        opacity: 1
    }
}

.cursor-outer {
    margin-left: -12px;
    margin-top: -12px;
    width: 30px;
    height: 30px;
    border: 1px solid var(--quinary-color);
    box-sizing: border-box;
    z-index: 10000000;
    opacity: .5;
    transition: all .14s ease-out;
    mix-blend-mode: difference
}

.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(--quinary-color);
    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
}

@keyframes animationLeft {
    0% {
        transform: translate3d(100%, 0, 0)
    }
    30% {
        transform: translate3d(100%, 0, 0)
    }
    60% {
        transform: translate3d(0, 0, 0)
    }
}

@keyframes animationRight {
    0% {
        transform: translate3d(-100%, 0, 0)
    }
    30% {
        transform: translate3d(-100%, 0, 0)
    }
    60% {
        transform: translate3d(0, 0, 0)
    }
}

.title-animation {
    gap: 6px;
    opacity: 0
}

.title-animation-active {
    opacity: 1
}

.title-animation-active div:nth-of-type(1) h2 {
    animation: 3.2s ease-out alternate both animationLeft
}

.title-animation-active div:nth-last-of-type(1) h2 {
    animation: 3.2s ease-out alternate both animationRight
}

.slide-dots .slick-dots {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start
}

.slide-dots .slick-dots button {
    width: 50px;
    height: 50px;
    background-color: rgba(0, 0, 0, 0);
    border: 1px solid #2f2f2f;
    position: relative;
    transition: var(--transition);
    border-radius: 50%;
    text-indent: -99999px !important
}

.slide-dots .slick-dots button::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    background-color: #414141;
    border-radius: 50%
}

.slide-dots .slick-dots .slick-active button {
    background-color: rgba(0, 0, 0, 0);
    border: 1px solid var(--quinary-color)
}

.slide-dots .slick-dots .slick-active button::before {
    background-color: var(--quinary-color)
}

.reveal-title {
    position: relative;
    display: inline-block;
    opacity: 0
}

.reveal-title::after {
    content: "";
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: #414141;
    position: absolute
}

.reveal-title-active {
    animation: textAppear 1s linear forwards;
    animation-delay: .7s
}

.reveal-title-active::after {
    animation: revealText 1.2s cubic-bezier(0.19, 1, 0.22, 1) forwards;
    animation-delay: .6s
}

@keyframes textAppear {
    0% {
        opacity: 0
    }
    100% {
        opacity: 1
    }
}

@keyframes revealText {
    0% {
        left: 0%;
        width: 0%
    }
    50% {
        left: 0%;
        width: 100%
    }
    100% {
        left: 100%;
        width: 0%
    }
}

@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
    }
}

.video-wrap a {
    position: relative;
    z-index: 1
}

.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%;
    opacity: .1000000015;
    background: #fff;
    z-index: -1;
    animation: wave 3s linear infinite
}

.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%;
    opacity: .1000000015;
    background: #fff;
    z-index: -2;
    animation: wave 6s linear infinite;
    animation-delay: 1s
}

.breadcrumb {
    margin-bottom: 0px;
    margin-top: 20px
}

.breadcrumb .breadcrumb-item,
.breadcrumb a {
    font-size: 16px;
    line-height: 24px;
    font-weight: 600;
    color: #686868
}

.breadcrumb .breadcrumb-item a:hover,
.breadcrumb a a:hover {
    color: var(--quinary-color)
}

.breadcrumb .breadcrumb-item+.breadcrumb-item {
    padding-left: 12px
}

.breadcrumb .breadcrumb-item+.breadcrumb-item::before {
    padding-right: 12px;
    content: ":";
    font-weight: 600;
    color: #686868
}

.breadcrumb .active {
    color: #686868
}

.zer {
    position: relative;
    z-index: -1
}

.btn {
    padding: 16px 40px;
    font-weight: 400;
    border: 1px solid var(--primary-color);
    border-radius: 10px;
    color: var(--primary-color);
    position: relative;
    overflow: hidden;
    text-transform: capitalize
}

.btn:hover {
    border: 1px solid var(--primary-color);
    color: #fff
}

.btn:focus {
    box-shadow: none;
    outline: 0px
}

.anim-btn {
    text-transform: uppercase !important;
    position: relative;
    overflow: hidden
}

.anim-btn .btn-m {
    transform: translateY(0px);
    transition: all .7s ease-in-out;
    position: absolute;
    top: 50%;
    transform: translateY(-50%)
}

.anim-btn .btn-anim {
    text-transform: capitalize
}

.anim-btn .btn-anim span {
    display: inline-block;
    min-width: .3em;
    transition: .25s cubic-bezier(0.5, -1, 0.5, 2);
    opacity: 0;
    transform: translate(0, -20px)
}

.anim-btn i {
    transition: var(--transition)
}

.anim-btn:hover {
    border-color: #fff !important
}

.anim-btn:hover .btn-m {
    transform: translateY(150%)
}

.anim-btn:hover .btn-anim span {
    opacity: 1;
    transform: translate(0, 0)
}

.anim-btn:hover i {
    color: #fff !important
}

.btn--primary {
    z-index: 1;
    color: var(--quaternary-color);
    background-image: linear-gradient(140deg, #65ff4b 0%, #46e695 100%);
    border: 0px
}

.btn--primary::before {
    content: "";
    position: absolute;
    top: 0px;
    right: 0px;
    bottom: 0px;
    width: 0px;
    height: 100%;
    background-image: linear-gradient(-140deg, #65ff4b 0%, #46e695 100%);
    transition: all .6s ease;
    z-index: -1
}

.btn--primary:hover {
    color: var(--black);
    border: 0px
}

.btn--primary:hover::before {
    width: 100%;
    left: 0px
}

.btn--secondary {
    border-radius: 12px;
    border: 1px solid #2f2f2f;
    color: var(--quinary-color);
    gap: 16px;
    display: inline-flex;
    align-items: center;
    font-weight: 700;
    padding: 12px 24px;
    background-color: rgba(0, 0, 0, 0)
}

.btn--secondary span {
    color: inherit
}

.btn--secondary i {
    font-size: 20px;
    color: #fff
}

.btn--secondary:hover {
    background-color: rgba(0, 0, 0, 0);
    border: 1px solid #2f2f2f;
    color: var(--quinary-color)
}

.btn--tertiary {
    border-radius: 100px;
    border: 1px solid #2f2f2f
}

.btn--tertiary:hover {
    border: 1px solid #2f2f2f
}

.btn--tertiary i {
    color: #fff;
    padding-right: 6px
}

.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: #fff;
    border-radius: 50%;
    overflow: hidden
}

.progress-wrap span::after {
    content: "";
    font-family: "bootstrap-icons";
    font-weight: 900;
    position: absolute;
    text-align: center;
    line-height: 34px;
    font-size: 16px;
    border-radius: 50%;
    color: #fff;
    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: "bootstrap-icons";
    font-weight: 900;
    text-align: center;
    line-height: 34px;
    font-size: 16px;
    border-radius: 50%;
    color: #fff;
    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(--quinary-color);
    stroke-width: 4;
    box-sizing: content-box;
    transition: all 200ms linear
}

.active-progress {
    opacity: 1;
    visibility: visible;
    transform: translateY(0)
}

.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(--primary-color);
    font-size: 20px;
    color: #fff
}

@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
    }
}

#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 .navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    flex-wrap: wrap
}

.primary-navbar .navbar__menu {
    flex-grow: 1
}

.primary-navbar .navbar__list {
    display: flex;
    align-items: center;
    justify-content: center
}

.primary-navbar .menu-item button:hover,
.primary-navbar .menu-item a:hover {
    color: var(--quinary-color)
}

.primary-navbar .menu-item-has-children {
    position: relative
}

.primary-navbar .menu-item-has-children:hover>.menu-item > a {
    color: var(--quinary-color)
}

.primary-navbar .menu-item-has-children:hover>.menu-item > a::after {
    transform: rotate(180deg)
}

.primary-navbar .menu-item-has-children:hover>.menu-item > a::after {
    transform: rotate(-90deg)
}

.primary-navbar .menu-item-has-children:hover>.sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0px);
    pointer-events: all
}

.primary-navbar .menu-item > a {
    position: relative;
    justify-content: space-between
}

.primary-navbar .sub-menu {
    position: absolute;
    top: 100%;
    left: 0px;
    min-width: 260px;
    max-width: 260px;
    background-color: #fff;
    opacity: 0;
    visibility: hidden;
    transform: translateY(30px);
    pointer-events: none;
    transition: var(--transition);
    box-shadow: var(--shadow);
    padding: 20px 0px;
    border-radius: 0;
    z-index: 9
}

.primary-navbar .sub-menu li:nth-last-of-type(1) a {
    border-bottom: 0px
}

.primary-navbar .sub-menu a,
.primary-navbar .sub-menu button {
    width: 100%;
    display: flex;
    padding: 16px 40px;
    color: var(--black);
    position: relative;
    border-bottom: 1px solid rgba(206, 206, 206, .4784313725)
}

.primary-navbar .sub-menu a::before,
.primary-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(--quinary-color)
}

.primary-navbar .sub-menu a:hover,
.primary-navbar .sub-menu button:hover {
    color: var(--quinary-color)
}

.primary-navbar .sub-menu a:hover::before,
.primary-navbar .sub-menu button:hover::before {
    width: 10px
}

.primary-navbar .sub-menu .menu-item-has-children:hover>.menu-item > a-sub {
    color: #1f1c2f
}

.primary-navbar .sub-menu .menu-item > a-sub::before {
    display: none
}

.primary-navbar .sub-menu__nested {
    top: 0%;
    left: 100%;
    min-width: 220px
}

.primary-navbar .sub-menu__nested::before {
    left: -5px;
    top: 17px;
    box-shadow: -2px 2px 4px rgba(0, 0, 0, .1)
}

.primary-navbar .sub-menu-n {
    display: none
}

.primary-navbar .navbar__options {
    display: flex;
    align-items: center;
    gap: 40px
}

.primary-navbar .navbar__mobile-options {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap
}

.primary-navbar .navbar__mobile-options button {
    font-size: 24px;
    color: var(--quinary-color)
}

.primary-navbar .navbar__mobile-options button:hover {
    color: var(--primary-color)
}

.primary-navbar .open-mobile-menu {
    font-size: 30px;
    color: var(--quinary-color)
}

.primary-navbar .open-mobile-menu:hover {
    color: var(--primary-color)
}

@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 stickyNavbar {
    0% {
        transform: translateY(-100%)
    }
    100% {
        transform: translateY(0px)
    }
}


.primary-navbar.tertiary--navbar,
.navbar.navbar-area {
    transition: 0.4s;
    top: 0px;
    left: 0px;
    right: 0px;
    width: 100%;
    z-index: 999;
}
.navbar-active {
    background-color: var(--black);
    background-image: none !important;
    border-bottom: 1px solid #414141;
    animation: stickyNavbar .9s ease-in-out;
    box-shadow: var(--shadow);
    position: fixed;
}
.secondary-header .primary-navbar .navbar.navbar-area.navbar-active .custom-container {
    padding: 10px 0;
}

.animated-bar {
    position: relative;
    width: 45px;
    height: 45px;
    align-items: center;
    justify-content: center;
    background-color: #0f0f0f !important;
    border: 1px solid #414141 !important;
    border-radius: 50%;
    gap: 0px
}

.animated-bar:hover {
    border: 1px solid var(--quinary-color) !important
}

.animated-bar:hover .bar-line {
    background-color: var(--quinary-color)
}

.animated-bar:hover .bar-line::before,
.animated-bar:hover .bar-line::after {
    background-color: var(--quinary-color)
}

.animated-bar .bar-line {
    background: rgba(0, 0, 0, 0);
    display: block;
    height: 0px;
    position: absolute;
    top: 49%;
    transition: background-color ease .3s, top ease .3s .3s, transform ease .3s;
    width: 17px;
}

.animated-bar .bar-line::before,
.animated-bar .bar-line::after {
    background: #fff;
    content: "";
    display: block;
    height: 2px;
    position: absolute;
    transition: background-color ease .3s, top ease .3s .3s, transform ease .3s;
    width: 18px;
}

.animated-bar .bar-line::before {
    top: -4px
}

.animated-bar .bar-line::after {
    top: 4px
}

.animated-bar-active {
    border-color: var(--quinary-color)
}

.animated-bar-active .bar-line::before {
    transform: rotate(45deg)
}

.animated-bar-active .bar-line::after {
    transform: rotate(-45deg)
}

.animated-bar-active .bar-line::before,
.animated-bar-active .bar-line::after {
    top: 0;
    transition: top ease .3s, transform ease .3s .3s;
    background-color: var(--quinary-color)
}

.secondary-header .primary-navbar {
    padding: 20px 0px
}

.secondary-header .navbar__list>li>a {
    padding: 0px 20px 20px
}

.secondary-header .navbar__list>li>button {
    padding: 0px 20px 20px
}

.secondary-header .navbar__profile a {
    width: 136px;
    min-width: 136px;
    height: 136px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1
}

.secondary-header .navbar__profile a::before {
    content: "";
    position: absolute;
    top: 10px;
    left: -10px;
    width: 100%;
    height: 100%;
    border: 2px solid #f70354;
    z-index: -1;
    border-radius: inherit
}

.secondary-header .navbar__profile a img {
    border-radius: inherit
}

.secondary-header .navbar__menu .navbar__logo {
    margin-bottom: 30px
}

.secondary-header .navbar__list {
    justify-content: flex-start
}

.tertiary--navbar {
    padding: 30px 0px
}

.tertiary--navbar .open-offcanvas-nav {
    width: 70px;
    min-width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #2d2d2d;
    position: relative
}

.tertiary--navbar .open-offcanvas-nav::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 14px;
    height: 14px;
    background-color: #fff;
    border-radius: 50%;
    transition: var(--transition)
}

.tertiary--navbar .open-offcanvas-nav:hover {
    background-color: var(--quinary-color)
}

.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__list {
    flex-direction: column
}

.offcanvas-nav .offcanvas-menu .menu-item {
    width: 100%;
    transition: var(--transition);
    margin-left: 0 !important;
    line-height: 1.2;
}

.offcanvas-nav .offcanvas-menu .menu-item a,
.offcanvas-nav .offcanvas-menu .menu-item button {
    padding: 20px 80px 20px 20px;
    line-height: 1;
    font-size: 16px;
    width: 100%;
    text-transform: uppercase;
    font-size: 24px
}

.offcanvas-nav .offcanvas-menu .menu-item a:hover,
.offcanvas-nav .offcanvas-menu .menu-item button:hover {
    color: var(--quinary-color)
}

.offcanvas-nav .offcanvas-menu .menu-item a::after,
.offcanvas-nav .offcanvas-menu .menu-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 .menu-item-has-children > a {
    position: relative
}

.offcanvas-nav .offcanvas-menu .menu-item-has-children > a::after {
    content: "+";
    font-family: "Font Awesome 6 Free";
    position: absolute;
    top: 0px;
    right: 0px;
    bottom: 0px;
    height: 100%;
    width: 60px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transform: rotate(0deg);
    font-weight: 600;
    font-size: 21px;
}

.offcanvas-nav .offcanvas-menu .menu-item-has-children:hover .menu-item > a::after {
    transform: rotate(0deg)
}

.offcanvas-nav .offcanvas-menu .menu-item-active {
    color: var(--quinary-color) !important
}

.offcanvas-nav .offcanvas-menu .menu-item-active::after {
    content: "" !important;
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 900
}

.offcanvas-nav .offcanvas-menu .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;
    display: none !important;
}
.offcanvas-nav .offcanvas-menu .menu-item.show .sub-menu {
    display: block !important;
}

.offcanvas-nav .offcanvas-menu .sub-menu::before {
    content: none
}

.offcanvas-nav .offcanvas-menu .sub-menu a,
.offcanvas-nav .offcanvas-menu .sub-menu button {
    padding: 16px 20px;
    font-size: 16px
}

.offcanvas-nav .offcanvas-menu .sub-menu a::before,
.offcanvas-nav .offcanvas-menu .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%;
    text-align: center;
    justify-content: center;
    padding: 16px 40px;
    border-radius: 30px;
    color: var(--senary-color)
}

.offcanvas-nav .offcanvas-menu .offcanvas-menu__options a:hover,
.offcanvas-nav .offcanvas-menu .offcanvas-menu__options button:hover {
    color: #fff;
    border-color: #fff
}

.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
}

.header--quaternary .btn--secondary {
    color: #fff;
    border-radius: 50px;
    transition: var(--transition)
}

.header--quaternary .btn--secondary i {
    color: inherit
}

.header--quaternary .btn--secondary:hover {
    color: var(--quinary-color);
    border-color: var(--quinary-color)
}

.header--quaternary .navbar {
    gap: 30px
}

#burger-toggle {
    position: absolute;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    opacity: 0
}

#burger-toggle:checked~.burger-menu .line::after {
    transform: translateX(0)
}

#burger-toggle:checked~.burger-menu .line:nth-child(1) {
    transform: translateY(calc(var(--burger-menu-radius) / 5)) rotate(45deg)
}

#burger-toggle:checked~.burger-menu .line:nth-child(2) {
    transform: scaleX(0)
}

#burger-toggle:checked~.burger-menu .line:nth-child(3) {
    transform: translateY(calc(var(--burger-menu-radius) / -5)) rotate(-45deg)
}

.burger-menu {
    --burger-menu-radius: 4em;
    position: relative;
    z-index: 99999999;
    display: block;
    width: var(--burger-menu-radius);
    height: var(--burger-menu-radius);
    outline: none;
    cursor: pointer
}

.burger-menu .line {
    position: absolute;
    left: 25%;
    width: 50%;
    height: 3px;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    transition: .5s
}

.burger-menu .line:nth-child(1) {
    top: 30%
}

.burger-menu .line:nth-child(2) {
    top: 50%
}

.burger-menu .line:nth-child(3) {
    top: 70%
}

.burger-menu .line::after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-color-darker);
    transform: translateX(-100%);
    transition: .25s
}

.burger-menu .line:nth-child(2)::after {
    transition-delay: .1s
}

.burger-menu .line:nth-child(3)::after {
    transition-delay: .2s
}

.burger-menu:hover .line::after {
    transform: translateX(0)
}

.menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #1a1e23;
    opacity: 0;
    overflow-x: clip;
    overflow-y: auto;
    visibility: hidden;
    transition: .3s;
    z-index: 99999
}

.menu button {
    background-color: rgba(0, 0, 0, 0);
    font-size: 36px;
    color: #fff;
    position: absolute;
    left: 40px;
    top: 40px
}

.menu button:hover {
    color: var(--quinary-color)
}

.menu .menu-nav {
    display: flex;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
    text-align: center;
    list-style-type: none
}

.menu .menu-nav-item {
    flex: 1;
    overflow: hidden
}

.menu .menu-nav-link {
    position: relative;
    display: inline-flex;
    font-size: 2rem;
    color: #fff;
    text-decoration: none;
    transform: translateY(102%)
}

.menu .menu-nav-link::after {
    position: absolute;
    content: "";
    top: 103%;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--quinary-color);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .5s
}

.menu .menu-nav-link:hover::after {
    transform: scaleX(1);
    transform-origin: left
}

.menu .gallery {
    margin-top: 60px;
    text-align: center
}

.menu .title {
    font-size: 24px;
    color: #fff;
    overflow: hidden
}

.menu .title p {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    transform: translateY(102%)
}

.menu .images {
    margin-top: 100px;
    display: flex;
    flex-wrap: wrap
}

.menu .images .image-link {
    width: 15vw;
    margin: 0 12px;
    overflow: hidden
}

.menu .images .image-link .image {
    position: relative;
    transition: .6s;
    width: 100%
}

.menu .images .image-link .image img {
    width: 100%
}

.menu .images .image-link .image::before {
    position: absolute;
    content: attr(data-label);
    top: 0;
    left: 0;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    color: #fff;
    background: rgba(0, 0, 0, .6);
    opacity: 0;
    transition: .4s
}

.menu .images .image-link:hover .image {
    transform: scale(1.2)
}

.menu .images .image-link:hover .image::before {
    opacity: 1
}

.menu .images img {
    height: 250px;
    transform: translateY(102%)
}

.menu-active {
    opacity: 1;
    visibility: visible
}

.menu-active .menu-nav-link,
.menu-active img,
.menu-active .title {
    transform: translateY(0) !important;
    transition: 1.2s .1s cubic-bezier(0.35, 0, 0.07, 1) !important
}

.menu-active .image-link:nth-child(1) img {
    transition-delay: .18s
}

.menu-active .image-link:nth-child(2) img {
    transition-delay: .26s
}

.menu-active .image-link:nth-child(3) img {
    transition-delay: .34s
}

.menu-active .image-link:nth-child(4) img {
    transition-delay: .42s
}

.banner {
    position: relative;
    overflow-x: clip !important;
    z-index: 1
}

.banner .banner__meta,
.banner .banner__content,
.banner .banner__sidebar {
    position: sticky;
    top: 140px
}

.banner .banner__inner {
    display: flex;
    align-items: flex-start;
    gap: 84px;
    justify-content: space-between;
    position: relative;
    z-index: 1
}

.banner .banner__content {
    width: 100%;
}

.banner .banner__content-single {
    border-radius: 30px;
    padding: 40px;
    border: 1px solid #242424
}

.banner .banner__meta,
.banner .banner__sidebar {
    width: 100%;
}

.banner .banner__meta-single,
.banner .banner__sidebar-single {
    border-radius: 30px;
    padding: 20px;
    border: 1px solid #242424
}

.banner .banner__meta {
    display: flex;
    flex-direction: column;
    gap: 24px
}

.banner .banner__meta .thumb {
    margin-bottom: 20px
}

.banner .banner__meta .thumb img {
    width: 100%;
    border-radius: 30px;
    min-width: 180px
}

.banner .banner__meta .content p {
    margin-bottom: 20px
}

.banner .banner__meta .content p a {
    color: #fff;
}

.banner .banner__meta .content p:nth-last-of-type(1) {
    margin-bottom: 0px
}

.banner .banner__meta .content .text-sm {
    gap: 12px
}

.banner .banner__meta hr {
    margin: 30px 0px;
    height: 1px;
    border: 0px;
    background: #262626
}

.banner .banner__meta .social {
    gap: 12px;
    justify-content: space-between
}

.banner .banner__meta .social a {
    width: 46px;
    min-width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1
}

.banner .banner__meta .social a::before {
    content: "";
    position: absolute;
    inset: 0px;
    border-radius: inherit;
    z-index: -1
}

.banner .banner__meta .banner__meta-btn a,
.banner .banner__meta .banner__meta-btn button {
    padding: 20px;
    width: 100%;
    justify-content: space-between;
    border-radius: 20px;
    border: 1px solid #242424;
    background: linear-gradient(90deg, #262626 0%, rgba(38, 38, 38, 0.1) 100%)
}
.banner .banner__meta .banner__meta-btn a:hover {
	color: #fff;
}

.banner .banner__meta .banner__meta-btn a:hover,
.banner .banner__meta .banner__meta-btn button:hover {
    border-color: #fff
}

.banner .banner__meta .banner__meta-btn a:hover i,
.banner .banner__meta .banner__meta-btn button:hover i {
    color: #fff
}

.banner .banner__meta .banner__meta-btn a i,
.banner .banner__meta .banner__meta-btn button i {
    font-size: 20px;
    color: #333;
    transition: var(--transition)
}

.banner .banner__meta .banner__meta-btn button {
    position: relative;
    overflow: hidden
}

.banner .banner__meta .banner__meta-btn button::before {
    content: "";
    position: absolute;
    inset: 0px;
    z-index: -1;
    background: linear-gradient(90deg, #262626 0%, rgba(38, 38, 38, 0.1) 100%);
    border-radius: inherit
}

.banner .banner__content {
    text-align: start
}

.banner .banner__content .banner__content-single h2 {
    margin-bottom: 44px;
    position: relative;
}

.banner .banner__content .banner__content-single h2 span {
    position: absolute !important;
    left: 0;
    bottom: 0;
    width: 200px;
}

.banner .banner__content .banner__content-single h2 span .before-image {
    position: absolute;
    top: 100%;
    left: 10%;
    right: 0px;
    width: 100%;
    height: 14px;
    background-size: contain;
    background-repeat: no-repeat
}

.banner .banner__content hr {
    margin: 40px 0px 30px;
    background: #262626
}

.banner .banner__content .cta {
    display: flex;
    align-items: center;
    gap: 16px;
    justify-content: space-between;
    flex-wrap: wrap
}

.banner .banner__content .cta .cta-single p:first-of-type {
    gap: 12px;
    margin-bottom: 6px;
		color: #fff;
}

.banner .banner__content .cta .cta-single p i {
    color: var(--quinary-color)
}

.banner .banner__content .cta a {
    padding: 10px 15px;
    width: 100%;
    justify-content: space-between;
    border-radius: 12px;
    border: 1px solid #242424;
    gap: 20px
}

.banner .banner__content .cta a i {
    font-size: 20px;
    color: #333
}

.banner .banner__content .banner__content-study__inner {
    margin-top: 30px
}

.banner .banner__content .banner__content-study__single {
    padding: 60px 0px;
    border-top: 1px solid #262626;
    position: relative
}

.banner .banner__content .banner__content-study__single:nth-last-of-type(1) {
    border-bottom: 1px solid #262626
}

.banner .banner__content .banner__content-study__single .case-study-hover {
    width: 196px;
    height: 175px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%) rotate(10deg);
    inset-inline-start: 0;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position-x: 75%;
    border-radius: 30px;
    opacity: 0;
    transition: opacity .3s, transform .7s cubic-bezier(0.23, 1, 0.32, 1);
    margin: -200px 0 0 -50px;
    overflow: hidden;
    pointer-events: none;
    z-index: 2
}

.banner .banner__content .banner__content-study__single .tag {
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap
}

.banner .banner__content .banner__content-study__single .tag a {
    padding: 2px 10px;
    border: 1px solid #262626;
    border-radius: 100px;
    gap: 12px;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: capitalize;
    color: var(--quaternary-color)
}

.banner .banner__content .banner__content-study__single .tag a:hover {
    color: #fff
}

.banner .banner__content .banner__content-study__single .tag a i {
    width: 18px;
    height: 18px;
    font-size: 18px;
    background-color: #686868;
    border-radius: 3px;
    color: var(--theme-bg)
}

.banner .banner__content .banner__content-study__single .tag a:hover i {
    background-color: var(--quinary-color)
}

.banner .banner__content .banner__content-study__single .title-lg {
    color: var(--quaternary-color);
    text-transform: capitalize
}

.banner .banner__content .banner__content-study__single .title-lg:hover {
    color: #fff
}

.banner .banner__content .banner__content-study__single .content {
    gap: 16px;
    flex-wrap: wrap
}

.banner .banner__content .banner__content-study__single .content__right a {
    color: var(--quaternary-color);
    text-transform: capitalize
}

.banner .banner__content .banner__content-study__single .content__right a:hover {
    color: #fff
}

.banner .banner__content .banner__content-study__single:hover .tag a {
    color: #fff
}

.banner .banner__content .banner__content-study__single:hover .tag a i {
    background-color: var(--quinary-color)
}

.banner .banner__content .banner__content-study__single:hover .content .title-lg a {
    color: #fff
}

.banner .banner__content .banner__content-study__single:hover .case-study-hover {
    opacity: 1
}

.banner .banner__content .banner__content-about .banner__content-about-inner {
    padding: 40px;
    border: 1px solid #242424;
    border-radius: 30px;
    margin-top: 30px
}

.banner .banner__content .banner__content-about .span-block {
    background-color: #fff;
    color: var(--quinary-color);
    padding: 0px 10px
}

.banner .banner__content .banner__content-about .title-xxl span {
    font-weight: 700 !important
}

.banner .banner__content .banner__content-about .bn-about-thumb {
    margin: 40px 0px;
    position: relative;
    overflow: hidden
}

.banner .banner__content .banner__content-about .bn-about-thumb img {
    width: 100%;
    border-radius: 30px;
    min-height: 260px
}

.banner .banner__content .banner__content-about .bn-about-thumb .yt {
    position: absolute;
    bottom: 30px;
    right: 30px;
    z-index: 1
}

.banner .banner__content .banner__content-about .bn-about__content {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: space-between
}

.banner .banner__content .banner__content-about .bn-about__content li {
    margin-bottom: 20px;
    list-style-type: disc;
    color: var(--quaternary-color);
    text-transform: capitalize
}

.banner .banner__content .banner__content-about .bn-about__content li:nth-last-of-type(1) {
    margin-bottom: 0px
}

.banner .banner__sidebar .banner__sidebar-single {
    margin-bottom: 24px
}

.banner .banner__sidebar .banner__sidebar-single:nth-last-of-type(1) {
    margin-bottom: 0px
}

.banner .banner__sidebar .banner__sidebar-single h5 {
    margin-bottom: 24px
}

.banner .banner__sidebar .banner__sidebar-special:nth-last-of-type(1) a {
    padding-bottom: 0px
}

.banner .banner__sidebar .banner__sidebar-special a {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    padding: 20px 0px 20px 16px;
    border-top: 1px solid #262626
}

.banner .banner__sidebar .banner__sidebar-special a i {
    font-size: 20px;
    color: var(--quaternary-color)
}

.banner .banner__sidebar .banner__sidebar-special a span {
    color: var(--quaternary-color);
    transition: var(--transition);
    text-transform: capitalize
}

.banner .banner__sidebar .banner__sidebar-special a:hover span,
.banner .banner__sidebar .banner__sidebar-special a:hover i {
    color: #fff
}

.banner .banner__sidebar .banner__sidebar-special a:hover .service-info span::before {
    background-color: var(--quinary-color)
}

.banner .banner__sidebar .banner__sidebar-special .service-info {
    display: flex;
    flex-direction: column;
    font-weight: 500;
    gap: 8px
}

.banner .banner__sidebar .banner__sidebar-special .service-info span:nth-of-type(1) {
    position: relative
}

.banner .banner__sidebar .banner__sidebar-special .service-info span:nth-of-type(1)::before {
    content: "";
    position: absolute;
    top: 50%;
    left: -16px;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--quaternary-color);
    transition: var(--transition)
}

.banner .banner__sidebar .banner__sidebar-experience {
    padding: 20px 0px 20px 16px;
    border-top: 1px solid #262626
}

.banner .banner__sidebar .banner__sidebar-experience:nth-last-of-type(1) {
    padding-bottom: 0px
}

.banner .banner__sidebar .banner__sidebar-experience p {
    transition: var(--transition);
    text-transform: capitalize
}

.banner .banner__sidebar .banner__sidebar-experience .time-frame {
    padding: 10px 16px;
    border-radius: 100px;
    border: 1px solid #414141;
    margin-bottom: 16px;
    display: inline-flex;
    align-items: center;
    gap: 6px
}

.banner .banner__sidebar .banner__sidebar-experience .time-frame span {
    color: var(--quaternary-color);
    line-height: 1;
    transition: var(--transition);
    text-transform: capitalize
}

.banner .banner__sidebar .banner__sidebar-experience .designation {
    position: relative;
    margin-bottom: 8px
}

.banner .banner__sidebar .banner__sidebar-experience .designation::before {
    content: "";
    position: absolute;
    top: 50%;
    left: -16px;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--quaternary-color);
    transition: var(--transition)
}

.banner .banner__sidebar .banner__sidebar-experience:hover p,
.banner .banner__sidebar .banner__sidebar-experience:hover span {
    color: #fff
}

.banner .banner__sidebar .banner__sidebar-experience:hover .designation::before {
    background-color: var(--quinary-color)
}

.banner .tag-t {
    position: absolute;
    top: 180px;
    left: 80px;
    z-index: -1;
    writing-mode: vertical-rl;
    transform: rotate(-180deg)
}

.banner .tag-t::before {
    content: "";
    position: absolute;
    bottom: 100%;
    left: 50%;
    width: 1px;
    height: 225px;
    background: #262626
}

.banner .tag-t h2 {
    font-size: 200px;
    text-transform: capitalize;
    font-weight: 500;
    color: #1a1a1a
}

.banner .banner__history {
    margin-top: 60px
}

.banner .banner__history h3 {
    margin-bottom: 40px
}

.banner .banner__history .banner__history-single {
    display: flex;
    gap: 80px;
    row-gap: 30px;
    flex-wrap: wrap;
    padding: 40px 20px;
    border-bottom: 1px solid #414141;
    position: relative;
    overflow: hidden;
    z-index: 1
}

.banner .banner__history .banner__history-single:nth-of-type(1) {
    border-top: 1px solid #414141
}

.banner .banner__history .banner__history-single::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 0%;
    left: 0px;
    right: 0px;
    top: 50%;
    transition: all .7s cubic-bezier(0.4, 0.885, 0.32, 1.275);
    background-color: var(--quinary-color);
    z-index: -1
}

.banner .banner__history .banner__history-single p {
    margin-top: 20px;
    color: var(--quaternary-color);
    transition: var(--transition)
}

.banner .banner__history .banner__history-single:hover::before {
    height: 100%;
    top: 0px;
    bottom: 0px
}

.banner .banner__history .banner__history-single:hover p {
    color: #fff
}

.banner-two .banner-two__group {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    row-gap: 30px
}

.banner-two .banner-two__content {
    padding: 50px 40px;
    border-radius: 30px;
    border: 1px solid #2f2f2f;
    background: #151515
}

.banner-two .banner-two__content h1 {
    text-transform: capitalize
}

.banner-two .banner-two__content h1 span {
    background: linear-gradient(91deg, #f70354 0%, #0074fd 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: rgba(0, 0, 0, 0)
}

.banner-two .banner-two__content hr {
    border: 0px !important;
    background-color: #2f2f2f;
    height: 1px;
    opacity: 1;
    width: 100%;
    margin: 30px 0px
}

.banner-two .banner-two__right {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap
}

.banner-two .banner-two__right a {
    width: 50px;
    min-width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #2f2f2f;
    color: #4d4d4d;
    background-image: none;
    -webkit-text-fill-color: unset;
    background-clip: unset
}

.banner-two .banner-two__right a i {
    transition: none;
    background-image: none;
    -webkit-text-fill-color: unset;
    background-clip: unset
}

.banner-two .banner-two__right a:hover {
    color: #fff;
    border-color: #f70354;
    background-color: #f70354
}

.banner-two .banner-two__sidebar {
    padding: 30px;
    border-radius: 30px;
    border: 1px solid #2f2f2f;
    background: #151515
}

.banner-two .banner-two__sidebar h4 {
    position: relative
}

.banner-two .banner-two__sidebar h4::before {
    content: "";
    position: absolute;
    top: calc(100% + 10px);
    left: 0px;
    width: 50px;
    height: 2px;
    background-color: #414141
}

.banner-two .banner-two__sidebar h4::after {
    content: "";
    position: absolute;
    top: calc(100% + 10px);
    left: calc(0% + 60px);
    width: 25px;
    height: 2px;
    background-color: #414141
}

.banner-two .skill-wrap {
    margin-top: 40px
}

.banner-two .skill-bar-title {
    display: flex;
    align-items: center;
    justify-content: space-between
}

.banner-two .skill-bar-single {
    margin-bottom: 30px
}

.banner-two .skill-bar-single:nth-last-of-type(1) {
    margin-bottom: 0px
}

.banner-two .skill-bar-single:nth-of-type(1) .skill-bar-percent {
    background: linear-gradient(90deg, #f1662b 0%, #34a9dc 100%)
}

.banner-two .skill-bar-single:nth-of-type(2) .skill-bar-percent {
    background: linear-gradient(90deg, #ffde01 0%, #ffa800 100%)
}

.banner-two .skill-bar-single:nth-of-type(3) .skill-bar-percent {
    background: linear-gradient(90deg, #03f773 0%, #4363d3 100%)
}

.banner-two .skill-bar-single:nth-of-type(4) .skill-bar-percent {
    background: linear-gradient(90deg, #08ca1b 0%, #00fafa 100%)
}

.banner-two .skill-bar-single:nth-of-type(5) .skill-bar-percent {
    background: linear-gradient(90deg, #f70354 0%, #c543d3 100%)
}

.banner-two .skill-bar-wrapper {
    margin-top: 15px
}

.banner-two .skill-bar {
    height: 2px;
    border-radius: 100px;
    background: #414141;
    position: relative
}

.banner-two .skill-bar-percent {
    position: absolute;
    top: 0px;
    left: 0px;
    bottom: 0px;
    border-radius: inherit
}

.banner-two .percent-value {
    color: var(--quaternary-color)
}

.banner-two .banner-content__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    row-gap: 24px;
    flex-wrap: wrap
}

.banner-two .banner-content__footer ul {
    display: flex;
    align-items: center;
    gap: 40px;
    row-gap: 24px;
    flex-wrap: wrap
}

.banner-two .banner-content__footer a,
.banner-two .banner-content__footer button {
    color: var(--quaternary-color);
    font-weight: 400;
    text-transform: capitalize
}

.banner-two .banner-content__footer a:hover,
.banner-two .banner-content__footer button:hover {
    color: #fff
}

.banner-three {
    position: relative
}

.banner-three .banner-three__meta {
    border-radius: 30px;
    border: 1px solid #2f2f2f;
    background: #151515;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap
}

.banner-three .banner-three__review,
.banner-three .banner-three__sidebar {
    position: sticky;
    top: 120px;
}

.banner-three .banner-three__meta-left {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap
}

.banner-three .banner-three__meta-left .thumb a {
    width: 80px;
    min-width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1
}

.banner-three .banner-three__meta-left .thumb a::before {
    content: "";
    position: absolute;
    bottom: 6px;
    right: 12px;
    width: 6px;
    height: 6px;
    background-color: #00f035;
    outline: 6px solid #151515;
    border-radius: 50%
}

.banner-three .banner-three__meta-left .thumb a img {
    width: 100%;
    height: 100%;
    border-radius: inherit
}

.banner-three .banner-three__meta-left a:hover {
    color: var(--quinary-color)
}

.banner-three .banner-three__meta-left p {
    margin-top: 12px
}

.banner-three .banner-three__meta-left p a {
    display: flex;
    align-items: center;
    gap: 16px;
    color: var(--quaternary-color);
    transition: var(--transition)
}

.banner-three .banner-three__meta-left p a:hover {
    color: var(--quinary-color)
}

.banner-three .banner-three__meta-right {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap
}

.banner-three .banner-three__meta-right .btn {
    padding: 6px 10px;
    font-size: 12px;
    color: var(--senary-color)
}

.banner-three .banner-three__meta-right .btn span {
    color: inherit
}

.banner-three .banner-three__meta-right .btn i {
    font-size: 16px;
    color: var(--quinary-color)
}

.banner-three .banner-three__meta-right .btn:hover {
    color: var(--quinary-color)
}

.banner-three .banner-three__meta-right .social {
    gap: 12px
}

.banner-three .banner-three__meta-right .social a {
    width: 46px;
    min-width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #2f2f2f;
    color: #4d4d4d;
    background-image: none;
    -webkit-text-fill-color: unset;
    background-clip: unset;
    font-size: 20px
}

.banner-three .banner-three__meta-right .social a i {
    transition: none;
    background-image: none;
    -webkit-text-fill-color: unset;
    background-clip: unset
}

.banner-three .banner-three__meta-right .social a:hover {
    color: #fff;
    border-color: #f70354;
    background-color: #f70354
}

.banner-three .banner-three__sidebar {
    padding: 30px 20px;
    border-radius: 30px;
    border: 1px solid #2f2f2f;
    background: #151515;
    margin-top: 24px
}

.banner-three .side-single {
    margin-bottom: 30px
}

.banner-three .side-single:nth-last-of-type(1) {
    margin-bottom: 0px
}

.banner-three .side-single h6 {
    margin-bottom: 20px;
    text-transform: capitalize
}

.banner-three .side-single p,
.banner-three .side-single li {
    color: var(--quaternary-color);
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: capitalize;
    font-weight: 700
}

.banner-three .side-single p:nth-last-of-type(1),
.banner-three .side-single li:nth-last-of-type(1) {
    margin-bottom: 0px
}

.banner-three .side-single p i,
.banner-three .side-single li i {
    padding-right: 8px
}

.banner-three .side-single p span,
.banner-three .side-single li span {
    font-weight: 400;
    color: inherit
}

.banner-three .side-single .text-xs {
    font-size: 12px
}

.banner-three .side-single .tags {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap
}

.banner-three .side-single .tags a {
    border-radius: 100px;
    border: 1px solid #2f2f2f;
    background: #0f0f0f;
    padding: 0px 8px;
    color: var(--senary-color);
    font-size: 12px;
    line-height: 24px;
    font-weight: 400
}

.banner-three .side-single .tags a:hover {
    color: #fff;
    border-color: #fff
}

.banner-three .banner-three__review {
    border-radius: 30px;
    border: 1px solid #2f2f2f;
    background: #151515;
    margin-top: 24px
}

.banner-three .review-about {
    padding: 30px;
    border-bottom: 1px solid #2f2f2f;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 30px;
    justify-content: space-between
}

.banner-three .review-about .review-about__left {
    max-width: 670px
}

.banner-three .review-about .intro {
    gap: 24px;
    row-gap: 12px;
    margin-bottom: 30px
}

.banner-three .review-about p {
    text-transform: capitalize
}

.banner-three .review-about .signature {
    margin-top: 30px
}

.banner-three .review-about .thumb {
    position: relative;
    overflow: hidden;
    border-radius: 100px;
    min-width: 106px
}

.banner-three .review-about .thumb .video-wrap {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%)
}

.banner-three .review-about .thumb .video-wrap a {
    width: 50px;
    min-width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    position: relative;
    z-index: 1;
    display: inline-flex;
    background: rgba(255, 255, 255, .1254901961);
    color: #fff
}

.banner-three .review-about .thumb .video-wrap a::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: calc(100% + 10px);
    height: calc(100% + 10px);
    border-radius: 50%;
    opacity: .1000000015;
    background: #fff;
    z-index: -1;
    animation: wave 3s linear infinite
}

.banner-three .feedback {
    padding: 30px 30px 0px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap
}

.banner-three .feedback img {
    max-width: 30px
}

.banner-three .single-w {
    padding: 30px
}

.banner-three .single-w hr {
    height: 1px;
    border: 0px;
    width: 100%;
    opacity: 1;
    background: #2f2f2f;
    margin: 30px 0px
}

.banner-three .review-single {
    display: flex;
    align-items: flex-end;
    gap: 24px;
    justify-content: space-between
}

.banner-three .review-single .r-left {
    max-width: 670px
}

.banner-three .review-single p:nth-of-type(1) {
    color: #d9d9d9;
    margin-top: 0px
}

.banner-three .review-single blockquote {
    margin-top: 20px
}

.banner-three .review-single q {
    color: var(--senary-color);
    text-transform: capitalize
}

.banner-three .review-single .r-right {
    min-width: 150px
}

.banner-three .review-single .r-right p {
    margin-top: 10px
}

.banner-three .review-single .r-right .stars {
    display: flex;
    align-items: center;
    gap: 4px
}

.banner-three .review-single .r-right .stars i {
    color: #ffa800;
    font-size: 12px
}

.banner-four {
    padding-top: 180px;
}

.banner-four .pt-120 {
    padding-top: 140px !important
}

.banner-four .banner-content__inner {
    display: flex;
    gap: 40px;
    align-items: center;
    justify-content: space-between
}

.banner-four .content {
    max-width: 340px
}

.banner-four .arrow {
    position: relative;
    display: block;
    width: 120px
}

.banner-four .arrow::before {
    content: "";
    position: absolute;
    left: 0px;
    right: 0px;
    height: 2px;
    width: calc(100% - 6px);
    background-color: #414141
}

.banner-four .arrow::after {
    content: "";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    right: 4px;
    top: 50%;
    transform: translateY(-48%);
    font-size: 24px;
    color: #414141
}

.banner-four form {
    flex-grow: 1
}

.banner-four .input-group {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    background-color: #fff;
    padding: 6px 24px 6px 60px;
    border-radius: 50px;
    position: relative
}

.banner-four .input-group::before {
    content: "";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    font-size: 18px;
    color: #999
}

.banner-four .input-group input {
    padding: 16px 0px;
    color: #0f0f0f;
    position: relative;
    flex-grow: 1;
    border: 0!important;
}

.banner-four .input-group input::-moz-placeholder {
    color: #999
}

.banner-four .input-group input::placeholder {
    color: #999
}

.banner-four .input-group button {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--quinary-color)
}

.banner-four .input-group button span {
    color: inherit;
    font-weight: inherit
}

.banner-four .banner-sponsor {
    max-width: 700px
}

.banner-four .banner-sponsor h6 {
    color: #7e7e7e
}

.banner-four .banner-sponsor .spon-wrap {
    margin-top: 30px
}

.banner-four .banner-sponsor .slick-center img {
    filter: brightness(0) saturate(100%) invert(99%) sepia(100%) saturate(0%) hue-rotate(312deg) brightness(108%) contrast(101%)
}

.banner-four .banner-four-inner {
    position: relative;
    z-index: 1
}

.banner-four .banner-four-inner .banner-four-thumb {
    position: absolute;
    right: 0px;
    bottom: 0px;
    z-index: -1;
    max-width: 30vw
}

.banner-five .banner-five__inner {
    padding: 100px 50px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    z-index: 1
}

.banner-five .s-t {
    padding: 8px 12px;
    background-color: #fff;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap
}

.banner-five .s-t i {
    font-size: 24px;
    color: var(--quinary-color)
}

.banner-five h1 {
    margin: 20px 0px 40px;
    color: var(--tertiary-color);
    font-weight: 500;
}

.banner-five p {
    color: var(--tertiary-color)
}

.banner-five a {
    text-transform: capitalize;
    border-color: var(--quinary-color)
}

.banner-five a i {
    color: inherit
}

.banner-five a span {
    font-weight: 700
}

.banner-five .bn-f {
    position: absolute;
    bottom: 0px;
    right: 7%;
    max-width: 30vw;
    z-index: -1
}

.banner-five .anim-btn:hover {
    border-color: var(--quinary-color) !important
}

.banner-five .anim-btn:hover i {
    color: var(--quinary-color) !important
}

.cmn-banner {
    padding-top: 240px
}

.cmn-banner .cmn-banner__content {
    text-align: center;
    margin-top: -10px
}

.cmn-banner .cmn-banner__content h2 {
    color: #fff
}

.footer .footer__intro {
    padding-bottom: 60px;
    border-bottom: 1px solid #414141;
    margin-top: -9px;
    gap: 16px
}

.footer .footer__intro h5 {
    font-weight: 500;
    text-transform: uppercase;
    color: var(--octonary-color)
}

.footer .footer__content {
    max-width: 820px;
    margin-left: auto;
    margin-right: auto
}

.footer .footer__content h2 {
    word-break: break-all;
    line-height: 1.8;
    position: relative;
    margin-top: -60px
}

.footer .footer__content h2 a {
    display: inline;
    border-bottom: 10px solid #262626;
    padding: 20px 0px
}

.footer .footer__content h2 a>div {
    display: inline !important;
    color: #fff;
}

.footer .footer__copyright {
    padding: 60px 0px 40px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center
}

.footer-two .footer-two__inner {
    border-bottom: 1px dashed #2f2f2f
}

.footer-two .meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap
}

.footer-two .meta .thumb a {
    width: 60px;
    min-width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1
}

.footer-two .meta .thumb a::before {
    content: "";
    position: absolute;
    top: 5px;
    left: -5px;
    width: 100%;
    height: 100%;
    border: 2px solid #f70354;
    z-index: -1;
    border-radius: inherit
}

.footer-two .meta .thumb a img {
    border-radius: inherit
}

.footer-two .meta h5 span {
    text-decoration: underline;
    color: #fff
}

.footer-two .meta h5 a {
    text-transform: uppercase;
    font-weight: 500
}

.footer-two .meta h5 a span {
    transition: var(--transition)
}

.footer-two .meta h5 a span:nth-of-type(1) {
    text-decoration: underline;
    color: var(--quinary-color)
}

.footer-two .meta h5 a span:nth-of-type(1):hover {
    color: var(--quinary-color)
}

.footer-two .meta h5 a span:nth-of-type(2) {
    text-decoration: underline;
    color: var(--quinary-color)
}

.footer-two .meta h5 a span:nth-of-type(2):hover {
    color: #fff
}

.footer-two .footer__copyright {
    padding: 40px 0px 40px;
    margin-top: 40px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center
}

.footer-two .footer__copyright .social a {
    width: 50px;
    min-width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #2f2f2f;
    color: #4d4d4d;
    background-image: none;
    -webkit-text-fill-color: unset;
    background-clip: unset
}

.footer-two .footer__copyright .social a i {
    transition: none;
    background-image: none;
    -webkit-text-fill-color: unset;
    background-clip: unset
}

.footer-two .footer__copyright .social a:hover {
    color: #fff;
    border-color: #f70354;
    background-color: #f70354
}

.footer-three .footer__thumb {
    border: 1px solid #2f2f2f;
    border-radius: 50%;
    position: relative;
    overflow: hidden;
    z-index: 1;
    width: 240px;
    min-width: 240px;
    height: 240px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 40px
}

.footer-three .footer__thumb::before {
    content: "";
    position: absolute;
    inset: 0px;
    background-color: var(--quinary-color);
    border-radius: inherit;
    z-index: -1;
    transition: var(--transition);
    transform: translate(-55%, 70%)
}

.footer-three .footer__thumb:hover::before {
    transform: translate(0, 0)
}

.footer-three .let {
    color: #757575
}

.footer-three .footer__copyright {
    padding: 40px 0px 40px;
    margin-top: 60px;
    border-top: 1px solid #2f2f2f
}

.footer-three .footer__copyright a {
    font-size: 16px;
    font-weight: 400
}

.footer-three .footer__copyright a:hover {
    color: var(--quinary-color)
}

.footer--four .social a {
    width: 50px;
    min-width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #2f2f2f;
    color: #4d4d4d;
    background-image: none;
    -webkit-text-fill-color: unset;
    background-clip: unset
}

.footer--four .social a i {
    transition: none;
    background-image: none;
    -webkit-text-fill-color: unset;
    background-clip: unset
}

.footer--four .social a:hover {
    color: #fff;
    border-color: #f70354;
    background-color: #f70354
}

.footer--four .footer__copyright p {
    letter-spacing: 5px
}

.footer--four .footer__copyright .gaper {
    row-gap: 60px
}

.footer--five .social a {
    width: 50px;
    min-width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #2f2f2f;
    color: #4d4d4d;
    background-image: none;
    -webkit-text-fill-color: unset;
    background-clip: unset
}

.footer--five .social a i {
    transition: none;
    background-image: none;
    -webkit-text-fill-color: unset;
    background-clip: unset
}

.footer--five .social a:hover {
    color: #fff;
    border-color: #f70354;
    background-color: #f70354
}

.footer--five .footer__five-content {
    padding-bottom: 65px;
    border-bottom: 1px solid #2f2f2f
}

.footer--five .footer__copyright p {
    letter-spacing: 5px
}

.footer--five .footer__copyright .gaper {
    row-gap: 40px
}

.footer--five .footer__five-content {
    padding-top: 65px
}

.footer--five .footer__five-content .section__content-cta {
    text-align: center
}

.footer--five .footer__five-content .section__content-cta button {
    color: #fff
}

.footer--five .footer__five-content .section__content-cta button span {
    color: inherit
}

.footer--five .footer__five-content .section__content-cta button i {
    color: var(--quinary-color)
}

.footer--five .footer__five-content .group-wrapper {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 40px
}

.footer--five .footer__five-content .group-wrapper .group-input {
    width: calc(50% - 15px);
    margin-bottom: 0px
}

.footer--five .footer__five-content .group-input {
    width: 100%;
    margin-bottom: 40px
}

.footer--five .footer__five-content input,
.footer--five .footer__five-content textarea {
    border-radius: 6px;
    background: #1b1b1b;
    padding: 30px;
    width: 100%;
    border: 0px
}

.footer--five .footer__five-content input::-moz-placeholder,
.footer--five .footer__five-content textarea::-moz-placeholder {
    color: #686868
}

.footer--five .footer__five-content input::placeholder,
.footer--five .footer__five-content textarea::placeholder {
    color: #686868
}

.footer--five .footer__five-content textarea {
    min-height: 230px
}

.footer--five .footer__five-content .subject {
    width: 100%;
    float: unset;
    border: 0px;
    height: auto;
    line-height: 28px;
    border-radius: 6px;
    background: #1b1b1b;
    padding: 30px
}

.footer--five .footer__five-content .subject .current {
    color: #686868
}

.footer--five .footer__five-content .subject::after {
    position: absolute;
    top: 50%;
    right: 20px;
    width: 10px;
    height: 10px;
    margin-top: -8px;
    border-color: #686868
}

.footer--five .footer__five-content .subject .list {
    width: 100%
}

.footer--five .footer__five-content .subject .list .option {
    color: var(--black) !important;
    padding: 10px 30px
}

.footer__intro-alt {
    padding: 60px 0px;
    border-top: 1px solid #414141
}

.img-view {
    overflow-x: clip
}

.img-view .img-view__wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    margin-bottom: 60px;
    flex-wrap: nowrap;
    overflow-x: hidden
}

.img-view .img-view__wrapper:nth-last-of-type(1) {
    margin-bottom: 0px
}

.img-view .img-view__wrapper .img-view__single {
    min-width: 690px !important
}

.img-view .img-view__wrapper .img-view__single img {
    width: 100%;
    max-height: 420px;
    min-height: 240px
}

.text-slider-wrapper {
    overflow-x: clip;
    position: relative
}

.text-slider-wrapper::before {
    content: "";
    position: absolute;
    inset: 0px;
    background: linear-gradient(79deg, #0f0f0f 0%, rgba(15, 15, 15, 0) 52.08%, #0f0f0f 100%);
    z-index: 1
}

.text-slider-wrapper .text-slider__single {
    display: flex;
    align-items: center;
    gap: 40px
}

.text-slider-wrapper .text-slider__single span {
    width: 20px;
    height: 20px;
    background-color: #fff;
    border-radius: 50%
}

.text-slider-wrapper .text-slider {
    display: flex;
    align-items: center
}

.text-slider-wrapper .text-slider .light-title-lg {
    font-weight: 500;
    text-transform: uppercase
}

.text-slider-wrapper .text-slider .slick-track {
    display: flex;
    align-items: center
}

.text-slider-wrapper .text-slider .slick-slide {
    margin: 0px 20px
}

.text-slider-wrapper .text-slider .slick-list {
    margin: 0px -20px
}

.text-slide-alt::before {
    content: none
}

.counter .title-xl {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 10px
}

.counter .title-xl span {
    line-height: inherit !important
}

.counter p {
    text-transform: capitalize
}

.counter .counter__inner {
    border-bottom: 1px dashed #2f2f2f
}

.counter .counter__single {
    border: 1px solid #2f2f2f;
    border-radius: 50%;
    position: relative;
    overflow: hidden;
    z-index: 1;
    width: 300px;
    min-width: 300px;
    height: 300px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    align-items: flex-start;
    padding-left: 80px;
    transform: scale(1.2);
    margin-bottom: 30px;
    margin-top: 30px
}

.counter .counter__single::before {
    content: "";
    position: absolute;
    inset: 0px;
    background-color: #2f2f2f;
    border-radius: inherit;
    z-index: -1;
    transition: var(--transition);
    transform: translate(-55%, 70%)
}

.counter .counter__single:hover::before {
    transform: translate(0, 0)
}

.recent {
    position: relative;
    z-index: 1;
    overflow: hidden
}

.recent::before {
    content: "";
    position: absolute;
    left: -100px;
    top: 80px;
    width: 676px;
    height: 676px;
    border-radius: 50%;
    border: 1px solid #2f2f2f;
    z-index: -1
}

.recent .recent__single {
    padding: 30px;
    border-radius: 30px;
    border: 1px solid #2f2f2f;
    background: #151515;
    margin-bottom: 30px
}

.recent .recent__single:nth-last-of-type(1) {
    margin-bottom: 0px
}

.recent .thumb {
    margin-bottom: 30px
}

.recent .thumb a {
    width: 100%
}

.recent .thumb a img {
    width: 100%;
    border-radius: 30px;
    min-height: 240px;
    max-height: 422px;
}

.recent hr {
    border: 0px !important;
    background-color: #2f2f2f;
    height: 1px;
    opacity: 1;
    margin: 30px 0px
}

.recent .content {
    display: flex;
    align-items: center;
    gap: 70px;
    row-gap: 30px
}

.recent .content h3, .title-lg {
    font-size: 24px;
    line-height: 30px;
}

.title-lg {
	font-size: 30px;
	font-weight: 500;
}

.recent .content h3 a:hover {
    color: var(--quinary-color)
}

.recent .content-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap
}

.recent .content-footer__left {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap
}

.recent .content-footer__left a {
    font-size: 14px;
    font-weight: 400;
    padding: 10px;
    line-height: 1;
    border-radius: 100px;
    border: 1px solid #414141;
    color: var(--quaternary-color)
}

.recent .content-footer__left a:hover {
    color: #fff;
    border-color: #fff
}

.recent .content-footer__right a {
    padding: 10px;
    font-weight: 400;
    color: var(--theme-bg);
    background-color: #fff;
    border-radius: 100px;
    padding: 10px;
    line-height: 1
}

.recent .content-footer__right a:hover {
    background-color: var(--quinary-color);
    color: #fff
}

.expertise .expertise__single {
    padding: 40px 20px;
    border-radius: 107px;
    border: 1px solid #2f2f2f;
    max-width: 215px;
    margin-left: auto;
    margin-right: auto
}

.expertise .expertise__single .thumb {
    margin-bottom: 30px;
    width: 90px;
    min-width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    margin-left: auto;
    margin-right: auto
}

.expertise .expertise__single h4 {
    text-transform: capitalize
}

.expertise .expertise__single i {
    font-size: 34px;
    color: #2f2f2f
}

.expertise-alt .expertise__single {
    position: relative;
    z-index: 1;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: center center;
    overflow: hidden
}

.expertise-alt .expertise__single::before {
    content: "";
    position: absolute;
    inset: 0px;
    background-color: #0f0f0f;
    z-index: -1;
    transition: var(--transition)
}

.expertise-alt .expertise__single i {
    transition: var(--transition)
}

.expertise-alt .expertise__single:hover::before {
    opacity: .6
}

.expertise-alt .expertise__single:hover i {
    color: #fff !important
}

.expertise-alt .expertise__single-active::before {
    opacity: .6
}

.expertise-alt .expertise__single-active i {
    color: #fff !important
}

.hr-text .hr-text-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    overflow-x: clip;
    margin-bottom: 30px
}

.hr-text .hr-text-wrapper:nth-last-of-type(1) {
    margin-bottom: 0px
}

.hr-text .hr-text-single-wrapper {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center
}

.hr-text .hr-t-two a {
    color: #b3b3b3
}

.hr-text .hr-t-three a {
    color: #555
}

.testimonial-two .testimonial-two__inner {
    padding: 60px;
    border-radius: 30px;
    border: 1px solid #2f2f2f;
    background: #151515;
    background-size: cover;
    background-position: center center;
    position: relative;
    overflow: hidden;
    z-index: 1
}

.testimonial-two .testimonial-two__inner .quote {
    top: 60px;
    right: 60px;
    position: absolute;
    max-width: 15vw;
    z-index: -1
}

.testimonial-two .testimonial-two-single {
    padding: 30px;
    border-radius: 30px;
    background: #1b1b1b;
    flex-wrap: wrap
}

.testimonial-two .testimonial-two-single .title-md {
    margin-top: 20px;
    margin-bottom: 30px;
    font-weight: 500
}

.testimonial-two .testimonial-two-single p {
    color: var(--senary-color)
}

.testimonial-two .testimonial-two-single hr {
    border: 0px !important;
    height: 1px;
    opacity: 1;
    background-color: #2f2f2f;
    margin: 30px 0px
}

.testimonial-two .testimonial-two-single .meta {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    row-gap: 24px
}

.testimonial-two .testimonial-two-single .thumb {
    width: 70px;
    min-width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%
}

.testimonial-two .testimonial-two-single .thumb img {
    width: 100%;
    height: 100%;
    border-radius: 50%
}

.testimonial-two .testimonial-two-single .content p:nth-of-type(1) {
    font-weight: 500;
    color: #fff;
    margin-bottom: 6px
}

.testimonial-two .testimonial-two-single .content p:nth-last-of-type(1) {
    color: var(--senary-color);
    font-weight: 400
}

.testimonial-alt .testimonial-two-single {
    max-width: 570px
}

.testimonial-alt .slide-dots .slick-dots {
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: flex-start;
    justify-content: flex-end
}

.testimonial-alt .slide-dots .slick-dots button {
    width: 50px;
    height: 50px;
    background-color: rgba(0, 0, 0, 0);
    border: 1px solid #2f2f2f;
    position: relative;
    transition: var(--transition);
    border-radius: 50%;
    text-indent: -999px
}

.testimonial-alt .slide-dots .slick-dots button::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    background-color: #414141;
    border-radius: 50%
}

.testimonial-alt .slide-dots .slick-dots .slick-active button {
    background-color: rgba(0, 0, 0, 0);
    border: 1px solid var(--quinary-color)
}

.testimonial-alt .slide-dots .slick-dots .slick-active button::before {
    background-color: var(--quinary-color)
}


.case .case__inner {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 24px
}

.case .case-single {
    padding: 60px;
    border-radius: 15px;
    border: 1px solid #2f2f2f;
    background: #151515
}

.case .case-single h4 {
    margin: 20px 0px;
    text-transform: capitalize
}

.case .case-single .subtitle {
    padding: 6px 16px;
    border-radius: 100px;
    border: 1px solid #2f2f2f;
    background: #0f0f0f;
    color: #d9d9d9;
    text-transform: capitalize
}

.case .case-single .case__content {
    max-width: 524px
}

.case .case-single .case__thumb {
    height: 325px
}
.case .case-single .case__thumb img {
    width: 100%;
    border-radius: 15px;
    height: 100%;
}

.case .section__cta {
    text-align: start
}

.case .section__cta a {
    text-transform: capitalize;
    color: #fff;
    padding: 10px 24px
}

.case .section__cta a:hover {
    background-color: var(--quinary-color);
    border-color: var(--quinary-color)
}

.process .section__header {
    margin-top: 0px
}

.process .section__header span {
    padding: 8px 16px;
    border-radius: 100px;
    border: 1px solid #2f2f2f;
    background: #0f0f0f;
    margin-bottom: 30px;
    margin-top: 0px
}

.process .process-wrap {
    position: relative;
    padding-left: 60px
}

.process .process-wrap::before {
    content: "";
    position: absolute;
    left: 18px;
    top: 0px;
    bottom: 0px;
    width: 1px;
    height: 100%;
    background-color: #414141
}

.process .process__single {
    margin-bottom: 30px
}

.process .process__single h4 {
    font-weight: 700;
    text-transform: capitalize;
    position: relative
}

.process .process__single h4::before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: calc(100% + 24px);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #414141
}

.process .process__single h4::after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: calc(100% + 36px);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--quinary-color)
}

.process .process__single p {
    margin-top: 20px;
    color: var(--senary-color)
}

.process .process__single:nth-last-of-type(1) {
    margin-bottom: 0px
}

.sponsor .sponsor__inner {
    border-radius: 15px;
    border: 1px solid #2f2f2f;
    background: #151515;
    padding: 60px 20px
}

.sponsor .section__header {
    margin-top: 0px
}

.sponsor .section__header span {
    padding: 8px 16px;
    border-radius: 100px;
    border: 1px solid #2f2f2f;
    background: #0f0f0f;
    margin-bottom: 30px;
    margin-top: 0px
}

.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
}

.h-s-f .title-xxl span {
    font-weight: 700 !important
}

.h-s-f .h-s-f-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap
}

.h-s-f .h-s-f-single {
    padding: 30px;
    border-radius: 15px;
    border: 1px solid #2f2f2f;
    background: #151515;
    max-width: 560px;
    align-self: stretch
}

.h-s-f .h-s-f-single:nth-of-type(1) {
    padding: 65px;
    position: relative
}

.h-s-f .h-s-f-single:nth-of-type(1) img {
    position: absolute;
    top: 25px;
    right: 25px;
    max-width: 30px
}

.h-s-f .h-s-f-single h4 {
    font-weight: 700;
    text-transform: capitalize
}

.h-s-f .h-s-f-single p {
    color: #949494;
    text-transform: capitalize
}

.h-s-f .h-s-f-single p:nth-of-type(1) {
    color: #d9d9d9
}

.h-s-f .h-s-f-single blockquote {
    color: #949494;
    margin: 16px 0px 24px;
    text-transform: capitalize
}

.h-s-f .h-s-f-single .rti i {
    font-size: 12px
}

.h-s-f .h-s-f-single .rti p {
    color: #949494;
    margin-top: 10px
}

.h-s-f .h-s-f-single .rti p span {
    color: #fff;
    font-weight: 700
}

.h-s-f .brt {
    max-width: 440px
}

.h-s-f .gr {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 30px
}

.h-s-f .gr span {
    font-weight: 500
}

.h-s-f .review__icons {
    display: flex;
    align-items: center;
    gap: 6px
}

.h-s-f .review__icons i {
    color: #ffa800;
    font-size: 20px
}

.project .gapert {
    row-gap: 100px
}

.project .pl-45 {
    margin-left: 45px
}

.project .pr-45 {
    margin-right: 45px
}

.project .col-12 {
    display: flex;
    flex-direction: column;
    gap: 100px
}

.project .project__single {
    overflow: hidden;
    position: relative
}

.project .project__single::before {
    content: "";
    position: absolute;
    inset: 0px;
    opacity: .8000000119;
    background: #000;
    transform: translateY(-100%);
    transition: all .6s ease-in-out
}

.project .project__single .content {
    position: absolute;
    inset: 0px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transform: translateY(100%);
    transition: all .6s ease-in-out !important;
    transition-delay: .2s !important
}

.project .project__single .content-header {
    margin-left: auto
}

.project .project__single .content-header a {
    width: 90px;
    min-width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    font-size: 34px;
    color: #0f0f0f
}

.project .project__single .content-header a i {
    transform: rotate(45deg)
}

.project .project__single .content-footer h3,
.project .project__single .content-footer p {
    text-transform: capitalize;
    color: #fff
}

.project .project__single .content-footer p {
    margin-top: 30px
}

.project .project__single img {
    width: 100%;
    min-height: 360px
}

.project .project__single:hover::before {
    transform: translateY(0px)
}

.project .project__single:hover .content {
    transform: translateY(0px)
}

.fix {
    overflow: clip !important
}

.fix-img {
    overflow-x: clip !important;
    background-color: var(--theme-bg)
}

.fix-img img {
    min-height: 360px;
    width: 100%
}

.fix-img video {
    width: 100%;
    min-height: 300px;
    -o-object-fit: cover;
    object-fit: cover;
    max-height: 800px;
    position: relative
}

.drive .drive__inner {
    padding: 40px;
    border-radius: 15px;
    border: 1px solid #2f2f2f;
    background: #151515
}

.drive .generate__content {
    padding-right: 60px;
    border-right: 1px solid #2f2f2f
}

.drive button {
    width: 100%
}

.drive .generate__content-btn {
    margin-bottom: 24px;
    cursor: pointer
}

.drive .generate__content-btn:nth-last-of-type(1) {
    margin-bottom: 0px
}

.drive .generate__content-btn .content {
    padding: 16px 30px;
    width: 100%;
    border-radius: 15px;
    border: 1px solid #2f2f2f;
    background: #151515;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    transition: var(--transition)
}

.drive .generate__content-btn .title-md {
    color: #5c5c5c;
    transition: var(--transition);
    text-transform: capitalize;
    text-align: start
}

.drive .generate__content-btn i {
    color: #5c5c5c;
    transition: var(--transition);
    font-size: 20px
}

.drive .generate__content-btn:hover .content {
    border: 1px solid #7b7b7b !important
}

.drive .generate__content-btn:hover .content .title-md,
.drive .generate__content-btn:hover .content i {
    color: #fff
}

.drive .generate__content-btn-active .content {
    border: 1px solid #7b7b7b !important
}

.drive .generate__content-btn-active .content h4,
.drive .generate__content-btn-active .content i {
    color: #fff
}

.drive .tab-content-inner {
    display: flex;
    align-items: center;
    gap: 30px;
    padding-left: 30px
}

.drive .tab-content-inner .tab-left {
    max-width: 440px
}

.drive .tab-content-inner ul {
    margin-top: 30px
}

.drive .tab-content-inner li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px
}

.drive .tab-content-inner li:nth-last-of-type(1) {
    margin-bottom: 0px
}

.drive .tab-content-inner li i {
    font-size: 12px
}

.drive .tab-content-inner img {
    min-width: 200px;
    max-width: 300px;
    width: 100%;
    border-radius: 15px
}

.language .language__slider {
    margin: -20px 0px
}

.language .slick-list {
    margin: 0px -16px
}

.language .slick-slide {
    margin-left: 16px;
    margin-right: 16px
}

.language .language__slider-single {
    max-width: 210px;
    min-width: 210px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    margin-bottom: 20px;
    position: relative;
    box-shadow: 0px 4px 58px 0px rgba(26, 85, 227, .1);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    z-index: 1
}

.language .language__slider-single::before {
    content: "";
    position: absolute;
    inset: -1px;
    z-index: -1;
    background: #222;
    border-radius: inherit;
    transition: var(--transition)
}

.language .language__slider-single a {
    text-transform: capitalize;
    padding: 30px 20px
}
.language .language__slider-single a:hover {
    color: #fff;
}

.language .language__slider-single:hover::before {
    opacity: .5
}

.language .language__slider-rtl {
    margin-top: 10px;
    margin-bottom: -20px
}

.language .language__slider-rtl .language__slider-single {
    direction: ltr
}

.note .section__header p {
    margin: 30px auto 40px;
    max-width: 930px
}

.note .note__single {
    border-radius: 20px;
    height: 100%
}

.note .note__single img {
    width: 100%;
    height: 100%;
    min-height: 260px;
    border-radius: 20px
}

.note .note__single-alt {
    padding: 119px 40px;
    background-color: #222;
    position: relative;
    z-index: 1;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center
}

.note .note__single-alt::before {
    content: "";
    position: absolute;
    z-index: -1;
    bottom: -50px;
    right: -50px;
    width: 192px;
    height: 192px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, .05);
    transition: var(--transition)
}

.note .note__single-alt h3 {
    margin-bottom: 30px;
    font-weight: 700;
    text-transform: capitalize
}

.note .note__single-alt p {
    transition: var(--transition);
    font-weight: 500
}

.note .note__single-alt .section__content-cta a {
    overflow: hidden;
    color: #fff
}

.note .note__single-alt .section__content-cta a span {
    transform: translateX(-90px);
    color: inherit;
    font-size: inherit;
    font-weight: inherit;
    transition: transform .3s ease-in-out
}

.note .note__single-alt .section__content-cta .arrow {
    position: relative;
    display: inline-block;
    width: 60px;
    font-style: normal;
    transform: translateX(-90px);
    transition: var(--transition)
}

.note .note__single-alt .section__content-cta .arrow::before {
    content: "";
    position: absolute;
    left: 0px;
    right: 0px;
    height: 2px;
    width: calc(100% - 6px);
    background-color: #fff;
    transition: var(--transition)
}

.note .note__single-alt .section__content-cta .arrow::after {
    content: "";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    right: 4px;
    top: 50%;
    transform: translateY(-48%);
    font-size: 24px;
    color: #fff;
    transition: var(--transition)
}

.note .note__single-alt:hover::before {
    bottom: 0px;
    right: 0px;
    width: 100%;
    height: 100%;
    background-color: #fff;
    border-radius: inherit
}

.note .note__single-alt:hover h3 a {
    color: #181818
}

.note .note__single-alt:hover p {
    color: #181818
}

.note .note__single-alt:hover .section__content-cta a {
    color: var(--quinary-color)
}

.note .note__single-alt:hover .section__content-cta a span {
    transform: translateX(0px)
}

.note .note__single-alt:hover .section__content-cta .arrow {
    transform: translateX(0px)
}

.note .note__single-alt:hover .section__content-cta .arrow::before {
    background-color: var(--quinary-color)
}

.note .note__single-alt:hover .section__content-cta .arrow::after {
    color: var(--quinary-color)
}

.cta-s {
    position: relative;
    overflow: hidden;
    z-index: 1
}

.cta-s .cta-bg {
    position: absolute;
    inset: 0px;
    width: 100%;
    height: 100%;
    z-index: -1
}

.cta-s .cta__content {
    display: flex;
    align-items: center;
    gap: 70px;
    row-gap: 30px;
    justify-content: space-between;
    flex-wrap: wrap;
    position: relative
}

.cta-s .cta__content p {
    max-width: 380px
}

.cta-s .cta__content a {
    gap: 24px
}

.offer .offer__single {
    padding: 20px;
    border-radius: 20px;
    border: 1px solid #414141;
    transition: var(--transition)
}

.offer .offer__single:hover {
    border-color: #fff
}

.offer .offer__single .thumb {
    margin-bottom: 30px
}

.offer .offer__single .thumb a {
    width: 100%;
    border-radius: 20px
}

.offer .offer__single .thumb a img {
    width: 100%;
    min-height: 200px;
    border-radius: 20px
}

.offer .offer__single .content h4 {
    margin-bottom: 30px
}

.offer .offer__single .content h4 a:hover {
    color: var(--quinary-color)
}

.offer .offer__single .content h4,
.offer .offer__single .content p {
    color: #fff
}

.offer .offer__single .section__cta a {
    color: #fff
}

.offer .offer__single .section__cta a span {
    color: inherit
}

.about-me .banner-two__group {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    row-gap: 30px
}

.about-me .banner-two__content {
    padding: 30px;
    border-radius: 30px;
    border: 1px solid #2f2f2f;
    background: #151515;
    height: 100%
}

.about-me .banner-two__content h1 {
    text-transform: capitalize
}

.about-me .banner-two__content h1 span {
    background: linear-gradient(91deg, #f70354 0%, #0074fd 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: rgba(0, 0, 0, 0)
}

.about-me .banner-two__content hr {
    border: 0px !important;
    background-color: #2f2f2f;
    height: 1px;
    opacity: 1;
    width: 100%;
    margin: 42px 0px
}

.about-me .banner-content__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    row-gap: 24px;
    flex-wrap: wrap
}

.about-me .banner-content__footer ul {
    display: flex;
    align-items: center;
    gap: 40px;
    row-gap: 24px;
    flex-wrap: wrap
}

.about-me .banner-content__footer a,
.about-me .banner-content__footer button {
    color: var(--quaternary-color);
    font-weight: 400;
    text-transform: capitalize
}

.about-me .banner-content__footer a:hover,
.about-me .banner-content__footer button:hover {
    color: #fff
}

.about-me .banner-two__sidebar {
    padding: 30px;
    border-radius: 30px;
    border: 1px solid #2f2f2f;
    background: #151515;
    height: 100%
}

.about-me .banner-two__sidebar h4 {
    position: relative
}

.about-me .banner-two__sidebar h4::before {
    content: "";
    position: absolute;
    top: calc(100% + 10px);
    left: 0px;
    width: 50px;
    height: 2px;
    background-color: #414141
}

.about-me .banner-two__sidebar h4::after {
    content: "";
    position: absolute;
    top: calc(100% + 10px);
    left: calc(0% + 60px);
    width: 25px;
    height: 2px;
    background-color: #414141
}

.about-me .skill-wrap {
    margin-top: 40px
}

.about-me .skill-bar-title {
    display: flex;
    align-items: center;
    justify-content: space-between
}

.about-me .skill-bar-single {
    margin-bottom: 30px
}

.about-me .skill-bar-single:nth-last-of-type(1) {
    margin-bottom: 0px
}

.about-me .skill-bar-single:nth-of-type(1) .skill-bar-percent {
    background: linear-gradient(90deg, #f1662b 0%, #34a9dc 100%)
}

.about-me .skill-bar-single:nth-of-type(2) .skill-bar-percent {
    background: linear-gradient(90deg, #ffde01 0%, #ffa800 100%)
}

.about-me .skill-bar-single:nth-of-type(3) .skill-bar-percent {
    background: linear-gradient(90deg, #03f773 0%, #4363d3 100%)
}

.about-me .skill-bar-single:nth-of-type(4) .skill-bar-percent {
    background: linear-gradient(90deg, #08ca1b 0%, #00fafa 100%)
}

.about-me .skill-bar-single:nth-of-type(5) .skill-bar-percent {
    background: linear-gradient(90deg, #f70354 0%, #c543d3 100%)
}

.about-me .skill-bar-wrapper {
    margin-top: 15px
}

.about-me .skill-bar {
    height: 2px;
    border-radius: 100px;
    background: #414141;
    position: relative
}

.about-me .skill-bar-percent {
    position: absolute;
    top: 0px;
    left: 0px;
    bottom: 0px;
    border-radius: inherit
}

.about-me .percent-value {
    color: var(--quaternary-color)
}

.about-me .banner__meta-single {
    border-radius: 30px;
    padding: 30px;
    border: 1px solid #242424
}

.about-me .banner__meta {
    display: flex;
    flex-direction: column;
    gap: 24px;
    height: 100%
}

.about-me .banner__meta .thumb {
    margin-bottom: 20px
}

.about-me .banner__meta .thumb img {
    width: 100%;
    border-radius: 30px;
    min-width: 180px;
    min-height: 260px
}

.about-me .banner__meta .content {
    margin: 30px 0px
}

.about-me .banner__meta .dert {
    gap: 16px;
    flex-wrap: wrap;
    display: flex;
    align-items: center
}

.about-me .banner__meta .social {
    gap: 12px;
    justify-content: space-between
}

.about-me .banner__meta .social a {
    width: 36px;
    min-width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #2f2f2f;
    color: #4d4d4d;
    background-image: none;
    -webkit-text-fill-color: unset;
    background-clip: unset;
    font-size: 18px
}

.about-me .banner__meta .social a i {
    transition: none;
    background-image: none;
    -webkit-text-fill-color: unset;
    background-clip: unset
}

.about-me .banner__meta .social a:hover {
    color: #fff;
    border-color: #f70354;
    background-color: #f70354
}

.about-me .typed-cursor {
    color: #686868 !important
}

.experience .section__header h2 {
    margin-bottom: 20px
}

.experience .switcher {
    display: inline-flex;
    align-items: center;
    justify-content: center
}

.experience .faq-two__switch {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 40px
}

.experience .faq-two__switch p {
    line-height: 1;
    color: #686868;
    font-weight: 700
}

.experience .faq-two__switch .cd {
    color: #fff
}

.experience .faq-two__switch input[type=checkbox] {
    height: 0;
    width: 0;
    visibility: hidden
}

.experience .faq-two__switch label {
    cursor: pointer;
    text-indent: -9999px;
    width: 78px;
    height: 34px;
    background: rgba(0, 0, 0, 0);
    display: block;
    border-radius: 100px;
    position: relative;
    border: 1px solid #2f2f2f;
    transition: .3s
}

.experience .faq-two__switch label:after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 5px;
    width: 24px;
    height: 24px;
    background-color: #fff;
    border-radius: 50%;
    transition: .3s
}

.experience .faq-two__switch input:checked+label:after {
    left: calc(100% - 29px);
    background-color: #fff
}

.experience .faq-two__switch label:active:after {
    width: 12px
}

.experience .experience__single {
    padding: 30px;
    border-radius: 30px;
    border: 1px solid #2f2f2f
}

.experience .experience__single span {
    padding: 3px 12px;
    border-radius: 100px;
    border: 1px solid #414141;
    color: #686868
}

.experience .experience__single h4 {
    margin: 20px 0px
}

.experience .experience__single p {
    margin-bottom: 20px
}

.experience .experience__single p:nth-last-of-type(1) {
    margin-bottom: 0px
}

.awards .awards__slider-single {
    padding: 40px;
    border-radius: 30px;
    border: 1px solid #242424
}

.awards .bn-about-thumb {
    margin: 0px 0px 40px;
    position: relative;
    overflow: hidden
}

.awards .bn-about-thumb img {
    width: 100%;
    border-radius: 30px;
    min-height: 260px
}

.awards .bn-about-thumb .yt {
    position: absolute;
    bottom: 30px;
    right: 30px;
    z-index: 1
}

.awards .bn-about__content {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: space-between
}

.awards .bn-about__content li {
    margin-bottom: 20px;
    list-style-type: disc;
    color: var(--quaternary-color);
    text-transform: capitalize
}

.awards .bn-about__content li:nth-last-of-type(1) {
    margin-bottom: 0px
}

.awards .slide-dots .slick-dots {
    flex-direction: row;
    justify-content: flex-end
}

.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(--quinary-color)
}

.project-sl .thumb {
    margin-bottom: 40px
}

.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: 360px;
    display: flex
}

.project-sl .content h2 a {
    writing-mode: vertical-rl;
    transform: rotate(-180deg);
    text-transform: capitalize
}

.poster img,
.poster-small img {
    width: 100%;
    min-height: 260px
}

.details-group h3 {
    margin-bottom: 30px;
    font-weight: 500
}

.details-group p {
    margin-bottom: 24px
}

.details-group p:nth-last-of-type(1) {
    margin-bottom: 0px
}

.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 Free";
    font-weight: 900;
    position: absolute;
    top: 50%;
    right: 0px;
    transform: translateY(-50%);
    color: #fff;
    font-size: 18px
}

.ux-process .service-f-single-active .toggle-service-f::before {
    content: "";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: #ff7425;
    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
}

.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;
    border-color: #fff;
    background-color: rgba(0, 0, 0, 0);
    font-size: 20px;
    color: #fff
}

.project-d .poster__slider-wrapper .slide-group button:hover {
    background-color: var(--quinary-color);
    border-color: var(--quinary-color)
}

.project-d .project-d-o__single {
    padding: 30px;
    border: 1px solid #414141;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    row-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: #ee332b
}

.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: #262626;
    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(--quinary-color);
    font-size: 56px
}

.project-d .quote-pj .cont {
    max-width: 800px
}

.project-d .quote-pj h4 {
    color: #757575
}

.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: #fff;
    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-size: 14px;
    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(--quinary-color)
}

.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: #f5f5f5;
    font-size: 18px;
    color: var(--black)
}

.blog-main .blog-main__single .content .cta a:hover {
    background-color: var(--quinary-color);
    color: #fff
}

.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(--primary-color)
}

.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(--quinary-color)
}

.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(--quinary-color)
}

.blog-main .widget__tags ul {
    display: flex;
    align-items: center;
    gap: 24px;
    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(--quinary-color)
}

.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: var(--theme-bg);
    color: #fff;
    transition: var(--transition)
}

.blog-main .pagination a:hover {
    background-color: var(--quinary-color);
    color: #fff;
    border: 1px solid var(--quinary-color)
}

.blog-main .pagination .active {
    background-color: var(--quinary-color);
    color: #fff;
    border: 1px solid var(--quinary-color)
}

.blog-main .pagination button {
    font-size: 20px;
    color: var(--theme-color)
}

.blog-main .pagination button:hover {
    color: var(--quinary-color)
}

.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(--primary-color);
    color: #fff
}

.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 i {
    background-clip: unset;
    -webkit-text-fill-color: unset;
    background-image: unset
}

.blog-details .bd-tags .tags-right a:hover {
    color: var(--quinary-color);
    border: 1px solid var(--quinary-color)
}

.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(--quinary-color)
}

.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(--quinary-color)
}

.paragraph p {
    margin-bottom: 30px
}

.paragraph p:nth-last-of-type(1) {
    margin-bottom: 0px
}

.comment-form input,
.comment-form textarea {
    border: 1px solid #414141;
    background: #101010;
    padding: 16px 20px;
    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(--quinary-color);
    color: #fff;
    text-transform: capitalize;
    border: 1px solid var(--quinary-color);
    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: #fff;
    border: 1px solid var(--quinary-color)
}

.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: 16px 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
}

.contact-m .contact-m__single {
    padding: 40px 65px;
    background-color: #1a1a1a;
    text-align: center;
    height: 100%
}

.contact-m .thumb {
    margin-bottom: 30px
}

.contact-m h4 {
    margin-bottom: 30px;
    text-transform: capitalize
}

.contact-m p {
    margin-bottom: 6px
}

.contact-m p:nth-last-of-type(1) {
    margin-bottom: 0px
}

.contact-m p a {
    color: #dadada
}

.contact-m p a:hover {
    color: var(--quinary-color)
}

.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: #1a1a1a
}

.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 #414141;
    width: 100%
}

.contact-m .contact-main__form input:focus,
.contact-m .contact-main__form textarea:focus {
    border-bottom: 2px solid #fff
}

.contact-m .contact-main__form .form-cta {
    margin-top: 40px
}

.contact-m .contact-main__form .form-cta .btn {
    border: 1px solid #414141;
    color: #fff;
    border-radius: 100px;
}

.contact-m .contact-main__form .form-cta .btn:hover {
    border: 1px 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
}

.cursor,
.cursor2,
.cursor3 {
    position: fixed;
    border-radius: 50%;
    transform: translateX(-50%) translateY(-50%);
    pointer-events: none;
    left: -100px;
    top: 50%;
    mix-blend-mode: difference
}

.cursor {
    background-color: #fff;
    height: 0;
    width: 0;
    z-index: 99999
}

.cursor2,
.cursor3 {
    height: 36px;
    width: 36px;
    z-index: 99998;
    transition: all .3s ease-out
}

.cursor2.hover,
.cursor3.hover {
    transform: scale(2) translateX(-25%) translateY(-25%);
    border: none
}

.cursor2 {
    border: 2px solid #fff;
    box-shadow: 0 0 12px rgba(255, 255, 255, .2)
}

.cursor2.hover {
    background: #fff;
    box-shadow: 0 0 0 rgba(255, 255, 255, .2)
}

.crc {
    position: relative;
    width: 100%;
    display: block;
    overflow: hidden;
    height: 100%;
    min-height: 100vh;
    padding: 120px 0px
}

.case-study-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 10;
    width: auto;
    margin: 0;
    padding: 0;
    transform: translate(-50%, -50%);
    list-style: none
}

.case-study-wrapper .case-study-name {
    margin: 40px auto;
    text-align: center
}

.case-study-wrapper .case-study-name a {
    position: relative;
    list-style: none;
    margin: 0 auto;
    display: inline-block;
    text-align: center;
    padding: 0;
    margin-top: 10px;
    margin-bottom: 10px;
    font-family: "Poppins", sans-serif;
    font-size: 4vh;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: 3px;
    color: #686868;
    text-decoration: none;
    transition: all 300ms linear;
    text-decoration: none
}

.case-study-wrapper .case-study-name a:hover {
    text-decoration: none
}

.case-study-wrapper .case-study-name.active a {
    color: #fff
}

.case-study-wrapper .case-study-name a:before {
    position: absolute;
    content: "";
    left: 50%;
    bottom: 0;
    height: 6px;
    width: 0;
    transform: translateX(-50%);
    background: linear-gradient(45deg, #f19872, #e86c9a);
    transition: all 200ms linear
}

.case-study-wrapper .case-study-name:nth-child(2) a:before {
    background: linear-gradient(45deg, #0947db, #07d89d)
}

.case-study-wrapper .case-study-name:nth-child(3) a:before {
    background: linear-gradient(45deg, #ee2d29, #f8ae2c)
}

.case-study-wrapper .case-study-name:nth-child(4) a:before {
    background: linear-gradient(45deg, #3a3d98, #6f22b9)
}

.case-study-wrapper .case-study-name.active a:before {
    width: 100%
}

.case-study-images {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    z-index: 2
}

.case-study-images li {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    list-style: none;
    transition: all 300ms linear
}

.case-study-images li .img-hero-background {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    list-style: none;
    opacity: 0;
    transform: translateY(60px);
    transition: all 300ms linear
}

.case-study-images li.show .img-hero-background {
    opacity: 1;
    transform: translateY(0)
}

.case-study-images li.show .img-hero-background span:nth-of-type(1) {
    top: 0%
}

.case-study-images li .hero-number-back {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: block;
    list-style: none;
    opacity: 0;
    font-size: 20vw;
    font-weight: 900;
    line-height: 1;
    color: rgba(0, 0, 0, 0);
    -webkit-text-stroke: 4px rgba(104, 104, 104, .3137254902);
    z-index: 1;
    transition: all 300ms linear
}

.case-study-images li .hero-number {
    position: absolute;
    bottom: 25px;
    left: 50%;
    width: 40px;
    margin-left: -70px;
    display: block;
    letter-spacing: 2px;
    text-align: center;
    list-style: none;
    opacity: 0;
    font-size: 13px;
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    line-height: 1;
    color: #fff;
    z-index: 6;
    transform: translateY(100%);
    transition: all 300ms linear
}

.case-study-images li .hero-number-fixed {
    position: absolute;
    bottom: 25px;
    left: 50%;
    margin-left: 30px;
    width: 40px;
    text-align: center;
    display: block;
    letter-spacing: 2px;
    list-style: none;
    font-size: 13px;
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    line-height: 1;
    color: #fff;
    z-index: 6;
    transition: all 300ms linear
}

.case-study-images li .hero-number-fixed:before {
    position: absolute;
    content: "";
    top: 50%;
    left: -60px;
    width: 60px;
    height: 1px;
    z-index: 1;
    background-color: rgba(255, 255, 255, .4);
    transition: all 300ms linear
}

.case-study-images li.show .hero-number {
    opacity: 1;
    transform: translateY(0)
}

.case-study-images li.show .hero-number-back {
    opacity: 1
}

.case-study-images li .img-hero-background span img {
    width: 100%;
    height: auto;
    display: block;
    transform: scale(0.6, 1.7);
    transform-origin: center top;
    transition: all 300ms ease
}

.case-study-images li.show .img-hero-background span img {
    transform: scale(1)
}

.case-study-images li:nth-child(1) .img-hero-background span {
    position: absolute;
    width: 15%;
    top: 12%;
    left: 25%;
    display: block
}

.case-study-images li:nth-child(1) .img-hero-background span:nth-child(2) {
    width: 18%;
    top: 22%;
    left: 55%
}

.case-study-images li:nth-child(1) .img-hero-background span:nth-child(3) {
    width: 13%;
    top: 55%;
    left: 75%
}

.case-study-images li:nth-child(1) .img-hero-background span:nth-child(4) {
    width: 11%;
    top: 44%;
    left: 15%
}

.case-study-images li:nth-child(2) .img-hero-background span {
    position: absolute;
    width: 13%;
    top: 7%;
    left: 15%;
    display: block
}

.case-study-images li:nth-child(2) .img-hero-background span:nth-child(2) {
    width: 14%;
    top: 55%;
    left: 29%
}

.case-study-images li:nth-child(2) .img-hero-background span:nth-child(3) {
    width: 11%;
    top: 17%;
    left: 72%
}

.case-study-images li:nth-child(2) .img-hero-background span:nth-child(4) {
    width: 13%;
    top: 54%;
    left: 67%
}

.case-study-images li:nth-child(3) .img-hero-background span {
    position: absolute;
    width: 11%;
    top: 9%;
    left: 18%;
    display: block
}

.case-study-images li:nth-child(3) .img-hero-background span:nth-child(2) {
    width: 11%;
    top: 55%;
    left: 29%
}

.case-study-images li:nth-child(3) .img-hero-background span:nth-child(3) {
    width: 12%;
    top: 11%;
    left: 62%
}

.case-study-images li:nth-child(3) .img-hero-background span:nth-child(4) {
    width: 9%;
    top: 54%;
    left: 75%
}

.case-study-images li:nth-child(4) .img-hero-background span {
    position: absolute;
    width: 15%;
    top: 12%;
    left: 25%;
    display: block
}

.case-study-images li:nth-child(4) .img-hero-background span:nth-child(2) {
    width: 12%;
    top: 22%;
    left: 55%
}

.case-study-images li:nth-child(4) .img-hero-background span:nth-child(3) {
    width: 13%;
    top: 58%;
    left: 75%
}

.case-study-images li:nth-child(4) .img-hero-background span:nth-child(4) {
    width: 11%;
    top: 59%;
    left: 20%
}

@media(max-width: 991px) {
    .case-study-images li .hero-number-back {
        font-size: 26vw
    }
}

@media(max-width: 767px) {
    .case-study-wrapper .case-study-name button {
        font-size: 26px;
        letter-spacing: 1px
    }
    .case-study-images li .hero-number-back {
        font-size: 32vw
    }
    .case-study-wrapper .case-study-name a {
        font-size: 24px;
        line-height: 34px;
        margin: 0px
    }
}

@media(max-width: 580px) {
    .case-study-images li:nth-child(1) .img-hero-background span,
    .case-study-images li:nth-child(2) .img-hero-background span,
    .case-study-images li:nth-child(3) .img-hero-background span,
    .case-study-images li:nth-child(4) .img-hero-background span {
        display: none
    }
    .case-study-images li:nth-child(1) .img-hero-background span:nth-child(2),
    .case-study-images li:nth-child(1) .img-hero-background span:nth-child(3),
    .case-study-images li:nth-child(1) .img-hero-background span:nth-child(4),
    .case-study-images li:nth-child(2) .img-hero-background span:nth-child(2),
    .case-study-images li:nth-child(2) .img-hero-background span:nth-child(3),
    .case-study-images li:nth-child(2) .img-hero-background span:nth-child(4),
    .case-study-images li:nth-child(3) .img-hero-background span:nth-child(2),
    .case-study-images li:nth-child(3) .img-hero-background span:nth-child(3),
    .case-study-images li:nth-child(3) .img-hero-background span:nth-child(4),
    .case-study-images li:nth-child(4) .img-hero-background span:nth-child(2),
    .case-study-images li:nth-child(4) .img-hero-background span:nth-child(3),
    .case-study-images li:nth-child(4) .img-hero-background span:nth-child(4) {
        display: none
    }
    .case-study-wrapper {
        position: static;
        transform: translate(0px, 0px);
        min-height: 100%;
        max-height: 100%;
        margin-bottom: 100px
    }
    .case-study-wrapper .case-study-name:nth-of-type(1) {
        margin-top: 0px
    }
    .crc {
        max-height: 100%;
        min-height: 100%;
        padding: 0px 20px
    }
}

.n-t {
    padding: 30px;
    position: relative
}

.n-t h4 {
    margin-bottom: 20px;
    text-transform: capitalize;
    line-height: 1.6
}

.n-t p {
    margin-bottom: 6px
}

.n-t p:nth-last-of-type(1) {
    color: var(--quaternary-color);
    margin-bottom: 0px
}

.n-t .n-t-w {
    margin-top: 40px
}

.n-t .nt-s {
    padding: 40px 0px;
    border-bottom: 1px solid #414141;
    width: 100%
}

.n-t .nt-s:nth-of-type(1) {
    border-top: 1px solid #414141
}

.n-t .nt-s:nth-last-of-type(1) {
    border-bottom: 0px;
    padding-bottom: 20px
}

.n-t .nt-s-i {
    max-width: 500px
}

.n-t .nt-w-right {
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: absolute;
    top: 165px;
    right: 30px;
    z-index: 9;
    background-color: #151515
}

.n-t .nt-i {
    width: 80px;
    min-width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: .2
}

.n-t .nt-i img {
    width: 100%;
    height: 100%;
    border-radius: 50%
}

.n-t .activer {
    position: relative;
    opacity: 1
}

.n-t .activer::before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: calc(100% + 15px);
    border-width: 15px;
    border-style: solid;
    border-color: rgba(0, 0, 0, 0);
    border-right: 15px solid var(--quinary-color)
}

@media only screen and (max-width: 1439.98px) {
    .banner .banner__inner {
        gap: 40px
    }
}

@media only screen and (max-width: 1399.98px) {
    .banner .banner__content-single .title-xxl {
        font-size: 45px;
        line-height: 55px
    }
    .banner-two .banner-two__group {
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start
    }
    .counter .counter__single {
        transform: scale(1);
        width: 320px;
        min-width: 320px;
        height: 320px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-left: auto;
        margin-right: auto;
        padding: 0px;
        margin-bottom: 0px;
        margin-top: 0px
    }
    .drive .generate__content {
        padding-right: 0px;
        border-right: 0px
    }
    .drive .tab-content-inner {
        padding-left: 0px
    }
    .cta-s .cta__content {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center
    }
    .cta-s .cta__content p {
        text-align: center
    }
    .ux-process .service-f-single {
        padding-right: 100px
    }
}

@media only screen and (max-width: 1199.98px) {
    p,
    th,
    td,
    li,
    input,
    textarea,
    select,
    label,
    blockquote,
    span {
        font-size: 16px;
        line-height: 26px
    }
    .text-xl {
        font-size: 20px;
        line-height: 30px
    }
    a,
    button {
        font-size: 16px;
        line-height: 24px
    }
    h1,
    .title-xxl {
        font-size: 40px;
        line-height: 50px
    }
    .light-title-xxl {
        font-size: 110px;
        line-height: 120px
    }
    .light-title-xl {
        font-size: 90px;
        line-height: 100px
    }
    .light-title-lg {
        font-size: 60px;
        line-height: 70px
    }
    .light-title-md {
        font-size: 40px;
        line-height: 50px
    }
    .light-title-sm {
        font-size: 40px;
        line-height: 50px
    }
    .light-title-xs {
        font-size: 30px;
        line-height: 40px
    }
    h2,
    .title-xl {
        font-size: 30px;
        line-height: 40px
    }
    h3,
    .title-lg {
        font-size: 24px;
        line-height: 34px
    }
    .primary-navbar {
        padding: 25px 0px
    }
    .primary-navbar .navbar__menu {
        display: none
    }
    .secondary-header .primary-navbar {
        padding: 25px 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-left: 40px;
        justify-content: space-between
    }
    .mobile-menu .close-mobile-menu {
        font-size: 30px;
        width: 60px;
        align-items: center;
        justify-content: center
    }
    .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 .navbar__list {
        flex-direction: column;
        border: 0px
    }
    .mobile-menu .navbar__list>li>a,
    .mobile-menu .navbar__list>li button {
        border-bottom: 1px solid #414141
    }
    .mobile-menu .navbar__list>li:nth-of-type(1) {
        border-top: 1px solid #414141
    }
    .mobile-menu .menu-item {
        width: 100%;
        transition: var(--transition)
    }
    .mobile-menu .menu-item a,
    .mobile-menu .menu-item button {
        color: #fff;
        padding: 20px 80px 20px 40px;
        line-height: 1;
        width: 100%
    }
    .mobile-menu .menu-item a:hover,
    .mobile-menu .menu-item button:hover {
        color: var(--quinary-color)
    }
    .mobile-menu .menu-item a::after,
    .mobile-menu .menu-item button::after {
        transition: none
    }
    .mobile-menu .nav-fade {
        transform: translateY(30px);
        opacity: 0;
        transition: all .7s ease-in-out !important
    }
    .mobile-menu .menu-item-has-children .menu-item > a {
        position: relative
    }
    .mobile-menu .menu-item-has-children .menu-item > a::after {
        content: "+";
        font-family: "Font Awesome 6 Free";
        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;
        font-weight: 900
    }
    .mobile-menu .menu-item-has-children:hover .menu-item > a::after {
        transform: rotate(0deg)
    }
    .mobile-menu .menu-item-has-children:hover>.menu-item > a-sub {
        color: var(--quinary-color) !important
    }
    .mobile-menu .menu-item-active {
        color: var(--quinary-color) !important
    }
    .mobile-menu .menu-item-active::after {
        content: "" !important;
        font-family: "Font Awesome 6 Free" !important;
        font-weight: 900
    }
    .mobile-menu .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 .sub-menu::before {
        content: none
    }
    .mobile-menu .sub-menu a,
    .mobile-menu .sub-menu button {
        color: #fff;
        padding: 20px 40px;
        border-bottom: 1px solid #414141
    }
    .mobile-menu .sub-menu a::before,
    .mobile-menu .sub-menu button::before {
        content: none
    }
    .mobile-menu .sub-menu li:nth-last-of-type(1) a,
    .mobile-menu .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 .mobile-menu__social a i {
        transition: none
    }
    .mobile-menu__backdrop {
        background-color: rgba(65, 65, 65, .6745098039);
        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
    }
    .banner .banner__inner {
        flex-wrap: wrap
    }
    .banner .banner__content {
        order: 3;
        max-width: 100%
    }
    .banner-four .banner-four-inner {
        padding-bottom: 0px !important
    }
    .banner-four .banner-four-inner .banner-four-thumb {
        bottom: unset;
        top: 150px;
        min-width: 150px
    }
    .banner-four .banner-content__inner {
        flex-wrap: wrap
    }
    .banner-four .banner-content__inner .arrow-wrapper {
        display: none
    }
    .cmn-banner {
        padding-top: 200px
    }
    .img-view {
        overflow-x: clip
    }
    .img-view .img-view__wrapper {
        gap: 20px
    }
    .img-view .img-view__wrapper .img-view__single {
        min-width: 380px !important
    }
    .img-view .img-view__wrapper .img-view__single img {
        max-height: 240px
    }
    .h-s-f .h-s-f-single {
        width: calc(50% - 12px);
        max-width: 100%
    }
    .project-sl .thumb {
        margin-bottom: 30px
    }
    .project-sl .content h2 {
        height: 260px
    }
    .ux-process .body-cn {
        max-width: 480px
    }
    .project-d .quote-pj {
        padding-right: 0px
    }
    .project-d .quote-pj .secondary-text {
        font-size: 20px
    }
    .project-d .quote-pj .cont {
        max-width: 600px
    }
    .footer .footer__content {
        max-width: 680px
    }
    .footer .footer__content h2 {
        margin-top: -48px
    }
    .blog-main {
        position: relative
    }
    .blog-main .blog-main__sidebar,
    .blog-main .blog-main__content {
        position: static;
        top: 0px
    }
    .banner .banner__meta,
    .banner .banner__content,
    .banner .banner__sidebar {
        position: static;
        top: 0px
    }
}

@media only screen and (max-width: 991.98px) {
    .text-xl {
        font-size: 18px
    }
    h1,
    .title-xxl {
        font-size: 30px;
        line-height: 40px
    }
    .light-title-xxl {
        font-size: 55px;
        line-height: 65px
    }
    .light-title-xl {
        font-size: 60px;
        line-height: 70px
    }
    .light-title-lg {
        font-size: 40px;
        line-height: 50px
    }
    .light-title-md {
        font-size: 30px;
        line-height: 40px
    }
    .light-title-sm {
        font-size: 30px;
        line-height: 40px
    }
    .light-title-xs {
        font-size: 24px;
        line-height: 34px
    }
    h2,
    .title-xl {
        font-size: 24px;
        line-height: 34px
    }
    h3,
    .title-lg {
        font-size: 20px;
        line-height: 30px
    }
    h4,
    .title-md {
        font-size: 20px;
        line-height: 30px
    }
    h5,
    .title-sm {
        font-size: 18px;
        line-height: 28px
    }
    .unset {
        max-width: 100%
    }
    .pt-120 {
        padding-top: 100px
    }
    .pb-120 {
        padding-bottom: 100px
    }
    .section__cta {
        margin-top: 40px
    }
    .section__content-cta {
        margin-top: 40px
    }
    .progress-wrap {
        bottom: 12px;
        right: 12px;
        width: 40px;
        height: 40px
    }
    .progress-wrap span {
        width: 30px;
        height: 30px
    }
    .banner .banner__content-single .title-xxl {
        font-size: 26px;
        line-height: 36px
    }
    .banner-three .banner-three__sidebar,
    .banner-three .banner-three__review {
        height: auto
    }
    .banner-three .banner-three__review {
        margin-top: 0px
    }
    .banner-four {
        padding-top: 140px
    }
    .banner-four .pt-120 {
        padding-top: 60px !important
    }
    .banner-four .banner-four-inner {
        padding-bottom: 0px !important
    }
    .banner-four .banner-four-inner .banner-four-thumb {
        bottom: unset;
        top: 100px;
        min-width: 150px
    }
    .banner-five h1 {
        margin-bottom: 24px
    }
    .banner-five p {
        max-width: 320px
    }
    .banner-five .bn-f {
        max-width: 25vw
    }
    .cmn-banner .title-xl {
        font-size: 30px;
        line-height: 40px
    }
    .testimonial-two .slide-dots .slick-dots {
        flex-direction: row
    }
    .testimonial-alt .slide-dots .slick-dots {
        align-items: center;
        justify-content: center
    }
    .testimonial-alt .slide-dots .slick-dots button {
        width: 36px;
        height: 36px
    }
    .h-s-f .h-s-f-single {
        width: calc(50% - 12px)
    }
    .project .gapert {
        row-gap: 60px
    }
    .project .project__single .content-header a {
        width: 60px;
        min-width: 60px;
        height: 60px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 24px
    }
    .project .project__single .content {
        padding: 30px 20px
    }
    .project .pl-45 {
        margin-left: 0px
    }
    .project .pr-45 {
        margin-right: 0px
    }
    .project .col-12 {
        display: flex;
        flex-direction: column;
        gap: 60px
    }
    .drive .tab-content-inner {
        flex-wrap: wrap
    }
    .drive .tab-content-inner .tab-left {
        max-width: 100%
    }
    .awards .slide-dots .slick-dots {
        justify-content: center
    }
    .awards .slide-dots .slick-dots button {
        width: 36px;
        min-width: 36px;
        height: 36px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center
    }
    .project-sl {
        overflow-x: auto
    }
    .project-sl .project-sl__single {
        padding: 0px 15px;
        max-width: 280px;
        min-width: 280px;
        width: 100%
    }
    .project-sl .content h2 {
        height: 200px
    }
    .ux-process .service-f-single {
        flex-direction: column;
        align-items: flex-start;
        padding-right: 60px
    }
    .ux-process .body-cn {
        max-width: 100%
    }
    .footer .footer__content {
        max-width: 450px
    }
    .footer .footer__content h2 {
        margin-top: -44px;
        line-height: 2.2
    }
    .banner-three .banner-three__review,
    .banner-three .banner-three__sidebar {
        position: static;
        top: 0px
    }
}

@media only screen and (max-width: 767.98px) {
    .tertiary--navbar .open-offcanvas-nav {
        width: 50px;
        min-width: 50px;
        height: 50px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center
    }
    .offcanvas-nav .offcanvas-menu .offcanvas-menu__wrapper {
        padding: 60px 0px
    }
    .offcanvas-nav .offcanvas-menu .menu-item a,
    .offcanvas-nav .offcanvas-menu .menu-item button {
        font-size: 16px
    }
    .offcanvas-nav .offcanvas-menu .sub-menu a,
    .offcanvas-nav .offcanvas-menu .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
    }
    .banner .banner__meta,
    .banner .banner__sidebar {
        max-width: 100%
    }
    .banner-three .review-about,
    .banner-three .review-single {
        flex-wrap: wrap
    }
    .img-view .img-view__wrapper .img-view__single {
        min-width: 280px !important
    }
    .img-view .img-view__wrapper .img-view__single img {
        max-height: 180px
    }
    .counter .counter__single {
        transform: scale(1);
        width: 290px;
        min-width: 290px;
        height: 290px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-left: auto;
        margin-right: auto;
        padding: 0px
    }
    .case .case-single {
        padding: 60px 20px
    }
    .h-s-f .h-s-f-single {
        width: 100%;
        max-width: 100%
    }
    .drive .drive__inner {
        padding: 40px 20px
    }
    .drive .generate__content-btn .content {
        padding: 16px 20px
    }
    .testimonial-alt .testimonial-two-single {
        max-width: 300px
    }
    .project-d .poster__slider-wrapper .slide-group {
        justify-content: center;
        transform: translate(0px);
        position: static;
        margin-top: 40px;
        gap: 24px
    }
    .n-t .nt-w-right {
        display: none
    }
    .n-t .nt-s {
        padding: 40px 0px
    }
    .footer--five .footer__five-content .group-wrapper {
        flex-direction: column
    }
    .footer--five .footer__five-content .group-wrapper .group-input {
        width: 100%
    }
}

@media only screen and (max-width: 575.98px) {
    .light-title-xxl {
        font-size: 34px;
        line-height: 50px
    }
    .light-title-xl {
        font-size: 30px;
        line-height: 40px
    }
    .light-title-lg {
        font-size: 24px;
        line-height: 34px
    }
    .light-title-md {
        font-size: 24px;
        line-height: 34px
    }
    .light-title-sm {
        font-size: 24px;
        line-height: 34px
    }
    .light-title-xs {
        font-size: 20px;
        line-height: 30px
    }
    .cursor-inner,
    .cursor-outer {
        display: none
    }
    .primary-navbar .navbar {
        gap: 20px
    }
    .primary-navbar .navbar__logo {
        max-width: 110px
    }
    .primary-navbar .navbar__mobile-options {
        gap: 16px
    }
    .primary-navbar .navbar__mobile-options button {
        font-size: 18px
    }
    .primary-navbar .navbar__options {
        gap: 16px
    }
    .mobile-menu {
        max-width: 320px
    }
    .mobile-menu .mobile-menu__wrapper {
        max-width: 320px
    }
    .mobile-menu .mobile-menu__options,
    .mobile-menu .mobile-menu__social {
        padding: 0px 24px
    }
    .mobile-menu .mobile-menu__header {
        padding-left: 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 .menu-item a,
    .mobile-menu .menu-item button {
        padding: 20px 70px 20px 24px
    }
    .offcanvas-nav .offcanvas-menu::before {
        content: none
    }
    .banner .banner__content-single {
        padding: 40px 20px
    }
    .banner .banner__content .banner__content-about .banner__content-about-inner {
        padding: 40px 20px
    }
    .banner-two .banner-two__content {
        padding: 40px 20px
    }
    .banner-two .banner-two__sidebar {
        padding: 30px 20px
    }
    .banner-two .banner-two__right .social {
        gap: 16px
    }
    .banner-two .banner-two__right .social a {
        width: 40px;
        min-width: 40px;
        height: 40px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 18px
    }
    .banner-three .banner-three__meta {
        padding: 30px 20px
    }
    .banner-three .review-about,
    .banner-three .feedback,
    .banner-three .single-w {
        padding: 30px 20px
    }
    .banner-four .input-group {
        padding-left: 24px
    }
    .banner-four .input-group::before {
        content: none
    }
    .banner-five .banner-five__inner {
        padding: 60px 20px
    }
    .banner-five .s-t {
        padding: 20px;
        flex-direction: column;
        align-items: flex-start
    }
    .banner-five h1 {
        font-size: 20px;
        max-width: 360px
    }
    .text-slider-wrapper .text-slider .slick-list {
        margin: 0px -12px
    }
    .text-slider-wrapper .text-slider .slick-slide {
        margin: 0px 12px
    }
    .text-slider-wrapper .text-slider .text-slider__single {
        gap: 24px
    }
    .text-slider-wrapper .text-slider .text-slider__single span {
        width: 10px;
        height: 10px
    }
    .recent .recent__single {
        padding: 30px 20px
    }
    .recent .recent__single .content {
        flex-wrap: wrap
    }
    .testimonial-two .testimonial-two__inner {
        padding: 40px 20px
    }
    .testimonial-two .testimonial-two-single {
        padding: 30px 20px
    }
    .testimonial-two .slide-dots .slick-dots {
        flex-direction: row
    }
    .process .process-wrap {
        padding-left: 0px
    }
    .process .process-wrap::before {
        content: none
    }
    .process .process__single h4::after,
    .process .process__single h4::before {
        content: none
    }
    .h-s-f .h-s-f-single {
        padding: 30px 20px
    }
    .note .note__single-alt {
        padding: 80px 20px
    }
    .about-me .banner-two__content,
    .about-me .banner__meta-single,
    .about-me .banner-two__sidebar {
        padding: 30px 20px
    }
    .awards .awards__slider-single {
        padding: 30px 20px
    }
    .experience .experience__single {
        padding: 30px 20px
    }
    .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 20px
    }
    .contact-m .contact-main__form .group-wrapper {
        flex-direction: column
    }
    .contact-m .contact-main__form .group-wrapper .group-input {
        width: 100%
    }
    .footer .footer__content {
        max-width: 225px
    }
    .footer .footer__content h2 {
        margin-top: -36px;
        line-height: 3.2
    }
}

@media only screen and (max-width: 424.98px) {
    .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: 1599px) {
    .container {
        max-width: 1440px
    }
}

/*# sourceMappingURL=main.min.css.map */

.admin-bar .secondary-header .primary-navbar .logo-wrapper {
    margin-bottom: -6px;
}
.banner-content__paragraph p {
    color: #fff;
}
.banner-two .skill-bar-title p {
    margin-bottom: 0;
    color: #fff;
}

.pt-45 {
    padding-top: 45px;
}

.bn-about__content-right ul {
    padding-left: 0;
}
.bn-about__content-right ul li {
    font-size: 16px;
    margin-bottom: 3px;
}
.title-xxl,
.title-sm,
.title-md,
.title-xl {
	font-weight: 500;
}
.counter .counter__single p.title-sm {
	font-weight: 400;
}
.base-color {
    color: var(--quaternary-color);
}

.navbar__options .btn--tertiary {
    padding: 16px 35px;
}

.progress-wrap span:before,
.progress-wrap span:after {
    color: #181818;
}

.navbar-area .custom-container .navbar-collapse .navbar-nav > li.menu-item-has-children > a {
    position: relative;
    padding-right: 15px;
}
.navbar-area .custom-container .navbar-collapse .navbar-nav > li.menu-item-has-children > a::after {
    font-family: "bootstrap-icons";
    font-weight: 900;
    content: "\F282";
    border: none;
    transition: transform 0.3s ease-in-out;
    font-size: 13px;
    margin-left: 5px;
    position: absolute;
    top: 1px;
}
.navbar-area .custom-container .navbar-collapse .navbar-nav > li.menu-item-has-children:hover > a::after {
    transform: rotate(180deg);
}