/*CSS Table Of Content Ends Here*/

@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&amp;display=swap");
@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&amp;display=swap");
:root {
    --body: #fff;
    --black: #000;
    --white: #fff;
    --theme: #6A47ED;
    --theme2: #C6F806;
    --header: #17012C;
    --text: #504E4E;
    --border: #E5E5E5;
    --bg: #F6F3FE;
    --box-shadow: 0px 4px 25px 0px rgba(0, 0, 0, 0.06);
}

.logogo {
    height: 90px !important;
}

/* Animated Title Border */

.animate-border {
    position: relative;
    display: block;
    width: 115px;
    height: 3px;
    background: #ffee08;
}

.animate-border.white:after {
    position: absolute;
    content: "";
    width: 35px;
    height: 3px;
    left: 0;
    bottom: 0;
    border-left: 10px solid #18185e;
    border-right: 10px solid #18185e;
    -webkit-animation: animborder 2s linear infinite;
    animation: animborder 2s linear infinite;
}

.animate-border:after {
    position: absolute;
    content: "";
    width: 35px;
    height: 3px;
    left: 0;
    bottom: 0;
    border-left: 10px solid #18185e;
    border-right: 10px solid #18185e;
    -webkit-animation: animborder 2s linear infinite;
    animation: animborder 2s linear infinite;
}

.animate-border.border-white:after {
    border-color: #fff;
}

.animate-border.border-yellow:after {
    border-color: #F5B02E;
}

.animate-border.border-orange:after {
    border-right-color: #fec658;
    border-left-color: #fec658;
}

.animate-border.border-ash:after {
    border-right-color: #EEF0EF;
    border-left-color: #EEF0EF;
}

.animate-border.border-offwhite:after {
    border-right-color: #F7F9F8;
    border-left-color: #F7F9F8;
}

.animate-border.border-black:after {
    border-right-color: #151414;
    border-left-color: #151414;
}

.animate-border.border-green:after {
    border-right-color: #28BBA1;
    border-left-color: #28BBA1;
}

@-webkit-keyframes animborder {
    0% {
        -webkit-transform: translateX(0px);
        transform: translateX(0px);
    }
    100% {
        -webkit-transform: translateX(113px);
        transform: translateX(113px);
    }
}

@keyframes animborder {
    0% {
        -webkit-transform: translateX(0px);
        transform: translateX(0px);
    }
    100% {
        -webkit-transform: translateX(113px);
        transform: translateX(113px);
    }
}

.h3,
h3 {
    font-size: 25px;
}

#header-sticky {
    background: #fff;
}

.main-button {
    position: relative;
    display: flex;
    align-items: center;
}

.main-button .theme-btn {
    position: relative;
    z-index: 2;
    display: inline-block;
    border: none;
    text-transform: uppercase;
    text-align: center;
    background-color: #4c96d7;
    color: var(--white);
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
    padding: 19.5px 35px;
    border-radius: 30px;
}

@media (max-width: 575px) {
    .main-button .theme-btn {
        padding: 18px 30px;
        font-size: 14px;
    }
}

.main-button .arrow-btn {
    width: 51px;
    height: 51px;
    line-height: 51px;
    text-align: center;
    background: #4c96d7;;
    color: var(--white);
    border-radius: 50%;
    display: inline-block;
    transition: all 0.4s ease-in-out;
}

.main-button .arrow-btn:hover {
    background: var(--header);
    color: var(--white);
}

.main-button:hover .theme-btn,
.main-button:hover .arrow-btn {
    background-color: var(--header);
}

.link-btn {
    color: var(--header);
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    display: inline-block;
}

.link-btn i {
    margin-left: 10px;
}

.link-btn:hover {
    color: var(--theme);
}

/* --------------------------------------------
    Template Default Fonts & Fonts Styles
 ---------------------------------------------- */

body {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 30px;
    color: var(--text);
    background-color: var(--white);
    padding: 0;
    margin: 0;
    overflow-x: hidden;
}

ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

button {
    border: none;
    background-color: transparent;
    padding: 0;
}

input:focus {
    color: var(--text);
    outline: none;
}

input {
    color: var(--text);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Plus Jakarta Sans", sans-serif;
    margin: 0px;
    padding: 0;
    color: var(--header);
    text-transform: capitalize;
    transition: all 0.4s ease-in-out;
}

h1 {
    font-size: 90px;
    font-weight: 800;
    line-height: 125%;
}

@media (max-width: 991px) {
    h1 {
        font-size: 50px;
    }
}

@media (max-width: 767px) {
    h1 {
        font-size: 42px;
    }
}

@media (max-width: 575px) {
    h1 {
        font-size: 34px;
    }
}

h2 {
    font-size: 48px;
    font-weight: 800;
}

@media (max-width: 1199px) {
    h2 {
        font-size: 42px;
    }
}

@media (max-width: 767px) {
    h2 {
        font-size: 36px;
    }
}

@media (max-width: 575px) {
    h2 {
        font-size: 28px;
    }
}

h3 {
    font-size: 24px;
    font-weight: 700;
    line-height: 133%;
}

@media (max-width: 575px) {
    h3 {
        font-size: 20px;
    }
}

h4 {
    font-size: 25px;
    font-weight: 700;
}

h5 {
    font-size: 20px;
    font-weight: 800;
}

h6 {
    font-size: 16px;
    font-weight: 600;
    line-height: 145%;
}

a {
    text-decoration: none;
    outline: none !important;
    cursor: pointer;
    color: var(--header);
    transition: all 0.4s ease-in-out;
}

p {
    margin: 0px;
    transition: all 0.4s ease-in-out;
}

span {
    margin: 0px;
    transition: all 0.4s ease-in-out;
}

.about-wrapper {
    margin-top: 155px;
}

.client-slider .brand-img img {
    border: 6px solid #000000;
}

.ads-certificate-container .ads-certificate {
    border: 12px ridge #c27f28;
    margin-bottom: 1.5rem;
}

.ads-certificate,
.ads-certificate img {
    height: auto;
    width: 100%;
}

.box-partner .brand-img {
    width: 13%;
}

.box-partner .brand-img img {
    border: 6px solid #000000;
}

.box-partner {
    display: flex;
    width: 100%;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 1899px) {
    .about-wrapper {
        margin-top: 0;
    }
}

.about-wrapper .about-image {
    position: relative;
    text-align: center;
    z-index: 2;
}

@media (max-width: 575px) {
    .about-wrapper .about-image {
        max-width: 400px;
    }
    .about-wrapper .about-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.about-wrapper .about-image .bg-shape {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
}

@media (max-width: 575px) {
    .about-wrapper .about-image .bg-shape img {
        width: 100%;
        height: 100%;
    }
}

.about-wrapper .about-image .grap-shape {
    position: absolute;
    bottom: 40px;
    left: 35px;
}

@media (max-width: 575px) {
    .about-wrapper .about-image .grap-shape {
        display: none;
    }
}

.about-wrapper .about-image .box-shape {
    position: absolute;
    right: 25px;
    top: 32%;
}

@media (max-width: 575px) {
    .about-wrapper .about-image .box-shape {
        display: none;
    }
}

.about-wrapper .about-image .emoji-shape {
    position: absolute;
    top: 20%;
    left: 164px;
    animation: bounce-x 7s infinite linear;
}

@media (max-width: 575px) {
    .about-wrapper .about-image .emoji-shape {
        display: none;
    }
}

.about-wrapper .about-content {
    margin-left: 10px;
}

.about-wrapper .about-content .circle-progress-bar-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    margin-top: 50px;
    flex-wrap: wrap;
    /*margin-bottom: 30px;*/
}

@media (max-width: 1399px) {
    .about-wrapper .about-content .circle-progress-bar-wrapper {
        gap: 30px;
    }
}

@media (max-width: 991px) {
    .about-wrapper .about-content .circle-progress-bar-wrapper {
        margin-top: 40px;
        gap: 70px;
    }
}

@media (max-width: 991px) {
    .about-wrapper .about-content .circle-progress-bar-wrapper {
        gap: 20px;
    }
}

@media (max-width: 575px) {
    .about-wrapper .about-content .circle-progress-bar-wrapper {
        margin-top: 30px;
        flex-wrap: wrap;
        gap: 10px;
    }
}

.about-wrapper .about-content .circle-progress-bar-wrapper .single-circle-bar {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-wrapper .about-content .circle-progress-bar-wrapper .single-circle-bar span {
    font-size: 16px;
    line-height: 1;
    font-weight: 700;
}

.about-wrapper .about-content .circle-progress-bar-wrapper .single-circle-bar .content h6 {
    display: block;
    margin-bottom: 0;
    font-weight: 700;
    font-size: 18px;
    line-height: 135%;
}

@media (max-width: 575px) {
    .about-wrapper .about-content .circle-progress-bar-wrapper .single-circle-bar .content br {
        display: block;
    }
}

.about-wrapper .about-content .circle-progress-bar-wrapper .single-circle-bar .circle-bar {
    position: relative;
    height: 120px;
    width: 120px;
    display: flex;
    justify-content: center;
    margin: 0 auto;
}

.about-wrapper .about-content .circle-progress-bar-wrapper .single-circle-bar .circle-bar div {
    position: absolute;
    height: 100px;
    width: 100px;
    border-radius: 50%;
}

.about-wrapper .about-content .circle-progress-bar-wrapper .single-circle-bar .circle-bar div span {
    position: absolute;
    font-size: 20px;
    line-height: 92px;
    height: 90px;
    width: 90px;
    left: 5px;
    top: 5px;
    font-weight: 600;
    text-align: center;
    border-radius: 50%;
    background-color: var(--bg);
    color: var(--header);
}

.about-wrapper .about-content .circle-progress-bar-wrapper .single-circle-bar .circle-bar .background {
    background-color: #DFE2FF !important;
}

.about-wrapper .about-content .circle-progress-bar-wrapper .single-circle-bar .circle-bar .rotate {
    clip: rect(0 50px 100px 0);
    /*background-color: var(--theme) !important;*/
}

.about-wrapper .about-content .circle-progress-bar-wrapper .single-circle-bar .circle-bar .left {
    clip: rect(0 50px 100px 0);
    opacity: 1;
    /*background-color: var(--bg) !important;*/
}

.about-wrapper .about-content .circle-progress-bar-wrapper .single-circle-bar .circle-bar .right {
    clip: rect(0 50px 100px 0);
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
    opacity: 0;
    /*background-color: var(--theme) !important;*/
}

.circle-bar.websitedesinging .right {
    background-color: rgb(137 202 0) !important;
}

.circle-bar.websitedesinging .rotate {
    background-color: rgb(137 202 0) !important;
}

.circle-bar.seo .right {
    background-color: rgb(38 126 181) !important;
}

.circle-bar.seo .rotate {
    background-color: rgb(38 126 181) !important;
}

.circle-bar.websitedevelopment .right {
    background-color: #4c96d7 !important;
}

.circle-bar.websitedevelopment .rotate {
    background-color: #4c96d7 !important;
}

.about-section {
    background-repeat: no-repeat;
    position: relative;
}

@media (max-width: 1899px) {
    /*.about-section {*/
    /*  background-color: var(--bg);*/
    /*}*/
}

.about-section .brand-wrapper {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    z-index: 9;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 1899px) {
    .about-section .brand-wrapper {
        max-width: initial;
        position: static;
        transform: initial;
        margin-bottom: 10px;
    }
}

@media (max-width: 1199px) {
    .about-section .brand-wrapper {
        margin-bottom: 10px;
    }
}

@media (max-width: 991px) {
    .about-section .brand-wrapper {
        margin-bottom: 10px;
    }
}

.brand-title span {
    display: inline-block;
    position: relative;
}

.brand-title span::before,
.brand-title span::after {
    content: "";
    display: inline-block;
    width: 35px;
    height: 35px;
    background-size: cover;
    background-repeat: no-repeat;
    vertical-align: middle;
}

.brand-title span::before {
    position: absolute;
    top: 50%;
    left: -20%;
    transform: translateY(-50%);
    background-image: url(../../asset/img/trophy.png);
    /* Replace with your image path */
}

.brand-title span::after {
    position: absolute;
    top: 50%;
    right: -20%;
    transform: translateY(-50%);
    background-image: url(../../asset/img/trophy.png);
    /* Replace with your image path */
}

.about-section .brand-wrapper .brand-title {
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    width: 25%;
}

.about-section .brand-wrapper .brand-title::before {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: -125%;
    content: "";
    height: 3.5px;
    width: 350px;
    background: linear-gradient(90deg, #fede61, orange, red);
}

@media (max-width: 1399px) {
    .about-section .brand-wrapper .brand-title::before {
        display: none;
    }
}

.about-section .brand-wrapper .brand-title::after {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -125%;
    content: "";
    height: 3.5px;
    width: 350px;
    background: linear-gradient(90deg, red, orange, #fede61);
}

@media (max-width: 1399px) {
    .about-section .brand-wrapper .brand-title::after {
        display: none;
    }
}

.about-section .left-shape {
    position: absolute;
    bottom: 0;
    left: 0;
}

@media (max-width: 1399px) {
    .about-section .left-shape {
        display: none;
    }
    .about-section-2 .container {
        max-width: 1300px !important;
    }
}

.about-wrapper-2 .about-image {
    position: relative;
    float: left;
    width: 44%;
    margin-right: 50px;
    margin-bottom: 40px;
    display: block;
    z-index: 9;
}

@media (max-width: 1199px) {
    .about-wrapper-2 .about-image {
        margin-left: 0;
    }
}

/* .about-wrapper-2 .about-image .img-custom-anim-left {
    border-radius: 300px 300px 0 0;
} */

@media (max-width: 1399px) {
    .about-wrapper-2 .about-image img {
        width: 100%;
        height: 100%;
    }
}

.about-wrapper-2 .about-image .box-shape {
    position: absolute;
    top: 21%;
    left: -2%;
}

@media (max-width: 991px) {
    .about-wrapper-2 .about-image .box-shape {
        display: block;
    }
}

.about-wrapper-2 .about-image .gap-shape {
    position: absolute;
    right: -13%;
    bottom: -113px;
}

@media (max-width: 1399px) {
    .about-wrapper-2 .about-image .gap-shape {
        right: -20%;
    }
}

.about-wrapper-2 .about-image .circle-button {
    position: absolute;
    right: 0;
    top: 5%;
    width: 122px;
    height: 122px;
    line-height: 122px;
    background-color: #FD8128;
    border-radius: 50%;
    text-align: center;
    font-size: 24px;
    color: var(--white);
    z-index: 99;
}

.about-wrapper-2 .about-image .circle-button::before {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 20px solid rgba(255, 255, 255, 0.2);
    width: 148px;
    height: 148px;
    content: "";
    border-radius: 50%;
    z-index: 1;
}

.about-wrapper-2 .about-image .circle-button .text-circle {
    position: absolute;
    top: 1%;
    left: 8%;
    /* animation: cir36 10s linear infinite; */
    z-index: 9;
    height: 149px;
}

.about-wrapper-2 .about-content {
    position: relative;
    z-index: 3;
}

@media (max-width: 1399px) {
    .about-wrapper-2 .about-content {
        margin-left: 40px;
    }
}

@media (max-width: 1199px) {
    .about-wrapper-2 .about-content {
        margin-left: 0;
    }
}

.about-wrapper-2 .about-content .icon-items-area {
    margin-top: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
}

@media (max-width: 1199px) {
    .about-wrapper-2 .about-content .icon-items-area {
        flex-wrap: wrap;
        gap: 25px;
    }
}

.about-wrapper-2 .about-content .icon-items-area .icon-items {
    max-width: 270px;
}

.about-wrapper-2 .about-content .icon-items-area .icon-items .icon {
    border-radius: 8px;
    border: 1px solid #D4DCFF;
    background: #F3F7FB;
    text-align: center;
    width: 70px;
    height: 70px;
    line-height: 58px;
    text-align: center;
    display: inline-block;
    font-size: 40px;
    color: var(--theme);
}

.about-wrapper-2 .about-content .icon-items-area .icon-items .content {
    margin-top: 20px;
}

.about-wrapper-2 .about-content .icon-items-area .icon-items .content h3 {
    margin-bottom: 10px;
}

.about-wrapper-2 .about-content .icon-items-area .icon-items .content p {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-weight: 400;
    line-height: 175%;
}

.about-wrapper-2 .about-content .about-button {
    display: flex;
    align-items: center;
    gap: 30px;
}

@media (max-width: 575px) {
    .about-wrapper-2 .about-content .about-button {
        flex-wrap: wrap;
        gap: 20px;
    }
}

.about-wrapper-2 .about-content .about-button .link-btn {
    font-size: 16px;
    font-weight: 700;
    display: inline-block;
    text-decoration: underline;
}

.about-section-2 {
    position: relative;
}

.about-section-2 .bg-shape {
    position: absolute;
    bottom: 0;
    left: 0;
}

.about-section-2 .right-shape {
    position: absolute;
    bottom: 0;
    right: 40px;
}

@media (max-width: 1600px) {
    .about-section-2 .right-shape {
        display: none;
    }
}

@-webkit-keyframes rippleOne {
    70% {
        -webkit-box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
        box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
    }
    100% {
        -webkit-box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
        box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
    }
}

@keyframes rippleOne {
    70% {
        -webkit-box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
        box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
    }
    100% {
        -webkit-box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
        box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
    }
}

/*@keyframes cir36 {*/

/*  100% {*/

/*    transform: rotate(360deg);*/

/*  }*/

/*}*/

@keyframes rounded {
    50% {
        transform: rotate(15deg);
    }
}

@keyframes up-down {
    0% {
        transform: translateY(10px);
    }
    100% {
        transform: translateY(-10px);
    }
}

@-webkit-keyframes spinner {
    to {
        -webkit-transform: rotateZ(360deg);
        transform: rotateZ(360deg);
    }
}

@keyframes spinner {
    to {
        -webkit-transform: rotateZ(360deg);
        transform: rotateZ(360deg);
    }
}

@-webkit-keyframes letters-loading {
    0%,
    75%,
    100% {
        opacity: 0;
        transform: rotateY(-90deg);
    }
    25%,
    50% {
        opacity: 1;
        transform: rotateY(0deg);
    }
}

@keyframes letters-loading {
    0%,
    75%,
    100% {
        opacity: 0;
        transform: rotateY(-90deg);
    }
    25%,
    50% {
        opacity: 1;
        transform: rotateY(0deg);
    }
}

@keyframes loaderspin {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes tpswing {
    0% {
        -webkit-transform: rotate(20deg);
        -ms-transform: rotate(20deg);
        transform: rotate(20deg);
    }
    100% {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }
}

@keyframes width {
    0% {
        width: 0%;
    }
    100% {
        width: 100%;
    }
}

@-webkit-keyframes width {
    0% {
        width: 0%;
    }
    100% {
        width: 100%;
    }
}

@-webkit-keyframes loaderspin {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes loaderpulse {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.2);
    }
}

@keyframes rounded {
    50% {
        transform: rotate(20deg);
    }
}

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

.float-bob-y {
    -webkit-animation-name: float-bob-y;
    animation-name: float-bob-y;
    -webkit-animation-duration: 3s;
    animation-duration: 3s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
}

@-webkit-keyframes float-bob-y {
    0% {
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px);
    }
    50% {
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px);
    }
    100% {
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px);
    }
}

@keyframes float-bob-y {
    0% {
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px);
    }
    50% {
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px);
    }
    100% {
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px);
    }
}

.float-bob-x {
    -webkit-animation-name: float-bob-x;
    animation-name: float-bob-x;
    -webkit-animation-duration: 3s;
    animation-duration: 3s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
}

@-webkit-keyframes float-bob-x {
    0% {
        -webkit-transform: translateX(0px);
        transform: translateX(30px);
    }
    50% {
        -webkit-transform: translateX(10px);
        transform: translateX(10px);
    }
    100% {
        -webkit-transform: translateX(30px);
        transform: translateX(30px);
    }
}

@keyframes float-bob-x {
    0% {
        -webkit-transform: translateX(30px);
        transform: translateX(30px);
    }
    50% {
        -webkit-transform: translateX(10px);
        transform: translateX(10px);
    }
    100% {
        -webkit-transform: translateX(30px);
        transform: translateX(30px);
    }
}

@keyframes bounce-x {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    50% {
        -webkit-transform: translateX(30px);
        transform: translateX(30px);
    }
    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

.bounce-x {
    -webkit-animation: bounce-x 7s infinite linear;
    animation: bounce-x 7s infinite linear;
}

@keyframes criss-cross-left {
    0% {
        left: -20px;
    }
    50% {
        left: 50%;
        width: 20px;
        height: 20px;
    }
    100% {
        left: 50%;
        width: 375px;
        height: 375px;
    }
}

@keyframes criss-cross-right {
    0% {
        right: -20px;
    }
    50% {
        right: 50%;
        width: 20px;
        height: 20px;
    }
    100% {
        right: 50%;
        width: 375px;
        height: 375px;
    }
}

@keyframes rotated2 {
    0% {
        transform: rotate(0);
    }
    100% {
        transform: rotate(-360deg);
    }
}

@keyframes wave {
    0% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(-25%);
    }
    100% {
        transform: translateX(-50%);
    }
}

/*img-animation**********************/

.img-custom-anim-left {
    animation: img-anim-left 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1) 0.4s;
    opacity: 0;
}

@keyframes img-anim-left {
    0% {
        transform: translateX(-5%);
        clip-path: inset(0 100% 0 0);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        clip-path: inset(0 0 0 0);
        opacity: 1;
    }
}

.img-custom-anim-right {
    animation: img-anim-right 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1) 0.4s;
    opacity: 0;
}

@keyframes img-anim-right {
    0% {
        transform: translateX(5%);
        clip-path: inset(0 0 0 100%);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        clip-path: inset(0 0 0 0);
        opacity: 1;
    }
}

.img-custom-anim-left {
    animation: img-anim-left 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1) 0.4s;
    opacity: 0;
}

@keyframes img-anim-left {
    0% {
        transform: translateX(-5%);
        clip-path: inset(0 100% 0 0);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        clip-path: inset(0 0 0 0);
        opacity: 1;
    }
}

.img-custom-anim-top {
    animation: img-anim-top 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1);
    opacity: 0;
}

@keyframes img-anim-top {
    0% {
        transform: translateY(-5%);
        clip-path: inset(0 0 100% 0);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        clip-path: inset(0 0 0 0);
        opacity: 1;
    }
}

.img-custom-anim-bottom {
    animation: img-anim-bottom 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1);
    opacity: 0;
}

@keyframes moving {
    0% {
        transform: translatey(0px);
    }
    20% {
        transform: translateX(-50px);
    }
    50% {
        transform: translatey(-40px);
    }
    100% {
        transform: translatey(0px);
    }
}

@keyframes translateX2 {
    0% {
        -webkit-transform: translateX(-30px);
        -moz-transform: translateX(-30px);
        -ms-transform: translateX(-30px);
        -o-transform: translateX(-30px);
        transform: translateX(-30px);
    }
    100% {
        -webkit-transform: translatXY(20px);
        -moz-transform: translateX(20px);
        -ms-transform: translateX(20px);
        -o-transform: translateX(20px);
        transform: translateX(20px);
    }
}

@keyframes translateY2 {
    0% {
        -webkit-transform: translateY(-30px);
        -moz-transform: translateY(-30px);
        -ms-transform: translateY(-30px);
        -o-transform: translateY(-30px);
        transform: translateY(-30px);
    }
    100% {
        -webkit-transform: translateY(20px);
        -moz-transform: translateY(20px);
        -ms-transform: translateY(20px);
        -o-transform: translateY(20px);
        transform: translateY(20px);
    }
}

.brand-section-22 {
    display: none;
}

@media (max-width: 1899px) {
    .brand-section-22 {
        display: block;
        margin-top: 115px;
    }
}

@media (max-width: 1199px) {
    .brand-section-22 {
        margin-top: 95px;
    }
}

@media (max-width: 991px) {
    .brand-section-22 {
        margin-top: 75px;
        margin-bottom: -5px;
    }
}

.brand-section-22 .brand-title {
    text-align: center;
    margin-bottom: 30px;
    position: relative;
}

.brand-section-22 .brand-title::before {
    position: absolute;
    top: 15px;
    left: 5%;
    content: "";
    height: 1px;
    width: 480px;
    background-color: #E5E5E5;
}

@media (max-width: 1399px) {
    .brand-section-22 .brand-title::before {
        display: none;
    }
}

.brand-section-22 .brand-title::after {
    position: absolute;
    top: 15px;
    right: 5%;
    content: "";
    height: 1px;
    width: 480px;
    background-color: #E5E5E5;
}

@media (max-width: 1399px) {
    .brand-section-22 .brand-title::after {
        display: none;
    }
}

.contact-section {
    position: relative;
}

.contact-section::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    background-color: var(--theme);
    right: 50px;
    left: 50px;
    border-radius: 30px;
    width: calc(100% - 95px);
}

@media (max-width: 1899px) {
    .contact-section::before {
        width: calc(100% - 0px);
        left: 0;
    }
}

/*.contact-section::after {*/

/*  position: absolute;*/

/*  top: 0;*/

/*  left: 0;*/

/*  right: 0;*/

/*  bottom: 0;*/

/*  width: 100%;*/

/*  height: 100%;*/

/*  content: "";*/

/*  background-color: var(--bg);*/

/*  top: 50%;*/

/*  z-index: -1;*/

/*}*/

.contact-wrapper {
    background-color: var(--white);
    /*padding: 60px;*/
    border-radius: 30px;
    position: relative;
    z-index: 9;
    margin-top: 30px;
}

/*@media (max-width: 1199px) {*/

/*  .contact-wrapper {*/

/*    padding: 50px;*/

/*  }*/

/*}*/

/*@media (max-width: 767px) {*/

/*  .contact-wrapper {*/

/*    padding: 40px;*/

/*  }*/

/*}*/

/*@media (max-width: 575px) {*/

/*  .contact-wrapper {*/

/*    padding: 30px;*/

/*  }*/

/*}*/

.contact-wrapper .contact-form-area {
    border-radius: 16px;
    border: 1px solid var(--border);
    padding: 40px;
}

@media (max-width: 575px) {
    .contact-wrapper .contact-form-area {
        padding: 30px;
    }
}

.contact-wrapper .contact-form-area h3 {
    font-size: 30px;
    margin-bottom: 25px;
}

.contact-wrapper .contact-form-area .form-clt input,
.contact-wrapper .contact-form-area .form-clt textarea {
    outline: none;
    border: none;
    width: 100%;
    border-radius: 8px;
    border: 1px solid var(--border);
    padding: 20px 20px;
    line-height: 1;
    color: var(--text);
}

.contact-wrapper .contact-form-area .form-clt textarea {
    padding-bottom: 110px;
}

.contact-wrapper .contact-form-area .form-clt .single-select {
    width: 100%;
    height: 60px;
    padding: 15px 20px;
    border-radius: 8px;
    border: 1px solid var(--border);
    color: var(--text);
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
}

.contact-wrapper .contact-form-area .theme-btn {
    position: relative;
    z-index: 2;
    display: inline-block;
    border: none;
    text-transform: capitalize;
    text-align: center;
    background-color: var(--theme);
    color: var(--white);
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
    padding: 19.5px 35px;
    border-radius: 8px;
    width: 100%;
    transition: all 0.4s ease-in-out;
}

@media (max-width: 575px) {
    .contact-wrapper .contact-form-area .theme-btn {
        padding: 18px 30px;
        font-size: 14px;
    }
}

.contact-wrapper .contact-form-area .theme-btn:hover {
    background-color: var(--header);
}

.contact-wrapper .contact-map {
    position: relative;
}

.contact-wrapper .contact-map iframe {
    width: 100%;
    height: 630px;
    border-radius: 20px;
}

.contact-wrapper .contact-info-wrapper {
    position: absolute;
    top: 0;
    left: 90px;
    right: 90px;
    max-width: 430px;
    margin: 0 auto;
    padding: 30px;
    background: var(--theme);
    border-radius: 0px 0px 8px 8px;
}

@media (max-width: 767px) {
    .contact-wrapper .contact-info-wrapper {
        left: 20px;
        right: 20px;
    }
}

.contact-wrapper .contact-info-wrapper .shape-left {
    position: absolute;
    top: 0;
    left: -28px;
}

.contact-wrapper .contact-info-wrapper .shape-right {
    position: absolute;
    top: 0;
    right: -28px;
}

.contact-wrapper .contact-info-wrapper h2 {
    color: var(--white);
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 30px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-wrapper .contact-info-wrapper .contact-info {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

@media (max-width: 767px) {
    .contact-wrapper .contact-info-wrapper .contact-info {
        flex-wrap: wrap;
    }
}

.contact-wrapper .contact-info-wrapper .contact-info .content h3 {
    color: var(--white);
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 28px;
}

.contact-wrapper .contact-info-wrapper .contact-info .content h3 a {
    color: var(--white);
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 28px;
}

.contact-wrapper .contact-info-wrapper .contact-info .icon {
    display: inline-block;
    width: 38px;
    height: 38px;
    line-height: 38px;
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
}

.contact-wrapper-2 .map-items .googpemap iframe {
    width: 100%;
    border-radius: 16px;
    height: 400px;
}

@media (max-width: 767px) {
    .contact-wrapper-2 .map-items .googpemap iframe {
        height: 550px;
    }
}

@media (max-width: 575px) {
    .contact-wrapper-2 .map-items .googpemap iframe {
        height: 450px;
    }
}

.contact-wrapper-2 .contact-content {
    margin-left: 40px;
}

@media (max-width: 991px) {
    .contact-wrapper-2 .contact-content {
        margin-left: 0;
    }
}

.contact-wrapper-2 .contact-content h2 {
    margin-bottom: 10px;
}

.contact-wrapper-2 .contact-content .contact-form-items {
    margin-top: 30px;
}

.contact-wrapper-2 .contact-content .contact-form-items .form-clt span {
    color: var(--header);
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 15px;
    display: inline-block;
}

.contact-wrapper-2 .contact-content .contact-form-items .form-clt input,
.contact-wrapper-2 .contact-content .contact-form-items .form-clt textarea {
    border: 1px solid #D4DCED;
    color: var(--text);
    padding: 18px 20px;
    border-radius: 5px;
    width: 100%;
    outline: none;
    background-color: transparent;
}

.contact-wrapper-2 .contact-content .contact-form-items .form-clt input::placeholder,
.contact-wrapper-2 .contact-content .contact-form-items .form-clt textarea::placeholder {
    color: var(--text);
}

.contact-wrapper-2 .contact-content .contact-form-items .form-clt textarea {
    padding-bottom: 150px;
}

.contact-wrapper-2 .contact-content .contact-form-items .theme-btn {
    display: inline-block;
    padding: 18px 30px;
    background-color: var(--theme);
    color: var(--white);
    line-height: 1;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.4s ease-in-out;
}

.contact-wrapper-2 .contact-content .contact-form-items .theme-btn i {
    margin-left: 8px;
}

.contact-wrapper-2 .contact-content .contact-form-items .theme-btn:hover {
    background-color: var(--header);
}

.contact-info-items {
    padding: 40px 20px;
    text-align: center;
    border-radius: 10px;
    background: #FAF8FF;
}

.contact-info-items .icon {
    display: inline-block;
    background: #fff;
    border-radius: 100px;
    padding: 1rem;
    border: 9px inset #4c96d7;
}

.contact-info-items .icon img {
    height: 80px;
}

.contact-info-items .content {
    margin-top: 30px;
}

.contact-info-items .content p {
    font-size: 18px;
    margin-top: 10px;
}

.cta-wrapper {
    border-radius: 30px;
    padding: 65px 65px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: -37px;
}

@media (max-width: 1199px) {
    .cta-wrapper {
        flex-wrap: wrap;
        gap: 30px;
        margin-top: -100px;
    }
}

@media (max-width: 991px) {
    .cta-wrapper {
        margin-top: -80px;
        justify-content: center;
        text-align: center;
    }
}

.cta-wrapper h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--white);
    margin-left: 450px;
}

@media (max-width: 1399px) {
    .cta-wrapper h2 {
        margin-left: 300px;
        position: relative;
        z-index: 9;
    }
}

@media (max-width: 1199px) {
    .cta-wrapper h2 {
        margin-left: 0;
    }
}

.cta-wrapper .cta-img {
    position: absolute;
    bottom: 0;
    left: 85px;
}

@media (max-width: 1199px) {
    .cta-wrapper .cta-img {
        display: none;
    }
}

.cta-wrapper .main-button .theme-btn,
.cta-wrapper .main-button .arrow-btn {
    background-color: var(--white);
    color: var(--header);
}

.cta-wrapper .main-button:hover .theme-btn,
.cta-wrapper .main-button:hover .arrow-btn {
    color: var(--white);
    background-color: var(--header);
}

.cta-section {
    position: relative;
}

.cta-section::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    background-color: #18185E;
    top: 60%;
    height: initial;
}

.cta-section .rokect-shape {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 99;
}

@media (max-width: 1199px) {
    .cta-section .rokect-shape {
        display: none;
    }
}

.cta-section.style-2::after {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    background-color: var(--bg);
    height: 60%;
    z-index: -1;
}

.cta-counter-wrapper {
    height: 720px;
    border-radius: 30px;
    position: relative;
    z-index: 9;
}

.cta-counter-wrapper .counter-box-area {
    padding: 64px;
    background-color: var(--theme);
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    border-radius: 0 0 30px 30px;
    line-height: 1;
    display: flex;
    align-items: center;
    gap: 50px;
}

@media (max-width: 767px) {
    .cta-counter-wrapper .counter-box-area {
        flex-wrap: wrap;
        gap: 30px;
    }
}

.cta-counter-wrapper .counter-box-area .counter-text {
    position: relative;
}

.cta-counter-wrapper .counter-box-area .counter-text h2 {
    font-size: 40px;
    font-weight: 700;
    color: var(--white);
}

.cta-counter-wrapper .counter-box-area .counter-text p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 10px;
}

.cta-counter-wrapper .shape-img {
    position: absolute;
    bottom: -140px;
    right: 0;
    z-index: 1;
}

/*.cta-counter-wrapper .circle-button {*/

/*  position: absolute;*/

/*  right: 60px;*/

/*  top: -65px;*/

/*  width: 122px;*/

/*  height: 122px;*/

/*  line-height: 122px;*/

/*  background-color: var(--theme2);*/

/*  border-radius: 50%;*/

/*  text-align: center;*/

/*  font-size: 24px;*/

/*}*/

/*.cta-counter-wrapper .circle-button::before {*/

/*  position: absolute;*/

/*  top: 50%;*/

/*  left: 50%;*/

/*  transform: translate(-50%, -50%);*/

/*  background-color: rgba(255, 255, 255, 0.2);*/

/*  width: 148px;*/

/*  height: 148px;*/

/*  content: "";*/

/*  border-radius: 50%;*/

/*}*/

/*.cta-counter-wrapper .circle-button .text-circle {*/

.text-circle {
    top: 0;
    position: absolute;
    right: 0;
    height: 136px;
}

.text-circle img {
    height: 100%;
}



.cta-counter-section {
    position: relative;
    z-index: 9;
}

.cta-counter-section::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    background-color: var(--bg);
    top: 50%;
}

.cta-counter-section::after {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    background-color: var(--white);
    height: 50%;
}

.cta-counter-section .bg-shape {
    position: absolute;
    bottom: 0;
    left: 0;
}

.cta-marketing {
    position: relative;
    z-index: 9;
}

.cta-marketing::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    background-color: var(--bg);
    height: 40%;
    z-index: -1;
}

.cta-marketing .shape-img {
    position: absolute;
    top: -90px;
    left: 0;
}

.cta-marketing-2 {
    position: relative;
}

.cta-marketing-2::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    top: 65%;
    background-color: var(--white);
}

.cta-marketing-wrapper {
    padding: 60px;
    border-radius: 20px;
    background-color: var(--theme);
    display: flex;
    align-items: center;
    gap: 112px;
    position: relative;
}

@media (max-width: 1199px) {
    .cta-marketing-wrapper {
        flex-wrap: wrap;
        gap: 30px;
        justify-content: center;
        justify-content: center;
    }
}

.cta-marketing-wrapper .content .section-title h2 {
    font-size: 36px;
}

.cta-marketing-wrapper .content .list {
    display: flex;
    align-items: center;
    gap: 30px;
}

@media (max-width: 1199px) {
    .cta-marketing-wrapper .content .list {
        flex-wrap: wrap;
        gap: 20px;
    }
}

.cta-marketing-wrapper .content .list li {
    font-weight: 600;
    color: var(--white);
}

.cta-marketing-wrapper .content .list li svg {
    margin-right: 5px;
}

.cta-marketing-wrapper .cta-input {
    position: relative;
    max-width: 435px;
    width: 100%;
}

.cta-marketing-wrapper .cta-input input {
    background: var(--white);
    border: none;
    outline: none;
    padding: 16px 20px;
    width: 100%;
    border-radius: 8px;
    color: var(--text);
    text-transform: capitalize;
}

.cta-marketing-wrapper .cta-input input::placeholder {
    color: var(--text);
}

.cta-marketing-wrapper .cta-input .newsletter-btn {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 46px;
    height: 46px;
    line-height: 46px;
    border-radius: 8px;
    text-align: center;
    background-color: var(--theme);
    color: var(--white);
    bottom: 5px;
}

.cta-marketing-wrapper .cta-input .newsletter-btn i {
    font-size: 18px;
}

.cta-marketing-wrapper .cta-marketing-image {
    position: absolute;
    bottom: 0;
    top: 0;
    right: 0;
}

@media (max-width: 1399px) {
    .cta-marketing-wrapper .cta-marketing-image {
        display: none;
    }
}

.cta-marketing-wrapper .cta-marketing-image img {
    width: 100%;
    height: 100%;
}

.cta-contact-wrapper {
    padding: 80px 90px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

@media (max-width: 1199px) {
    .cta-contact-wrapper {
        flex-wrap: wrap;
        gap: 30px;
        justify-content: center;
        text-align: center;
    }
}

@media (max-width: 767px) {
    .cta-contact-wrapper {
        padding: 50px;
    }
}

.cta-contact-wrapper .cta-image {
    position: absolute;
    top: 36px;
    left: 64px;
    bottom: 36px;
}

@media (max-width: 1399px) {
    .cta-contact-wrapper .cta-image {
        display: none;
    }
}

.cta-contact-wrapper .section-title {
    margin-left: 290px;
}

@media (max-width: 1399px) {
    .cta-contact-wrapper .section-title {
        margin-left: 0;
    }
}

.cta-contact-wrapper .section-title h2 {
    font-size: 36px;
}

.cta-contact-wrapper .main-button .theme-btn,
.cta-contact-wrapper .main-button .arrow-btn {
    background-color: var(--white);
    color: var(--header);
}

.cta-contact-wrapper .main-button:hover .theme-btn,
.cta-contact-wrapper .main-button:hover .arrow-btn {
    background-color: var(--header);
    color: var(--white);
}

.cta-contact-section {
    position: relative;
}

.cta-contact-section::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    background-color: var(--bg);
    top: 50%;
}

.cta-counter-wrapper-2 .section-title-area {
    padding: 0 90px;
}

@media (max-width: 1199px) {
    .cta-counter-wrapper-2 .section-title-area {
        padding: 0 0;
        flex-wrap: wrap;
        gap: 25px;
        margin-bottom: 30px;
    }
}

.cta-counter-wrapper-2 .section-title-area .counter-box-area {
    display: flex;
    align-items: center;
    gap: 50px;
    justify-content: center;
    text-align: center;
}

@media (max-width: 1199px) {
    .cta-counter-wrapper-2 .section-title-area .counter-box-area {
        flex-wrap: wrap;
        gap: 30px;
        justify-content: start;
    }
}

.cta-counter-wrapper-2 .section-title-area .counter-box-area .counter-text {
    position: relative;
}

.cta-counter-wrapper-2 .section-title-area .counter-box-area .counter-text h2 {
    font-size: 40px;
    font-weight: 700;
    color: var(--white);
}

.cta-counter-wrapper-2 .section-title-area .counter-box-area .counter-text p {
    font-size: 20px;
    color: var(--white);
    margin-top: 10px;
}

.cta-counter-wrapper-2 .cta-video-image {
    position: relative;
}

.cta-counter-wrapper-2 .cta-video-image img {
    width: 100%;
    height: 100%;
    border-radius: 20px;
}

.cta-counter-wrapper-2 .cta-video-image .video-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: inline-block;
    width: 102px;
    height: 102px;
    line-height: 102px;
    color: var(--white);
    border-radius: 50%;
    border: 1px solid var(--white);
    background: radial-gradient(157.24% 123.22% at 47.19% -0.63%, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0) 100%);
    backdrop-filter: blur(21px);
    text-align: center;
    font-size: 22px;
}

@media (max-width: 767px) {
    .cta-counter-wrapper-2 .cta-video-image .video-icon {
        font-size: 18px;
        width: 60px;
        height: 60px;
        line-height: 60px;
    }
}

.cta-counter-section-2 {
    position: relative;
}

.cta-counter-section-2::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    background-color: var(--white);
    top: 60%;
}

@media (max-width: 767px) {
    .cta-counter-section-2::before {
        top: 80%;
    }
}

.cta-counter-section-3 {
    position: relative;
    z-index: 9;
}

.cta-counter-section-3::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    background-color: var(--bg);
    top: 60%;
}

@media (max-width: 767px) {
    .cta-counter-section-3::before {
        top: 80%;
    }
}

.faq-wrapper .faq-content .faq-list {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-top: 40px;
    border-top: 1px solid #CCD8FF;
    border-bottom: 1px solid #CCD8FF;
    padding: 30px 0;
}

.img-faq-box {
    position: relative;
}

.img-faq-box {
    position: relative;
}

.img-faq-box .people {
    border-radius: 50%;
    position: relative;
    left: 20px;
}

.img-faq-box .circle {
    position: absolute;
    height: 100%;
    width: 104%;
    top: 0;
    left: -24px;
    z-index: -1;
    animation: circle 9s linear infinite;
}

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

.faq-wrapper .faq-content .faq-list li i {
    margin-right: 5px;
    color: var(--theme);
}

.faq-wrapper .accordion-item {
    border: 0;
    background-color: var(--white);
}

.faq-wrapper .accordion-item .accordion-header .accordion-button {
    font-weight: 600;
    color: #0c1d6f;
    letter-spacing: -0.2px;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    background: var(--white);
    padding: 10px 15px;
    text-transform: capitalize;
    font-size: 22px;
    border: 1px solid var(--border);
    border: 1px solid transparent;
    box-shadow: 12px -12px 24px 0px rgba(0, 0, 0, 0.06);
    border-bottom: 2px solid;
}

@media (max-width: 575px) {
    .faq-wrapper .accordion-item .accordion-header .accordion-button {
        font-size: 18px;
    }
}

.faq-wrapper .accordion-item .accordion-header .accordion-button::after {
    content: "\f324";
    font-family: "Font Awesome 6 Pro";
    background: transparent;
    font-weight: 500;
    transition: all 0.3s ease-in-out !important;
    color: #ffffff;
    padding: 1.2rem;
    background: #4c96d7;;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    border: 2px solid #fff;
}

.faq-wrapper .accordion-item .accordion-header .accordion-button:not(.collapsed)::after {
    content: "\f322";
    font-family: "Font Awesome 6 Pro";
    background: #4c96d7;;
    font-weight: 500;
    color: #ffffff;
    transform: rotate(0);
    border: 2px solid #0c1d6f;
}

.faq-wrapper .accordion-item .accordion-header .accordion-button.collapsed {
    background: #0c1d6f;
    background-size: inherit;
    background-attachment: fixed;
    box-shadow: 0px 4px 25px 0px rgba(0, 0, 0, 0.06);
    padding: 10px 15px;
    color: #ffffff;
    border-bottom: 5px double #a1a1a1;
}

.faq-wrapper .accordion-item .accordion-collapse .accordion-body {
    padding-right: 20px;
    padding-left: 30px;
    padding-top: 15px;
    color: var(--text);
    background-color: var(--white);
    box-shadow: 0px 4px 25px 0px rgba(0, 0, 0, 0.06);
}

@media (max-width: 1399px) {
    .faq-wrapper .accordion-item .accordion-collapse .accordion-body {
        padding-right: 50px;
    }
}

@media (max-width: 991px) {
    .faq-wrapper .accordion-item .accordion-collapse .accordion-body {
        padding-right: 30px;
    }
}

.faq-section {
    position: relative;
    /*background: linear-gradient(#ffe829a1, #ffe829a1), url(https://disa.com/uploads/general/Employee-Background-Checks-FAQ%E2%80%93What-Employers-Need-to-Know.jpeg);*/
    /*    background-size: 100%;*/
    /*    background-repeat: no-repeat;*/
    /*    background-position: center;*/
}

.faq-section .faq-overlay {
    position: absolute;
    top: 0;
    left: 0;
}

.faq-section .faq-shape {
    position: absolute;
    bottom: -31%;
    right: 0;
}

@media (max-width: 1399px) {
    .faq-section .faq-shape {
        display: none;
    }
}

.audience-wrapper .audience-content .ratting-image {
    margin-top: 100px;
}

.audience-wrapper .audience-content .client-items {
    margin-top: 30px;
    position: relative;
    z-index: 9;
}

.audience-wrapper .audience-content .client-items .client-img {
    margin-top: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.audience-wrapper .audience-content .client-items .client-img .star-icon .star {
    font-size: 14px;
    color: #FBB03B;
}

.audience-wrapper .audience-content .client-items .client-img .star-icon span {
    color: var(--white);
    font-size: 14px;
    line-height: 1;
}

.audience-wrapper .audience-right {
    display: flex;
    align-items: center;
}

@media (max-width: 1399px) {
    .audience-wrapper .audience-right {
        flex-wrap: wrap;
        gap: 30px;
    }
}

.audience-wrapper .audience-right .audience-img {
    max-width: 333px;
    position: relative;
}

.audience-wrapper .audience-right .audience-img img {
    width: 100%;
    height: 100%;
    border-radius: 20px;
}

.audience-wrapper .audience-right .counter-box-area {
    padding: 30px;
    border-radius: 20px;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0px;
}

@media (max-width: 575px) {
    .audience-wrapper .audience-right .counter-box-area {
        flex-wrap: wrap;
        gap: 30px;
    }
}

.audience-wrapper .audience-right .counter-box-area h2 {
    font-size: 40px;
    font-weight: 800;
    padding: 2rem 0rem 0px;
    margin: 0 1rem;
}

.audience-wrapper .audience-right .counter-box-area .content {
    /*margin-top: 150px;*/
    /*max-width: 235px;*/
}

@media (max-width: 767px) {
    .audience-wrapper .audience-right .counter-box-area .content {
        margin-top: 30px;
    }
}

.audience-wrapper .audience-right .counter-box-area .content h4 {
    margin-bottom: 10px;
    color: #16438a;
    margin-top: 5px;
    font-size: 17px;
}

.audience-wrapper .audience-right .counter-box-area .content p {
    font-size: 16px;
}

.counter-box {
    text-align: center;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 20px 25px -5px, rgba(0, 0, 0, 0.04) 0px 10px 10px -5px;
}

.counter-box img {
    height: 131px;
    padding: 1rem;
    border-radius: 12px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 20px 25px -5px, rgba(0, 0, 0, 0.04) 0px 10px 10px -5px;
    border: 4px solid #8080805c;
}

.feature-box-items {
    margin-top: 30px;
    background-color: var(--white);
    box-shadow: 0px 4px 25px rgba(0, 0, 0, 0.06);
    padding: 40px 30px;
    position: relative;
    z-index: 9;
}

.feature-box-items .icon {
    border-radius: 8px;
    border: 1px solid #D4DCFF;
    background: #F3F7FB;
    width: 70px;
    height: 70px;
    line-height: 70px;
    text-align: center;
    font-size: 40px;
    color: var(--theme);
}

.feature-box-items .content {
    margin-top: 30px;
}

.feature-box-items .content h3 {
    margin-bottom: 10px;
}

.feature-box-image {
    margin-top: 30px;
    border-radius: 16px;
    max-width: 315px;
    text-align: center;
    margin: 30px auto 0;
    padding: 12px;
    position: relative;
    z-index: 9;
}

.feature-box-image img {
    width: 100%;
    height: 100%;
}

.feature-secton {
    position: relative;
}

.feature-secton .bg-shape {
    position: absolute;
    top: 0;
    left: 0;
}

.value-box-items {
    margin-top: 30px;
    border-radius: 16px;
    background-color: var(--white);
    padding: 40px 30px;
}

.value-box-items .icon {
    border-radius: 8px;
    border: 1px solid #D4DCFF;
    background: #F3F7FB;
    width: 70px;
    height: 70px;
    line-height: 70px;
    text-align: center;
    font-size: 40px;
    color: var(--theme);
}

.value-box-items .content {
    margin-top: 25px;
}

.value-box-items .content h3 {
    margin-bottom: 15px;
}

.value-section {
    position: relative;
}

.value-section .value-shape {
    position: absolute;
    top: 0;
    left: 0;
}

@media (max-width: 1399px) {
    .value-section .value-shape {
        display: none;
    }
}

.value-section .value-shape-2 {
    position: absolute;
    top: 0;
    right: 0;
}

@media (max-width: 1399px) {
    .value-section .value-shape-2 {
        display: none;
    }
}

.footer-widgets-wrapper {
    padding: 50px 0 10px;
}

.footer-widgets-wrapper .single-footer-widget {
    margin-top: 30px;
}

.footer-widgets-wrapper .single-footer-widget .widget-head {
    margin-bottom: 30px;
}

@media (max-width: 575px) {
    .footer-widgets-wrapper .single-footer-widget .widget-head {
        margin-bottom: 20px;
    }
}

.footer-widgets-wrapper .single-footer-widget .widget-head h3 {
    font-weight: bold;
    color: var(--white);
    font-size: 24px;
    display: inline-block;
    position: relative;
    padding-bottom: 20px;
}

/*.footer-widgets-wrapper .single-footer-widget .widget-head h3::before {*/

/*  position: absolute;*/

/*  bottom: 0;*/

/*  left: 0;*/

/*  content: "";*/

/*  width: 18px;*/

/*  height: 2px;*/

/*  background-color: var(--white);*/

/*}*/

/*.footer-widgets-wrapper .single-footer-widget .widget-head h3::after {*/

/*  position: absolute;*/

/*  bottom: 0;*/

/*  left: 25px;*/

/*  content: "";*/

/*  width: 83px;*/

/*  height: 2px;*/

/*  background-color: var(--theme);*/

/*}*/

@media (max-width: 767px) {
    .footer-widgets-wrapper .single-footer-widget .widget-head h3 {
        font-size: 23px;
    }
}

@media (max-width: 575px) {
    .footer-widgets-wrapper .single-footer-widget .widget-head h3 {
        font-size: 20px;
    }
}

.footer-widgets-wrapper .single-footer-widget .footer-content p {
    color: #000;
}

.footer-widgets-wrapper .single-footer-widget .footer-content .social-icon {
    margin-top: 20px;
    gap: 10px;
    position: relative;
    z-index: 9;
}

@media (max-width: 575px) {
    .footer-widgets-wrapper .single-footer-widget .footer-content .social-icon {
        margin-top: 20px;
    }
}

.footer-widgets-wrapper .single-footer-widget .footer-content .social-icon a {
    /*width: 36px;*/
    /*height: 36px;*/
    line-height: 36px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.6);
    background-color: transparent;
    color: rgba(255, 255, 255, 0.8);
}

.footer-widgets-wrapper .single-footer-widget .footer-content .social-icon a:hover {
    background-color: var(--theme);
    color: var(--white);
    border: 1px solid var(--theme);
}

.footer-widgets-wrapper .single-footer-widget .footer-content .contact-info {
    margin-top: 20px;
}

.footer-widgets-wrapper .single-footer-widget .footer-content .contact-info li {
    color: var(--text);
    font-weight: 400;
}

.footer-widgets-wrapper .single-footer-widget .footer-content .contact-info li:not(:last-child) {
    margin-bottom: 20px;
}

.footer-widgets-wrapper .single-footer-widget .footer-content .contact-info li i {
    font-size: 16px;
    color: var(--white);
    margin-right: 10px;
    font-size: 20px;
}

.footer-widgets-wrapper .single-footer-widget .footer-content .contact-info li a {
    color: var(--white);
}

.footer-widgets-wrapper .single-footer-widget .footer-content .footer-input {
    position: relative;
    margin-top: 40px;
}

.footer-widgets-wrapper .single-footer-widget .footer-content .footer-input input {
    background: var(--white);
    border: none;
    outline: none;
    padding: 16px 20px;
    width: 100%;
    border-radius: 8px;
    color: var(--text);
    text-transform: capitalize;
    text-align: center;
}

.footer-widgets-wrapper .single-footer-widget .footer-content .footer-input input::placeholder {
    color: var(--text);
}

.footer-widgets-wrapper .single-footer-widget .footer-content .footer-input .newsletter-btn {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 46px;
    height: 46px;
    line-height: 46px;
    border-radius: 8px;
    text-align: center;
    background-color: var(--theme);
    color: var(--white);
    bottom: 5px;
}

.footer-widgets-wrapper .single-footer-widget .footer-content .footer-input .newsletter-btn i {
    font-size: 18px;
}

.footer-widgets-wrapper .single-footer-widget .footer-content .form-check {
    color: rgba(255, 255, 255, 0.6);
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    margin-top: 25px;
}

.footer-widgets-wrapper .single-footer-widget .footer-content .form-check a {
    color: var(--white);
    text-decoration: underline;
}

.footer-widgets-wrapper .single-footer-widget .list-area li {
    transition: all 0.4s ease-in-out;
    font-weight: 500;
}

.footer-widgets-wrapper .single-footer-widget .list-area li:not(:last-child) {
    margin-bottom: 10px;
}

.footer-widgets-wrapper .single-footer-widget .list-area li a {
    color: rgba(255, 255, 255, 0.8);
}

.footer-widgets-wrapper .single-footer-widget .list-area li a i {
    margin-right: 5px;
}

.footer-widgets-wrapper .single-footer-widget .list-area li:hover {
    margin-left: 5px;
}

.footer-widgets-wrapper .single-footer-widget .list-area li:hover a {
    color: var(--white);
}

.footer-widgets-wrapper .single-footer-widget .recent-post-area .recent-post-items {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.footer-widgets-wrapper .single-footer-widget .recent-post-area .recent-post-items .thumb {
    width: 180px;
    height: 80px;
}

.footer-widgets-wrapper .single-footer-widget .recent-post-area .recent-post-items .thumb img {
    width: 100%;
    height: 100%;
    border-radius: 8px;
    object-fit: cover;
    aspect-ratio: 2 / 2;
}

.footer-widgets-wrapper .single-footer-widget .recent-post-area .recent-post-items .content .post-date {
    margin-bottom: 5px;
}

.footer-widgets-wrapper .single-footer-widget .recent-post-area .recent-post-items .content .post-date li {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

.footer-widgets-wrapper .single-footer-widget .recent-post-area .recent-post-items .content h6 {
    font-size: 16px;
    font-weight: 700;
}

.footer-widgets-wrapper .single-footer-widget .recent-post-area .recent-post-items .content h6 a {
    color: var(--white);
}

.footer-widgets-wrapper .single-footer-widget .recent-post-area .recent-post-items .content h6 a:hover {
    color: var(--theme);
}

.footer-widgets-wrapper .single-footer-widget .contact-list li {
    color: #DADADA;
}

.footer-widgets-wrapper .single-footer-widget .contact-list li:not(:last-child) {
    margin-bottom: 20px;
}

.footer-widgets-wrapper .single-footer-widget .contact-list li a {
    color: #F5F5F5;
}

.footer-bottom {
    background-color: #000;
    padding: 60px 0 30px;
    ;
    position: relative;
    margin-top: 30px;
}

@media (max-width: 767px) {
    .footer-bottom .footer-wrapper {
        flex-wrap: wrap;
        gap: 10px;
        justify-content: center !important;
        margin-top: 20px;
    }
}

.footer-bottom .footer-wrapper p {
    color: rgba(255, 255, 255, 0.8);
}

.footer-bottom .footer-wrapper .footer-menu {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-bottom .footer-wrapper .footer-menu li a {
    color: rgba(255, 255, 255, 0.8);
    background-image: linear-gradient(var(--white), var(--white));
    background-position: 0 95%;
    background-repeat: no-repeat;
    background-size: 0% 2px;
    display: inline-block;
    transition: all 0.4s ease-in-out;
}

.footer-bottom .footer-wrapper .footer-menu li a:hover {
    background-size: 100% 1px;
    color: var(--white);
}

.footer-bottom .scroll-icon {
    position: absolute;
    left: 50%;
    top: -40px;
    transform: translateX(-50%);
    width: 70px;
    height: 70px;
    line-height: 60px;
    background-color: var(--theme);
    border-radius: 50%;
    text-align: center;
    color: var(--white);
    border: 5px solid var(--white);
    display: inline-block;
    z-index: 99;
}

@media (max-width: 1399px) {
    .footer-bottom .scroll-icon {
        left: 50%;
    }
}

@media (max-width: 1199px) {
    .menu-thumb {
        display: none !important;
    }
}

.header-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
}

.header-main .main-menu ul {
    margin-bottom: 0;
}

.header-main .main-menu ul li {
    position: relative;
    list-style: none;
    display: inline-block;
    margin-inline-end: 30px;
    text-align: center;
}

.header-main .main-menu ul li:last-child {
    margin-inline-end: 0;
}

.header-main .main-menu ul li a {
    display: inline-block;
    font-size: 15px;
    font-weight: 600;
    color: #000;
    padding: 0px 0 5px 0;
    text-align: left;
    position: relative;
    text-transform: capitalize;
    transition: all 0.4s ease-in-out;
    text-align: center;
}

.header-main .main-menu ul li a i {
    margin-left: 4px;
    font-size: 14px;
}

.header-main .main-menu ul li a:hover {
    color: var(--theme2) !important;
}

.header-main .main-menu ul li .submenu {
    display: flex;
    align-items: start;
    gap: 10px;
    position: absolute;
    border-radius: 15px;
    left: -60%;
    top: 115%;
    /*inset-inline-start: 0;*/
    min-width: 860px;
    background: var(--white);
    padding: 10px;
    z-index: 99999;
    visibility: hidden;
    opacity: 0;
    transform-origin: top center;
    color: var(--header);
    transform: translateY(-10px);
    transition: all 0.4s ease-in-out;
    border-top: 6px solid var(--theme);
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.submenu li {
    background: linear-gradient(109deg, #0b196c, #4c96d7);
}

.submenu li a {
    color: #fff !important;
}

/*.submenu li:nth-child(1) { background-color: #FFB3BA; } */

/*.submenu li:nth-child(2) { background-color: #FFDFBA; } */

/*.submenu li:nth-child(3) { background-color: #FFFFBA; } */

/*.submenu li:nth-child(4) { background-color: #BAFFC9; } */

/*.submenu li:nth-child(5) { background-color: #BAE1FF; } */

/*.submenu li:nth-child(6) { background-color: #E2BAFF; } */

/*.submenu li:nth-child(7) { background-color: #FFE4BA; }*/

/*.submenu li:nth-child(8) { background-color: #BAFFFF; } */

/*.submenu li:nth-child(9) { background-color: #FFBACF; } */

/*.submenu li:nth-child(10) { background-color: #D5BAFF; } */

/*.submenu li:nth-child(11) { background-color: #FFC3A0; }*/

/*.submenu li:nth-child(12) { background-color: #FFFACD; } */

/*.submenu li:nth-child(13) { background-color: #CDEBFF; } */

/*.submenu li:nth-child(14) { background-color: #F3CBAE; }*/

/*.submenu li:nth-child(15) { background-color: #B0E57C; }*/

/*.submenu li:nth-child(16) { background-color: #FFD1DC; }*/

/*.submenu li:nth-child(17) { background-color: #AFCBFF; } */

/*.submenu li:nth-child(18) { background-color: #FFE6E6; } */

/*.submenu li:nth-child(19) { background-color: #D9F7BE; } */

/*.submenu li:nth-child(20) { background-color: #FADADD; } */

.submenu .menu {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    width: 75%;
}

.submenu img {
    width: 25%;
    background: #d5d5d5;
    /*padding: 0.5rem;/*/
    border-radius: 10px;
}

.header-main .main-menu ul li .submenu li {
    display: block;
    width: 100%;
    margin: 0;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 20px 25px -5px, rgba(0, 0, 0, 0.04) 0px 10px 10px -5px;
    border-radius: 10px;
    padding: 0.5rem;
    border: 1px solid;
}

.header-main .main-menu ul li .submenu li a {
    position: relative;
    z-index: 11;
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    line-height: 38px;
    padding: 0px 0px 0px 20px;
    width: 100%;
    text-align: start;
}

.header-main .main-menu ul li .submenu li a::before {
    content: "\f062";
    position: absolute;
    font-family: 'FontAwesome';
    top: 17px;
    transform: rotate(90deg);
    left: -5px;
    opacity: 0;
    bottom: 18px;
    transition: all 0.4s ease-in-out;
}

.header-main .main-menu ul li .submenu li a:hover {
    color: var(--theme) !important;
}

.header-main .main-menu ul li .submenu li:last-child a {
    border: none;
}

.header-main .main-menu ul li .submenu li .submenu {
    inset-inline-start: 100%;
    top: 0;
    visibility: hidden;
    opacity: 0;
}

.header-main .main-menu ul li .submenu li:hover>a {
    color: #fff !important;
    margin-left: 10px;
}

.header-main .main-menu ul li .submenu li:hover>a::before {
    opacity: 1;
    left: 16px;
}

.header-main .main-menu ul li .submenu li:hover>a::after {
    color: var(--theme);
}

.header-main .main-menu ul li .submenu li:hover>.submenu {
    -webkit-transform: translateY(1);
    -moz-transform: translateY(1);
    -ms-transform: translateY(1);
    -o-transform: translateY(1);
    transform: translateY(1);
    visibility: visible;
    opacity: 1;
}

.header-main .main-menu ul li .submenu li.has-dropdown>a::after {
    position: absolute;
    top: 50%;
    inset-inline-end: 25px;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    color: var(--theme);
}

.header-main .main-menu ul li .has-homemenu {
    width: 800px;
    padding: 30px 30px 10px 30px;
    opacity: 0;
    left: -250px;
    visibility: hidden;
    padding: 30px 30px 10px 30px;
}

.header-main .main-menu ul li .has-homemenu .homemenu-items {
    display: flex;
    align-items: center;
    gap: 30px;
    justify-content: space-between;
}

@media (max-width: 991px) {
    .header-main .main-menu ul li .has-homemenu .homemenu-items {
        flex-wrap: wrap;
    }
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu {
    position: relative;
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb {
    position: relative;
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70%;
    gap: 10px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease-in-out;
    margin-top: 20px;
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button .theme-btn {
    padding: 14px 20px;
    color: var(--white) !important;
    width: initial;
    font-size: 16px;
    text-align: center;
    border-radius: 0px !important;
    background-color: var(--theme);
    line-height: initial;
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button .theme-btn:hover {
    background-color: var(--header);
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb::before {
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(20, 19, 19, 0)), to(#5e5ef6));
    background: linear-gradient(to bottom, rgba(99, 92, 92, 0) 0%, #252527 100%);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    overflow: hidden;
    opacity: 0;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    content: "";
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb:hover::before {
    visibility: visible;
    opacity: 1;
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb:hover .demo-button {
    opacity: 1;
    visibility: visible;
    margin-top: 0;
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb:hover .homemenu-btn {
    opacity: 1;
    visibility: visible;
    bottom: 50%;
    transform: translateY(50%);
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb img {
    width: 100%;
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-title {
    text-align: center;
    margin: 15px auto;
    display: inline-block;
    font-size: 18px;
    font-weight: 600;
    font-family: "Plus Jakarta Sans", sans-serif;
}

.header-main .main-menu ul li:hover>a {
    color: var(--theme2);
}

.header-main .main-menu ul li:hover>a::after {
    color: var(--theme);
}

.header-main .main-menu ul li:hover>.submenu {
    visibility: visible;
    opacity: 1;
    transform: translate(-50%, 0);
}

.header-main .header-right {
    gap: 40px;
}

@media (max-width: 1399px) {
    .header-main .header-right {
        gap: 20px;
    }
}

.header-main .sidebar__toggle {
    cursor: pointer;
    font-size: 20px;
}

.header-1 {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 99;
    width: 100%;
}

.header-gif {
    height: 45px;
    display: flex;
    justify-content: center;
    margin: 0 auto;
}

.header-1.sticky .header-top {
    display: none;
}

.header-top {
    background: #081165;
}

.header-top-details {
    color: #fff;
    margin: 0 1rem 0 0;
    font-weight: 700;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-top-details .locaphone {
    height: 30px;
    margin-right: 10px;
}

.header-1 .container-fluid {
    padding: 0 150px;
}

@media (max-width: 1600px) {
    .header-1 .container-fluid {
        padding: 0 40px;
    }
}

@media (max-width: 1399px) {
    .header-1 .container-fluid {
        padding: 0 20px;
    }
}

@media (max-width: 1199px) {
    .header-1 .container-fluid {
        padding: 0 30px;
    }
}

.header-1 .header-logo-2 {
    display: none;
}

.header-1 .header-right .sidebar__toggle {
    color: #000;
}

@media (max-width: 1199px) {
    .header-1 .header-right .main-button {
        display: none;
    }
}

.header-1 .header-right .main-button .theme-btn,
.header-1 .header-right .main-button .arrow-btn {
    background-color: var(--theme2);
    color: var(--header);
}

.header-1 .header-right .main-button:hover .theme-btn,
.header-1 .header-right .main-button:hover .arrow-btn {
    background-color: var(--header);
    color: var(--white);
}

.header-1 .header-right .search-icon {
    color: #000;
}

.header-1.style-2 {
    position: relative;
}

.header-1.style-2 .header-right .sidebar__toggle {
    color: var(--header);
}

@media (max-width: 1199px) {
    .header-1.style-2 .header-right .main-button {
        display: none;
    }
}

.header-1.style-2 .header-right .main-button .theme-btn,
.header-1.style-2 .header-right .main-button .arrow-btn {
    background-color: var(--theme);
    color: var(--white);
}

.header-1.style-2 .header-right .main-button:hover .theme-btn,
.header-1.style-2 .header-right .main-button:hover .arrow-btn {
    background-color: var(--header);
    color: var(--white);
}

.header-1.style-2 .container-fluid {
    padding: 0px 250px;
}

@media (max-width: 1600px) {
    .header-1.style-2 .container-fluid {
        padding: 0 50px;
    }
}

@media (max-width: 1399px) {
    .header-1.style-2 .container-fluid {
        padding: 0 40px;
    }
}

@media (max-width: 1199px) {
    .header-1.style-2 .container-fluid {
        padding: 0 30px;
    }
}

.header-1.style-2 .main-menu ul li a {
    color: var(--header);
}

.header-1.style-2 .main-menu ul li a:hover {
    color: var(--theme) !important;
}

.header-1.style-2 .main-menu ul li:hover>a {
    color: var(--theme);
}

.header-1.style-2 .main-menu ul li:hover>a::after {
    color: var(--theme);
}

.sticky {
    position: fixed !important;
    top: 0 !important;
    left: 0;
    width: 100%;
    z-index: 100;
    transition: all 0.9s;
    background-color: var(--white);
    -webkit-animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
    animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.sticky.header-1 .header-logo-2 {
    display: block;
}

.sticky.header-1 .header-logo {
    display: none;
}

.sticky.header-1 .header-right .sidebar__toggle {
    color: var(--header);
}

.sticky.header-1 .header-right .search-icon {
    color: var(--header);
}

.sticky.header-1 .main-menu ul li a {
    color: var(--header);
}

.sticky.header-1 .main-menu ul li a:hover {
    color: var(--theme) !important;
}

.sticky.header-1 .main-menu ul li:hover>a {
    color: var(--theme);
}

.sticky.header-1 .main-menu ul li:hover>a::after {
    color: var(--theme);
}

.offcanvas__info {
    background: var(--white) none repeat scroll 0 0;
    /*border-left: 2px solid var(--theme);*/
    position: fixed;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    -webkit-transform: translateX(calc(100% + 80px));
    -moz-transform: translateX(calc(100% + 80px));
    -ms-transform: translateX(calc(100% + 80px));
    -o-transform: translateX(calc(100% + 80px));
    transform: translateX(calc(100% + 80px));
    -webkit-transition: transform 0.45s ease-in-out, opacity 0.45s ease-in-out;
    -moz-transition: transform 0.45s ease-in-out, opacity 0.45s ease-in-out;
    transition: transform 0.45s ease-in-out, opacity 0.45s ease-in-out;
    z-index: 99999;
    overflow-y: scroll;
    overscroll-behavior-y: contain;
    scrollbar-width: none;
}

.offcanvas__info::-webkit-scrollbar {
    display: none;
}

.offcanvas__info.info-open {
    opacity: 1;
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
}

.offcanvas__wrapper {
    position: relative;
    height: 107%;
    padding: 15px 30px;
}

.offcanvas__wrapper .offcanvas__content .text {
    color: var(--text);
}

.offcanvas__wrapper .offcanvas__content .offcanvas__close {
    width: 45px;
    height: 45px;
    line-height: 45px;
    text-align: center;
    border-radius: 50%;
    background-color: #33afd8;
    position: relative;
    z-index: 9;
    cursor: pointer;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__close i {
    color: var(--white);
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact {
    border: 10px solid #4c96d7;;
    margin: 33px 0;
    outline: 5px solid #4c96d7;;
    padding: 2rem;
    box-shadow: rgb(148 0 6) 0px 0px 24px 0px, rgb(148 0 6) 0px 0px 0px 0px;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul {
    margin-top: 20px;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li {
    font-size: 16px;
    font-weight: 600;
    text-transform: capitalize;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li a {
    color: var(--text);
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li:not(:last-child) {
    margin-bottom: 15px;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li .offcanvas__contact-icon {
    margin-right: 20px;
    display: contents;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li .offcanvas__contact-icon .locaphone {
    width: 35px !important;
    margin-right: 10px;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact span {
    text-transform: initial ;
    white-space: normal;
    word-break: break-all;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact .header-button .theme-btn {
    width: 100%;
    padding: 20px 40px;
    text-transform: capitalize !important;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact .social-icon {
    margin-top: 30px;
    gap: 10px;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact .social-icon a {
    width: 49px;
    height: 45px;
    line-height: 45px;
    text-align: center;
}

/*.offcanvas__wrapper .offcanvas__content .offcanvas__contact .social-icon a:hover {*/

/*  background-color: var(--theme);*/

/*  color: var(--white);*/

/*}*/

.offcanvas__overlay {
    position: fixed;
    height: 100%;
    width: 100%;
    background: #151515;
    z-index: 900;
    top: 0;
    opacity: 0;
    visibility: hidden;
    right: 0;
}

.offcanvas__overlay.overlay-open {
    opacity: 0.8;
    visibility: visible;
}

/*@media (max-width: 450px) {*/

/*  .offcanvas__info {*/

/*    width: 300px;*/

/*  }*/

/*}*/

@media (max-width: 575px) {
    .offcanvas__wrapper {
        padding: 20px;
    }
}

.breadcrumb-wrapper {
    position: relative;
    overflow: hidden;
    z-index: 9;
    margin: 9.5rem 0 0 0;
    /*border-radius: 30px;*/
}

@media (max-width: 1199px) {
    .breadcrumb-wrapper {
        margin: 0;
        border-radius: 0;
    }
}

.breadcrumb-wrapper .left-shape {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

@media (max-width: 767px) {
    .breadcrumb-wrapper .left-shape {
        display: none;
    }
}

.breadcrumb-wrapper .right-shape {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

@media (max-width: 767px) {
    .breadcrumb-wrapper .right-shape {
        display: none;
    }
}

.breadcrumb-wrapper .page-heading {
    position: relative;
    padding: 120px 0;
    z-index: 9;
    text-align: center;
}

@media (max-width: 767px) {
    .breadcrumb-wrapper .page-heading {
        flex-wrap: wrap;
        justify-content: center;
        gap: 50px;
        padding: 140px 0;
    }
}

.breadcrumb-wrapper .page-heading h1 {
    color: #fff;
    font-size: 40px;
    position: relative;
    z-index: 9;
    max-width: 75%;
    font-weight: 800;
    margin: 0 auto;
}

@media (max-width: 575px) {
    .breadcrumb-wrapper .page-heading h1 {
        font-size: 44px;
    }
}

.breadcrumb-wrapper .page-heading .breadcrumb-items {
    display: inline-flex;
    justify-content: center;
    margin-top: 15px;
    gap: 10px;
    justify-content: center;
    border: 2px solid #fff;
    padding: 12px 21px;
    border-radius: 100px;
    line-height: 1;
}

@media (max-width: 575px) {
    .breadcrumb-wrapper .page-heading .breadcrumb-items {
        margin-top: 15px;
    }
}

.breadcrumb-wrapper .page-heading .breadcrumb-items li {
    color: #fff;
    text-transform: capitalize;
    font-weight: bold;
    font-size: 14px;
}

.breadcrumb-wrapper .page-heading .breadcrumb-items li a {
    color: #fff;
    transition: all 0.4s ease-in-out;
}

.breadcrumb-wrapper .page-heading .breadcrumb-items li a:hover {
    color: #fff9;
}

.breadcrumb-wrapper .page-heading .breadcrumb-items li i {
    color: #ffff;
}

.error-items {
    text-align: center;
    margin: 0 auto;
}

.error-items .error-image {
    max-width: 985px;
}

.error-items .error-image img {
    width: 100%;
    height: 100%;
}

.error-items h2 {
    margin-top: 40px;
    margin-bottom: 40px;
}

.error-items h2 span {
    color: var(--theme);
    font-weight: 300;
}

.error-items p {
    font-size: 18px;
    margin-bottom: 50px;
}

.error-items .error-content {
    max-width: 530px;
    margin: 0 auto;
}

::-webkit-scrollbar {
    width: 4px;
    height: 4px;
}

/* Track */

::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px var(--theme);
    border-radius: 5px;
}

/* Handle */

::-webkit-scrollbar-thumb {
    background: var(--theme);
    border-radius: 10px;
}

.fix {
    overflow: hidden;
}

.ralt {
    position: relative;
}

.ml-50 {
    margin-left: 50px;
}

@media (max-width: 1199px) {
    .ml-50 {
        margin-left: 0;
    }
}

.ripple {
    position: relative;
}

.ripple::before,
.ripple::after {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 110px;
    height: 110px;
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5);
    -webkit-animation: rippleOne 3s infinite;
    animation: rippleOne 3s infinite;
}

.ripple::before {
    -webkit-animation-delay: 0.9s;
    animation-delay: 0.9s;
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
}

.ripple::after {
    -webkit-animation-delay: 0.6s;
    animation-delay: 0.6s;
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
}

.swiper-dot .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    transition: all 0.4s ease-in-out;
    background-color: var(--theme);
    opacity: 1;
    border-radius: 10px;
}

.swiper-dot .swiper-pagination-bullet:not(:last-child) {
    margin-right: 10px;
}

.swiper-dot .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: var(--theme);
    transition: 0.6s;
    position: relative;
}

.swiper-dot .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
    position: absolute;
    width: 22px;
    height: 22px;
    line-height: 22px;
    top: -6px;
    left: -6px;
    border-radius: 50%;
    background-color: transparent;
    border: 2px solid var(--theme);
    content: "";
}

.swiper-dot-2 {
    text-align: center;
}

.swiper-dot-2 .swiper-pagination-bullet {
    width: 32px;
    height: 8px;
    transition: 0.6s;
    background-color: rgba(213, 213, 213, 0.6);
    opacity: 1;
    border-radius: 10px;
    position: relative;
}

.swiper-dot-2 .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: var(--theme);
    transition: 0.6s;
    position: relative;
    width: 50px;
}

.array-button {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: center;
    z-index: 2;
    position: relative;
}

.array-button .array-prev {
    width: 56px;
    height: 56px;
    line-height: 56px;
    text-align: center;
    background: linear-gradient(90deg, #fede61, orange, red);
    color: var(--white);
    border-radius: 50%;
    transition: all 0.4s ease-in-out;
    /*box-shadow: 0px 4px 30px 0px rgba(0, 0, 0, 0.08);*/
}

.array-button .array-prev:hover {
    background-color: var(--theme);
    color: var(--white);
}

.array-button .array-next {
    width: 56px;
    height: 56px;
    line-height: 56px;
    text-align: center;
    background-color: var(--theme);
    color: var(--white);
    border-radius: 50%;
    transition: all 0.4s ease-in-out;
}

.array-button .array-next:hover {
    background-color: var(--header);
}

.mt-10 {
    margin-top: 10px;
}

@media (max-width: 767px) {
    br {
        display: none;
    }
}

.mt-60 {
    margin-top: 55px;
}

.mb-40 {
    margin-bottom: 40px;
}

/* background */

.bg-cover {
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    background-position: center;
}

.bg-cover-2 {
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    background-position: center;
    width: 100%;
    height: 100%;
}

.nice-select {
    background-color: transparent;
    width: unset;
    outline: none;
    border-bottom: 2px solid var(--border) !important;
    padding-bottom: 20px !important;
    border: none;
    border-radius: 0;
    padding: 0;
}

.nice-select:hover {
    border-bottom: 2px solid transparent;
    border-color: var(--theme);
    border-bottom: 2px solid transparent;
    border-image-slice: 2;
}

.nice-select span {
    font-size: 16px;
    color: var(--text);
    text-transform: capitalize;
}

.nice-select .current {
    margin-right: 12px;
}

.nice-select.open .list {
    background: var(--bg);
    margin-top: 16px;
    width: 100%;
    text-transform: capitalize;
    color: var(--text);
}

.nice-select .option.selected.focus {
    background: var(--bg);
    outline: none;
    color: var(--text);
    text-transform: capitalize;
    font-weight: 400;
    font-size: 16px;
    border: none;
}

.nice-select .option {
    border: none;
}

.nice-select .option:hover {
    background: transparent;
}

.custom-container {
    max-width: 1680px;
}

.page-nav-wrap ul li {
    display: inline-block;
}

.page-nav-wrap ul li .page-numbers {
    display: inline-block;
    width: 50px;
    height: 50px;
    line-height: 50px;
    background: transparent;
    font-weight: 600;
    transition: all 0.3s ease-in-out;
    margin: 0 2px;
    border: 1px solid var(--border);
    color: var(--text);
}

.page-nav-wrap ul li .page-numbers.current {
    background-color: var(--theme);
    color: var(--white);
}

@media (max-width: 767px) {
    .page-nav-wrap ul li .page-numbers {
        margin-top: 10px;
        width: 50px;
        height: 50px;
        line-height: 50px;
        font-size: 14px;
    }
}

.page-nav-wrap ul li .page-numbers i {
    margin-top: 2px;
}

.page-nav-wrap ul li .page-numbers:hover {
    background-color: var(--theme);
    color: var(--white);
    border: 1px solid transparent;
}

.item-bg-color {
    background-color: #F4F6FA !important;
}

.bor-top {
    border-top: 1px solid rgba(255, 255, 255, 0.4);
}

.bor-bottom {
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}

.sticky-style {
    position: sticky !important;
    top: 100px;
}

.hero-1 {
    padding: 190px 0 0;
    position: relative;
}

.hero-1 .mike-shape {
    position: absolute;
    top: 20%;
    left: -10px;
}

.badge {
    position: absolute;
    top: 1%;
    z-index: 9;
    left: 2%;
    height: 200px;
    width: auto;
    transform: rotate(-18deg);
}

.badge img {
    height: 100%;
}

.about-section.hero-1 .mike-shape {
    top: inherit;
    bottom: 20%;
}

.hero-1 .mike-shape::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    width: 232px;
    height: 232px;
    background: linear-gradient(180deg, rgba(102, 166, 255, 0.5) -128.88%, rgba(255, 255, 255, 0) 83.84%);
    border-radius: 50%;
    top: 83%;
    left: 15%;
    transform: translate(-50%, -50%);
}

.hero-1 .mike-shape img {
    animation: bounce-x 7s infinite linear;
}

.hero-1 .arrow-shape {
    position: absolute;
    bottom: 5%;
    left: 3%;
    animation: moving 7s infinite linear;
}

.hero-1 .energy-shape {
    position: absolute;
    right: 40px;
    top: 15%;
    z-index: 1;
}

.hero-1 .arrow-shape-2 {
    position: absolute;
    top: 50%;
    right: 30px;
    animation: moving 7s infinite linear;
}

.hero-1 .rocket-shape {
    position: absolute;
    bottom: 20px;
    right: 20px;
    z-index: 7;
}

.hero-1 .rocket-shape::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    width: 232px;
    height: 232px;
    background: linear-gradient(180deg, rgba(102, 166, 255, 0.5) -128.88%, rgba(255, 255, 255, 0) 83.84%);
    border-radius: 50%;
    top: 100%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.hero-1 .container-fluid {
    padding: 0 141px;
}

@media (max-width: 1600px) {
    .hero-1 .container-fluid {
        padding: 0 50px;
    }
}

@media (max-width: 1399px) {
    .hero-1 .container-fluid {
        padding: 0 40px;
    }
}

@media (max-width: 1199px) {
    .hero-1 .container-fluid {
        padding: 0 30px;
    }
}

.hero-1 .hero-title {
    text-align: center;
    position: relative;
    z-index: 9;
    margin-bottom: 50px;
}

@media (max-width: 1199px) {
    .hero-1 .hero-title img {
        width: 100%;
        height: 100%;
    }
}

.hero-1 .hero-content {
    position: relative;
    z-index: 9;
}

.hero-1 .hero-content span {
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--white);
    display: inline-block;
    margin-bottom: 10px;
}

.hero-1 .hero-content h1 {
    color: var(--white);
    margin-bottom: 20px;
}

.hero-1 .hero-content p {
    color: var(--white);
    max-width: 510px;
}

.hero-1 .hero-image {
    position: relative;
    z-index: 8;
    margin-left: -70px;
}

@media (max-width: 1399px) {
    .hero-1 .hero-image {
        margin-left: 0;
    }
    .hero-1 .hero-image img {
        width: 100%;
        height: 100%;
    }
}

.hero-1 .hero-image .bg-shape {
    position: absolute;
    top: 70%;
    left: 30%;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.hero-1 .video-btn {
    position: relative;
    z-index: 9;
    display: inline-block;
    width: 151px;
    height: 151px;
    border: 0.5px solid var(--white);
    background: radial-gradient(157.24% 123.22% at 47.19% -0.63%, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0) 100%);
    backdrop-filter: blur(25px);
    border-radius: 50%;
    text-align: center;
    line-height: 151px;
    font-size: 24px;
    color: var(--white);
}

.hero-1 .video-btn img {
    animation: cir36 10s linear infinite;
    position: absolute;
    top: 12px;
    left: 10px;
}

@media (max-width: 1199px) {
    .hero-1 .video-right {
        margin-bottom: 60px;
    }
}

.hero-1 .video-right p {
    font-weight: 500;
    font-style: italic;
    text-transform: capitalize;
    line-height: 175%;
    color: var(--white);
    margin-top: 30px;
}

.hero-1 .video-right .client-items {
    margin-top: 30px;
    position: relative;
    z-index: 9;
}

.hero-1 .video-right .client-items .client-img {
    margin-top: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero-1 .video-right .client-items .client-img .star-icon .star {
    font-size: 14px;
    color: #FBB03B;
}

.hero-1 .video-right .client-items .client-img .star-icon span {
    color: var(--white);
    font-size: 14px;
    line-height: 1;
}

.hero-2 {
    padding: 150px 0 200px;
    background-position: bottom;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    margin-bottom: 90px;
}

@media (max-width: 1899px) {
    .hero-2 {
        margin-bottom: 0;
        background-position: center;
        background-image: none !important;
        background-color: var(--theme);
    }
}

@media (max-width: 991px) {
    .hero-2 {
        padding: 150px 0 0;
    }
}

.hero-2 .trophy-shape {
    position: absolute;
    top: 10%;
    left: 0;
}

@media (max-width: 1199px) {
    .hero-2 .trophy-shape {
        display: none;
    }
}

.hero-2 .left-shape {
    position: absolute;
    bottom: -20%;
    left: 0;
}

@media (max-width: 1199px) {
    .hero-2 .left-shape {
        display: none;
    }
}

.hero-2 .right-shape {
    position: absolute;
    bottom: -30%;
    right: 0;
}

@media (max-width: 1199px) {
    .hero-2 .right-shape {
        display: none;
    }
}

.hero-2 .rocket-shape {
    position: absolute;
    bottom: 0;
    right: 0;
}

@media (max-width: 1199px) {
    .hero-2 .rocket-shape {
        display: none;
    }
}

.hero-2 .container-fluid {
    padding: 0 200px;
}

@media (max-width: 1600px) {
    .hero-2 .container-fluid {
        padding: 0 50px;
    }
}

@media (max-width: 1399px) {
    .hero-2 .container-fluid {
        padding: 0 40px;
    }
}

@media (max-width: 1199px) {
    .hero-2 .container-fluid {
        padding: 0 30px;
    }
}

.hero-2 .hero-content {
    position: relative;
    z-index: 9;
}

.hero-2 .hero-content h6 {
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--white);
    display: inline-block;
    margin-bottom: 10px;
}

.hero-2 .hero-content h1 {
    font-size: 72px;
    color: var(--white);
}

@media (max-width: 575px) {
    .hero-2 .hero-content h1 {
        font-size: 42px;
    }
}

.hero-2 .hero-content p {
    font-size: 16px;
    color: var(--white);
    font-weight: 500;
    max-width: 545px;
    margin-top: 20px;
}

.hero-2 .hero-content .hero-button {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-top: 50px;
}

@media (max-width: 767px) {
    .hero-2 .hero-content .hero-button {
        margin-top: 40px;
        flex-wrap: wrap;
        gap: 20px;
    }
}

.hero-2 .hero-content .hero-button .main-button .theme-btn,
.hero-2 .hero-content .hero-button .main-button .arrow-btn {
    background-color: var(--theme2);
    color: var(--header);
}

.hero-2 .hero-content .hero-button .main-button:hover .theme-btn,
.hero-2 .hero-content .hero-button .main-button:hover .arrow-btn {
    background-color: var(--header);
    color: var(--white);
}

.hero-2 .hero-content .hero-button .link-btn {
    font-size: 16px;
    font-weight: 700;
    display: inline-block;
    text-decoration: underline;
    color: var(--white);
}

.hero-2 .hero-image {
    position: relative;
    z-index: 1;
    text-align: center;
}

.hero-2 .hero-image .bg-shape {
    position: absolute;
    bottom: 0;
    left: 53%;
    transform: translateX(-50%);
    z-index: -1;
}

@media (max-width: 1399px) {
    .hero-2 .hero-image .bg-shape {
        display: none;
    }
}

.hero-2 .hero-image img {
    text-align: center;
}

@media (max-width: 991px) {
    .hero-2 .hero-image img {
        width: 100%;
        height: 100%;
    }
}

.hero-2 .hero-image .box-shape {
    position: absolute;
    top: 30%;
    left: -20%;
    animation: translateX2 2s forwards infinite alternate;
}

@media (max-width: 1399px) {
    .hero-2 .hero-image .box-shape {
        display: none;
    }
}

.hero-2 .hero-image .gap-shape {
    position: absolute;
    bottom: -20px;
    left: -30%;
    animation: translateY2 2s forwards infinite alternate;
}

@media (max-width: 1399px) {
    .hero-2 .hero-image .gap-shape {
        display: none;
    }
}

.hero-2 .hero-image .cursor-shape {
    position: absolute;
    right: 50px;
    top: 28%;
    animation: moving 9s linear infinite;
}

@media (max-width: 1399px) {
    .hero-2 .hero-image .cursor-shape {
        display: none;
    }
}

.hero-2 .brand-wrapper-2 {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -90px;
    z-index: 9;
    max-width: 1170px;
    border-bottom: 1px solid var(--border);
    padding-bottom: 40px;
}

@media (max-width: 1899px) {
    .hero-2 .brand-wrapper-2 {
        display: none;
    }
}

.hero-2 .brand-wrapper-2 .brand-title {
    text-align: center;
    margin-bottom: 30px;
    position: relative;
}

.hero-2 .brand-wrapper-2 .brand-title::before {
    position: absolute;
    top: 15px;
    left: 5%;
    content: "";
    height: 1px;
    width: 413px;
    background-color: #E5E5E5;
}

@media (max-width: 1399px) {
    .hero-2 .brand-wrapper-2 .brand-title::before {
        display: none;
    }
}

.hero-2 .brand-wrapper-2 .brand-title::after {
    position: absolute;
    top: 15px;
    right: 5%;
    content: "";
    height: 1px;
    width: 413px;
    background-color: #E5E5E5;
}

@media (max-width: 1399px) {
    .hero-2 .brand-wrapper-2 .brand-title::after {
        display: none;
    }
}

.hero-3 {
    border-radius: 30px;
    padding: 120px 0 120px;
    margin: 0 60px;
    position: relative;
}

@media (max-width: 1600px) {
    .hero-3 {
        margin: 0 0;
    }
}

.hero-3 .line-shape {
    position: absolute;
    top: 46%;
    left: 48%;
    transform: translate(-50%, -50%);
}

@media (max-width: 1399px) {
    .hero-3 .line-shape {
        display: none;
    }
}

.hero-3 .container-fluid {
    padding: 0 190px;
}

@media (max-width: 1600px) {
    .hero-3 .container-fluid {
        padding: 0 50px;
    }
}

@media (max-width: 1399px) {
    .hero-3 .container-fluid {
        padding: 0 40px;
    }
}

@media (max-width: 1199px) {
    .hero-3 .container-fluid {
        padding: 0 30px;
    }
}

.hero-3 .hero-content {
    max-width: 580px;
}

.hero-3 .hero-content h6 {
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--theme);
    display: inline-block;
    margin-bottom: 10px;
}

.hero-3 .hero-content h1 {
    font-size: 60px;
    color: var(--header);
    font-weight: 700;
}

@media (max-width: 1199px) {
    .hero-3 .hero-content h1 {
        font-size: 50px;
    }
}

@media (max-width: 767px) {
    .hero-3 .hero-content h1 {
        font-size: 42px;
    }
}

@media (max-width: 575px) {
    .hero-3 .hero-content h1 {
        font-size: 34px;
    }
}

.hero-3 .hero-content h1 span {
    background: linear-gradient(90deg, #6A47ED 35.31%, #FB17FF 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-3 .hero-content p {
    font-size: 16px;
    font-weight: 500;
    max-width: 545px;
    margin-top: 100px;
}

@media (max-width: 1399px) {
    .hero-3 .hero-content p {
        margin-top: 15px;
    }
}

.hero-3 .hero-content .hero-button {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-top: 50px;
}

@media (max-width: 767px) {
    .hero-3 .hero-content .hero-button {
        margin-top: 30px;
        flex-wrap: wrap;
    }
}

.hero-3 .hero-content .hero-button .link-btn {
    font-size: 16px;
    font-weight: 700;
    display: inline-block;
    text-decoration: underline;
}

.hero-3 .hero-image {
    position: relative;
    z-index: 9;
}

.hero-3 .hero-image img {
    width: 100%;
    height: 100%;
}

.mean-container a.meanmenu-reveal {
    display: none;
}

.mean-container .mean-nav {
    background: none;
    margin-top: 0;
}

.mean-container .mean-bar {
    padding: 0;
    min-height: auto;
    background: none;
}

.mean-container .mean-nav>ul {
    padding: 0;
    margin: 0;
    width: 100%;
    list-style-type: none;
    display: block !important;
}

.mean-container .mean-nav>ul .homemenu-items {
    display: flex;
    align-items: center;
    gap: 30px;
    justify-content: space-between;
}

@media (max-width: 1199px) {
    .mean-container .mean-nav>ul .homemenu-items {
        flex-wrap: wrap;
    }
}

.mean-container .mean-nav>ul .homemenu-items .homemenu {
    position: relative;
}

@media (max-width: 1199px) {
    .mean-container .mean-nav>ul .homemenu-items .homemenu {
        max-width: 300px;
        text-align: center;
        margin: 0 auto;
        border: 1px solid var(--border);
        padding: 10px;
    }
}

.mean-container .mean-nav>ul .homemenu-items .homemenu .homemenu-thumb {
    position: relative;
}

.mean-container .mean-nav>ul .homemenu-items .homemenu .homemenu-thumb .demo-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
    gap: 10px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease-in-out;
    margin-top: 20px;
}

.mean-container .mean-nav>ul .homemenu-items .homemenu .homemenu-thumb .demo-button .theme-btn {
    padding: 12px 20px;
    color: var(--white) !important;
    width: initial;
    font-size: 16px;
    text-align: center;
    border-radius: 0;
}

.mean-container .mean-nav>ul .homemenu-items .homemenu .homemenu-thumb .demo-button .theme-btn:hover {
    color: var(--white) !important;
}

.mean-container .mean-nav>ul .homemenu-items .homemenu .homemenu-thumb::before {
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(20, 19, 19, 0)), to(#5e5ef6));
    background: linear-gradient(to bottom, rgba(99, 92, 92, 0) 0%, #252527 100%);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    overflow: hidden;
    opacity: 0;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    content: "";
}

.mean-container .mean-nav>ul .homemenu-items .homemenu .homemenu-thumb:hover::before {
    visibility: visible;
    opacity: 1;
}

.mean-container .mean-nav>ul .homemenu-items .homemenu .homemenu-thumb:hover .demo-button {
    opacity: 1;
    visibility: visible;
    margin-top: 0;
}

.mean-container .mean-nav>ul .homemenu-items .homemenu .homemenu-thumb:hover .homemenu-btn {
    opacity: 1;
    visibility: visible;
    bottom: 50%;
    transform: translateY(50%);
}

.mean-container .mean-nav>ul .homemenu-items .homemenu .homemenu-thumb img {
    width: 100%;
}

.mean-container .mean-nav>ul .homemenu-items .homemenu .homemenu-title {
    text-align: center;
    margin: 15px auto;
    display: inline-block;
    font-size: 16px;
}

.mean-container a.meanmenu-reveal {
    display: none !important;
}

.mean-container .mean-nav ul li>a {
    width: 100%;
    padding: 10px 0;
    color: var(--header);
    font-size: 16px;
    line-height: 1.5;
    font-weight: 600;
    text-transform: capitalize;
    border-bottom: 1px solid var(--border) !important;
    border: none;
}

.mean-container .mean-nav ul li a:hover {
    color: var(--theme);
}

.mean-container .mean-nav ul li a:last-child {
    border-bottom: 0;
}

.mean-container .mean-nav ul li a:hover {
    color: var(--theme);
}

.mean-container .mean-nav ul li a.mean-expand {
    margin-top: 5px;
    padding: 0 !important;
}

.mean-container .mean-nav ul li>a>i {
    display: none;
}

.mean-container .mean-nav ul li>a.mean-expand i {
    font-size: 18px;
    background: #33afd8;
    padding: 0.5rem 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 58px;
    margin-right: 43px;
    position: relative;
    right: 13px;
}

.mean-container .mean-nav>ul>li:first-child>a {
    border-top: 0;
}

.mean-container .mean-nav ul li a.mean-expand.mean-clicked i {
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transition: all 0.4s ease-in-out;
}

.mean-container .mean-nav ul li .mega-menu li a {
    height: 200px;
    width: 100%;
    padding: 0;
    border-top: 0;
    margin-bottom: 20px;
}

.scrolling-wrap {
    overflow: hidden;
    white-space: nowrap;
    display: flex;
    gap: 20px;
    margin-top: -14px;
}

.scrolling-wrap .comm {
    display: flex;
    align-items: center;
    animation: scroll 60s linear infinite;
    gap: 30px;
    cursor: pointer;
}

.scrolling-wrap .comm .cmn-textslide {
    font-size: 60px;
    font-weight: 800;
    line-height: 80px;
    text-transform: capitalize;
    color: var(--header);
    font-family: "Plus Jakarta Sans", sans-serif;
    display: flex;
    align-items: center;
    gap: 8px;
}

.scrolling-wrap .comm .cmn-textslide img {
    margin-right: 10px;
}

.scrolling-wrap .comm .cmn-textslide.stroke-text {
    -webkit-text-stroke-width: 1;
    -webkit-text-stroke: 1px #17012C;
    -webkit-text-fill-color: transparent;
}

.scrolling-wrap:hover .comm {
    animation-play-state: paused;
}

@media (max-width: 1399px) {
    .scrolling-wrap .comm {
        gap: 20px;
    }
}

@media (max-width: 991px) {
    .scrolling-wrap {
        gap: 14px;
    }
    .scrolling-wrap .comm {
        gap: 14px;
    }
}

@media (max-width: 575px) {
    .scrolling-wrap .comm {
        gap: 12px;
    }
}

.marquee-section-1 {
    position: relative;
    z-index: 99;
}

.mycustom-marque.style-2 {
    border: 1px solid var(--header);
    background: #4c96d7;;
    box-shadow: 0px 4px 30px 0px rgba(0, 0, 0, 0.1);
    transform: rotate(1.913deg);
    margin-top: -15px;
    position: relative;
    z-index: 1;
}

@media (max-width: 1399px) {
    .mycustom-marque.style-2 {
        margin-top: 0;
        transform: rotate(0);
    }
}

.mycustom-marque.style-2 .scrolling-wrap .comm .cmn-textslide {
    font-size: 30px;
    font-weight: 800;
    text-transform: capitalize;
    color: var(--header);
    padding-top: 10px;
}

.mycustom-marque.style-2.bg-2 {
    background-color: var(--header);
    border: none;
    box-shadow: none;
    margin-top: 0;
}

.mycustom-marque.style-2.bg-2 .scrolling-wrap .comm .cmn-textslide {
    color: var(--white);
    padding-top: 0;
}

.mycustom-marque.style-3 {
    background: var(--theme2);
    transform: rotate(-2.772deg);
    margin-top: -52px;
    position: relative;
    z-index: 7;
}

@media (max-width: 1399px) {
    .mycustom-marque.style-3 {
        margin-top: 0;
        transform: rotate(0);
    }
}

@media (max-width: 1399px) {
    .mycustom-marque.style-3 .scrolling-wrap .comm {
        animation: scroll2 60s linear infinite;
    }
}

.mycustom-marque.style-3 .scrolling-wrap .comm .cmn-textslide {
    font-size: 30px;
    font-weight: 800;
    text-transform: capitalize;
    color: var(--header);
    padding-top: 0;
}

.mycustom-marque.style-3 .scrolling-wrap:hover .comm {
    animation-play-state: paused;
}

.mycustom-marque.style-3.bg-3 {
    background-color: var(--theme);
    border: none;
    box-shadow: none;
    margin-top: -70px;
}

@media (max-width: 1399px) {
    .mycustom-marque.style-3.bg-3 {
        margin-top: 0;
    }
}

.mycustom-marque.style-3.bg-3 .scrolling-wrap .comm .cmn-textslide {
    color: var(--white);
    padding-top: 0;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

@keyframes scroll3 {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(100%);
    }
}

@keyframes scroll2 {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-200%);
    }
}

.marquee-2 {
    margin-bottom: 30px;
}

@media (max-width: 1399px) {
    .marquee-2 {
        margin-bottom: 0;
    }
}

.news-box-items {
    margin: 1rem;
    padding: 16px;
    background-color: var(--white);
    border-radius: 16px;
    box-shadow: 0px 4px 40px 0px rgba(0, 0, 0, 0.06);
}

.news-box-items .news-image {
    border-radius: 12px;
    overflow: hidden;
}

.news-box-items .news-image img {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    transition: all 0.4s ease-in-out;
}

.news-box-items .news-content {
    padding: 25px 14px;
}

.news-box-items .news-content .post-cat {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 10px;
}

@media (max-width: 1399px) {
    .news-box-items .news-content .post-cat {
        flex-wrap: wrap;
        gap: 10px;
    }
}

.news-box-items .news-content .post-cat li {
    font-size: 14px;
    font-weight: 400;
}

.news-box-items .news-content .post-cat li svg {
    margin-right: 5px;
}

.news-box-items .news-content h5 {
    line-height: 140%;
}

.news-box-items .news-content h5 a:hover {
    color: var(--theme);
}

.news-box-items .news-content .news-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 30px;
}

.news-box-items .news-content .news-btn .link-btn {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: #535353;
    text-transform: capitalize;
}

.news-box-items .news-content .news-btn .link-btn:hover {
    color: var(--theme);
}

.news-box-items:hover .news-image img {
    transform: scale(1.1);
}

.news-section {
    position: relative;
    z-index: 7;
}

.news-section .container-fluid {
    padding: 0 175px;
}

@media (max-width: 1600px) {
    .news-section .container-fluid {
        padding: 0 50px;
    }
}

@media (max-width: 1399px) {
    .news-section .container-fluid {
        padding: 0 40px;
    }
}

@media (max-width: 1199px) {
    .news-section .container-fluid {
        padding: 0 30px;
    }
}

.news-section .left-shape {
    position: absolute;
    top: -180px;
    left: 0;
    z-index: -1;
}

.news-card-items {
    margin-top: 30px;
    background-color: #FAF9F6;
}

.news-card-items .news-image {
    overflow: hidden;
}

.news-card-items .news-image img {
    width: 100%;
    height: 100%;
    transition: all 0.4s ease-in-out;
}

.news-card-items .news-content {
    padding: 20px;
    padding-left: 74px;
    position: relative;
    overflow: hidden;
}

@media (max-width: 1899px) {
    .news-card-items .news-content {
        padding-left: 20px;
    }
}

.news-card-items .news-content .post-cat {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 10px;
}

.news-card-items .news-content .post-cat li i {
    color: var(--theme);
    margin-right: 5px;
}

.news-card-items .news-content h5 {
    font-size: 20px;
    font-weight: 500;
}

.news-card-items .news-content h5 a:hover {
    color: var(--theme);
}

.news-card-items .news-content .link-btn {
    color: #535353;
    font-weight: 600;
    margin-top: 10px;
}

.news-card-items .news-content .link-btn:hover {
    color: var(--theme);
}

.news-card-items .news-content .post-date {
    font-size: 16px;
    font-weight: 500;
    color: var(--white);
    background-color: var(--theme);
    display: inline-block;
    padding: 10px 14px;
    line-height: 1;
    position: absolute;
    top: 60px;
    left: -169px;
    width: 100%;
    transform: rotate(90deg);
    text-align: center;
}

@media (max-width: 1899px) {
    .news-card-items .news-content .post-date {
        display: none;
    }
}

.news-card-items .news-content .post-date i {
    margin-right: 10px;
}

.news-card-items:hover .news-image img {
    transform: scale(1.1);
}

.news-standard-wrapper .news-standard-items {
    border: 1px solid #E3E3E3;
    padding: 30px;
    border-radius: 16px;
}

.news-standard-wrapper .news-standard-items:not(:last-child) {
    margin-bottom: 30px;
}

.news-standard-wrapper .news-standard-items .thumb {
    position: relative;
}

.news-standard-wrapper .news-standard-items .thumb img {
    width: 100%;
    height: 100%;
}

.news-standard-wrapper .news-standard-items .content {
    margin-top: 30px;
}

.news-standard-wrapper .news-standard-items .content .post-cat {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 20px;
}

.news-standard-wrapper .news-standard-items .content .post-cat li i {
    color: var(--theme);
    margin-right: 5px;
}

.news-standard-wrapper .news-standard-items .content h3 {
    font-size: 30px;
    margin-bottom: 20px;
}

.news-standard-wrapper .news-standard-items .content h3 a:hover {
    color: var(--theme);
}

.news-standard-wrapper .news-standard-items .content .theme-btn {
    display: inline-block;
    padding: 18px 30px;
    background-color: var(--theme);
    color: var(--white);
    line-height: 1;
    font-size: 14px;
    font-weight: 600;
    border-radius: 8px;
    margin-top: 30px;
}

.news-standard-wrapper .news-standard-items .content .theme-btn i {
    margin-left: 8px;
}

.news-standard-wrapper .news-standard-items .content .theme-btn:hover {
    background-color: var(--header);
}

.main-sidebar .single-sidebar-widget {
    padding: 40px 30px;
    background-color: var(--bg);
    margin-bottom: 30px;
    border-radius: 10px;
}

.main-sidebar .single-sidebar-widget .wid-title {
    margin-bottom: 25px;
}

.main-sidebar .single-sidebar-widget .wid-title h4 {
    font-weight: 600;
}

.main-sidebar .single-sidebar-widget .search-widget form {
    width: 100%;
    position: relative;
}

.main-sidebar .single-sidebar-widget .search-widget form input {
    background-color: var(--white);
    font-size: 16px;
    padding: 20px;
    width: 100%;
    border: none;
    color: var(--text);
}

.main-sidebar .single-sidebar-widget .search-widget form button {
    position: absolute;
    right: 0;
    top: 0;
    width: 70px;
    font-size: 16px;
    height: 100%;
    background-color: var(--theme);
    color: var(--white);
    text-align: center;
    transition: all 0.3s ease-in-out;
}

.main-sidebar .single-sidebar-widget .search-widget form button:hover {
    background-color: var(--header);
}

.main-sidebar .single-sidebar-widget .news-widget-categories ul li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 25px;
    background-color: var(--white);
    font-weight: 500;
    transition: all 0.4s ease-in-out;
    border-radius: 0;
    font-size: 16px;
    line-height: 1;
}

.main-sidebar .single-sidebar-widget .news-widget-categories ul li a {
    color: var(--header);
}

.main-sidebar .single-sidebar-widget .news-widget-categories ul li span {
    transition: all 0.4s ease-in-out;
    color: var(--header);
}

.main-sidebar .single-sidebar-widget .news-widget-categories ul li:not(:last-child) {
    margin-bottom: 12px;
}

.main-sidebar .single-sidebar-widget .news-widget-categories ul li:hover {
    background-color: var(--theme);
}

.main-sidebar .single-sidebar-widget .news-widget-categories ul li:hover a {
    color: var(--white);
}

.main-sidebar .single-sidebar-widget .news-widget-categories ul li:hover span {
    color: var(--white);
}

.main-sidebar .single-sidebar-widget .news-widget-categories ul li.active {
    background-color: var(--theme);
}

.main-sidebar .single-sidebar-widget .news-widget-categories ul li.active a {
    color: var(--white);
}

.main-sidebar .single-sidebar-widget .news-widget-categories ul li.active span {
    color: var(--white);
}

.main-sidebar .single-sidebar-widget .recent-post-area .recent-items {
    display: flex;
    align-items: center;
    gap: 16px;
}

.main-sidebar .single-sidebar-widget .recent-post-area .recent-items:not(:last-child) {
    margin-bottom: 20px;
    border-bottom: 1px solid var(--border);
    padding-bottom: 20px;
}

.main-sidebar .single-sidebar-widget .recent-post-area .recent-items .recent-content ul {
    margin-bottom: 8px;
}

.main-sidebar .single-sidebar-widget .recent-post-area .recent-items .recent-content ul li i {
    color: var(--theme);
    margin-right: 8px;
}

.main-sidebar .single-sidebar-widget .recent-post-area .recent-items .recent-content h6 {
    font-weight: 700;
}

.main-sidebar .single-sidebar-widget .recent-post-area .recent-items .recent-content h6 a:hover {
    color: var(--theme);
}

.main-sidebar .single-sidebar-widget .tagcloud a {
    display: inline-block;
    padding: 11px 20px;
    line-height: 1;
    font-size: 16px;
    font-weight: 500;
    background: var(--white);
    margin-right: 5px;
    text-transform: capitalize;
    margin-bottom: 10px;
    border-radius: 0;
    transition: all 0.4s ease-in-out;
    color: var(--text);
}

.main-sidebar .single-sidebar-widget .tagcloud a:last-child {
    margin-right: 0;
}

.main-sidebar .single-sidebar-widget .tagcloud a:hover {
    background-color: var(--theme);
    color: var(--white);
}

.news-details-wrapper .news-post-details .single-news-post .post-featured-thumb img {
    width: 100%;
    height: 100%;
}

.news-details-wrapper .news-post-details .single-news-post .post-content {
    margin-top: 30px;
}

.news-details-wrapper .news-post-details .single-news-post .post-content .post-list {
    gap: 30px;
    margin-bottom: 20px;
    border-bottom: 1px solid #F2F5FA;
    padding-bottom: 20px;
}

.news-details-wrapper .news-post-details .single-news-post .post-content .post-list li {
    font-size: 14px;
    font-weight: 500;
}

.news-details-wrapper .news-post-details .single-news-post .post-content .post-list li i {
    color: var(--theme);
    margin-right: 5px;
}

.news-details-wrapper .news-post-details .single-news-post .post-content h3 {
    margin-bottom: 20px;
    font-size: 30px;
}

@media (max-width: 575px) {
    .news-details-wrapper .news-post-details .single-news-post .post-content h3 {
        font-size: 24px;
    }
}

.news-details-wrapper .news-post-details .single-news-post .post-content h3 a:hover {
    color: var(--theme);
}

.news-details-wrapper .news-post-details .single-news-post .post-content p {
    font-weight: 400;
}

.news-details-wrapper .news-post-details .single-news-post .post-content .hilight-text {
    border-left: 4px solid var(--theme);
    padding: 36px 40px;
    border-radius: 10px;
    background-color: var(--bg);
}

.news-details-wrapper .news-post-details .single-news-post .post-content .hilight-text p {
    font-weight: 400;
    text-transform: capitalize;
    font-style: italic;
    line-height: 26px;
    color: var(--header);
}

.news-details-wrapper .news-post-details .single-news-post .post-content .hilight-text svg {
    float: right;
    margin-top: -30px;
}

.news-details-wrapper .news-post-details .single-news-post .post-content .details-image img {
    width: 100%;
    height: 100%;
}

.news-details-wrapper .news-post-details .tag-share-wrap {
    border-top: 1px solid #F2F5FA;
    border-bottom: 1px solid #F2F5FA;
    padding: 30px 0;
}

.news-details-wrapper .news-post-details .tag-share-wrap .tagcloud span {
    display: inline-block;
    font-weight: 600;
    color: var(--header);
    margin-right: 15px;
}

.news-details-wrapper .news-post-details .tag-share-wrap .tagcloud a {
    display: inline-block;
    padding: 12px 26px;
    line-height: 1;
    background: transparent;
    border: 1px solid #F2F5FA;
    margin-right: 8px;
    text-transform: capitalize;
    font-weight: 500;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    border-radius: 0;
}

@media (max-width: 575px) {
    .news-details-wrapper .news-post-details .tag-share-wrap .tagcloud a {
        margin-bottom: 5px;
    }
}

.news-details-wrapper .news-post-details .tag-share-wrap .tagcloud a:hover {
    background-color: var(--theme);
    color: var(--white);
}

.news-details-wrapper .news-post-details .tag-share-wrap .social-share span {
    font-size: 16px;
    color: var(--header);
    font-weight: 600;
}

.news-details-wrapper .news-post-details .tag-share-wrap .social-share a {
    font-size: 16px;
    color: var(--header);
}

.news-details-wrapper .news-post-details .tag-share-wrap .social-share a:not(:last-child) {
    margin-right: 10px;
}

.news-details-wrapper .news-post-details .tag-share-wrap .social-share a:hover {
    color: var(--theme);
}

.news-details-wrapper .news-post-details .comments-area {
    margin-top: 40px;
}

.news-details-wrapper .news-post-details .comments-area .comments-heading {
    margin-bottom: 30px;
}

@media (max-width: 575px) {
    .news-details-wrapper .news-post-details .comments-area .comments-heading {
        margin-bottom: 20px;
    }
}

.news-details-wrapper .news-post-details .comments-area .comments-heading h3 {
    font-size: 24px;
    font-weight: 700;
}

@media (max-width: 575px) {
    .news-details-wrapper .news-post-details .comments-area .comments-heading h3 {
        font-size: 22px;
    }
}

.news-details-wrapper .news-post-details .comments-area .blog-single-comment {
    border-bottom: 1px solid #D4DCED;
}

@media (max-width: 575px) {
    .news-details-wrapper .news-post-details .comments-area .blog-single-comment {
        flex-wrap: wrap;
        gap: 20px;
    }
}

.news-details-wrapper .news-post-details .comments-area .blog-single-comment .content .head {
    margin-bottom: 10px;
}

.news-details-wrapper .news-post-details .comments-area .blog-single-comment .content .head .con h5 {
    margin-bottom: 5px;
    font-weight: 600;
}

.news-details-wrapper .news-post-details .comments-area .blog-single-comment .content .reply {
    padding: 6px 16px;
    font-weight: 400;
    border-radius: 50px;
    background-color: var(--theme);
    color: var(--white);
    transition: all 0.4s ease-in-out;
}

.news-details-wrapper .news-post-details .comments-area .blog-single-comment .content .reply:hover {
    background-color: var(--header);
}

.news-details-wrapper .news-post-details .comments-area .blog-single-comment .content .reply.color-2 {
    background-color: var(--header);
}

.news-details-wrapper .news-post-details .comments-area .blog-single-comment .content .reply.color-2:hover {
    background-color: var(--theme);
}

.news-details-wrapper .news-post-details .comment-form-wrap h3 {
    font-size: 24px;
    margin-bottom: 30px;
}

@media (max-width: 575px) {
    .news-details-wrapper .news-post-details .comment-form-wrap h3 {
        margin-bottom: 20px;
    }
}

.news-details-wrapper .news-post-details .comment-form-wrap .form-clt span {
    color: var(--header);
    display: inline-block;
    margin-bottom: 10px;
}

.news-details-wrapper .news-post-details .comment-form-wrap .form-clt input,
.news-details-wrapper .news-post-details .comment-form-wrap .form-clt textarea {
    width: 100%;
    outline: none;
    border: none;
    background-color: transparent;
    border: 1px solid #D4DCED;
    padding: 16px 20px;
    font-weight: 500;
    color: var(--text);
}

.news-details-wrapper .news-post-details .comment-form-wrap .form-clt input::placeholder,
.news-details-wrapper .news-post-details .comment-form-wrap .form-clt textarea::placeholder {
    color: var(--text);
}

.news-details-wrapper .news-post-details .comment-form-wrap .form-clt textarea {
    padding-bottom: 100px;
}

.news-details-wrapper .news-post-details .comment-form-wrap .theme-btn {
    display: inline-block;
    padding: 18px 30px;
    background-color: var(--theme);
    color: var(--white);
    line-height: 1;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.4s ease-in-out;
}

.news-details-wrapper .news-post-details .comment-form-wrap .theme-btn i {
    margin-left: 8px;
}

.news-details-wrapper .news-post-details .comment-form-wrap .theme-btn:hover {
    background-color: var(--header);
}

.preloader {
    align-items: center;
    cursor: default;
    display: flex;
    height: 100%;
    justify-content: center;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 9999999;
}

.preloader .animation-preloader {
    z-index: 1000;
}

.preloader .animation-preloader .spinner {
    animation: spinner 1s infinite linear;
    border-radius: 50%;
    border: 3px solid rgba(0, 0, 0, 0.2);
    border-top-color: var(--theme);
    height: 9em;
    margin: 0 auto 3.5em auto;
    width: 9em;
}

@media (max-width: 767px) {
    .preloader .animation-preloader .spinner {
        width: 7.5em;
        height: 7.5em;
        margin: 0 auto 1.5em auto;
    }
}

.preloader .animation-preloader .txt-loading {
    font: bold 5em "Plus Jakarta Sans", sans-serif, "Plus Jakarta Sans", sans-serif;
    text-align: center;
    user-select: none;
}

@media (max-width: 767px) {
    .preloader .animation-preloader .txt-loading {
        font-size: 2.5em;
    }
}

.preloader .animation-preloader .txt-loading .letters-loading {
    color: var(--theme);
    position: relative;
}

.preloader .animation-preloader .txt-loading .letters-loading:nth-child(2):before {
    animation-delay: 0.2s;
}

.preloader .animation-preloader .txt-loading .letters-loading:nth-child(3):before {
    animation-delay: 0.4s;
}

.preloader .animation-preloader .txt-loading .letters-loading:nth-child(4):before {
    animation-delay: 0.6s;
}

.preloader .animation-preloader .txt-loading .letters-loading:nth-child(5):before {
    animation-delay: 0.8s;
}

.preloader .animation-preloader .txt-loading .letters-loading:nth-child(6):before {
    animation-delay: 1s;
}

.preloader .animation-preloader .txt-loading .letters-loading:nth-child(7):before {
    animation-delay: 1.2s;
}

.preloader .animation-preloader .txt-loading .letters-loading:nth-child(8):before {
    animation-delay: 1.4s;
}

.preloader .animation-preloader .txt-loading .letters-loading::before {
    animation: letters-loading 4s infinite;
    color: var(--header);
    content: attr(data-text-preloader);
    left: 0;
    opacity: 0;
    font-family: "Plus Jakarta Sans", sans-serif;
    position: absolute;
    top: -3px;
    transform: rotateY(-90deg);
}

.preloader p {
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 8px;
    color: var(--theme);
}

.preloader .loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    font-size: 0;
    z-index: 1;
    pointer-events: none;
}

.preloader .loader .row {
    height: 100%;
}

.preloader .loader .loader-section {
    padding: 0px;
}

.preloader .loader .loader-section .bg {
    background-color: var(--bg);
    height: 100%;
    left: 0;
    width: 100%;
    transition: all 800ms cubic-bezier(0.77, 0, 0.175, 1);
}

.preloader.loaded .animation-preloader {
    opacity: 0;
    transition: 0.3s ease-out;
}

.preloader.loaded .loader-section .bg {
    width: 0;
    transition: 0.7s 0.3s allcubic-bezier(0.1, 0.1, 0.1, 1);
}

.search-wrap {
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999999;
    background-color: rgba(255, 255, 255, 0.9);
}

.search-wrap .search-inner {
    position: relative;
    width: 100%;
    height: 100%;
}

.search-wrap .search-cell {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
}

.search-wrap .search-field-holder {
    width: 50%;
    margin: auto;
    position: relative;
    animation: slideInUp 0.3s;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .search-wrap .search-field-holder {
        width: 70%;
    }
}

@media (max-width: 575px) {
    .search-wrap .search-field-holder {
        width: 80%;
    }
}

.search-wrap .main-search-input {
    width: 100%;
    height: 70px;
    border: 0;
    padding: 0 50px;
    text-transform: capitalize;
    background: transparent;
    font-size: 25px;
    color: var(--theme);
    border-bottom: 2px solid var(--theme);
    text-align: center;
    letter-spacing: 2px;
}

@media (max-width: 575px) {
    .search-wrap .main-search-input {
        height: 50px;
        padding: 0 0;
        line-height: 50px;
        font-size: 18px;
    }
}

.search-wrap input.form-control,
.search-wrap input.form-control:focus {
    background-color: var(--theme);
}

input.main-search-input::placeholder {
    color: var(--theme);
    opacity: 1;
    font-size: 25px;
}

@media (max-width: 575px) {
    input.main-search-input::placeholder {
        font-size: 18px;
    }
}

.search-close {
    position: absolute;
    top: 50px;
    right: 50px;
    font-size: 30px;
    color: var(--theme);
    cursor: pointer;
}

.mouse-cursor {
    position: fixed;
    left: 0;
    top: 0;
    pointer-events: none;
    border-radius: 50%;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    visibility: hidden;
}

.cursor-inner {
    width: 6px;
    height: 6px;
    z-index: 10000001;
    background-color: var(--theme);
    -webkit-transition: width 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
    -o-transition: width 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
    transition: width 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.cursor-inner.cursor-hover {
    margin-left: -35px;
    margin-top: -35px;
    width: 70px;
    height: 70px;
    background-color: var(--theme);
    opacity: 0.3;
}

.cursor-outer {
    margin-left: -12px;
    margin-top: -12px;
    width: 30px;
    height: 30px;
    border: 1px solid var(--theme);
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    z-index: 10000000;
    opacity: 0.5;
    -webkit-transition: all 0.08s ease-out;
    -o-transition: all 0.08s ease-out;
    transition: all 0.08s ease-out;
}

.cursor-outer.cursor-hover {
    opacity: 0;
}

.back-to-top {
    border-radius: 50%;
    background-color: var(--theme);
    width: 50px;
    height: 50px;
    line-height: 50px;
    color: var(--white);
    font-size: 18px;
    position: fixed;
    display: inline-block;
    z-index: 999;
    right: 30px;
    bottom: 30px;
    transition: all 0.4s ease-in-out;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.back-to-top:hover {
    background-color: var(--header);
    color: var(--white);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translate(0);
}

.pricing-box-items {
    border-radius: 20px;
    border: 1px solid #D4DCFF;
    background: var(--white);
    padding: 30px;
}

.pricing-box-items .pricing-header {
    border-radius: 16px;
    background: #17012C;
    padding: 24px;
    position: relative;
}

.pricing-box-items .pricing-header .icon {
    position: absolute;
    top: 24px;
    right: 24px;
}

.pricing-box-items .pricing-header h4 {
    color: var(--white);
}

.pricing-box-items .pricing-header h2 {
    color: var(--white);
    font-size: 40px;
    margin-top: 20px;
}

.pricing-box-items .pricing-header h2 sub {
    color: var(--white);
    font-size: 16px;
    font-weight: 400;
    margin-left: -5px;
}

.pricing-box-items .price-list {
    margin-top: 30px;
}

.pricing-box-items .price-list li {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.pricing-box-items .price-list li:not(:last-child) {
    margin-bottom: 10px;
}

.pricing-box-items .price-list li .price-1 {
    font-weight: 500;
}

.pricing-box-items .price-list li .price-1.color-2 i {
    color: #FF1010;
}

.pricing-box-items .price-list li .price-1 i {
    color: var(--theme);
    margin-right: 5px;
}

.pricing-box-items .price-button {
    margin-top: 40px;
}

.pricing-box-items .price-button .theme-btn {
    text-align: center;
    width: 100%;
    padding: 12px 20px;
    border-radius: 16px;
    background: #17012C;
    display: inline-block;
    color: var(--white);
    font-weight: 700;
}

.pricing-box-items .price-button .theme-btn i {
    margin-left: 10px;
}

.pricing-box-items .price-button .theme-btn:hover {
    background-color: var(--theme);
}

.pricing-box-items.style-2 .pricing-header {
    background: #6A47ED;
}

.pricing-box-items.style-2 .price-button .theme-btn {
    border: 1.5px solid var(--theme);
    display: inline-block;
    color: var(--theme);
    background: transparent;
}

.pricing-box-items.style-2 .price-button .theme-btn:hover {
    background-color: var(--theme);
    color: var(--white);
}

.pricing-content .pricing-tab-header {
    margin-top: 40px;
    margin-bottom: 30px;
    position: relative;
}

@media (max-width: 767px) {
    .pricing-content .pricing-tab-header {
        margin-bottom: 0;
    }
}

.pricing-content .pricing-tab-header .arrow-shape {
    position: absolute;
    left: 48.5%;
    top: 0;
    animation: rounded 5s linear infinite;
}

@media (max-width: 1199px) {
    .pricing-content .pricing-tab-header .arrow-shape {
        display: none;
    }
}

.pricing-content .pricing-tab-header .nav {
    display: flex;
    align-items: center;
    gap: 0;
    background-color: var(--white);
    border: 1px solid var(--border);
    border-radius: 100px;
    padding: 6px;
    max-width: 210px;
}

@media (max-width: 991px) {
    .pricing-content .pricing-tab-header .nav {
        max-width: 325px;
    }
}

@media (max-width: 575px) {
    .pricing-content .pricing-tab-header .nav {
        gap: 15px;
        max-width: 225px;
    }
}

.pricing-content .pricing-tab-header .nav .nav-link {
    text-align: center;
    padding: 14px 20px;
    border-radius: 100px;
    line-height: 1;
    font-weight: 600;
    font-size: 16px;
    text-transform: capitalize;
    color: var(--header);
    transition: all 0.3s ease-in-out;
}

@media (max-width: 991px) {
    .pricing-content .pricing-tab-header .nav .nav-link {
        padding: 14px 45px;
        font-size: 18px;
    }
}

@media (max-width: 575px) {
    .pricing-content .pricing-tab-header .nav .nav-link {
        padding: 12px 20px;
        font-size: 14px;
    }
}

.pricing-content .pricing-tab-header .nav .nav-link.active {
    position: relative;
    background-color: var(--theme);
    color: var(--white);
}

.pricing-content .pricing-tab-header .save-text {
    font-weight: 500;
    color: var(--theme);
    font-size: 18px;
    text-align: center;
    margin-left: 60%;
}

.pricing-section {
    position: relative;
}

.pricing-section .left-shape {
    position: absolute;
    bottom: 0;
    left: 0;
}

@media (max-width: 1399px) {
    .pricing-section .left-shape {
        display: none;
    }
}

.pricing-section .right-shape {
    position: absolute;
    bottom: 0;
    right: 0;
}

@media (max-width: 1399px) {
    .pricing-section .right-shape {
        display: none;
    }
}

.case-study-wrapper .case-study-box-items {
    margin-top: 30px;
}

.case-study-wrapper .case-study-box-items .thumb {
    position: relative;
}

.case-study-wrapper .case-study-box-items .thumb img {
    width: 100%;
    height: 100%;
    border-radius: 24px;
}

@media (max-width: 575px) {
    .case-study-wrapper .case-study-box-items .thumb {
        height: 450px;
    }
    .case-study-wrapper .case-study-box-items .thumb img {
        object-fit: cover;
    }
}

.case-study-wrapper .case-study-box-items .thumb .post-box-items {
    position: absolute;
    top: 30px;
    left: 30px;
}

.case-study-wrapper .case-study-box-items .thumb .post-box-items ul {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.case-study-wrapper .case-study-box-items .thumb .post-box-items ul li a {
    border-radius: 33px;
    border: 0.5px solid var(--white);
    background: radial-gradient(258.86% 216.49% at -18.48% -74.46%, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0) 100%);
    backdrop-filter: blur(25px);
    font-size: 14px;
    font-weight: 500;
    color: var(--white);
    padding: 11px 15px;
    line-height: 1;
    display: inline-block;
}

.case-study-wrapper .case-study-box-items .thumb .post-box-items ul li a i {
    margin-left: 10px;
}

.case-study-wrapper .case-study-box-items .thumb .project-title {
    position: absolute;
    bottom: 30px;
    left: 30px;
}

.case-study-wrapper .case-study-box-items .thumb .project-title img {
    width: initial;
    height: initial;
    border-radius: 0;
    margin-right: 10px;
}

.case-study-wrapper .case-study-box-items .thumb .project-title a {
    color: var(--white);
}

.case-study-wrapper .case-study-box-items .thumb .number {
    right: 30px;
    bottom: 30px;
    position: absolute;
    width: 44px;
    height: 44px;
    line-height: 44px;
    text-align: center;
    border-radius: 50%;
    background-color: var(--white);
    font-size: 14px;
    font-weight: 500;
    color: var(--header);
}

.case-study-wrapper .main-box {
    padding: 0;
    gap: 30px;
    display: flex;
    align-items: center;
}

@media (max-width: 1399px) {
    .case-study-wrapper .main-box {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0 30px;
    }
}

.case-study-wrapper .main-box .box {
    background-image: url(../img/case-studies/05.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 1;
    width: 92px !important;
    height: 328px;
    position: relative;
    overflow: hidden;
    list-style: none;
    border-radius: 24px;
    transition: all 0.4s ease-in-out;
    margin-top: 30px;
    overflow: hidden;
    background-color: var(--theme);
}

.case-study-wrapper .main-box .box .title-items {
    position: relative;
    z-index: 9;
    height: 100%;
    transition: all 0.4s ease-in-out;
}

@media (max-width: 1399px) {
    .case-study-wrapper .main-box .box .title-items {
        display: none;
    }
}

.case-study-wrapper .main-box .box .title-items h3 {
    position: absolute;
    top: 40%;
    left: 70%;
    transform: translate(-50%, -50%) rotate(-90deg);
}

.case-study-wrapper .main-box .box .title-items h3 a {
    color: var(--white);
    display: ruby-text;
}

.case-study-wrapper .main-box .box .title-items .number {
    width: 44px;
    height: 44px;
    line-height: 44px;
    text-align: center;
    border-radius: 50%;
    background-color: var(--white);
    font-size: 14px;
    font-weight: 600;
    color: var(--header);
    display: inline-block;
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
}

@media (max-width: 1399px) {
    .case-study-wrapper .main-box .box .title-items .number {
        display: none;
    }
}

.case-study-wrapper .main-box .box::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    border-radius: 24px;
    background: var(--theme);
}

@media (max-width: 1399px) {
    .case-study-wrapper .main-box .box::before {
        display: none;
    }
}

@media (max-width: 1399px) {
    .case-study-wrapper .main-box .box {
        width: initial !important;
    }
}

.case-study-wrapper .main-box .box .number-hover {
    width: 44px;
    height: 44px;
    line-height: 44px;
    text-align: center;
    border-radius: 50%;
    background-color: var(--white);
    font-size: 14px;
    font-weight: 600;
    color: var(--header);
    display: inline-block;
    position: absolute;
    top: 30px;
    left: 30px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease-in-out;
}

@media (max-width: 1399px) {
    .case-study-wrapper .main-box .box .number-hover {
        opacity: 1;
        visibility: visible;
    }
}

.case-study-wrapper .main-box .box .project-content {
    position: absolute;
    bottom: -100px;
    left: 30px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease-in-out;
    right: 30px;
}

@media (max-width: 1399px) {
    .case-study-wrapper .main-box .box .project-content {
        opacity: 1;
        visibility: visible;
        bottom: 30px;
    }
}

.case-study-wrapper .main-box .box .project-content h3 {
    margin-bottom: 10px;
}

.case-study-wrapper .main-box .box .project-content h3 a {
    color: var(--white);
}

.case-study-wrapper .main-box .box .project-content p {
    color: var(--white);
    line-height: 162%;
}

.case-study-wrapper .main-box .box .project-content .link-btn {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
    text-transform: capitalize;
}

.case-study-wrapper .main-box .box .project-content .icon {
    transform: rotate(-40deg);
    color: var(--theme);
    transition: all 0.4s ease-in-out;
}

.case-study-wrapper .main-box .box .project-content .icon:hover {
    transform: rotate(0);
}

@media (max-width: 1399px) {
    .case-study-wrapper .main-box .box {
        width: 328px !important;
    }
    .case-study-wrapper .main-box .box::before {
        border: 0.5px solid var(--white);
        background: radial-gradient(258.86% 216.49% at -18.48% -74.46%, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0) 100%);
        backdrop-filter: blur(25px);
    }
    .case-study-wrapper .main-box .box .number-hover {
        opacity: 1;
        visibility: visible;
    }
    .case-study-wrapper .main-box .box .project-content {
        opacity: 1;
        visibility: visible;
        bottom: 20px;
    }
    .case-study-wrapper .main-box .box .title-items {
        opacity: 0;
        visibility: hidden;
    }
}

.case-study-wrapper .main-box .box.active {
    width: 328px !important;
}

.case-study-wrapper .main-box .box.active::before {
    border: 0.5px solid var(--white);
    background: radial-gradient(258.86% 216.49% at -18.48% -74.46%, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0) 100%);
    backdrop-filter: blur(25px);
}

.case-study-wrapper .main-box .box.active .number-hover {
    opacity: 1;
    visibility: visible;
}

.case-study-wrapper .main-box .box.active .project-content {
    opacity: 1;
    visibility: visible;
    bottom: 30px;
}

.case-study-wrapper .main-box .box.active .title-items {
    opacity: 0;
    visibility: hidden;
}

.case-study-section {
    position: relative;
}

.case-study-section .overlay-shape {
    position: absolute;
    bottom: 0;
    left: 0;
}

.case-study-section .left-shape {
    position: absolute;
    bottom: 0;
    left: 40px;
}

@media (max-width: 1600px) {
    .case-study-section .left-shape {
        display: none;
    }
}

.case-study-section .right-shape {
    position: absolute;
    bottom: 0;
    right: 40px;
}

@media (max-width: 1600px) {
    .case-study-section .right-shape {
        display: none;
    }
}

.case-studies-section-2 .client-items {
    position: relative;
    z-index: 9;
}

.case-studies-section-2 .client-items .client-img {
    margin-top: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.case-studies-section-2 .client-items .client-img .star-icon .star {
    font-size: 14px;
    color: #FBB03B;
}

.case-studies-section-2 .client-items .client-img .star-icon span {
    color: var(--white);
    font-size: 14px;
    line-height: 1;
}

.case-studies-wrapper-2 .case-studies-items {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 30px;
    padding: 35px 0;
    position: relative;
}

@media (max-width: 991px) {
    .case-studies-wrapper-2 .case-studies-items {
        flex-wrap: wrap;
        gap: 30px;
    }
}

.case-studies-wrapper-2 .case-studies-items .content {
    max-width: 570px;
}

.case-studies-wrapper-2 .case-studies-items .content h3 a {
    color: var(--white);
}

.case-studies-wrapper-2 .case-studies-items .content h3 a:hover {
    color: var(--theme);
}

.case-studies-wrapper-2 .case-studies-items .content span {
    color: var(--white);
    display: inline-block;
    margin-bottom: 20px;
}

.case-studies-wrapper-2 .case-studies-items .content p {
    color: var(--white);
}

.case-studies-wrapper-2 .case-studies-items .main-button .theme-btn,
.case-studies-wrapper-2 .case-studies-items .main-button .arrow-btn {
    background-color: var(--theme2);
    color: var(--header);
}

.case-studies-wrapper-2 .case-studies-items .main-button:hover .theme-btn,
.case-studies-wrapper-2 .case-studies-items .main-button:hover .arrow-btn {
    background-color: var(--white);
}

.case-studies-wrapper-2 .case-studies-items .case-studies-hover {
    width: 379px;
    height: 256px;
    position: absolute;
    border-radius: 0;
    top: 50%;
    transform: translateY(-50%) rotate(-12.317deg);
    inset-inline-start: 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-position-x: 75%;
    opacity: 0;
    transition: opacity 0.3s, transform 0.7s cubic-bezier(0.23, 1, 0.32, 1);
    margin: -200px 0 0 -50px;
    overflow: hidden;
    pointer-events: none;
    z-index: 2;
    visibility: hidden;
}

.case-studies-wrapper-2 .case-studies-items:hover .case-studies-hover {
    opacity: 1;
    visibility: visible;
}

.case-studies-section-3 {
    position: relative;
    z-index: 9;
}

.case-studies-section-3::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    background-color: #F8F8F8;
    top: 50%;
    z-index: -1;
}

.case-studies-section-3 .container-fluid {
    padding: 0 30px;
}

.case-studies-card-items {
    margin-top: 30px;
}

.case-studies-card-items .thumb img {
    width: 100%;
    height: 100%;
    border-radius: 30px;
}

.case-studies-card-items .content {
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
}

.case-studies-card-items .content .title h3 a:hover {
    color: var(--theme);
}

.case-studies-card-items .content .title p {
    font-weight: 500;
    text-transform: capitalize;
}

.case-studies-card-items .content .icon {
    display: inline-block;
    width: 52px;
    height: 52px;
    line-height: 52px;
    background-color: var(--theme);
    color: var(--white);
    text-align: center;
    border-radius: 50%;
}

.case-studies-card-items .content .icon:hover {
    background-color: var(--header);
}

.project-details-wrapper .details-top-items {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #E5E5E5;
    padding-bottom: 40px;
}

@media (max-width: 1199px) {
    .project-details-wrapper .details-top-items {
        flex-wrap: wrap;
        gap: 20px;
    }
}

.project-details-wrapper .details-top-items .details-left h2 {
    font-size: 36px;
    font-weight: 700;
}

.project-details-wrapper .details-top-items .details-left .post-cat {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
}

.project-details-wrapper .details-top-items .details-left .post-cat li a {
    display: inline-block;
    font-size: 16px;
    font-weight: 500;
    color: var(--theme);
    text-transform: capitalize;
    border: 1px solid #E5E5E5;
    padding: 8px 15px;
    border-radius: 100px;
    line-height: 1;
}

.project-details-wrapper .details-top-items .details-right .client-details li {
    font-size: 16px;
    font-weight: 700;
    color: var(--header);
}

.project-details-wrapper .details-top-items .details-right .client-details li span {
    color: var(--text);
    font-weight: 400;
}

.project-details-wrapper .project-details-content {
    margin-top: 30px;
}

.project-details-wrapper .project-details-content h3 {
    font-size: 36px;
    margin-bottom: 20px;
}

@media (max-width: 767px) {
    .project-details-wrapper .project-details-content h3 {
        font-size: 32px;
    }
}

@media (max-width: 575px) {
    .project-details-wrapper .project-details-content h3 {
        font-size: 28px;
    }
}

.project-details-wrapper .project-details-content .details-image img {
    width: 100%;
    height: 100%;
}

.project-details-wrapper .project-details-content .list-items {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.list-items img {
    height: 80px;
    border-radius: 10px;
    padding: 0.4rem;
    background: #fff;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 20px 25px -5px, rgba(0, 0, 0, 0.04) 0px 10px 10px -5px;
}

@media (max-width: 1399px) {
    .project-details-wrapper .project-details-content .list-items {
        flex-wrap: wrap;
        gap: 20px;
    }
}

.project-details-wrapper .project-details-content .list-items li {
    color: var(--header);
    text-transform: capitalize;
    position: relative;
}

.project-details-wrapper .project-details-content .list-items li span {
    padding-left: 25px;
    display: inline-block;
}

.project-details-wrapper .project-details-content .list-items li::before {
    position: absolute;
    top: 10px;
    left: 0;
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 6px;
    background-color: var(--theme);
}

.project-details-wrapper .project-details-content .list-items li:not(:last-child) {
    margin-bottom: 15px;
}

.project-details-wrapper .project-details-content .progress-wrap .pro-items {
    width: 100%;
}

.project-details-wrapper .project-details-content .progress-wrap .pro-items:not(:last-child) {
    margin-bottom: 20px;
}

.project-details-wrapper .project-details-content .progress-wrap .pro-items .pro-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.project-details-wrapper .project-details-content .progress-wrap .pro-items .pro-head .title {
    font-size: 16px;
    color: var(--header);
    font-weight: 700;
}

.project-details-wrapper .project-details-content .progress-wrap .pro-items .pro-head .point {
    font-size: 16px;
    color: var(--header);
    font-weight: 700;
}

.project-details-wrapper .project-details-content .progress-wrap .pro-items .progress {
    background: #F6F3FE;
    justify-content: flex-start;
    border-radius: 0;
    align-items: center;
    position: relative;
    display: flex;
    height: 8px;
    width: 100%;
}

.project-details-wrapper .project-details-content .progress-wrap .pro-items .progress-value {
    animation: load 3s normal forwards;
    border-radius: 0;
    background: var(--theme);
    height: 8px;
    width: 0;
}

.project-details-wrapper .project-details-content .progress-wrap .pro-items .style-two {
    animation: load2 3s normal forwards;
}

@keyframes load {
    0% {
        width: 0;
    }
    100% {
        width: 76%;
    }
}

@keyframes load2 {
    0% {
        width: 0;
    }
    100% {
        width: 85%;
    }
}

.slider-button {
    border-top: 1px solid #E5E5E5;
    border-bottom: 1px solid #E5E5E5;
    margin-top: 65px;
    padding: 25px 0;
}

.slider-button .cmn-next,
.slider-button .cmn-prev {
    width: 70px;
    height: 70px;
    line-height: 70px;
    text-align: center;
    border-radius: 50%;
    transition: all 0.4s;
    border: 1px solid #E5E5E5;
}

.slider-button .cmn-next i,
.slider-button .cmn-prev i {
    color: #454750;
    font-size: 24px;
    transition: all 0.4s;
}

.slider-button .cmn-next:hover,
.slider-button .cmn-prev:hover {
    background: var(--theme);
    border-color: var(--theme);
}

.slider-button .cmn-next:hover i,
.slider-button .cmn-prev:hover i {
    color: var(--white);
}

@media (max-width: 1399px) {
    .slider-button .cmn-next,
    .slider-button .cmn-prev {
        width: 48px;
        height: 48px;
        line-height: 48px;
    }
    .slider-button .cmn-next i,
    .slider-button .cmn-prev i {
        font-size: 17px;
    }
}

@media (max-width: 1399px) {
    .slider-button .cmn-next,
    .slider-button .cmn-prev {
        width: 38px;
        height: 38px;
        line-height: 38px;
    }
    .slider-button .cmn-next i,
    .slider-button .cmn-prev i {
        font-size: 16px;
    }
}

.slider-button .previus-text {
    font-size: 22px;
    color: var(--header);
}

@media (max-width: 575px) {
    .slider-button .previus-text {
        font-size: 18px;
    }
    .slider-button .project-storke {
        font-size: 30px;
    }
}

@media (max-width: 575px) {
    .slider-button .previus-text {
        font-size: 16px;
    }
    .slider-button .project-storke {
        font-size: 24px;
    }
}

@media (max-width: 470px) {
    .slider-button .previus-text {
        font-size: 14px;
    }
    .slider-button .project-storke {
        display: none;
    }
}

.section-title {
    position: relative;
    z-index: 99;
    margin-bottom: 30px;
    margin-top: -1px;
}

@media (max-width: 767px) {
    .section-title {
        margin-bottom: 0;
    }
}

.sub-title {
    padding: 6px 20px;
    border-radius: 100px;
    display: inline-block;
    /*background: var(--bg);*/
    background: linear-gradient(90deg, #fede61, orange, #fede61);
    margin-bottom: 20px;
}

.sub-title span {
    /*background: linear-gradient(90deg, #240CF2 0%, #00A9B5 100%);*/
    background: black;
    display: inline-block;
    font-weight: 700;
    text-transform: uppercase;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 14px;
}

.section-title .sub-title.bg-color-2 {
    background: rgba(56, 75, 255, 0.1);
}

.section-title .sub-title.bg-color-3 {
    background: rgba(246, 243, 254, 0.1);
}

.section-title .sub-title.bg-color-3 span {
    color: var(--white);
    -webkit-text-fill-color: initial;
}

.section-title-area {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 9;
}

@media (max-width: 991px) {
    .section-title-area {
        flex-wrap: wrap;
        gap: 30px;
    }
}

.section-title-area p {
    font-size: 16px;
    font-weight: 600;
    line-height: 175%;
    color: var(--text);
    font-style: italic;
    border-left: 1px solid #6A47ED;
    padding-left: 20px;
}

.section-title-area p.white-text {
    color: var(--white);
    border-left: 1px solid var(--white);
    font-weight: 500;
}

.center {
    text-align: center;
    margin: 0 auto;
}

.section-bg {
    background-color: var(--bg);
}

.section-bg-black {
    background-color: var(--black);
}

.theme-bg {
    background-color: var(--theme);
}

.footer-bg {
    background-color: #18185E;
}

.section-padding {
    padding: 90px 0;
}

@media (max-width: 1199px) {
    .section-padding {
        padding: 95px 0;
    }
}

@media (max-width: 991px) {
    .section-padding {
        padding: 80px 0;
    }
}

.service-box-items {
    margin-top: 30px;
    display: flex;
    gap: 17px;
    padding: 40px 20px;
    position: relative;
    border: 1px solid var(--border);
    border-radius: 20px;
}

.service-box-items .content h4 {
    margin-bottom: 5px;
}

.service-box-items .content h4 a:hover {
    color: var(--theme);
}

.service-box-items .content p {
    font-family: "DM Sans", sans-serif;
    margin-bottom: 5px;
}

.service-section {
    position: relative;
}

.service-section .left-shape {
    position: absolute;
    bottom: 100px;
    left: 0;
}

@media (max-width: 1899px) {
    .service-section .left-shape {
        display: none;
    }
}

.service-section .right-shape {
    position: absolute;
    top: 25%;
    right: 50px;
    animation: bounce-x 7s infinite linear;
}

@media (max-width: 1899px) {
    .service-section .right-shape {
        display: none;
    }
}

.service-section .bg-shape {
    position: absolute;
    top: 9px;
    right: 0;
    z-index: -1;
}

@media (max-width: 1199px) {
    .service-section .bg-shape {
        display: none;
    }
}

.service-section .bg-shape-2 {
    position: absolute;
    top: 15%;
    right: 0;
}

.service-section .right-shape-3 {
    position: absolute;
    bottom: 0;
    right: 0;
}

@media (max-width: 1399px) {
    .service-section .right-shape-3 {
        display: none;
    }
}

.service-card-items {
    margin-top: 30px;
    padding: 50px;
    border: 1px solid #DDE0E9;
    background-color: var(--white);
    border-radius: 20px;
    text-align: center;
    position: relative;
    z-index: 99;
}

.service-card-items .title {
    margin-bottom: 20px;
}

.service-card-items .title a:hover {
    color: var(--theme);
}

@media (max-width: 1199px) {
    .service-card-items .service-thumb img {
        width: 100%;
        height: 100%;
    }
}

.service-card-items .thumb img {
    width: 100%;
    height: 100%;
}

.service-card-items .content {
    margin-top: 20px;
}

.service-card-items .content .service-btn {
    display: inline-block;
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
    border-radius: 24px;
    border: 1px solid #DDE0E9;
    padding: 16px 30px;
    color: var(--text);
    margin-top: 30px;
}

.service-card-items .content .service-btn i {
    margin-left: 10px;
}

.service-card-items .content .service-btn:hover {
    background-color: var(--theme);
    color: var(--white);
    border: 1px solid var(--theme);
}

.service-card-items.style-2 .service-thumb img {
    width: 100%;
    height: 100%;
}

.service-card-items.style-2 .content .title-2 {
    margin-bottom: 20px;
}

.service-card-items.style-2 .content .title-2 a:hover {
    color: var(--theme);
}

.service-details-wrapper .details-image {
    margin-bottom: 50px;
}

.service-details-wrapper .details-image img {
    width: 100%;
    height: 100%;
    border-radius: 20px;
}

.service-details-wrapper .main-sidebar .single-sidebar-widget {
    padding: 40px 30px;
    background-color: #0e257524;
    margin-bottom: 30px;
    border-radius: 10px;
}

.service-details-wrapper .main-sidebar .single-sidebar-widget .wid-title {
    margin-bottom: 25px;
}

.service-details-wrapper .main-sidebar .single-sidebar-widget .wid-title h4 {
    position: relative;
    padding-bottom: 15px;
    display: inline-block;
}

.service-details-wrapper .main-sidebar .single-sidebar-widget .wid-title h4::after {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 20px;
    height: 2px;
    content: "";
    background-color: var(--theme);
}

.service-details-wrapper .main-sidebar .single-sidebar-widget .wid-title h4::before {
    position: absolute;
    bottom: 0;
    left: 30px;
    width: 63px;
    height: 2px;
    content: "";
    background-color: var(--theme);
}

.service-details-wrapper .main-sidebar .single-sidebar-widget .service-widget-categories ul li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 25px;
    background-color: var(--white);
    font-weight: 500;
    transition: all 0.4s ease-in-out;
    border-radius: 10px;
    font-size: 16px;
    line-height: 1;
}

.service-details-wrapper .main-sidebar .single-sidebar-widget .service-widget-categories ul li a {
    color: var(--header);
}

.service-details-wrapper .main-sidebar .single-sidebar-widget .service-widget-categories ul li span {
    transition: all 0.4s ease-in-out;
    color: var(--header);
}

.service-details-wrapper .main-sidebar .single-sidebar-widget .service-widget-categories ul li:not(:last-child) {
    margin-bottom: 12px;
    border-radius: 10px;
}

.service-details-wrapper .main-sidebar .single-sidebar-widget .service-widget-categories ul li:hover {
    background: linear-gradient(107deg, #2988bd, #79ddf8);
    border-radius: 10px;
}

.service-details-wrapper .main-sidebar .single-sidebar-widget .service-widget-categories ul li:hover a {
    color: var(--white);
}

.service-details-wrapper .main-sidebar .single-sidebar-widget .service-widget-categories ul li:hover span {
    color: var(--white);
}

.service-details-wrapper .main-sidebar .single-sidebar-widget .service-widget-categories ul li.active {
    background-color: var(--theme);
}

.service-details-wrapper .main-sidebar .single-sidebar-widget .service-widget-categories ul li.active a {
    color: var(--white);
}

.service-details-wrapper .main-sidebar .single-sidebar-widget .service-widget-categories ul li.active span {
    color: var(--white);
}

.service-details-wrapper .service-details-content h3 {
    font-size: 30px;
    font-weight: 800;
    font-size: 30px;
    margin-bottom: 20px;
}

.service-details-wrapper .service-details-content .thumb {
    margin-bottom: 40px;
}

.service-details-wrapper .service-details-content .thumb img {
    width: 100%;
    height: 100%;
    border-radius: 20px;
}

.service-details-wrapper .service-details-content .details-list-items {
    margin-top: 30px;
    display: flex;
    align-items: center;
    gap: 100px;
}

@media (max-width: 1199px) {
    .service-details-wrapper .service-details-content .details-list-items {
        flex-wrap: wrap;
        gap: 30px;
    }
}

.service-details-wrapper .service-details-content .details-list-items .details-list li {
    font-weight: 500;
    font-size: 16px;
    color: var(--header);
}

.service-details-wrapper .service-details-content .details-list-items .details-list li:not(:last-child) {
    margin-bottom: 15px;
}

.service-details-wrapper .service-details-content .details-list-items .details-list li i {
    color: var(--theme);
    margin-right: 8px;
}

.team-wrapper {
    max-width: 1240px;
    margin: 0 auto;
}

.team-wrapper .team-image {
    text-align: center;
    position: relative;
}

.team-wrapper .team-image .shape-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}

@media (max-width: 1199px) {
    .team-wrapper .team-image .shape-image {
        display: none;
    }
}

@media (max-width: 991px) {
    .team-wrapper .team-image .shape-image {
        display: block;
    }
}

@media (max-width: 575px) {
    .team-wrapper .team-image .shape-image {
        display: none;
    }
}

.team-wrapper .team-content .ceo-point {
    font-weight: 500;
}

.team-wrapper .team-content .list-items {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-top: 30px;
    margin-bottom: 40px;
}

@media (max-width: 1199px) {
    .team-wrapper .team-content .list-items {
        flex-wrap: wrap;
        gap: 20px;
    }
}

.team-wrapper .team-content .list-items ul li {
    font-weight: 600;
    color: var(--header);
    position: relative;
}

.team-wrapper .team-content .list-items ul li:not(:last-child) {
    margin-bottom: 15px;
}

.team-wrapper .team-content .list-items ul li svg {
    margin-right: 5px;
    position: absolute;
    top: -9px;
    left: -20px;
    transform: rotate(-8deg);
}

.team-wrapper .team-image-2 {
    text-align: center;
    position: relative;
    z-index: 1;
    max-width: 495px;
}

.team-wrapper .team-image-2::before {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 495px;
    height: 503px;
    content: "";
    border-radius: 250px 250px 0px 0px;
    background: #EED9FF;
    z-index: -1;
}

@media (max-width: 470px) {
    .team-wrapper .team-image-2::before {
        display: none;
    }
}

.team-wrapper .team-image-2 .client-shape {
    position: absolute;
    top: 17%;
    left: -25%;
}

@media (max-width: 575px) {
    .team-wrapper .team-image-2 .client-shape {
        display: none;
    }
}

.team-wrapper .team-image-2 .box-shape {
    position: absolute;
    bottom: 30px;
    right: -18%;
}

@media (max-width: 1399px) {
    .team-wrapper .team-image-2 .box-shape {
        right: -10%;
    }
}

@media (max-width: 1199px) {
    .team-wrapper .team-image-2 .box-shape {
        right: 0;
    }
}

@media (max-width: 575px) {
    .team-wrapper .team-image-2 .box-shape {
        display: none;
    }
}

.team-wrapper .team-image-2 .circle-button {
    position: absolute;
    right: 0;
    top: 5%;
    width: 122px;
    height: 122px;
    line-height: 122px;
    background-color: #FD8128;
    border-radius: 50%;
    text-align: center;
    font-size: 24px;
    color: var(--white);
    z-index: 99;
}

@media (max-width: 470px) {
    .team-wrapper .team-image-2 .circle-button {
        display: none;
    }
}

.team-wrapper .team-image-2 .circle-button::before {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 20px solidrgba(255, 255, 255, 0.2);
    width: 148px;
    height: 148px;
    content: "";
    border-radius: 50%;
    z-index: 1;
}

.team-wrapper .team-image-2 .circle-button .text-circle {
    position: absolute;
    top: 1%;
    left: 8%;
    animation: cir36 10s linear infinite;
    z-index: 9;
}

.team-wrapper.style-3 {
    padding-bottom: 35px;
}

@media (max-width: 1399px) {
    .team-wrapper.style-3 {
        padding-bottom: 0;
    }
}

@media (max-width: 1399px) {
    .team-wrapper.style-3 {
        padding-bottom: 15px;
    }
}

.team-wrapper.style-4 {
    max-width: 1220px;
}

.team-wrapper.style-4 .results-left-items {
    background-color: rgba(149, 120, 255, 0.2);
    display: flex;
    align-items: center;
    padding: 40px;
    gap: 30px;
    border-radius: 16px;
}

@media (max-width: 575px) {
    .team-wrapper.style-4 .results-left-items {
        flex-wrap: wrap;
    }
}

.team-wrapper.style-4 .results-left-items .content {
    border-radius: 10px;
    background-color: var(--white);
    max-width: 295px;
    padding: 30px;
}

.team-wrapper.style-4 .results-left-items .content h2 {
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 110px;
}

.team-wrapper.style-4 .results-left-items .content h3 {
    margin-bottom: 20px;
    margin-bottom: 10px;
}

.team-wrapper.style-4 .results-left-items .thumb img {
    border-radius: 10px;
}

.team-wrapper.style-4 .team-content {
    margin-left: 50px;
}

@media (max-width: 1199px) {
    .team-wrapper.style-4 .team-content {
        margin-left: 0;
    }
}

.team-section {
    position: relative;
}

.team-section .shape-img {
    position: absolute;
    bottom: 0;
    left: 0;
}

@media (max-width: 1399px) {
    .team-section .shape-img {
        display: none;
    }
}

.team-section .shape-img-2 {
    position: absolute;
    bottom: 0;
    right: 0;
}

@media (max-width: 1399px) {
    .team-section .shape-img-2 {
        display: none;
    }
}

.team-section-3 {
    background-image: url(../../asset/img/audience-bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 10% center;
}

.team-section-3 .container-fluid {
    padding: 0 175px;
}

@media (max-width: 1600px) {
    .team-section-3 .container-fluid {
        padding: 0 50px;
    }
}

@media (max-width: 1399px) {
    .team-section-3 .container-fluid {
        padding: 0 40px;
    }
}

@media (max-width: 1199px) {
    .team-section-3 .container-fluid {
        padding: 0 30px;
    }
}

.team-card-items {
    margin-top: 30px;
    border-radius: 20px;
    background: var(--white);
    box-shadow: 0px 4px 50px 0px rgba(0, 0, 0, 0.08);
    position: relative;
}

/*.team-card-items .icon-shape {*/

/*  position: absolute;*/

/*  bottom: 30px;*/

/*  right: 0;*/

/*}*/

/*.team-card-items .social-profile {*/

/*  transition: all 0.6s ease-in-out;*/

/*  position: absolute;*/

/*  top: -153%;*/

/*  left: 31%;*/

/*  transform: translate(-50%, -50%);*/

/*  display: grid;*/

/*  gap: 10px;*/

/*}*/

/*.team-card-items .social-profile ul {*/

/*  opacity: 0;*/

/*  visibility: hidden;*/

/*  transition: all 0.4s ease-in-out;*/

/*}*/

/*.team-card-items .social-profile ul li {*/

/*  margin-bottom: 10px;*/

/*}*/

/*.team-card-items .social-profile ul li a {*/

/*  width: 36px;*/

/*  height: 36px;*/

/*  line-height: 36px;*/

/*  text-align: center;*/

/*  font-size: 16px;*/

/*  font-weight: 500;*/

/*  display: block;*/

/*  background: var(--white);*/

/*  color: var(--header);*/

/*  box-shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.08);*/

/*  -webkit-transition: all 0.4s ease-in-out;*/

/*  transition: all 0.4s ease-in-out;*/

/*  text-align: center;*/

/*  margin: 0 auto;*/

/*  border-radius: 50%;*/

/*}*/

/*.team-card-items .social-profile ul li a:hover {*/

/*  background: var(--theme);*/

/*  color: var(--white);*/

/*}*/

/*.team-card-items .social-profile .plus-btn {*/

/*  z-index: 2;*/

/*  cursor: pointer;*/

/*  width: 36px;*/

/*  height: 36px;*/

/*  line-height: 36px;*/

/*  text-align: center;*/

/*  font-size: 18px;*/

/*  font-weight: 500;*/

/*  display: inline-block;*/

/*  background: var(--white);*/

/*  color: var(--header);*/

/*  transition: all 0.4s ease-in-out;*/

/*  border-radius: 50%;*/

/*}*/

/*.team-card-items .social-profile:hover ul {*/

/*  opacity: 1;*/

/*  visibility: visible;*/

/*}*/

.team-card-items .team-image {
    padding: 16px;
    position: relative;
}

.team-image .youtube {
    position: absolute;
    height: 80px !important;
    top: 50%;
    width: inherit !important;
    left: 50%;
    transform: translate(-50%, -50%);
}

.team-card-items .team-image img {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    transition: all 0.4s ease-in-out;
}

.team-card-items .team-content {
    padding: 10px 10px;
    position: absolute;
    background: linear-gradient(109deg, #0b196c, #4c96d7);
    text-align: center;
    margin-top: -68px;
    left: 50%;
    width: 71%;
    border-left: 10px solid #fff;
    border-right: 10px solid #fff;
    border-radius: 62px;
    transform: translateX(-50%);
}

.team-card-items .team-content h3 {
    color: #fff;
}

.team-details-wrapper .team-details-items {
    border: 1px solid #E5E5E5;
    padding: 30px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media (max-width: 1399px) {
    .team-details-wrapper .team-details-items {
        flex-wrap: wrap;
        gap: 30px;
    }
}

.team-details-wrapper .team-details-items .thumb {
    max-width: 390px;
}

.team-details-wrapper .team-details-items .thumb img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

.team-details-wrapper .team-details-items .content {
    max-width: 900px;
}

.team-details-wrapper .team-details-items .content .cont {
    border-bottom: 1px solid var(--border);
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.team-details-wrapper .team-details-items .content .signature {
    margin-top: 30px;
}

.team-details-wrapper .team-details-items .content .team-contact-info {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 30px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 30px;
}

@media (max-width: 1199px) {
    .team-details-wrapper .team-details-items .content .team-contact-info {
        padding: 20px 20px;
        flex-wrap: wrap;
        gap: 30px;
    }
}

.team-details-wrapper .team-details-items .content .team-contact-info .icon-items {
    display: flex;
    align-items: center;
    gap: 12px;
}

@media (max-width: 1199px) {
    .team-details-wrapper .team-details-items .content .team-contact-info .icon-items {
        flex-wrap: wrap;
    }
}

@media (max-width: 767px) {
    .team-details-wrapper .team-details-items .content .team-contact-info .icon-items {
        flex-wrap: nowrap;
        justify-content: space-between;
    }
}

.team-details-wrapper .team-details-items .content .team-contact-info .icon-items .icon {
    width: 36px;
    height: 36px;
    line-height: 36px;
    border-radius: 50%;
    text-align: center;
    background-color: #F6F3FE;
    color: var(--theme);
}

.team-details-wrapper .team-details-items .content .team-contact-info .icon-items h5 {
    font-size: 16px;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-weight: 400;
    text-transform: initial;
}

.team-details-wrapper .team-details-items .content .team-contact-info .icon-items h5 a {
    color: var(--text);
}

.team-details-wrapper .team-details-items .content .team-contact-info .icon-items h5 a:hover {
    color: var(--theme);
}

.personal-information-area {
    background: #F6F3FE;
    padding-top: 60px;
    margin-top: 60px;
}

.personal-information-wrapper .personal-skill-wrapper {
    padding: 28px 30px;
    background-color: var(--white);
    margin-top: 60px;
}

.personal-information-wrapper .personal-skill-wrapper h4 {
    font-size: 20px;
    margin-bottom: 30px;
}

.personal-information-wrapper .personal-skill-wrapper .progress-wrap .pro-items {
    width: 100%;
}

.personal-information-wrapper .personal-skill-wrapper .progress-wrap .pro-items:not(:last-child) {
    margin-bottom: 20px;
}

.personal-information-wrapper .personal-skill-wrapper .progress-wrap .pro-items .pro-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.personal-information-wrapper .personal-skill-wrapper .progress-wrap .pro-items .pro-head .title {
    font-size: 16px;
    color: var(--header);
    font-weight: 700;
}

.personal-information-wrapper .personal-skill-wrapper .progress-wrap .pro-items .pro-head .point {
    font-size: 16px;
    color: var(--header);
    font-weight: 700;
}

.personal-information-wrapper .personal-skill-wrapper .progress-wrap .pro-items .progress {
    background: #F6F3FE;
    justify-content: flex-start;
    border-radius: 0;
    align-items: center;
    position: relative;
    display: flex;
    height: 15px;
    width: 100%;
}

.personal-information-wrapper .personal-skill-wrapper .progress-wrap .pro-items .progress-value {
    animation: load 3s normal forwards;
    border-radius: 0;
    background: var(--theme);
    height: 15px;
    width: 0;
}

.personal-information-wrapper .personal-skill-wrapper .progress-wrap .pro-items .style-two {
    animation: load2 3s normal forwards;
}

@keyframes load {
    0% {
        width: 0;
    }
    100% {
        width: 76%;
    }
}

@keyframes load2 {
    0% {
        width: 0;
    }
    100% {
        width: 85%;
    }
}

.team-section-33 {
    margin-bottom: -40px;
}

.team-section-33 .team-card-items {
    margin-bottom: 40px;
}

.testimonial-box-items {
    margin-top: 30px;
    padding: 40px 30px;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    padding-left: 0;
    gap: 30px;
    position: relative;
}

@media (max-width: 470px) {
    .testimonial-box-items {
        flex-wrap: wrap;
        gap: 20px;
        padding-left: 30px;
    }
}

.testimonial-box-items .icon {
    top: 40px;
    right: 30px;
    position: absolute;
}

.testimonial-box-items::before {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    background-color: var(--bg);
    border-radius: 16px;
    z-index: -1;
    left: 48px;
    width: calc(100% - 48px);
}

@media (max-width: 470px) {
    .testimonial-box-items::before {
        width: calc(100% - 0px);
        left: 0;
    }
}

.testimonial-box-items .testimonial-img {
    border: 4px solid var(--white);
    box-shadow: var(--box-shadow);
    display: inline-block;
    border-radius: 50%;
    position: relative;
    background-color: var(--white);
    position: relative;
    z-index: 9;
}

.testimonial-box-items .testimonial-img .shape-img {
    position: absolute;
    top: 50%;
    left: 72%;
    transform: translate(-50%, -50%);
    z-index: -1;
}

@media (max-width: 470px) {
    .testimonial-box-items .testimonial-img .shape-img {
        display: none;
    }
}

.testimonial-box-items .content {
    max-width: 370px;
}

.testimonial-box-items .content .client-info {
    margin-bottom: 10px;
}

.testimonial-box-items .content .client-info .star {
    color: #F68B21;
}

.testimonial-box-items .content .client-info h5 {
    font-weight: 600;
}

.testimonial-box-items .content p {
    font-weight: 400;
}

.testimonial-wrapper .testimonial-left {
    margin-top: 30px;
}

.testimonial-wrapper .testimonial-left .client-img {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 70px;
}

.testimonial-wrapper .testimonial-left .client-img .content .star {
    color: #F68B21;
}

.testimonial-wrapper .testimonial-left .client-img .content p {
    font-weight: 700;
}

.testimonial-wrapper-2 .testimonial-image {
    position: relative;
    text-align: center;
    z-index: 9;
}

.testimonial-wrapper-2 .testimonial-image .rocket-shape {
    position: absolute;
    top: 12%;
    left: 15%;
    animation: bounce-x 7s infinite linear;
}

@media (max-width: 1199px) {
    .testimonial-wrapper-2 .testimonial-image .rocket-shape {
        display: none;
    }
}

.testimonial-wrapper-2 .testimonial-image .msg-shape {
    position: absolute;
    top: 23%;
    right: 15%;
}

@media (max-width: 1199px) {
    .testimonial-wrapper-2 .testimonial-image .msg-shape {
        display: none;
    }
}

.testimonial-wrapper-2 .testimonial-image::before {
    position: absolute;
    bottom: 0;
    left: 50%;
    content: "";
    transform: translateX(-50%);
    width: 562px;
    height: 543px;
    border-radius: 1000px 1000px 0px 0px;
    background-color: rgba(6, 51, 71, 0.06);
    z-index: -1;
}

@media (max-width: 1199px) {
    .testimonial-wrapper-2 .testimonial-image::before {
        display: none;
    }
}

@media (max-width: 991px) {
    .testimonial-wrapper-2 .testimonial-image::before {
        display: block;
    }
}

@media (max-width: 575px) {
    .testimonial-wrapper-2 .testimonial-image::before {
        display: none;
    }
}

.testimonial-wrapper-2 .testimonial-image img {
    text-align: center;
}

.testimonial-wrapper-2 .testimonial-card-items {
    margin-top: 30px;
    background-color: var(--white);
    border-radius: 16px;
    border: 1px solid #DDE0E9;
    padding: 40px 30px;
    margin-top: 40px;
    max-width: 585px;
    position: relative;
}

.testimonial-wrapper-2 .testimonial-card-items .client-info {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.testimonial-wrapper-2 .testimonial-card-items .client-info .client-content h5 {
    font-size: 20px;
    font-weight: 600;
}

.testimonial-wrapper-2 .testimonial-card-items .icon {
    position: absolute;
    right: 30px;
    top: 40px;
}

.testimonial-wrapper-2 .testimonial-content {
    position: relative;
}

.testimonial-wrapper-2 .testimonial-content .array-button {
    position: absolute;
    right: 0;
    top: 68%;
    transform: translateY(-50%);
    z-index: 9;
    display: grid;
}

@media (max-width: 1399px) {
    .testimonial-wrapper-2 .testimonial-content .array-button {
        display: none;
    }
}

.testimonial-wrapper-3 {
    border: 1px solid var(--border);
    border-radius: 50px;
    padding: 100px 50px;
    position: relative;
}

.testimonial-wrapper-3.style-2 {
    margin-top: 60px;
}

@media (max-width: 767px) {
    .testimonial-wrapper-3.style-2 {
        margin-top: 30px;
    }
}

@media (max-width: 767px) {
    .testimonial-wrapper-3 {
        padding: 50px 35px;
    }
}

.testimonial-wrapper-3 .client-1 {
    position: absolute;
    top: 46px;
    left: 15%;
}

@media (max-width: 1199px) {
    .testimonial-wrapper-3 .client-1 {
        display: none;
    }
}

.testimonial-wrapper-3 .client-2 {
    position: absolute;
    bottom: 89px;
    left: 73px;
}

@media (max-width: 1199px) {
    .testimonial-wrapper-3 .client-2 {
        display: none;
    }
}

.testimonial-wrapper-3 .client-3 {
    position: absolute;
    top: 46px;
    right: 15%;
}

@media (max-width: 1199px) {
    .testimonial-wrapper-3 .client-3 {
        display: none;
    }
}

.testimonial-wrapper-3 .client-4 {
    position: absolute;
    bottom: 89px;
    right: 73px;
}

@media (max-width: 1199px) {
    .testimonial-wrapper-3 .client-4 {
        display: none;
    }
}

.testimonial-wrapper-3 .testimonial-content {
    max-width: 740px;
    margin: 0 auto;
}

.testimonial-wrapper-3 .testimonial-content .icon {
    width: 120px;
    height: 120px;
    line-height: 120px;
    border-radius: 50%;
    background-color: var(--white);
    box-shadow: 0px 0px 50px rgba(0, 0, 0, 0.1);
    text-align: center;
    margin: 0 auto 25px;
}

.testimonial-wrapper-3 .testimonial-content p {
    font-size: 22px;
    font-style: italic;
    color: var(--header);
    font-weight: 500;
    line-height: 182%;
    text-align: center;
}

.testimonial-wrapper-3 .testimonial-content .client-info {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    margin-top: 50px;
}

.testimonial-wrapper-3 .testimonial-content .client-info .content h6 {
    font-size: 16px;
}

.testimonial-wrapper-3 .testimonial-content .client-info .content span {
    font-size: 15px;
    font-weight: 400;
}

.testimonial-section-3 {
    position: relative;
}

.testimonial-section-3 .overlay-shape {
    position: absolute;
    left: 0;
    bottom: 0;
}

.testimonial-section-3 .overlay-shape-2 {
    position: absolute;
    top: -30%;
    right: 0;
}

.testimonial-section-3 .left-shape {
    position: absolute;
    left: 0;
    bottom: 10%;
}

@media (max-width: 1199px) {
    .testimonial-section-3 .left-shape {
        display: none;
    }
}

.testimonial-section-3 .right-shape {
    position: absolute;
    right: 0;
    top: 15%;
}

@media (max-width: 1199px) {
    .testimonial-section-3 .right-shape {
        display: none;
    }
}

#carouselExampleCaptions {
    background-image: url(../../asset/img/banner.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    /*height:750px;*/
}

.carousel-caption {
    left: 8%;
    right: 8%;
    top: 50%;
    text-align: start !important;
    transform: translateY(-50%);
}

.carousel-control-next,
.carousel-control-prev {
    width: 8%;
}

.carousel-control-next-icon,
.carousel-control-prev-icon {
    position: relative;
    width: 3rem;
    height: 3rem;
    /*background-color: #fa0000;*/
    background-size: 30px;
    padding: 2rem;
}

.carousel-control-next-icon::before,
.carousel-control-prev-icon::before {
    position: absolute;
    content: '';
    height: 100%;
    width: 100%;
    border: 7px solid #7d0005;
    background: #1084a9;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    z-index: -1;
}

.carousel-control-next,
.carousel-control-prev {
    opacity: 1 !important;
}

.carousel-control-prev-icon {
    border-radius: 50px;
}

.carousel-control-next-icon {
    border-radius: 50px 0 0 50px;
}

.carousel-caption .heading5 {
    font-size: 3rem;
    color: #000;
    line-height: 3rem;
    font-weight: 800;
}

.carousel-caption .details {
    font-size: 1.1rem;
    line-height: 1.1rem;
    font-weight: 500;
    text-align: start;
    margin: 1.5rem 0;
    color: #000;
}

.swiper.service-slider {
    position: relative;
}

.team-slider {
    padding: 4rem 0;
}

.swiper.brand-slider .array-button,
.swiper.team-slider .array-button,
.swiper.service-slider .array-button .ranking-slider .array-button {
    justify-content: center;
    width: 100%;
    margin: 1rem 0 0.2rem 0;
}

.swiper.brand-slider .array-button .array-next,
.array-button .array-prev:hover,
.swiper.team-slider .array-button .array-next,
.array-button .array-prev:hover,
.swiper.service-slider .array-button .array-next,
.array-button .array-prev:hover,
.swiper.ranking-slider .array-button .array-next,
.array-button .array-prev:hover {
    background: linear-gradient(90deg, #fede61, orange, red);
}

.swiper.service-slider .swiper-wrapper {
    padding: 3rem 0 2rem;
}

.team-slider .array-button {
    margin: 4rem 0 0.2rem 0 !important;
}

.swiper.service-slider .array-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    width: 99%;
    justify-content: space-between;
}

.swiper.ranking-slider .array-button {
    position: absolute;
    left: 50%;
    transform: translateX( -50%);
    width: 20%;
    bottom: 0;
    z-index: 1;
}

.ranking-slider .swiper-wrapper {
    padding: 1rem 0 4rem 0;
}

.swiper.service-slider .array-button .array-next,
.swiper.service-slider .array-button .array-prev,
.swiper.ranking-slider .array-button .array-prev,
.swiper.ranking-slider .array-button .array-next {
    border-radius: 12px !important;
}

/*??????????????????*/

/*? services different?*/

/*.section-services {*/

/*font-family: "Poppins", sans-serif;*/

/*    background-color: #ededed;*/

/*    color: #202020;*/

/*    padding-top: 50px;*/

/*    padding-bottom: 120px;*/

/*}*/

/*.section-services .header-section {*/

/*	margin-bottom: 34px;*/

/*}*/

/*.section-services .header-section .title {*/

/*	position: relative;*/

/*    padding-bottom: 14px;*/

/*    margin-bottom: 25px;*/

/*	font-weight: 700;*/

/*    font-size: 32px;*/

/*}*/

/*.section-services .header-section .title:before {*/

/*	content: "";*/

/*	position: absolute;*/

/*	bottom: 0;*/

/*	left: 50%;*/

/*	transform: translateX(-50%);*/

/*	width: 50px;*/

/*	height: 3px;*/

/*	background-color: #ff4500;*/

/*    border-radius: 3px;*/

/*}*/

/*.section-services .header-section .title:after {*/

/*	content: "";*/

/*	position: absolute;*/

/*	bottom: 0;*/

/*	left: 50%;*/

/*    transform: translateX(30px);*/

/*	width: 10px;*/

/*	height: 3px;*/

/*	background-color: #504f93;*/

/*    border-radius: 3px;*/

/*}*/

/*.section-services .header-section .description {*/

/*	font-size: 14px;*/

/*    color: #282828;*/

/*}*/

/*.section-services .single-service {*/

/*    position: relative;*/

/*    margin-top: 30px;*/

/*background-color: #fff;*/

/*    border-radius: 10px;*/

/*    padding: 40px 30px;*/

/*    overflow: hidden;*/

/*}*/

/*.single-service.three{*/

/*    background:linear-gradient(0deg, #ee2f25, #f27623);*/

/*}*/

/*.single-service.one{*/

/*    background:linear-gradient(180deg, #fdb83b, #f68a40);*/

/*}*/

/*.single-service.two{*/

/*    background:linear-gradient(180deg, #18ff4d, rgb(40, 167, 69));*/

/*}*/

/*.section-services .single-service .content {*/

/*	position: relative;*/

/*	z-index: 20;*/

/*}*/

/*.section-services .single-service .circle-before {*/

/*    position: absolute;*/

/*    top: 0;*/

/*       right: 0px;*/

/*    transform: translate(40%, -40%);*/

/*    width: 150px;*/

/*    height: 150px;*/

/*    background: linear-gradient(45deg, #080e64, #35b6de);*/

/*    border: 20px solid #ffffff;*/

/*    border-radius: 50%;*/

/*    opacity: 0.2;*/

/*    z-index: 10;*/

/*    transition: all .6s;*/

/*}*/

/*.section-services .single-service:hover .circle-before {*/

/*	width: 100%;*/

/*	height: 100%;*/

/*	transform: none;*/

/*	border: 0;*/

/*	border-radius: 0;*/

/*	opacity: 1;*/

/*}*/

/*.section-services .single-service .icon {*/

/*	display: block;*/

/*    text-align: center !important;*/

/*	margin-bottom: 26px;*/

/*    width: auto;*/

/*        border: 2px solid #cecece;*/

/*height: 70px;*/

/*    background-color: #ffffff;*/

/*    border-radius: 5px;*/

/*    line-height: 70px;*/

/*    text-align: center;*/

/*    color: #fff;*/

/*    font-size: 30px;*/

/*    transition: all .3s;*/

/*}*/

/*.section-services .single-service:hover .icon {*/

/*	background-color: #fff;*/

/*	color: #ff4500;*/

/*}*/

/*.single-service .icon img{*/

/*    height: 250px;*/

/*    width: 100%;*/

/*}*/

/*.section-services .single-service .title {*/

/*    margin-bottom: 18px;*/

/*	font-weight: 700;*/

/*    font-size: 23px;*/

/*    transition: color .3s;*/

/*}*/

/*.section-services .single-service .title {*/

/*	color: #fff;*/

/*}*/

/*.section-services .single-service .description {*/

/*    margin-bottom: 20px;*/

/*    font-size: 14px;*/

/*    transition: color .3s;*/

/*}*/

/*.section-services .single-service .description {*/

/*	color: #fff;*/

/*}*/

/*.section-services .single-service a {*/

/*	position: relative;*/

/*	font-size: 18px;*/

/*    color: #202020;*/

/*    text-decoration: none;*/

/*    font-weight: 500;*/

/*    transition: color .3s;*/

/*}*/

/*.section-services .single-service:hover a {*/

/*	color: #fff;*/

/*}*/

/*.section-services .single-service a:after {*/

/*	content: "";*/

/*	position: absolute;*/

/*	bottom: 0;*/

/*	left: 0;*/

/*	right: 0;*/

/*	height: 1px;*/

/*	background-color: #ff4500;*/

/*	transition: background-color .3s;*/

/*}*/

/*.section-services .single-service:hover a:after {*/

/*	background-color: #fff;*/

/*}*/

/*.////////////*/

.seoServices {
    float: left;
    width: 100%;
    padding: 50px 0 50px;
    margin: 0;
    /*background-image: url(../img/bg-dark.webp);*/
    /*background-size: 900px;*/
    background-attachment: fixed;
    position: relative
}

.seoServices:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 50%;
    margin: 0 auto;
    background-color: #fff
}

.seoServices .container {
    position: relative
}

.seoServices .title_1 {
    color: #f5aa31;
}

.seoServices p {
    color: #fff;
    margin-bottom: 1rem;
}

.seoBox {
    float: left;
    width: 100%;
    border-radius: .75rem;
    position: relative;
    box-shadow: rgb(255 0 0) 0px 10px 36px 0px, rgb(224 54 61) 0px 0px 0px 1px;
    background: linear-gradient(337deg, #f3f3ff 50%, #ffffff 50%);
    padding: 25px;
    margin-bottom: 20px
}

.seoBoxTitle {
    font-size: 24px;
    line-height: 36px;
    font-weight: 600;
    padding-bottom: 1.25rem;
    padding-left: 1rem;
    border-bottom: 1px solid rgb(29 32 71 / .1);
    margin-bottom: 1.75rem;
    color: #02619e
}

.seoBox ul {
    margin: 0 0 20px;
    display: block;
    display: flex;
    padding: 0;
    flex-flow: row wrap
}

.seoBox ul li {
    font-size: 17px;
    display: flex;
    flex-flow: row wrap;
    margin-bottom: 0;
    position: relative;
    padding-left: 30px;
    position: relative;
    color: #333;
    width: calc(100% / 4);
    font-family: "Plus Jakarta Sans", sans-serif !important;
    font-weight: 500;
}

.seoBox ul li:before {
    content: '';
    position: absolute;
    top: 7px;
    left: 0;
    width: 20px;
    height: 20px;
    background: url(../../asset/img/check.svg) no-repeat;
    background-size: 100%;
    filter: invert(1);
}

.seoBoxTitle2 {
    font-family: "Plus Jakarta Sans", sans-serif !important;
    font-weight: 700;
    margin-bottom: 1rem;
}

.
/*........./////////////*/

/* =========work-section======== */

 .our-work {
    position: relative;
    background: url(../images/blog-img/bg-img.png) no-repeat;
    background-size: cover;
    background-position: top center;
}

.process-box {
    background: #fff;
    padding: 20px;
    border-radius: 15px;
    min-height: 145px;
    position: relative;
    outline-offset: -10px;
}

.process-box.process-left {
    box-shadow: 2px 2px 7px 0 #00000057;
    outline: 10px solid #4c96d7;;
}

.process-box.process-right {
    box-shadow: 2px 2px 7px 0 #00000057;
    outline: 10px solid #102a78;
}

.process-left:after {
    content: "";
    border-top: 15px solid #4c96d7;;
    border-bottom: 15px solid #4c96d7;
    border-left: 15px solid #4c96d7;
    border-right: 15px solid #4c96d7;;
    display: inline-grid;
    position: absolute;
    right: -15px;
    top: 42%;
    transform: rotate(45deg);
    box-shadow: 3px -2px 3px 0px #00000036;
    z-index: 1;
}

.process-right:after {
    content: "";
    border-top: 15px solid #ffffff00;
    border-bottom: 15px solid #102a78;
    border-left: 15px solid #102a78;
    border-right: 15px solid #ffffff00;
    display: inline-grid;
    position: absolute;
    left: -15px;
    top: 42%;
    transform: rotate(45deg);
    box-shadow: -1px 1px 3px 0px #0000001a;
    z-index: 1;
}

.overflow-x-hidden {
    overflow-x: hidden;
}

.process-step {
    text-align: center;
    width: 80%;
    margin: 0 auto;
    color: #fff;
    height: 100%;
    padding: 10px 0 25px 0;
    position: relative;
    top: -36px;
    border-radius: 0px 0px 10px 10px;
}

.process-left .process-step {
    box-shadow: -6px 8px 0px 0px #102a7857;
    background: #102a78;
}

.process-right .process-step {
    box-shadow: 7px 8px 0px 0px #4c96d7;
    background: #4c96d7;
}

.process-point-right {
    background: #ffffff;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    border: 8px solid #4c96d7;;
    box-shadow: 0 0 0px 4px #102a78;
    margin: auto 0;
    position: absolute;
    bottom: 54px;
    z-index: 1;
    left: -75px;
}

.process-point-right:before {
    content: "";
    height: 160px;
    width: 8px;
    background: #25232c;
    display: inline-grid;
    transform: rotate(34deg);
    position: relative;
    left: -50px;
    top: -0px;
}

.process-point-left {
    background: #ffffff;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    border: 8px solid #102a78;
    box-shadow: 0 0 0px 4px #25232c;
    margin: auto 0;
    position: absolute;
    bottom: 63px;
    right: -76px;
    z-index: 1;
}

.process-point-left:before {
    content: "";
    height: 180px;
    width: 8px;
    background: #25232c;
    display: inline-grid;
    transform: rotate(-32deg);
    position: relative;
    left: 51px;
    top: 0px;
    z-index: 0;
}

.process-last:before {
    display: none;
}

.process-box p {
    z-index: 9;
    margin: 0;
}

.process-step p {
    font-size: 20px;
    color: #fff;
}

.process-step .h2-tx,
.process-step h2 {
    margin-top: 10px !important;
    font-size: 36px;
    color: #fff;
    font-weight: 700;
    display: block;
}

.process-left .process-step:after {
    content: "";
    border-top: 8px solid #102a7800;
    border-bottom: 8px solid #102a78;
    border-left: 8px solid #102a7800;
    border-right: 8px solid #102a78;
    display: inline-grid;
    position: absolute;
    left: -16px;
    top: 0;
}

.work-box {
    position: relative;
}

.process-right .process-step:before {
    content: "";
    border-top: 8px solid #ff000000;
    border-bottom: 8px solid #4c96d7;;
    border-left: 8px solid #4c96d7;;
    border-right: 8px solid #ff000000;
    display: inline-grid;
    position: absolute;
    right: -16px;
    top: 0;
}

.process-line-l {
    background: #4c96d7;;
    height: 8px;
    position: absolute;
    width: 157px;
    right: -169px;
    top: 75px;
    z-index: 0;
}

.process-line-r {
    background: #102a78;
    height: 8px;
    position: absolute;
    width: 157px;
    left: -169px;
    top: 74px;
    z-index: 0;
}

.process-box .p-name,
.process-box h5 {
    font-weight: bold;
    color: #102a78;
    line-height: 1.22;
    /* font-weight: 600; */
    font-size: 21px;
    margin-bottom: -1px;
}

.work-process {
    background-size: cover !important;
    background: url(../../asset/img/wallpaper-paper.jpeg);
    background-position: right;
    background-attachment: fixed;
}

.work-process .container {
    max-width: 1350px;
}

.work-process-container {
    padding-bottom: 200px;
    position: relative;
}

.wrok-complete {
    position: absolute;
    content: '';
    right: 19%;
    bottom: -3px;
    height: 272px;
}

@media(max-width:1100px) {
    .wrok-complete {
        right: 14%;
    }
}

@media(max-width:991px) {
    .wrok-complete {
        right: inherit;
        left: 0;
        height: 220px;
    }
}

@media(max-width:767px) {
    .wrok-complete {
        right: inherit;
        left: 50%;
        transform: translateX(-50%);
        height: 220px;
    }
}

/*.work-process .air{*/

/*    height:auto;*/

/*    width:100%;*/

/*    left:0;*/

/*        bottom: -139px;*/

/*position: relative;*/

/*    animation: moveLeftToRight 10s linear infinite;*/

/*    width: 1440px;*/

/*}*/

/*.work-process .air .air-img{*/

/*    width:200px;*/

/*}*/

/*@keyframes moveLeftToRight {*/

/*    0% {*/

/*transform: translateX(-100%); */

/*    }*/

/*    100% {*/

/*transform: translateX(100%) translateY(-200px); */

/*    }*/

/*}*/

@media only screen and (min-width: 992px) and (max-width: 1398px) {
    .work-process .container {
        max-width: 1200px;
    }
    .process-box p {
        z-index: 9;
        line-height: 1.4;
        margin: 0;
    }
    .process-line-r,
    .process-line-l {
        display: none;
    }
    .process-point-right {
        display: none;
    }
    .process-point-left {
        display: none;
    }
    .lh-p {
        line-height: 1.9 !important;
    }
    .process-point-right:before {
        display: none;
    }
    .process-point-left:before {
        display: none;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1198px) {
    .process-line-l {
        background: white;
        height: 4px;
        position: absolute;
        width: 136px;
        right: -149px;
        top: 67px;
        z-index: 0;
    }
    .process-point-right {
        background: #ffffff;
        width: 25px;
        height: 25px;
        border-radius: 50%;
        border: 8px solid #912a84;
        box-shadow: 0 0 0px 4px #25232c;
        margin: auto 0;
        position: absolute;
        bottom: 49px;
        left: -37px;
    }
    .process-point-left {
        background: #ffffff;
        width: 25px;
        height: 25px;
        border-radius: 50%;
        border: 8px solid #912a84;
        box-shadow: 0 0 0px 4px #25232c;
        margin: auto 0;
        position: absolute;
        bottom: 49px;
        right: -63px;
    }
    .process-box p {
        z-index: 9;
        line-height: 1;
        margin: 0;
    }
    .lh-p {
        line-height: 1 !important;
    }
    .process-line-r {
        background: white;
        height: 4px;
        position: absolute;
        width: 136px;
        left: -120px;
        top: 63px;
        z-index: 9;
    }
    .process-point-right {
        background: #ffffff;
        width: 25px;
        height: 25px;
        border-radius: 50%;
        border: 8px solid #912a84;
        box-shadow: 0 0 0px 4px #25232c;
        margin: auto 0;
        position: absolute;
        bottom: 39px;
        left: -37px;
    }
}

@media(max-width:1300px) {
    .work-process .container {
        max-width: 960px;
    }
    .seoBox ul li {
        width: calc(100% / 3);
    }
    .process-line-l,
    .process-line-r {
        display: none;
    }
}

@media (max-width:992px) {
    .seoBox ul li {
        width: calc(100% / 2);
    }
    .process-line-l {
        display: none;
    }
    .section-title-header {
        background-size: 100% !important;
    }
    .d-none-phn-work {
        display: none !important;
    }
    .process-point-right {
        display: none;
    }
    .process-point-left {
        display: none;
    }
    .process-line-r {
        display: none;
    }
    .process-step {
        height: 85%;
    }
    .work-box {
        padding: 20px 0;
    }
    .process-left:after,
    .process-right:after {
        display: none;
    }
}

@media (max-width:768px) {
    .seoBox ul li {
        width: calc(100% / 1);
    }
    .sm-justify-content-center {
        justify-content: center;
    }
    .process-step {
        height: 100%;
    }
    .section-title-header {
        top: -10px;
        padding: 10px;
    }
    .section-title {
        font-size: 24px;
    }
    @keyframes top-right {
        0% {
            transform: translateY(-5px);
        }
        100% {
            transform: translateY(10px);
        }
    }
    .work-box {
        padding: 20px 0;
    }
}

.section-title-header {
    position: relative;
    background: url(../images/icons/heading.png) no-repeat;
    background-position: center;
    padding: 40px;
    height: 100%;
    top: 0;
}

.mt0 {
    margin-top: 0 !important;
}

.mb0 {
    margin-bottom: 0 !important;
}

.pt0 {
    padding-top: 0 !important;
}

.pb0 {
    padding-bottom: 0 !important;
}

.section-title2 {
    font-size: 34px;
    color: var(--primery_clr);
    margin: 0;
    text-transform: capitalize;
    animation: zoom-text 1.4s alternate infinite linear;
}

@keyframes zoom-text {
    0% {
        transform: scale(0.94);
    }
    100% {
        transform: scale(1.21);
    }
}

/* =======work-css-end===== */

.mytitle {
    font-family: "Plus Jakarta Sans", sans-serif;
    margin: 0px;
    font-size: 40px;
    font-weight: 800;
    padding: 0;
    color: var(--header);
    text-transform: capitalize;
    transition: all 0.4s ease-in-out;
}

.mytitle span {
    color: #4c96d7;;
}

.about-section.certificates {
    background: url(../../asset/img/about/wave.png);
    background-size: 100% 45%;
    background-position-x: center;
    background-position-y: bottom;
    background-repeat: no-repeat;
}

.about-section.value-able-client {
    background: url(../../asset/img/about/wave.png), #34b2dc;
    background-size: 100% 45%;
    background-position-x: center;
    background-position-y: bottom;
    background-repeat: no-repeat;
}

.about-section.value-able-client .brand-title span {
    color: #fff;
}

.about-section.partner {
    background: url(../../asset/img/about/wave.png);
    background-size: 100% 45%;
    background-position-x: center;
    background-position-y: bottom;
    background-repeat: no-repeat;
}

.footer-starter {
    background: linear-gradient(296deg, #f9f9f9 50%, #ffffff 50%);
    /*border-radius: 10px;*/
    position: relative;
    display: flex;
    align-items: center;
    z-index: 1;
    padding: 1rem 2rem;
    height: 119%;
    margin-top: -78px;
    box-shadow: rgb(51 172 215) 0px 10px 36px 0px, rgb(224 54 61) 0px 0px 0px 1px;
}

.footer-starter .badge {
    position: absolute;
    top: -7%;
    z-index: 9;
    left: 0%;
    height: 211px;
    width: auto;
    transform: rotate(3deg);
    right: -87%;
}

.footer-starter .widget-head h3 {
    color: #000 !important;
    margin-top: 1rem;
}

.footer-starter .widget-head h3::before {
    background-color: #4c96d7 !important;
}

.footer-starter .single-footer-widget .footer-content .contact-info li a {
    color: #000000 !important;
    font-weight: 700;
}

.locaphone {
    height: 36px;
    margin-right: 10px;
}

.footer-bottom .footer-wrapper {
    width: 100%;
}

.footer-bottom .footer-wrapper p .footer-bottom .footer-wrapper .paybox {
    width: 48%;
}

.paybox {
    display: flex;
    /*flex-wrap: wrap;*/
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.paybox img {
    height: 50px;
    border-radius: 6px;
    cursor: pointer;
}

.paybox button {
    padding: 0.5rem 1rem;
    background: linear-gradient(90deg, #fede61, orange, #fede61);
    font-size: 1.1rem;
    border-radius: 6px;
    font-weight: 700;
    color: #000;
    /*max-width: 48%; */
    height: auto;
    width: 200px;
}

.paybox .image-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    width: 100%;
}

.featurein {
    padding: 0.5rem;
    border: 3px solid #eeeeee;
    border-right: 0;
    border-left: 0;
    background: #3db6eb;
}

/*.featurein .brand-img img{*/

/*        object-fit: cover;*/

/*    aspect-ratio: 3/1;*/

/*}*/

.media-head {
    height: 100%;
    justify-content: center;
    align-items: center;
    display: flex;
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    padding: 1rem 0;
    text-shadow: -1px 3px 2px black;
}

/*??????????????*/

.WidgetTitle__Header-sc-ruy1gu-2 {
    display: none;
}

.ranking.section-padding {
    background: #000;
}

.tabbox img {
    height: 90px;
}

.tabbox .heading {
    font-size: 1.1rem;
    font-weight: 600;
}

.raning-box {
    height: 600px;
    overflow-y: scroll;
}

.nav-tabs {
    /*border:none;*/
    justify-content: center;
    gap: 1rem;
}

.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
    border: none;
    /*border-radius: 8px;*/
}

.nav-tabs .nav-link:hover {
    border-color: transparent;
    background: #fff;
    border: 0;
}

.ranking .nav-link {
    color: #fff;
}

.table-active {
    text-align: center;
}

.review-google {
    position: relative;
}

.review-google .soome-gr {
    position: absolute;
    left: 50%;
    transform: translate(-50%);
    bottom: -2px;
    z-index: 2;
    background: #fff;
    padding: 0.5rem 1rem;
    font-size: 1.1rem;
    font-weight: 800;
    color: #18185e;
    width: 290px;
    border-radius: 50px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 20px 25px -5px, rgba(0, 0, 0, 0.04) 0px 10px 10px -5px;
}

.service-bg,
.offcanvas__contact {
    background: url(../../asset/img/services-bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

#carouselExampleCaptions {
    margin-top: 8.7rem;
}

@media(max-width:1260px) {
    .header-top {
        display: none;
    }
    #carouselExampleCaptions {
        margin-top: 4.7rem;
    }
    .submenu .menu {
        grid-template-columns: repeat(1, 1fr);
        width: 100%;
    }
    .submenu .web-img-header,
    .header-gif {
        display: none;
    }
    .submenu .menu {
        height: 322px;
        overflow-y: scroll;
    }
}

@media(max-width:1201px) {
    .menu li a {
        color: #fff;
    }
    .mean-container .mean-nav ul li li a {
        padding: 10px 10% 10px 2rem;
    }
}

.service-page .news-box-items {
    margin: 0;
    height: 100%;
    background-size: cover !important;
    background-repeat: no-repeat !important;
}

.service-page .news-box-items .news-content a {
    color: #fff;
}

.service-page .news-box-items .news-content a:hover {
    color: #fff;
}

.service-page {
    background: url(../../asset/img/service-bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
}

.pbmit-portfolio-title {
    padding: 1rem;
    text-align: center;
    font-size: 2rem;
    font-weight: 800;
    margin: 45px 0 20px 0;
    display: block;
    font-family: 'Plus Jakarta Sans';
    color: #4c96d7;;
}

.meet-business {
    display: block;
    border-radius: 50px;
    background: linear-gradient(88deg, #00123e00, #3b000300), url(../../asset/img/breadcrumb-1.jpg);
    background-size: contain;
    padding: 0.5rem 1rem;
    font-size: 1.1rem;
    font-weight: 600;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 20px 25px -5px, rgba(0, 0, 0, 0.04) 0px 10px 10px -5px;
}

.about-p-c {
    background-image: url('../../asset/img/cta-counter-bg.jpg');
    background-repeat: no-repeat;
    background-size: 100% 60%;
    position: relative;
    background-position: top;
}

.s-prod-p-image {
    position: relative;
    text-align: center;
    float: right;
    width: 40%;
    margin: 0 0 20px 20px;
}

.s-prod-p-image .fst {
    position: absolute;
    height: 135px;
    box-shadow: none;
    left: -65px;
    top: 30%;
}

.s-prod-p-image img {
    border-radius: 12px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 20px 25px -5px, rgba(0, 0, 0, 0.04) 0px 10px 10px -5px;
}

@media(max-width:991px) {
    .s-prod-p-image {
        float: none;
        width: 100%;
        margin: 0 0 20px 0;
    }
    .main-sidebar.sticky-style {
        display: none;
    }
}

.s-prod-p p {
    margin: 0 0 1rem 0;
}

.s-prod-p h2 {
    font-size: 30px;
    margin: 0rem 0 1rem;
}

.s-prod-p h3,
.s-prod-p h4 {
    margin: 2rem 0 1rem;
}

.table>:not(caption)>*>* {
    padding: .1rem .1rem .1rem .5rem !important;
    font-size: 0.8rem;
}

.package .table-striped>tbody>tr:nth-of-type(odd)>* {
    --bs-table-color-type: var(--bs-table-striped-color);
    --bs-table-bg-type: rgb(138 168 255 / 7%) !important;
}

.package td {
    padding: 0.5rem !important;
    font-size: 0.9rem !important;
    font-weight: 600 !important;
}

.package table tr {
    width: 100%;
}

.package table tr td {
    width: 24%;
    vertical-align: middle;
}

.advance-pack-row td {
    padding: 2rem 0 1rem 0 !important;
}

.package table tr td:nth-child(3) {
    border-right: 3px solid red !important;
    border-left: 3px solid red !important;
}

.package table tr:first-child td:nth-child(3) {
    border-top: 3px solid red !important;
}

.package table tr:last-child td:nth-child(3) {
    border-bottom: 3px solid red !important;
}

/*.title1{*/

/*    background:#0b1b6d !important;*/

/*}*/

/*.title2{*/

/*    background:##4c96d7; !important;*/

/*}*/

/*.title3{*/

/*    background:#5198bb !important;*/

/*}*/

.package .title {
    text-align: center;
    font-size: 1.5rem;
    color: #000;
    font-weight: 800;
    font-family: system-ui;
}

.package_price {
    border-radius: 5px;
    padding: 7px 25px;
    text-align: center;
    color: #fff;
    font-weight: bold;
    display: block;
    max-width: 200px;
    margin: 0 auto;
    font-size: 18px;
    margin-bottom: 1rem;
    /*background:linear-gradient(120deg, #ffdf00, #40a200);*/
}

.package_price .gst {
    display: block;
    font-size: 1rem;
}

.package_price-1 {
    background: linear-gradient(to right, #8ec63d 0, #b5d536 100%);
}

.package_price-2 {
    background: linear-gradient(to right, #faa940 1%, #ff7225 100%);
}

.package_price-3 {
    background: linear-gradient(to right, #2d3694 2%, #1178ba 100%);
}

.package-validity {
    background: linear-gradient(45deg, #a00a0d 0%, #251683 100%);
}

.discounted_price {
    display: block;
    text-decoration: line-through;
    font-size: 0.9rem;
}

.theme-btn-now {
    border-radius: 5px;
    padding: 7px 25px;
    text-align: center;
    color: #000;
    font-weight: bold;
    display: block;
    max-width: 200px;
    margin: 0 auto;
    font-size: 18px;
    margin-bottom: 1rem;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 20px 25px -5px, rgba(0, 0, 0, 0.04) 0px 10px 10px -5px;
}

.theme-btn-now {
    background: #ffbc09;
}

.theme-btn-now:hover {
    transition: 0.5s;
    background: #00bd61;
    color: #fff;
}

.package .feature_box {
    text-align: center;
    background: #d4d4d409;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 20px 25px -5px, rgba(0, 0, 0, 0.04) 0px 10px 10px -5px;
    padding: 1rem;
    border-radius: 10px;
}

.package .feature_box p {
    font-weight: 600;
}

.package .table .title1 i,
.package .table .title2 i,
.package .table .title3 i {
    font-size: 2rem;
    color: orange;
    /*background: #fff;*/
    margin: 0 auto;
    padding: 0.3rem;
    border-radius: 50px;
}

.package .table {
    margin: 2rem 0rem;
}

.package .feature_box img {
    padding: 1rem;
    height: 100px;
}

.package .fa-check {
    font-weight: 800;
    font-size: 1.35rem;
    color: #00bd61 !important;
}

.package .fa-circle-xmark {
    color: red !important;
    font-weight: 800;
    font-size: 1.35rem;
}

.advance-pack {
    position: relative;
}

.advance-pack .m-pop {
    position: absolute;
    top: -62px;
    left: 50%;
    transform: translateX(-50%);
}

.package .container {
    margin-top: 5rem;
}

.policy h4 {
    margin-top: 2rem;
}

.modal-dialog {
    width: 96% !important;
}

.modal-body {
    padding: 0 !important;
    border-radius: 10px;
}

.modal-body img {
    border-radius: 10px;
}

.box-port {
    height: 500px;
    position: relative;
    overflow: hidden;
    border: 2px solid #e2e2e2;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 20px 25px -5px, rgba(0, 0, 0, 0.04) 0px 10px 10px -5px;
    transition: all 0.3s ease-in-out;
}

.box-port::before {
    position: absolute;
    content: '';
    background: linear-gradient(45deg, #9000068a, #132e7b78);
    transform: scale(0.5);
    opacity: 0;
    height: 100%;
    width: 100%;
    border-radius: 50%;
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out, border-radius 0.3s ease-in-out;
}

.box-port .clientname {
    position: absolute;
    top: 50%;
    left: 50%;
    width: max-content;
    transform: translate(-50%, -50%) scale(0.1);
    opacity: 0;
    font-weight: 700;
    color: #000;
    padding: 6px 20px;
    border-radius: 100px;
    display: inline-block;
    background: linear-gradient(90deg, #fede61, orange, #fede61);
    transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
}

.box-port:hover::before {
    opacity: 1;
    border-radius: 0;
    transform: scale(1);
}

.box-port:hover .clientname {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

.checkout table td {
    padding: 1rem !important;
}

.checkout .head-checkout img {
    height: 40px;
    background: #fff;
    padding: 0.1rem;
    border-radius: 5px;
}

.checkout .head-checkout {
    background: #003975;
}

.checkout .head-checkout .name {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
}

.box-back-account form {
    background: #0009;
}

.nice-select.select-contactbox.open .list {
    height: 350px;
    overflow: scroll;
}

.checkout .contact-content {
    margin-left: 0px;
    padding: 2rem;
    /* background: grey; */
    border-radius: 19px;
    border: 2px solid #80808078;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 20px 25px -5px, rgba(0, 0, 0, 0.04) 0px 10px 10px -5px;
}

.home-page-service.hero-1 .mike-shape {
    top: 46px;
    bottom: inherit;
}

@media(max-width:1300px) {
    .advance-pack .m-pop {
        top: -50px;
    }
    .package .container {
        margin-top: 3rem;
    }
}

@media(max-width:1100px) {
    .team-section .mike-shape {
        display: none;
    }
    .team-section .energy-shape {
        display: none;
    }
}

.ranking .nav-link:hover.nav-link .heading {
    color: #000;
}

@media(max-width:991px) {
    .nav-tabs {
        justify-content: center;
        gap: 0.2rem;
        width: 100%;
        display: flex;
    }
    .ranking .nav-link {
        color: #fff;
        width: 22%;
    }
    .nav-link {
        padding: 1rem .5rem !important;
    }
    .ranking-slider .table tr td {
        line-height: 21.6px;
    }
    .tabbox img {
        height: inherit;
        width: 100%;
    }
    .tabbox .heading {
        font-size: 0.8rem;
        font-weight: 600;
        line-height: 16px;
    }
    .carousel-control-next-icon,
    .carousel-control-prev-icon {
        width: 0.5rem;
        height: 0.5rem;
        background-size: 15px;
        padding: 1rem;
    }
    .home-page-service.hero-1 .mike-shape {
        top: -2px !important;
        bottom: inherit !important;
    }
    .team-wrapper .team-content .list-items {
        margin-left: 15px;
    }
    .team-slider {
        padding: 4rem 0 0 0;
    }
    .team-section.hero-1 .rocket-shape {
        position: absolute;
        bottom: -30px;
    }
    .mycustom-marque.style-2 .scrolling-wrap .comm .cmn-textslide {
        font-size: 18px;
    }
    .scrolling-wrap .comm .cmn-textslide {
        line-height: 60px;
    }
    .about-section.hero-1 .mike-shape {
        top: 35%;
        bottom: inherit;
    }
    .team-section .hero-1 .rocket-shape {
        bottom: 36%;
        right: 20px;
    }
    .audience-wrapper .audience-right .audience-img {
        max-width: none;
        width: -webkit-fill-available;
    }
    .box-partner .brand-img {
        width: 22%;
    }
    .swiper.ranking-slider .array-button {
        width: 40%;
    }
    .footer-starter .badge {
        top: -7%;
        left: -17%;
        height: 188px;
    }
    .footer-widgets-wrapper .col-lg-8 .row {
        margin-top: 4rem;
    }
    .about-section .brand-wrapper .brand-title {
        width: 55%;
    }
    .about-section .badge {
        top: 0%;
        left: -4%;
        height: 176px;
    }
    .advance-pack .m-pop {
        top: -45px;
    }
    .package .table {
        margin: 2rem 0 2rem;
        width: 898px;
    }
    .package .container {
        margin-top: 3rem;
    }
    .footer-bottom {
        padding: 5px 0 30px;
    }
    .about-wrapper-2 .about-image {
        position: relative;
        float: left;
        width: 100%;
    }
}

@media(max-width:676px) {
    .box-partner .brand-img {
        width: 45%;
    }
    .s-prod-p-image .fst {
        left: -19px;
        top: -14%;
    }
    .service-details-section.hero-1 .energy-shape {
        position: absolute;
        right: 40px;
        top: 9%;
    }
    .service-details-section.hero-1 .mike-shape,
    .service-details-section.hero-1 .energy-shape {
        display: none;
    }
    .about-wrapper-2 .about-image .box-shape {
        position: absolute;
        top: -10%;
    }
    .text-circle {
        top: -48px;
        position: absolute;
        right: -20px;
    }
    .paybox button {
        flex-basis: 100%;
    }
    .paybox {
        flex-direction: column;
        align-items: center;
    }
    .paybox button {
        margin-bottom: 10px;
        /* Space between button and images */
    }
    .paybox .image-container img {
        max-width: 100%;
        /* Make images take full width on smaller screens */
    }
    .back-to-top {
        bottom: 103px;
    }
}

@media(max-width:480px) {
    .about-section.hero-1 .mike-shape {
        top: 25%;
        bottom: inherit;
    }
    .about-section.location .mike-shape {
        top: 33%;
        bottom: inherit;
    }
    .about-section.location .energy-shape {
        top: 20%;
    }
    .about-section.hero-1 .energy-shape {
        right: -20px;
    }
    .about-section.hero-1 .rocket-shape {
        bottom: -14px;
    }
}

.ul-boss ul li {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: var(--light);
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.ul-boss ul li::before {
    position: relative;
    content: "\f058";
    font-family: 'FontAwesome';
    font-weight: 900;
    margin-right: 10px;
    color: #ff8605;
}

.protect-img {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.protect-img img {
    height: 100px;
}