/* font families */
@import url('https://fonts.googleapis.com/css2?family=Almarai:wght@300;400;700;800&display=swap');

/* 
font-family: 'Almarai', sans-serif;
 */

@font-face {
    font-family: Ambasador;
    src: url(../font-families/Ambasador.ttf);
}

@font-face {
    font-family: NeueHaasDisplayRoman;
    src: url(../font-families/NeueHaasDisplayRoman.ttf);
}

@font-face {
    font-family: NeueHaasDisplayLight;
    src: url(../font-families/NeueHaasDisplayLight.ttf);
}

@font-face {
    font-family: NeueHaasDisplayMedium;
    src: url(../font-families/NeueHaasDisplayMedium.ttf);
}

@font-face {
    font-family: NeueHaasDisplayBold;
    src: url(../font-families/NeueHaasDisplayBold.ttf);
}

/* new fonts */
@font-face {
    font-family: HelveticaNeueUltraLight;
    src: url(../font-families/HelveticaNeueUltraLight.otf);
}

@font-face {
    font-family: HelveticaNeueLight;
    src: url(../font-families/HelveticaNeueLight.otf);
}

@font-face {
    font-family: HelveticaNeueRegular;
    src: url(../font-families/helvetica-neue-regular.ttf);
}


@font-face {
    font-family: HelveticaNeueBold;
    src: url(../font-families/HelveticaNeueBold.otf);
}


:root {
    --white: #fff;
    --black: #000;
    --green: #21FC0D;
    --grey: #7E7E7E;
}

/* general css */
.aj_landing {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: #000;
    background: #000;
    font-family: HelveticaNeueRegular;
}

.aj_landing a:hover {
    text-decoration: none;
}

/* typography */

.aj_landing h1,
.aj_landing h2,
.aj_landing h3,
.aj_landing h4,
.aj_landing h5,
.aj_landing h6 {
    font-family: HelveticaNeueLight;
}

.aj_landing a {
    /* font-size: 16px; */
    font-family: HelveticaNeueRegular;
}

.aj_landing .custom_over-aj a {
    font-family: 'Almarai', sans-serif;
}

.aj_landing p {
    font-size: 18px;
    margin: 0;
    font-family: HelveticaNeueRegular;
}

.aj_landing a,
.aj_landing a:hover {
    text-decoration: none;
}

/* .aj_landing img {
    width: 100%;
} */


.aj_landing .container {
    max-width: 1200px;
}

/* general padding and margins */
html {
    scroll-behavior: smooth;
}

.p-200 {
    padding: 200px 0px;
}

.p-170 {
    padding: 170px 0px;
}

.p-150 {
    padding: 150px 0px;
}

.p-130 {
    padding: 130px 0px;
}

.p-100 {
    padding: 100px 0px;
}

.p-80 {
    padding: 80px 0px;
}

.p-70 {
    padding: 70px 0px;
}

.mt-100 {
    margin-top: 100px;
}

.mt-80 {
    margin-top: 80px;
}

.mt-70 {
    margin-top: 70px;
}

.mt-50 {
    margin-top: 50px;
}

.mb-50 {
    margin-bottom: 50px;
}

.color-black {
    color: #000;
}

.color-white {
    color: #fff;
}

.color-green {
    color: var(--green);
}

/* ============= header start ============= */

.header_aj nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.aj_landing .nav_row_bottom.nav_aj1 .footer_box h2 {
    color: #fff;
}

.nav-logo {
    display: block;
    /* width: 162px; */
    width: 130px;
}

a.call-us {
    width: 36px;
    margin-right: 20px;
    display: inline-block;
}

.nav-btns {
    display: flex;
}

a.btn-aj-h {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 60px;
    font-size: 16px;
    background: transparent;
    border: 1px solid var(--white);
    color: #fff;
    height: 46px;
    padding: 4px 30px;
    margin-right: 35px;
    transition: all 0.2s linear;
    min-width: 204px;
    position: relative;
}

a.btn-aj-h::before {
    content: '';
    width: calc(100% + 2px);
    height: calc(100% + 2px);
    left: -1px;
    border-radius: 60px;
    position: absolute;
    top: -1px;
    transition: all 0.2s linear;
    background: linear-gradient(89deg, #21FC0D -20%, #fff 50%);
    opacity: 0;
    z-index: -1;
}

a.btn-aj-h:hover {
    color: #000;
    background: transparent;
}

a.btn-aj-h:hover::before {
    opacity: 1;
}

/* sider scrollbar */

.aj_landing::-webkit-scrollbar {
    width: 4px;
}

.aj_landing::-webkit-scrollbar-track {
    background: #fff;
}

.aj_landing::-webkit-scrollbar-thumb {
    background: var(--black);
}

.aj_landing::-webkit-scrollbar-thumb:hover {
    background: var(--black);
}

/* Header scroll animation start */

.header_aj {
    position: sticky;
    top: 0px;
    padding: 7px 0px;
    background: #000;
    z-index: 3;
    transition: all 0.5s linear;
}

body.scroll-down .header_aj {
    background: #000;
    top: -144px;
    transition: all 0.5s linear;
    position: sticky;
}

body.scroll-up .header_aj {
    background: #000;
    top: 0;
    position: sticky;
    transition: all 0.5s linear;
}

/* Header scroll animation end */

/* header menu full width starts */
.button_container {
    position: relative;
    height: 27px;
    width: 37px;
    cursor: pointer;
    z-index: 3;
    transition: opacity 0.25s ease;
}

.button_container span {
    background: #fff;
    border: none;
    height: 2px;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transition: all 0.6s ease;
    cursor: pointer;
}

.button_container span:nth-of-type(2) {
    top: 11px;
    right: 0px;
    left: auto;
    transition: all 0.6s ease;
    transition-delay: .12s;
}

.header_aj .button_container span:nth-of-type(3) {
    top: 22px;
    width: 100%;
}

.button_container.active .top {
    transform: translateY(11px) translateX(0) rotate(45deg);
    background: #fff;
}

.button_container.active .middle {
    transition: all 0.3s ease;
    background: #fff;
    width: 0px;
    right: 0px;
    left: auto;
}

.button_container.active .bottom {
    transform: translateY(-11px) translateX(0) rotate(314deg);
    background: #fff;
    width: 100%;
}

.menu_hamburger {
    display: flex;
    align-items: center;
}

/* =========== button end ============ */

.custom_over {
    position: fixed;
    background: #000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s, visibility 0.5s, height 0.5s;
    overflow: hidden;
    z-index: 2;
    transition: all 0.3s linear;
}

.custom_over.open {
    opacity: 1;
    visibility: visible;
    height: 100%;
}

.custom_over.open li {
    animation-delay: 0.5s;
}

.custom_over.open li:nth-of-type(2) {
    animation-delay: 0.4s;
}

.custom_over.open li:nth-of-type(3) {
    animation-delay: 0.45s;
}

.custom_over.open li:nth-of-type(4) {
    animation-delay: 0.5s;
}

.custom_over .overlay-menu {
    position: relative;
    font-size: 50px;
    font-weight: 400;
    margin-bottom: 20px;
}

.overlay-menu ul {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    display: inline-flex;
    justify-content: center;
    position: relative;
    height: 100%;
    flex-wrap: wrap;
}

.overlay-menu ul li {
    display: block;
    position: relative;
    opacity: 1;
}

.overlay-menu ul li a {
    display: block;
    position: relative;
    color: #ababab;
    font-size: 42px;
    margin-right: 70px;
    text-decoration: none;
    overflow: hidden;
}

.overlay-menu ul li a:hover {
    color: #baff00;
    transition: all0.2s linear;
}

.custom_over .container {
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: start;
    width: 100%;
    flex-wrap: wrap;
    padding: 100px 15px 50px 15px;
}

.custom_over .nav_row_bottom.nav_aj1 {
    width: 100%;
}

.nav_row_bottom.nav_aj1 .footer_box h2 {
    font-weight: 300;
    font-family: 'Almarai', sans-serif;
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 20px;
}

/* header new */
.img_logo_aj {
    /* max-width: 162px; */
    width: 100%;
    transition: all 0.4s linear;
}

.sm_logo_aj {
    transition: all 0.4s linear;
}

a.btn-aj-h,
.nav-logo {
    z-index: 3;
}

.custom_over-aj .footer_box ul li a,
.custom_over-aj .footer_box ul li {
    font-size: 16px;
    font-weight: 500;
    color: #9e9e9e;
    transition: all 0.2s linear;
}

.custom_over-aj .footer_box-3 li a {
    display: inline-flex;
}

.custom_over-aj .footer_box li {
    display: flex;
    align-items: center;
    margin-bottom: 3px;
}

.custom_over-aj .contact_icon img {
    width: 20px;
    margin-right: 15px;
}

.custom_over-aj .footer_box ul li a:hover {
    text-decoration: none;
    color: #baff00;
}

.custom_over-aj .footer_box-4 li a {
    display: inline-block;
    width: 20px;
    margin-right: 9px;
    transition: all 0.2s linear;
}

.custom_over-aj li a img {
    width: 100%;
}

.custom_over-aj .footer_box-4 li a:hover {
    opacity: 0.5;
}

/* header menu full width ends */

/* ============= header end ============= */

/* aj_banner */

.aj_banner {
    position: relative;
}

.aj-banner-text h1 {
    color: #fff;
    font-size: 60px;
}

.ambasidor {
    font-family: Ambasador;
}

.aj-banner-text .ambasidor {
    font-size: 88px;
    line-height: 30px;
    display: inline-block;
}

.aj-banner-text p {
    max-width: 630px;
    color: #fff;
    line-height: 24px;
    font-size: 18px;
    margin-top: 30px;
}

.aj-banner-text .green_text {
    color: var(--green);
}

.green_text {
    color: var(--green);
}

.aj-banner-text {
    max-width: 660px;
    position: relative;
    z-index: 1;
    padding: 100px 0px;
}


.aj_banner .container1 {
    position: relative;
    height: auto;
    padding-top: 50px;
}

.aj-img img {
    height: 740px;
    width: auto;
    text-align: center;
    z-index: 2;
    margin-left: 40px;
    position: relative;
}

.aj-sign-bg {
    position: absolute;
    height: 100%;
    width: auto;
    z-index: -1;
    right: -21%;
    bottom: 0px;
}

.aj-sign-bg img {
    height: 100%;
    width: auto;
    z-index: -1;
    text-align: center;
}

/* ========== want_sec ========== */

.want_sec {
    background: #171212;
    position: absolute;
    z-index: -1;
    width: 100%;
    bottom: 0px;
    left: 0px;

}

.want_sec .container-fluid {
    position: relative;
    padding: 43px 0px;
}

.want_sec h2 {
    font-family: HelveticaNeueLight;
    color: #fff;
    font-size: 40px;
    margin: 0px;
}

.want_sec h2 span {
    font-size: 70px;
    line-height: 30px;
}

.want-icon-1 {
    position: absolute;
    width: 117px;
    z-index: 2;
    height: auto;
    right: 0px;
    top: -157px;
    animation-duration: 40s;
    animation-iteration-count: infinite;
    animation-name: want_animatation_4;
    animation-timing-function: linear;
}

@keyframes want_animatation_4 {
    from {
        transform: rotate(360deg);
    }

    to {
        transform: rotate(0deg);
    }
}


.want-icon-2 {
    position: absolute;
    width: 22px;
    right: 9%;
    bottom: 47px;
    animation: want_animatation_2 7s linear infinite;
}

@-webkit-keyframes want_animatation_2 {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    50% {
        -webkit-transform: scale(1.3);
        transform: scale(1.3);
    }
}

.want-icon-3 {
    position: absolute;
    width: 110px;
    right: 40px;
    top: 0px;
    transform: translatex(0px);
    -webkit-animation: float 10s ease-in-out infinite;
    animation: want_animatation_3 10s ease-in-out infinite;
}

@keyframes want_animatation_3 {
    0% {
        transform: translatex(0px);
    }

    50% {
        transform: translatex(30px);
    }

    100% {
        transform: translatex(0px);
    }
}

/* ============ aj-intro ============ */
.aj-intro {
    padding: 120px 0px 160px 0px;
}

.aj-intro-text svg {
    display: inline-block;
    width: 85px;
}

.into_sign {
    width: 290px;
    margin-bottom: -65px;
    margin-left: -30px;
    margin-top: -30px;
}

.aj-intro-text .ambasidor {
    display: inline-block;
    font-size: 84px;
    line-height: 20px;
}

.aj-intro-text p {
    font-size: 18px;
    max-width: 830px;
    margin: 35px 0px 50px 0px;
}

.aj-btns {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 60px;
    font-size: 18px;
    text-transform: capitalize;
    background: transparent;
    border: 1px solid var(--black);
    color: #000;
    height: 59px;
    padding: 4px 30px;
    min-width: 280px;
    transition: all 0.3s linear;
}

.aj-btns.aj-btn-2 {
    background: var(--green);
    border: 1px solid var(--green);
}

.aj-btns:hover,
.aj-btns.aj-btn-2:hover {
    background: #000;
    border: 1px solid var(--black);
    color: #fff;
}

.highlighted {
    padding: 1px 0px;
    background: linear-gradient(to right, #21FC0D, #21FC0D) 0 50% no-repeat;
    transition: background-size .75s ease-in;
    -moz-transition: background-size .75s ease-in;
    -ms-transition: background-size .75s ease-in;
    -o-transition: background-size .75s ease-in;
    -webkit-transition: background-size .75s ease-in;
    background-position: 0% 82%;
}

[data-aos="highlight_anim"] {
    background-size: 0% 85%;
    transition-property: background-size;
}

[data-aos="highlight_anim"].aos-animate {
    background-size: 100% 85%;
}

.aj_animated_img {
    width: 292px;
    border-radius: 50%;
    margin: 0px auto;
}

.aj_animated_img .profile-round {
    border-radius: 50%;
    border: 5px solid var(--green);
}

.circular-pro {
    position: relative;
    border-radius: 50%;
}

.aj_animated_img-1 {
    content: '';
    position: absolute;
    background: transparent;
    height: 100%;
    top: 3px;
    left: 3px;
    width: 100%;
    border-radius: 50%;
    /*-webkit-animation: aj_anim_circle 15s infinite linear;*/
}

@-webkit-keyframes aj_anim_circle {
    0% {
        -webkit-transform: rotate(-15deg);
    }

    50% {
        -webkit-transform: rotate(10deg);
    }

    100% {
        -webkit-transform: rotate(-15deg);
    }
}


.aj-small-ring1 {
    width: 65px;
    position: absolute;
    left: -7px;
    bottom: 40px;
}

.aj-small-ring2 {
    width: 49px;
    position: absolute;
    right: -7px;
    top: 40px;
    cursor: pointer;
}

.aj-intro {
    position: relative;
}

/* Journey slider starts */

.location-sec {
    overflow: hidden;
    position: relative;
    background: linear-gradient(89deg, #ACFEA5 40%, #21FC0D 80%);
    margin-top: -1px;
}

.section {
    display: flex;
    flex-flow: row;
    flex-wrap: nowrap;
    overscroll-behavior: none;
    padding: 200px 0px !important;
}

.panel.panel-1 {
    min-width: auto;
    width: auto;
}

.cards_wraper {
    margin-left: 3.5%;
    display: flex;
}

.slider_gs h2 {
    color: #000;
    font-size: 68px;
}

.long-text-gs {
    white-space: nowrap;
    /* overflow-x: scroll;  */
    clear: both;
    padding-right: 100px;
    margin-left: 350px;
}

.journey-icon1 {
    position: absolute;
    top: 100px;
    width: 250px;
    left: -125px;
    z-index: 1;
    animation-duration: 40s;
    animation-iteration-count: infinite;
    animation-name: journeySpin1;
    animation-timing-function: linear;
}

@keyframes journeySpin1 {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.journey-main {
    position: relative;
}

/* industries i serve */

.aj-top-h h2,
.aj-intro-text h2 {
    font-size: 60px;
}

.aj-top-h span,
.aj-intro-text h2 span {
    display: inline-block;
    line-height: 30px;
    font-size: 84px;
}

.aj_bg_white {
    background: #fff;
}

.serve-btn {
    background: #000;
    color: #fff;
    width: 100%;
    height: 59px;
    font-size: 20px;
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 60px;
    text-transform: capitalize;
    transition: all 0.3s linear;
    z-index: 1;
}

.expert-box-n .aj-btns:hover {
    background: #fff;
    border: 1px solid #ffff;
    color: #000;
}

.serve-btn:hover {
    color: #000;
    background: transparent;
}

/* industry line animation */

.serve-btn.serv-green {
    background: var(--green);
    color: #000;
    width: auto;
    min-width: 270px;
    transition: all 0.2s linear;
    font-family: NeueHaasDisplayLight;
    font-size: 20px;
}

.serve-btn.serv-green::before {
    display: none;
}

.serve-btn.serv-green:hover {
    background: #000;
    color: #fff;
}

.logo-comp {
    border: 1px solid #EAEAEA;
    height: 127px;
    width: auto;
    padding: 30px;
    display: flex;
    border-radius: 10px;
    margin: 0 auto;
    justify-content: center;
    align-items: center;
    transition: all 0.3s linear;
    position: relative;
}

.sec-venture .container {
    position: relative;
}

.venture-icon1 {
    position: absolute;
    top: -95px;
    width: 225px;
    right: 320px;
    z-index: 1;
    animation-duration: 40s;
    animation-iteration-count: infinite;
    animation-name: venture-spin1;
    animation-timing-function: linear;
}

@keyframes venture-spin1 {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.venture-icon2 {
    position: absolute;
    width: 70px;
    right: 190px;
    bottom: 20%;
    /* animation: venture_animatation_2 7s linear infinite; */
    animation-duration: 20s;
    animation-iteration-count: infinite;
    animation-name: venture_animatation_2;
    animation-timing-function: linear;
}

@-webkit-keyframes venture_animatation_2 {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.venture-icon3 {
    position: absolute;
    width: 40px;
    right: 120px;
    bottom: 0%;
    animation: venture_animatation_3 6s linear infinite;
}

@-webkit-keyframes venture_animatation_3 {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    50% {
        -webkit-transform: scale(0.8);
        transform: scale(0.8);
    }
}

/* ================= venture-lines ==================== */

.sec-main1 svg {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    width: 220px;
    height: auto;
    margin-right: 70px;
    position: absolute;
    right: 190px;
    top: 120px;
}

.sec-main1.visible1 svg {
    opacity: 1;
    transform: translateY(0);

}

.industies-serv .container,
.aj_expertise .container {
    position: relative;
}

.spacer-100 {
    padding-top: 100px;
}

.industry_i-1 {
    position: absolute;
    top: -195px;
    width: 175px;
    right: 70px;
    z-index: 1;
    animation-duration: 40s;
    animation-iteration-count: infinite;
    animation-name: industry-spin1;
    animation-timing-function: linear;
}

@keyframes industry-spin1 {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* sec-collaborate */
.sec-collaborate {
    overflow: hidden;
    padding: 200px 0px 150px 0px;
}

.coll-inner {
    position: relative;
    max-width: 1600px;
    margin: 0 auto;
}

.colab-sign {
    width: auto;
    position: absolute;
    z-index: 0;
    height: auto;
    top: 0px;
    max-width: 780px;
    right: -130px;
}

.sec-collaborate .container {
    z-index: 1;
    position: relative;
}

.sec-collaborate .venture-h {
    margin-top: -40px;
}

.sec-collaborate h2 {
    font-family: NeueHaasDisplayRoman;
}

.collaburate-list li {
    font-size: 36px;
    padding: 30px 0px;
    font-family: HelveticaNeueRegular;
    border-bottom: 1px solid #000;
}

.aj-btns.collab-btn {
    background: #000;
    color: #fff;
}

.aj-btns.collab-btn:hover {
    background: var(--green);
    border: 1px solid var(--green);
}

.bg_green {
    background: var(--green);
}

/* expertise */

.mb_1 {
    margin-bottom: -1;
}

/* ================ conslting-h ============= */

.conslting-h .venture-h .ambasidor {
    font-size: 100px;
}

.consulting-r .accordion-top {
    font-size: 24px;
    margin: 10px 0px 50px 0px;
    font-family: NeueHaasDisplayRoman;
}

/* accordion section */

.accordion-aj button {
    padding: 30px 0px;
    font-family: NeueHaasDisplayMedium;
    font-size: 32px;
    text-transform: capitalize;
    background: transparent;
    color: #000;
}

.accordion-aj h2 {
    background: transparent;
}

.accordion-aj button,
.accordion-aj .accordion-button:not(.collapsed) {
    background: transparent;
    box-shadow: none;
    color: #000;
}

.accordion-aj button:focus,
.accordion-aj button:active:focus {
    outline: none;
    box-shadow: none;
    color: #000;
}

.accordion-aj .accordion-item {
    border: none;
    border-top: 1px solid #000;
    background: transparent !important;
    border-radius: 0px;
    z-index: 0;
    position: relative;
}

.accordion-aj .accordion {
    background: transparent !important;
    position: relative;
    z-index: 1;
}

.accordion-aj .accordion .accordion-item:last-child {
    border-top: 1px solid #000;
}

.accordion-aj .card-body {
    padding: 0px 0px 20px 0px;
}

.accordion-aj .card-body p {
    font-size: 20px;
    color: #000;
    font-family: NeueHaasDisplayRoman;
}

.accordion-aj .card-body p span {
    background: var(--green);
}

.accordion-aj .tab-pane .accordion-aj:last-child {
    margin-bottom: 0px;
}

.accordion-aj {
    border-bottom: 1px solid #000;
    margin-bottom: 45px;
}

.accordion-aj .accordion-button::after {
    background-image: url(../images/expandable-plus1.svg);
}

.accordion-aj .accordion-button:not(.collapsed)::after {
    background-image: url(../images/expandable-cross1.svg);
    transform: none;
    background-position: center;
}

/* ============ offer section ============= */

/* believe sec */

.what-belive h2 {
    font-size: 60px;
}

.what-belive h2 span {
    font-size: 100px;
    line-height: 30px;
}

.what-belive {
    max-width: 680px;
}

.what-belive p {
    font-size: 24px;
    font-family: NeueHaasDisplayRoman;
}

.believe-mainline {
    background: var(--green);
    position: relative;
    padding: 12px 40px;
    color: #000;
    transition: all 0.3s linear;
    margin-bottom: 22px;
}

.belives-wrper {
    margin-top: 70px;
}

.belives-wrper .believe-mainline:last-child {
    margin-bottom: 0px;
}

.believe-mainline::before {
    content: '';
    width: 100%;
    height: 100%;
    left: 0px;
    border-radius: 0px;
    position: absolute;
    top: 0px;
    transition: all 0.3s linear;
    background: linear-gradient(89deg, #21FC0D -20%, #fff 50%);
    opacity: 0;
    z-index: -1;
}

.belive-innerline {
    font-size: 30px;
    position: relative;
    font-family: NeueHaasDisplayRoman;
}

.believe-mainline:hover::before {
    opacity: 1;
    z-index: 0;
}

.belive-img {
    position: absolute;
    top: 50%;
    right: -30px;
    opacity: 0;
    transform: translateY(-50%);
    z-index: 1;
    pointer-events: none;
    transition: all 0.1s linear;
    /* width: 200px; */
    width: auto;
    height: 160px;
    max-width: 200px;
    object-fit: contain;
}

.believe-mainline:hover .belive-img {
    opacity: 1;
}

.combine-sec {
    position: relative;
}

.aj-btns.aj-btn-3 {
    background: var(--green);
    border: 1px solid var(--green);
}

.aj-btns.aj-btn-3:hover {
    background: #fff;
    color: var(--black);
    border: 1px solid var(--white);
}

/* speaking lines */

.believe-sec .container {
    position: relative;
}

.believe-img1 {
    position: absolute;
    top: 0px;
    width: 80px;
    right: 20px;
    z-index: 1;
    animation-duration: 20s;
    animation-iteration-count: infinite;
    animation-name: believe_anima_3;
    animation-timing-function: linear;
}

@keyframes believe_anima_3 {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.believe-img1.believe-img2 {
    width: 23px;
    top: -20px;
    right: 90px;
    animation-duration: 20s;
    animation-iteration-count: infinite;
    animation-name: believe_anima_4;
    animation-timing-function: linear;
}

@keyframes believe_anima_4 {
    from {
        transform: rotate(360deg);
    }

    to {
        transform: rotate(0deg);
    }
}


/* client sectipon */

.client-top-h h2 {
    font-size: 64px;
    font-family: NeueHaasDisplayRoman;
    text-align: center;
}

.client-top-h span {
    line-height: 30px;
    font-size: 80px;
}

.client-box {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: var(--green);
    border-radius: 14px;
    overflow: hidden;
    height: 100%;
    position: relative;
}

.client-logo {
    background: #fff;
    position: absolute;
    bottom: 7px;
    width: 95%;
    display: flex;
    align-items: center;
    height: 72px;
    justify-content: center;
    padding: 10px;
    border-radius: 12px;
    left: 50%;
    transform: translateX(-50%);
}

.client-logo img {
    height: auto;
    width: auto;
}

.client-box-top {
    padding: 30px 20px 10px 20px;
}

.client_n,
.client_desi {
    font-family: NeueHaasDisplayRoman;
}

.client_n {
    font-size:30px;
    line-height:33px;
    min-height:65px;
}

.client_desi {
    font-size:18px;
    line-height:20px;
    min-height:60px;
    margin-top:15px;
}

.client-say {
    position: relative;
}

.client-say p {
    font-family: NeueHaasDisplayLight;
    font-style: italic;
    position: relative;
    font-size:20px;
    line-height:22px;
    min-height:90px;
    margin:30px 0px 0px 0px;
}

.client-say img {
    position: absolute;
    top: -5px;
    left: -3px;
    width: 34px;
}

.client-box-bottom img {
    width: 100% !important;
}

.client-sec .container {
    position: relative;
}

.client-sec {
    background: #F4F4F4;
}

.sec-main5 svg {
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    width: 160px;
    z-index: 1;
    margin: -23px 0px 0px 160px;
}

.sec-main5.visible5 svg {
    opacity: 1;
}

.client_line {
    height: 0px;
}

/* podcast page */

.sec-podcast h2 span {
    font-size: 100px;
}

/* lets get starts section */

.start-top h2 {
    font-size: 60px;
    margin-bottom: 0px;
}

.start-top h2 span {
    font-size: 100px;
}

.start-top .lets-amb span {
    line-height: 30px;
    font-size: 128px;
    margin: 114px 0px 0px -44px;
    display: inline-block;
}

.start-row1 {
    padding-top: 100px;
}

.start-box-wrp {
    max-width: 420px;
}

.start-1box {
    margin-left: 40px;
}

.start-2box {
    margin-top: 226px;
}

.start-box-wrp p {
    font-size: 25px;
    /* color: #151515; */
    font-family: NeueHaasDisplayRoman;
}

.lets_start .container {
    position: relative;
}

/* start line 1 */

.sec-main6 svg {
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    width: 186px;
    z-index: 1;
    margin-left: 0px;
    position: absolute;
    top: 350px;
    left: 510px;
}

.sec-main6.visible6 svg {
    opacity: 1;
}

.start-main-sec {
    padding: 0px 50px;
}

.start-row2 {
    position: relative;
    padding-top: 70px;
}


.start-3box {
    margin-left: 0px;
}

.start-4box {
    margin-top: 290px;
}

/* start line 2 */

.sec-main7 .start_line2 svg {
    position: absolute;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    width: 170px;
    z-index: 1;
    top: 40px;
    right: 360px;
    left: auto;
}

.sec-main7.visible7 .start_line2 svg {
    opacity: 1;
}

.sec-main7 {
    margin-top: -180px;
    padding-top: 180px;
}

.sec-main8 {
    margin-top: -150px;
    padding-top: 160px;
    position: relative;
}

.start-5box {
    margin-top: 100px;
}

.start-5box .aj-btns.aj-btn-3:hover {
    background: #000;
    color: #fff;
}


.sec-main8 svg {
    position: absolute;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    width: 335px;
    z-index: 1;
    bottom: 16px;
    left: 417px;
}

.sec-main8.visible8 svg {
    opacity: 1;
}

.start-ring1 {
    position: absolute;
    top: 0px;
    right: -250px;
    max-width: 450px;
}

.start-ring3 {
    position: absolute;
    top: 35%;
    left: -20px;
    max-width: 170px;
    z-index: 1;
    animation-duration: 30s;
    animation-iteration-count: infinite;
    animation-name: g-start-i1;
    animation-timing-function: linear;
}

@keyframes g-start-i1 {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.start-ring3.start-ring3a {
    top: 0%;
    left: auto;
    max-width: 100px;
    right: 110px;
}

.start-ring3.start-ring3b {
    top: 140px;
    left: auto;
    max-width: 120px;
    right: 40px;
}

.start-ring3.start-ring3c {
    top: auto;
    bottom: 30%;
    left: auto;
    max-width: 70px;
    right: 0px;
}

.start-ring3.start-ring3d {
    top: auto;
    bottom: -240px;
    left: auto;
    max-width: 190px;
    right: 0px;
    z-index: 1;
}

.lets_start {
    position: relative;
}

.start-ring5 {
    position: absolute;
    width: 200px;
    left: 0px;
    bottom: 25%;
    z-index: 1;
    transform: translatex(0px);
    -webkit-animation: float 10s ease-in-out infinite;
    animation: g-start-i3 10s ease-in-out infinite;
}

@keyframes g-start-i3 {
    0% {
        transform: translatex(20px);
    }

    50% {
        transform: translatex(-20px);
    }

    100% {
        transform: translatex(20px);
    }
}

/* unbox section */
.unbox-l {
    width: 40%;
}

.unbox-l-logo img {
    width: 100%;
    margin-top: -30px;
}

.unboxr-inner {
    flex-wrap: wrap;
    row-gap: 15px;
    column-gap: 15px;
    width: 850px;
    margin: 70px auto 0px auto;
}

.unbox-r-logo {
    padding: 10px 10px;
    background: #fff;
    border-radius: 10px;
    width: 190px;
    height: 56px;
}

/* episode section */

.episode-sec {
    padding: 50px 0px 200px 0px;
    position: relative;
}

.episode-sec::before {
    content: '';
    background: var(--green);
    width: 100%;
    position: absolute;
    height: 500px;
    left: 0px;
    top: 0px;
    z-index: 0;
}

.podcast-short-det {
    font-size: 20px;
    line-height: normal;
    color: #fff;
}

.aj-podcast-img {
    border-radius: 40px;
}

.aj-podcast-img img {
    width: 100%;
    transition: all 0.4s linear;
    border-radius: 40px;
}

.aj-podcast-box:hover .aj-podcast-img img {
    transform: scale(1.1);
}

.podcast-list {
    margin-top: 80px;
}

.podcast-list .row {
    row-gap: 65px;
}

.aj-podcast-box {
    background: #242424;
    border-radius: 20px;
    display: block;
    height: 100%;
    position: relative;
    padding: 16px 16px 60px 16px;
}

.aj-podcast-b {
    padding: 20px 15px 10px 15px;
}

.aj-podcast-box .aj-btn-3 {
    position: absolute;
    bottom: 10px;
    font-family: NeueHaasDisplayRoman;
    left: 50%;
    border: none;
    font-size: 22px;
    background: transparent;
    letter-spacing: 1.1px;
    transform: translateX(-50%);
    width: 100%;
    padding: 0px 20px;
    display: inline-flex;
    justify-content: flex-end;
}

.aj-podcast-box .aj-btn-3:hover {
    background: transparent;
    border: none;
}

.aj-podcast-img {
    overflow: hidden;
}

.episode-sec .container {
    position: relative;
}

.ep-icon3 {
    position: absolute;
    bottom: -235px;
    transform: translateY(-50%);
    width: 126px;
    left: 50%;
    z-index: 1;
    animation-duration: 40s;
    animation-iteration-count: infinite;
    animation-name: ep-podcast-anim4;
    animation-timing-function: linear;
}

@keyframes ep-podcast-anim4 {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.foote-logo img {
    width: 100%;
}

.foote-logo {
    max-width: 285px;
    transform: translateX(-46%);
    /*-webkit-animation: rotation_smile 7s infinite linear;*/
}

@-webkit-keyframes rotation_smile {
    0% {
        -webkit-transform: rotate(-10deg);
    }

    50% {
        -webkit-transform: rotate(10deg);
    }

    100% {
        -webkit-transform: rotate(-10deg);
    }
}

/* lets connect */

.lets-connect-aj .container {
    position: relative;
    padding: 100px 15px;
}

.arrow-top {
    background: #000;
    position: absolute;
    right: 0px;
    bottom: 0px;
    width: 52px;
    height: 52px;
    padding: 13px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.arrow-top img {
    width: auto;
    height: 100%;
}

.connect-r-aj h2 {
    font-size: 48px;
}

.connect-r-aj h2 span {
    font-size: 80px;
    line-height: 30px;
}

.connect-r-aj {
    padding-left: 40px;
    position: relative;
}

.connect-r-aj p {
    font-size: 20px;
}

.contact-form-aj {
    margin-top: 20px;
    padding: 0px 7px;
}

.contact-form-aj input,
.contact-form-aj textarea {
    height: 52px;
    background-color: #fff !important;
    border: none;
    border-radius: 12px;
    color: #000;
    margin-bottom: 20px;
    font-size: 16px;
    font-family: HelveticaNeueRegular;
    padding: 10px 15px;
}

.contact-form-aj textarea {
    height: 130px;
}

.contact-form-aj input:focus,
.contact-form-aj input:active:focus,
.contact-form-aj textarea:focus,
.contact-form-aj textarea:active:focus {
    box-shadow: none;
    outline: none;
    border: none;
}

.contact-form-aj input::placeholder,
.contact-form-aj textarea::placeholder {
    color: #8C8C8C;
    font-size: 16px;
    font-family: HelveticaNeueRegular;
}

.btn-subscribe {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 60px;
    font-size: 20px;
    font-family: NeueHaasDisplayRoman;
    text-transform: capitalize;
    background: #000;
    border: none;
    color: #fff;
    height: 46px;
    padding: 4px 30px;
    margin-top: 15px;
    min-width: 225px;
    transition: all 0.3s linear;
}

.btn-subscribe:hover {
    background: var(--white);
    color: #000;
}

.aj-intro-1 .container,
footer .container,
footer {
    position: relative;
}

/* ========= footer ========= */

footer {
    background: #161616;
    overflow: hidden;
}

.footer-listing h2 {
    font-size: 18px;
    font-family: NeueHaasDisplayRoman;
    color: var(--green);
    margin-bottom: 20px;
}

.footer-listing li a {
    font-size: 18px;
    font-family: NeueHaasDisplayRoman;
    display: block;
    position: relative;
    transition: all 0.2s linear;
    width: fit-content;
    color: #fff;
    margin-bottom: 14px;
}

.footer-listing li a::before {
    content: '';
    background: var(--white);
    height: 1px;
    position: absolute;
    left: 0px;
    bottom: 0px;
    width: 0px;
    transition: all 0.2s linear;
}

.footer-listing li a:hover::before {
    width: 100%;
}

.footer-listing-sm {
    margin-top: 50px;
}

.social-icon-f a {
    width: 37px;
    display: inline-block;
    margin-right: 16px;
    transition: all 0.3s linear;
}

.social-icon-f a img {
    width: 100%;
}

.social-icon-f a:hover {
    opacity: 0.4;
}

.footer-col-aj {
    width: fit-content;
}

.footer-row {
    flex-wrap: wrap;
    position: relative;
    column-gap: 120px;
    margin-left: auto;
}

.footer-fluid {
    position: relative;
    max-width: 1920px;
    margin: 0 auto;
}

.client-row .row {
    row-gap: 30px;
}

.story-mobile {
    display: none;
}


/* bg-changing animation */

/* bg-1 */
[data-aos="bg_chnage1"] {
    /* background: #000; */
    background: #fff;
    transition-property: background;
}

[data-aos="bg_chnage1"].aos-animate {
    background: #fff;
}

/* bg-2 */
[data-aos="bg_chnage2"] {
    /* color: #fff; */
    color: #000;
    transition-property: color;
}

[data-aos="bg_chnage2"].aos-animate {
    color: #000;
}

/* bg-3 */
[data-aos="bg_chnage3"] {
    /* background: #000; */
    background: #fff;
    transition-property: background;
}

[data-aos="bg_chnage3"].aos-animate {
    background: #fff;
}

/* bg-4 */
[data-aos="bg_chnage4"] {
    /* color: #fff; */
    color: #000;
    transition-property: color;
}

[data-aos="bg_chnage4"].aos-animate {
    color: #000;
}

/* bg-5 */
[data-aos="bg_chnage5"] {
    /* background: #000; */
    background: var(--green);
    transition-property: background;
}

[data-aos="bg_chnage5"].aos-animate {
    background: var(--green);
}

/* bg-6 */
[data-aos="bg_chnage6"] {
    /* color: #fff; */
    color: #000;
    transition-property: color;
}

[data-aos="bg_chnage6"].aos-animate {
    color: #000;
}


/* bg-11 */
[data-aos="bg_chnage11"] {
    /* color: #000; */
    color: #fff;
    transition-property: color;
}

[data-aos="bg_chnage11"].aos-animate {
    color: #fff;
}

/* bg-12 */
[data-aos="bg_chnage12"] {
    /* background: #fff; */
    background: #000;
    transition-property: background;
}

[data-aos="bg_chnage12"].aos-animate {
    background: #000;
}

/* bg-13 */
[data-aos="bg_chnage13"] {
    /* color: #fff; */
    color: #151515;
    transition-property: color;
}

[data-aos="bg_chnage13"].aos-animate {
    color: #151515;
}

/* bg-14 */
[data-aos="bg_chnage14"] {
    /* background: #000; */
    background: #fff;
    transition-property: background;
}

[data-aos="bg_chnage14"].aos-animate {
    background: #fff;
}

/* bg-15 */
[data-aos="bg_chnage15"] {
    color: #000;
    transition-property: color;
}

[data-aos="bg_chnage15"].aos-animate {
    color: #fff;
}

/* bg-16 */
[data-aos="bg_chnage16"] {
    background: #fff;
    transition-property: background;
}

[data-aos="bg_chnage16"].aos-animate {
    background: transparent;
}

/* new css style */

.main-wrp-1 {
    overflow: hidden;
}

.v-center {
    align-items: center;
}

.aj_anim-profile {
    height: 100%;
}

.aj-intro-text {
    padding-right: 50px;
}
#about_me .aj-intro-text{
    padding-right:45px;
}

.aj-banner-flex-1 {
    width: 40%;
}

.aj-banner_flex {
    width: 60%;
}

.aj-intro-1 .container {
    position: relative;
}

.spring-1 {
    position: absolute;
    width: 170px;
    right: 40px;
    bottom: -214px;
    z-index: 1;
    transform: translatex(0px);
    -webkit-animation: float 10s ease-in-out infinite;
    animation: want_animatation_3 10s ease-in-out infinite;
}

@keyframes want_animatation_3 {
    0% {
        transform: translatex(0px);
    }

    50% {
        transform: translatex(30px);
    }

    100% {
        transform: translatex(0px);
    }
}

.serv-new {
    flex-wrap: wrap;
    row-gap: 50px;
    justify-content: space-between;
    column-gap: 50px;
}

.serve-new-box {
    max-width: 346px;
    transition: all 0.2s linear;
}

.serve-new-box h4 {
    font-size: 28px;
    margin-bottom: 10px;
    width: calc(100% - 70px);
    transition: all 0.2s linear;
    font-family: HelveticaNeueBold;
}

.serve-new-box p {
    font-size: 17px;
}

.serve-new-box img {
    width: 64px;
    z-index: 1;
    position: relative;
    transition: all 0.2s linear;
}

.serve-new-box:hover img {
    margin: -10px 0px 10px 0px;
}

.serv-new-icon::before {
    content: '';
    background: var(--green);
    position: absolute;
    top: -10px;
    width: 58px;
    height: 58px;
    right: 3px;
    border-radius: 50px;
    z-index: 0;
}

.serv-new-icon {
    text-align: end;
    position: relative;
    margin-bottom: -23px;
}

.serv-new {
    padding: 70px 0px;
}

.aj-intro-text.aj-venture p {
    font-family: NeueHaasDisplayLight;
}

.aj-intro-text.aj-venture {
    padding: 0px;
    max-width: 800px;
}

.company-padding {
    padding: 0px 15px 0px 0px !important;
}

.sec-collaborate .aj-intro-text h2 {
    font-size: 70px;
}

.collaburate-list {
    max-width: 93%;
}

.venture-icon1.venture-icon4 {
    bottom: -315px;
    width: 226px;
    top: auto;
    right: 38%;
}

.expert-box-n h4 {
    font-size: 28px;
    margin: 15px 0px 10px 0px;
    font-family: HelveticaNeueBold;
}

.expert-box-n .aj-btns {
    background: #000;
    color: #fff;
    min-width: 140px;
    height: 46px;
    margin-top: 20px;
}

.expert-new-row {
    max-width: 1070px;
    margin: 70px auto 0 auto;
}

.exp-img img {
    height: 96px;
    width: auto;
}

.combine-sec .container {
    position: relative;
}

.spring-2 {
    position: absolute;
    width: 170px;
    right: 0px;
    bottom: -235px;
    z-index: 1;
    transform: translatex(0px);
    -webkit-animation: float 10s ease-in-out infinite;
    animation: spring_anima_3 10s ease-in-out infinite;
}

@keyframes spring_anima_3 {
    0% {
        transform: translatex(0px);
    }

    50% {
        transform: translatex(30px);
    }

    100% {
        transform: translatex(0px);
    }
}

.consulting-sec {
    background: #fff;
}

.big-font h2 {
    font-size: 90px;
}

.big-font h2 span {
    font-size: 100px;
}

.consulting-sec .intro_aj_h {
    position: relative;
}

.line-dot {
    position: absolute;
    top: 50px;
    left: 237px;
}

.consulting-sec.bg-black {
    background: #000;
}

.consulting-sec.bg-green {
    background: var(--green);
}

.serve-btn.serv-white {
    background: #fff;
    min-width: 280px;
    color: #000;
    width: auto;
}

.serve-btn.serv-white:hover {
    background: #000;
    color: #fff;
}

.sec_mentoring .serv-green:hover {
    background: #fff;
    color: #000;
}


.mentoring-1 {
    position: absolute;
    width: 170px;
    left: 0px;
    top: -235px;
    z-index: 1;
    transform: translatex(0px);
    -webkit-animation: float 10s ease-in-out infinite;
    animation: mentoring-1 10s ease-in-out infinite;
}

@keyframes mentoring-1 {
    0% {
        transform: translatex(0px);
    }

    50% {
        transform: translatex(30px);
    }

    100% {
        transform: translatex(0px);
    }
}

.mentoring-2 {
    position: absolute;
    width: 170px;
    right: 0px;
    bottom: -235px;
    z-index: 1;
    transform: translatex(0px);
    -webkit-animation: float 10s ease-in-out infinite;
    animation: mentoring-1 10s ease-in-out infinite;
}

@keyframes mentoring-2 {
    0% {
        transform: translatex(0px);
    }

    50% {
        transform: translatex(30px);
    }

    100% {
        transform: translatex(0px);
    }
}

.consulting-sec .container {
    position: relative;
}

.span-number {
    font-size: 100px;
    line-height: 100px;
    color: #D2D2D2;
    display: inline-block;
    font-family: HelveticaNeueUltraLight;
}


.select_card .owl-dot.active span {
    background: #515151 !important;
}

.select_card .owl-dot span {
    background: #D9D9D9;
    margin: 5px 4px !important;
}

.select_card .owl-theme .owl-dots .owl-dot span {
    transition: all 0.2s linear;
}

.select_card .owl-dots {
    margin-top: 70px !important;
    margin-bottom: -20px !important;
    width: 100%;
    display: block !important;
}

.select_card .owl-carousel .owl-item img {
    width: initial;
}

.sec-podcast .container {
    position: relative;
}

.podcats-img {
    border: 1px solid #EAEAEA;
    border-radius: 10px;
    padding: 100px 30px;
    max-width: 450px;
    top: 0px;
    right: 0px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #000;
    position: absolute;
}

.podcats-img img {
    width: 100%;
}

.client-diamond {
    position: absolute;
    top: 110px;
    transform: translateY(-50%);
    width: 50px;
    right: 260px;
    z-index: 2;
    animation-duration: 20s;
    animation-iteration-count: infinite;
    animation-name: client-diamond;
    animation-timing-function: linear;
}

@keyframes client-diamond {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.ep-top {
    font-family: HelveticaNeueRegular;
    font-size: 40px;
}

.lets-connect-aj .row-mainc,
footer .footer-row {
    max-width: 90%;
    margin: 0 auto;
}

.contact-form-aj .col-form {
    padding: 0px 7px !important;
}

.connect-spring {
    position: absolute;
    width: 170px;
    left: 0px;
    bottom: -55px;
    z-index: 1;
    transform: translatex(0px);
    -webkit-animation: float 10s ease-in-out infinite;
    animation: connect-spring 10s ease-in-out infinite;
}

@keyframes connect-spring {
    0% {
        transform: translatex(0px);
    }

    50% {
        transform: translatex(30px);
    }

    100% {
        transform: translatex(0px);
    }
}

.footer-sign {
    position: absolute;
    top: -140px;
    right: -110px;
    width: 620px;
    z-index: 0;
}

.footer-bread-crumb {
    margin-top: 70px;
    padding: 10px 0px;
    position: relative;
    z-index: 800;
}

.f-bread-text,
.f-bread-text a,
.f-bread-text-1 {
    font-size: 14px;
    font-family: HelveticaNeueRegular;
    color: #fff;
}

.f-bread-text a:hover {
    color: #fff;
    text-decoration: underline;
}

.f-bread-text a {
    margin-left: 7px;
    display: inline-block;
    text-decoration: underline;
}

.footer-bread-crumb {
    justify-content: space-between;
}

.f-bread-text-1 {
    color: #787878;
}
.f-bread-text-1  a{ color: #787878;}
.f-bread-text-1  a:hover{ color: #bdbdbd;}

.ep-icon4 {
    position: absolute;
    top: -95px;
    transform: translateY(-50%);
    width: 126px;
    right: 30px;
    z-index: 1;
    animation-duration: 40s;
    animation-iteration-count: infinite;
    animation-name: ep-podcast-anim5;
    animation-timing-function: linear;
}

@keyframes ep-podcast-anim5 {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.ai-diamond {
    position: absolute;
    top: -235px;
    transform: translateY(-50%);
    width: 182px;
    left: 37%;
    z-index: 1;
    animation-duration: 40s;
    animation-iteration-count: infinite;
    animation-name: ai-diamond;
    animation-timing-function: linear;
}

@keyframes ai-diamond {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.what-belive p {
    font-size: 24px;
}


.connect-r-aj {
    padding-left: 0px;

}

.stiky-scroll {
    position: sticky;
    top: 0px;
    height: 100%;
}

/* text reveal animation */


.text_reveal>p>div {
    background: linear-gradient(to right,
            rgb(0, 0, 0) 50%,
            #c2c2c2 50%);
    background-size: 200% 100%;
    background-position-x: 100%;
    color: transparent;
    background-clip: text;
    -webkit-background-clip: text;
    display: inline !important;
    /* display: inline-block!important; */
}

.p_aj .reveal-sapcer {
    display: block !important;
    margin-bottom: 20px;
}


.highlighted1 {
    padding: 1px 0px;
    color: #000;
    background-color: var(--green);
}

/* text reveal 2 */

.text_reveal_1>p>div {
    background: linear-gradient(to right,
            rgb(255, 255, 255) 50%,
            #2e2e2e 50%);
    background-size: 200% 100%;
    background-position-x: 100%;
    color: transparent;
    background-clip: text;
    -webkit-background-clip: text;
    /* display: inline-block!important; */
}

.highlighted2 {
    padding: 1px 0px;
    color: #fff;
    background-color: var(--green);
}

.aj-intro-text.aj-venture p {
    font-family: HelveticaNeueRegular;
}

/* text revel 2 */
.text_reveal_2>p>div {
    background: linear-gradient(to right,
            rgb(0, 0, 0) 50%,
            #c2c2c2 50%);
    background-size: 200% 100%;
    background-position-x: 100%;
    color: transparent;
    background-clip: text;
    -webkit-background-clip: text;
    /* display: inline-block!important; */
}

/* text revel 3 */
.text_reveal_3>p>div {
    background: linear-gradient(to right,
            #fff 50%,
            #3d3d3d 50%);
    background-size: 200% 100%;
    background-position-x: 100%;
    color: transparent;
    background-clip: text;
    -webkit-background-clip: text;
    /* display: inline-block!important; */
}

/* text revel 4 */
.text_reveal_4>p>div {
    background: linear-gradient(to right,
            rgb(0, 0, 0) 50%,
            #ffffff 50%);
    background-size: 200% 100%;
    background-position-x: 100%;
    color: transparent;
    background-clip: text;
    -webkit-background-clip: text;
    /* display: inline-block!important; */
}

.accordion-top div {
    margin: 0px !important;
    font-size: 24px;
    font-family: NeueHaasDisplayRoman;
}

/* text revel 5 */
.text_reveal_5>p>div {
    background: linear-gradient(to right,
            #fff 50%,
            #3d3d3d 50%);
    background-size: 200% 100%;
    background-position-x: 100%;
    color: transparent;
    background-clip: text;
    -webkit-background-clip: text;
    /* display: inline-block!important; */
}

.sm_logo_aj .img_logo_aj {
    width: 96px !important;
}

.br-none,
.breakdown-p,
.inovation-br,
.inovation-br1 {
    display: none;
}

/* text-slide animation */

.text-slide-rel {
    position: relative;
}

.curten_text {
    background: #fff;
    position: absolute;
    top: 0px;
    right: 0px;
    height: 100%;
    width: 100%;
}

[data-aos="text-slide"] {
    width: 100%;
    transition-property: width;
}

[data-aos="text-slide"].aos-animate {
    width: 0px;
}

/* curten_text1 */
.industry-slide-rel {
    position: relative;
    width: fit-content;
    margin: 0 auto;
}

.curten_text1 {
    background: #fff;
    position: absolute;
    top: -10px;
    right: 0px;
    height: 112%;
    width: 100%;
}

[data-aos="text-slide1"] {
    width: 100%;
    transition-property: width;
}

[data-aos="text-slide1"].aos-animate {
    width: 0px;
}

/* venture slide */

.venture-slide-rel {
    position: relative;
    padding-bottom: 1px;
}

.curten_text2 {
    background: #000;
    position: absolute;
    top: -18px;
    right: 0px;
    height: 118%;
    width: 100%;
}

[data-aos="text-slide2"] {
    width: 100%;
    transition-property: width;
}

[data-aos="text-slide2"].aos-animate {
    width: 0px;
}

body[data-aos-duration='4000'] [data-aos],
[data-aos][data-aos][data-aos-duration='4000'] {
    transition-duration: 4000ms;
}

body[data-aos-duration='4500'] [data-aos],
[data-aos][data-aos][data-aos-duration='4500'] {
    transition-duration: 4500ms;
}

body[data-aos-duration='5000'] [data-aos],
[data-aos][data-aos][data-aos-duration='5000'] {
    transition-duration: 5000ms;
}

/* Collaborate slide */
.curten_text3 {
    background: #fff;
    position: absolute;
    top: -18px;
    right: 0px;
    height: 118%;
    width: 100%;
}

[data-aos="text-slide3"] {
    width: 100%;
    transition-property: width;
}

[data-aos="text-slide3"].aos-animate {
    width: 0px;
}


/* Expertise slide */
.exp-slide-rel {
    position: relative;
    padding-bottom: 15px;
    width: fit-content;
    margin: 0 auto;
}

.curten_text4 {
    background: var(--green);
    position: absolute;
    top: -18px;
    right: 0px;
    height: 122%;
    width: 100%;
}

[data-aos="text-slide4"] {
    width: 100%;
    transition-property: width;
}

[data-aos="text-slide4"].aos-animate {
    width: 0px;
}

/* offer slide */
.offer-slide-re {
    position: relative;
    padding-bottom: 1px;
    width: fit-content;
    margin: 0 auto;
}

.curten_text5 {
    background: #fff;
    position: absolute;
    top: 0px;
    right: 0px;
    height: 101%;
    width: 100%;
}

[data-aos="text-slide5"] {
    width: 100%;
    transition-property: width;
}

[data-aos="text-slide5"].aos-animate {
    width: 0px;
}

.curten_text6 {
    background: #000;
    position: absolute;
    top: 0px;
    right: 0px;
    height: 101%;
    width: 100%;
}

[data-aos="text-slide6"] {
    width: 100%;
    transition-property: width;
}

[data-aos="text-slide6"].aos-animate {
    width: 0px;
}

.curten_text7 {
    background: var(--green);
    position: absolute;
    top: 0px;
    right: 0px;
    height: 101%;
    width: 100%;
}

[data-aos="text-slide7"] {
    width: 100%;
    transition-property: width;
}

[data-aos="text-slide7"].aos-animate {
    width: 0px;
}

/* belive-slide-rel */

.belive-slide-rel {
    position: relative;
    padding-bottom: 15px;
}

.curten_text8 {
    background: #000;
    position: absolute;
    top: -23px;
    right: 0px;
    height: 122%;
    width: 100%;
}

[data-aos="text-slide8"] {
    width: 100%;
    transition-property: width;
}

[data-aos="text-slide8"].aos-animate {
    width: 0px;
}

/* started-slide-rel */

.started-slide-rel {
    position: relative;
    padding-bottom: 1px;
}

.curten_text9 {
    background: #fff;
    position: absolute;
    top: -18px;
    right: 0px;
    height: 122%;
    width: 100%;
}

[data-aos="text-slide9"] {
    width: 100%;
    transition-property: width;
}

[data-aos="text-slide9"].aos-animate {
    width: 0px;
}



.started-slide-rel {
    position: relative;
    padding-bottom: 1px;
}

.curten_text9 {
    background: #fff;
    position: absolute;
    top: -18px;
    right: 0px;
    height: 122%;
    width: 100%;
}

[data-aos="text-slide9"] {
    width: 100%;
    transition-property: width;
}

[data-aos="text-slide9"].aos-animate {
    width: 0px;
}

/* client-top-h */

.client-top-h {
    position: relative;
    padding-bottom: 1px;
    width: fit-content;
    margin: 0 auto;
}

.curten_text10 {
    background: #F4F4F4;
    position: absolute;
    top: -5px;
    right: 0px;
    height: 101%;
    width: 100%;
}

[data-aos="text-slide10"] {
    width: 100%;
    transition-property: width;
}

[data-aos="text-slide10"].aos-animate {
    width: 0px;
}

/* breakdown-curten */

.breakdown-curten {
    position: relative;
    padding-bottom: 1px;
}

.curten_text11 {
    background: #000;
    position: absolute;
    bottom: 0px;
    right: 0px;
    height: 101%;
    width: 100%;
}

[data-aos="text-slide11"] {
    height: 101%;
    transition-property: height;
}

[data-aos="text-slide11"].aos-animate {
    height: 0px;
}

/* ep-curten-rel */

.ep-curten-rel {
    position: relative;
    padding-bottom: 1px;
    width: fit-content;
    margin: 0 auto;
}

.curten_text12 {
    background: var(--green);
    position: absolute;
    top: 0px;
    right: 0px;
    height: 101%;
    width: 100%;
}

[data-aos="text-slide12"] {
    width: 100%;
    transition-property: width;
}

[data-aos="text-slide12"].aos-animate {
    width: 0px;
}

.connect-curten-rel {
    position: relative;
    padding-bottom: 1px;
}

.curten_text13 {
    background: var(--green);
    position: absolute;
    top: -21px;
    right: 0px;
    height: 110%;
}

[data-aos="text-slide13"] {
    width: 100%;
    transition-property: width;
}

[data-aos="text-slide13"].aos-animate {
    width: 0px;
}
.aj-intro-text p.p_aj_txt,
.more-button{
    font-size:22px;
}
#p-venture .highlighted{
    font-size:22px;
    color:rgba(255,255,255,0.30);
}
#p-venture [data-aos="highlight_anim"].aos-init{
    color:rgba(255,255,255,0.30);
}
#p-venture [data-aos="highlight_anim"].aos-animate{
    color:#000;
}
.inovation-br1.br{
    display: block;
}

.aga-title-abt{
    background-size: 0% 85%;
    color:rgba(255,255,255,0.30);
    transition-delay: .5s;
    transition-duration: 1.2s;
    transition-timing-function: ease;;
}
.is-inview{
    background: linear-gradient(to right, #21FC0D, #21FC0D) 0 50% no-repeat;
    color:#000;
    background-position: 0% 82%;
    background-size: 100% 85%;
    
}












/* ============= Responsive ================ */

/* min width media quries */
@media only screen and (min-width: 1440px) {
    .cards_wraper {
        margin-left: 5%;
    }
}

@media only screen and (min-width: 1500px) {
    .cards_wraper {
        margin-left: 6%;
    }

    .aj_landing .container {
        max-width: 1295px;
    }

    .line-dot {
        left: 257px;
    }
}

@media only screen and (min-width: 1600px) {
    .aj_img_sign {
        right: 0%;
    }

    .cards_wraper {
        margin-left: 6%;
    }

    .colab-sign {
        right: -15%;
    }

    .collaburate-list {
        max-width: 1200px;
    }
}

@media only screen and (min-width: 1680px) {
    .aj_banner .container1 {
        height: auto;
        height: calc(100vh - 130px);
    }

    .aj-sign-bg {
        right: -360px;
    }

    .aj_img_sign {
        right: -2%;
    }

    .cards_wraper {
        margin-left: 6.5%;
    }

    .footer-i2.footer-i4 {
        position: absolute;
        top: 10px;
        width: 80px;
        left: -10px;
        animation-duration: 40s;
    }

    .footer-i2.footer-i4 {
        top: 10px;
        width: 80px;
        left: -10px;
    }

    .footer-i2.footer-i3 {
        left: -40px;
    }

    .aj-img img {
        height: 795px;
        bottom: -75px;
    }

    .aj-banner-text {
        padding: 140px 0px 100px 0px;
    }
}

@media only screen and (min-width: 1920px) {
    .cards_wraper {
        margin-left: 10%;
    }

    .mentor-img1 {
        left: 32vw;
    }

    .footer-i2.footer-i4 {
        left: -120px;
    }

    .footer-i2 {
        width: 210px;
    }

    .aj-img img {
        height: 815px;
        bottom: 50px;
    }

    .aj-img {
        height: 97%;
        right: -100px;
    }

    .want-icon-1 {
        right: -90px;
    }
}

@media only screen and (min-width: 2100px) {
    .aj-img img {
        height: 870px;
        bottom:0px;
    }
}
@media only screen and (min-width: 2200px) {
    .aj-img img {
        height: 1025px;
        bottom:0px;
    }

    .cards_wraper {
        margin-left: 13%;
    }

    .combine_bar {
        position: absolute;
        bottom: 21%;
        width: 492px;
        left: 4%;
    }

    .mentor-img1 {
        left: 38vw;
    }

    .aj-sign-bg {
        right: -430px;
    }
}

/* max width media quries */
@media only screen and (max-width: 1450px){
    .client_n{
        font-size:26px;
        line-height:28px;
        min-height:66px;
    }
    .client_desi{
        font-size:17px;
        line-height: 20px;
        min-height:60px;
    }
    .client-say p{
        font-size:18px;
        line-height:20px;
        min-height:90px;
    }
}
@media only screen and (max-width: 1365px) {

    /* header */
    .overlay-menu ul li a {
        font-size: 50px;
        margin-right: 60px;
    }

    /* header */

    .aj_landing .container {
        max-width: 90%;
    }

    /* home */
    .aj-intro-text p {
        font-size: 18px;
        max-width: 740px;
    }

    .aj-intro {
        padding: 70px 0px 110px 0px;
    }

    /* h2 and ambasidor big */
    .aj-top-h h2,
    .aj-intro-text h2,
    .start-top h2 {
        font-size: 60px;
    }

    .aj-top-h span,
    .aj-intro-text.aj-venture .ambasidor,
    .start-top .lets-amb span,
    .sec-podcast h2 span {
        font-size: 80px;
    }

    .spacer-100 {
        padding-top: 50px;
    }

    .aj-intro-text.aj-venture p {
        max-width: 636px;
    }

    .sec-collaborate {
        padding: 130px 0px 150px 0px;
    }

    .collaburate-list li {
        font-size: 28px;
        padding: 20px 0px;
    }

    .colab-sign {
        height: 710px;
        max-width: 100%;
        right: -15%;
    }

    .sec-collaborate {
        padding: 130px 0px 110px 0px;
    }

    .p-150 {
        padding: 130px 0px;
    }

    .combine_bar {
        bottom: 33%;
        width: 352px;
        left: -130px;
    }

    .mentor-img2 {
        top: -260px;
        width: 350px;
    }

    .mentor-img3 {
        width: 77px;
    }

    .sec-offer {
        padding: 150px 0px 100px 0px;
    }

    .mentoring-top {
        padding-top: 120px;
    }

    .ps-sec .conslting-h .venture-h {
        margin-top: -40px;
    }

    .accordion-top,
    .accordion-top div {
        font-size: 22px;
    }

    .start-1box {
        margin-left: 0px;
    }

    .start-3box {
        margin-left: 100px;
        margin-right: auto;
    }

    .start-box-wrp p {
        font-size: 22px;
    }

    .start-main-sec {
        padding: 0px 0px;
    }

    .sec-main6 svg {
        left: 450px;
    }

    .sec-main7 .start_line2 svg {
        top: 20px;
    }

    .start-row2 {
        padding-top: 60px;
    }

    .start-4box {
        margin-top: 330px;
    }

    .what-belive h2 {
        font-size: 58px;
    }

    .podcast-icon-2.podcast-icon-3 {
        width: 68px;
        right: 260px;
    }

    .foote-logo {
        max-width: 225px;
    }

    .connect_line1 {
        padding-top: 403px;
        margin-top: -258px;
    }

    .footer-i2 {
        top: 40px;
        width: 110px;
        left: -20px;
    }

    .footer-i1 {
        width: 180px;
    }

    .what-belive p {
        font-size: 22px;
    }

    /* new css */

    .want_sec h2 {
        font-size: 33px;
    }

    .aj-banner-text {
        padding: 40px 0px;
    }

    .aj-img img {
        height: 640px;
    }

    .want-icon-1 {
        width: 97px;
        top: -97px;
    }

    .want-icon-3 {
        width: 90px;
    }

    .into_sign {
        width: 180px;
        margin-bottom: -35px;
        margin-left: 0px;
    }

    .spring-1 {
        bottom: -154px;
    }

    .serve-new-box {
        max-width: 316px;
    }

    .serve-new-box h4 {
        font-size: 22px;
    }

    .line-dot {
        top: 35px;
        left: 197px;
        width: 160px;
    }

    .consulting-r .venture-h {
        margin-top: -30px;
    }

    .podcats-img {
        padding: 60px 30px;
        max-width: 330px;
    }

    /* animation text reveal */

    .text_reveal .p_aj div {
        width: max-content;
        display: inline !important;

    }

    .br-none {
        display: block;
    }

    .text_reveal_5>p>div {
        width: max-content;
    }
    .inovation-br1.br{
        display: none;
    }

}

@media only screen and (max-width: 1199px) {

    /* header */
    .overlay-menu ul li a {
        font-size: 42px;
        margin-right: 50px;
    }

    .aj_landing .custom_over .container {
        padding: 160px 15px 50px 15px;
    }

    .header_aj {
        padding: 7px 0px;
    }

    body.scroll-down .header_aj {
        top: -109px;
    }

    /* banner */
    .aj-banner-text {
        max-width: 540px;
    }

    .aj-sign-bg {
        height: 107%;
        right: -28%;
    }

    .want_sec h2 {
        font-size: 40px;
    }

    .want_sec h2 span {
        font-size: 70px;
    }

    .want-icon-1 {
        width: 77px;
        bottom: 20px;
    }

    .want-icon-3 {
        width: 110px;
        top: -30px;
    }

    .aj-intro-text p {
        max-width: 620px;
    }

    .cone-2 {
        right: 150px;
    }

    .unbox-r-logo {
        width: 30%;
    }

    .journey-icon2 {
        top: 265px;
    }

    .p-200 {
        padding: 160px 0px;
    }

    .industry_i-1 {
        width: 120px;
    }

    .industry_i-4 {
        bottom: -80px;
    }

    .industry_i-5 {
        left: 30px;
    }

    .spacer-100 {
        padding-top: 0px;
    }

    .venture-icon1 {
        width: 186px;
    }

    .venture-icon2 {
        width: 60px;
        right: 110px;
    }

    .sec-main1.visible1 svg {
        right: -10px;
        width: 170px;
    }

    .venture-icon3 {
        width: 40px;
        right: 280px;
        top: 64%;
    }

    .logo-comp img {
        max-width: 100%;
    }

    .logo-comp {
        height: 107px;
        padding: 30px 0px;
    }

    .sec-collaborate {
        padding: 100px 0px 100px 0px;
    }

    .p-150 {
        padding: 100px 0px;
    }

    .expertise_i-1 {
        top: -20px;
        width: 95px;
        -webkit-animation: float 14s ease-in-out infinite;
        animation: expertise_anima-1 14s ease-in-out infinite;
    }

    .expertise_i-2 {
        top: 85px;
    }

    .sec-offer {
        padding: 120px 0px 100px 0px;
    }

    .mentor-img4 {
        bottom: -60px;
        width: 300px;
    }

    .speaking-i1 {
        top: -230px;
        width: 240px;
    }

    .speaking-i2 {
        top: -20px;
        width: 70px;
        right: 20px;
    }

    .belive-innerline {
        font-size: 26px;
    }

    .p-170 {
        padding: 100px 0px;
    }

    .start-top .lets-amb span {
        margin: 84px 0px 0px -44px;
    }

    .start-box-wrp {
        max-width: 330px;
    }

    .sec-main6 svg {
        left: 340px;
        top: 310px;
    }

    .sec-main7 .start_line2 svg {
        width: 140px;
        top: 50px;
        right: 290px;
    }

    .start-4box {
        margin-top: 280px;
    }

    .sec-main8 svg {
        bottom: 13px;
        left: 328px;
    }

    .start-ring4 {
        bottom: -160px;
        width: 320px;
    }

    .client-i1 {
        top: -150px;
    }

    .sec-main5 svg {
        margin: -23px 0px 0px 20px;
    }

    .client-i2 {
        top: 90px;
    }

    .what-belive {
        max-width: 620px;
    }

    .podcast-icon-1 {
        width: 256px;
    }

    .podcast-icon-2 {
        width: 132px;
        right: -100px;
    }

    .podcast-icon-2.podcast-icon-3 {
        width: 60px;
        right: 160px;
    }

    .episode-circle {
        top: 60px;
        width: 70px;
        right: -30px;
    }

    .aj-podcast-box .aj-btn-3 {
        font-size: 20px;
    }

    .connect_line1 {
        left: 217px;
    }

    .footer-i1 {
        width: 180px;
        bottom: -120px;
        left: 220px;
    }

    .footer-i2.footer-i4 {
        top: -10px;
        width: 80px;
        left: 48px;
    }

    /* new css */

    .want-icon-3 {
        display: none;
    }

    .want-icon-1 {
        z-index: 2;
    }

    .want-icon-2 {
        right: 30px;
    }

    .want_sec h2 {
        font-size: 26px;
    }

    .aj-banner-text h1 {
        font-size: 50px;
    }

    .aj-banner-text .ambasidor {
        font-size: 78px;
    }

    .aj-sign-bg img {
        height: 90%;
    }

    .aj-top-h h2,
    .aj-intro-text h2,
    .start-top h2,
    .what-belive h2 {
        font-size: 50px;
    }

    .start-top h2 span,
    .what-belive h2 span,
    .aj-top-h span,
    .aj-intro-text.aj-venture .ambasidor,
    .conslting-h .venture-h .ambasidor,
    .start-top .lets-amb span,
    .sec-podcast h2 span {
        font-size: 80px;
    }

    .serve-new-box {
        max-width: 255px;
    }

    .serve-new-box h4 {
        font-size: 20px;
    }

    .serve-new-box p {
        font-size: 16px;
    }

    .venture-icon3 {
        right: 160px;
        top: 51%;
    }

    .venture-icon1.venture-icon4 {
        bottom: -271px;
    }

    .sec-collaborate .aj-intro-text h2 {
        font-size: 60px;
    }

    .aj-top-h span,
    .aj-intro-text.aj-venture .ambasidor,
    .conslting-h .venture-h .ambasidor,
    .start-top .lets-amb span,
    .sec-podcast h2 span {
        font-size: 70px;
    }

    .aj_landing p {
        font-size: 16px;
    }
    .client-say p{
        font-size:19px;
    }
    .aj-intro-text p.p_aj_txt,
    .more-button{
        font-size:18px;
    }
    #p-venture .highlighted{
        font-size:18px;
    }

    .spring-2 {
        bottom: -185px;
    }

    .line-dot {
        top: 35px;
        left: 167px;
        width: 140px;
    }

    .big-font h2 span {
        font-size: 80px;
    }

    .accordion-top,
    .accordion-top div {
        font-size: 20px;
    }

    .mentoring-1 {
        top: -185px;
    }

    .mentoring-2 {
        bottom: -185px;
    }

    .big-font h2 span {
        font-size: 70px;
    }

    .serve-btn {
        height: 55px;
        font-size: 18px;
    }

    .span-number {
        font-size: 80px;
        line-height: 80px;
    }

    .start-ring5 {
        width: 140px;
    }

    .start-ring3.start-ring3d {
        bottom: -180px;
        max-width: 120px;
    }

    .ai-diamond {
        top: -155px;
        width: 132px;
        left: 37%;
    }

    .podcats-img {
        padding: 50px 30px;
        max-width: 240px;
    }

    .podcast-short-det {
        font-size: 16px;
    }

    .episode-sec {
        padding: 50px 0px 160px 0px;
    }

    .lets-connect-aj .row-mainc,
    footer .footer-row {
        max-width: 100%;
    }

    .what-belive p {
        font-size: 20px;
    }
    .slider_gs h2{
        font-size: 48px;
    }

}

@media only screen and (max-width: 991px) {

    /* header start */

    .hamburger_menu {
        width: 38px;
    }

    a.btn-aj-h {
        font-size: 14px;
        height: 42px;
        padding: 4px 21px;
    }

    /* header end */

    .aj_landing .container {
        max-width: 93%;
    }

    .aj-banner-text {
        max-width: 470px;
    }

    .aj-img {
        right: 0%;
        height: 87%;
    }

    .aj-sign-bg {
        height: 100%;
        right: -58%;
        bottom: -4%;
    }

    .want-icon-2 {
        right: 6%;
        bottom: 47px;
    }

    .aj-top-h h2,
    .aj-intro-text h2,
    .start-top h2,
    .client-top-h h2 {
        font-size: 55px;
    }

    .into_sign {
        width: 130px;
    }

    .cone-1 {
        top: -20px;
        right: 0px;
    }

    .cone-1,
    .cone-2 {
        width: 60px;
    }

    .cone-2 {
        top: 50px;
    }

    .aj_animated_img {
        margin: 0px auto;
    }

    .serve-btn {
        font-size: 22px;
    }

    .industry_i-4 {
        bottom: -80px;
        width: 100px;
        left: 100px;
    }

    .venture-icon1 {
        top: -25px;
    }

    .venture-icon2 {
        width: 50px;
        right: 150px;
        top: 30px;
    }

    .sec-main1.visible1 svg {
        right: 0px;
        width: 140px;
        margin-right: 40px;
        bottom: 100px;
        top: auto;
    }

    .industry_i-1 {
        width: 90px;
    }

    .industry_i-3 {
        width: 80px;
        right: 0px;
    }

    .expertise_i-3 {
        top: 250px;
        width: 100px;
        left: -20px;
    }

    .what-belive p,
    .accordion-top,
    .accordion-top div,
    .consulting-r .accordion-top{
        font-size: 20px;
    }

    .accordion-aj button {
        padding: 20px 0px;
        font-size: 28px;
    }

    .aj-btns {
        padding: 4px 19px;
    }

    .accordion-aj {
        margin-bottom: 20px;
    }

    .mentor-img2 {
        top: -230px;
        width: 280px;
    }

    .mentor-img1 {
        top: -70px;
        width: 150px;
    }

    .mentoring-top {
        padding-top: 70px;
    }

    .sec-main4 svg {
        margin-left: 20px;
    }

    .believe-mainline {
        padding: 12px 20px;
    }

    .belive-img {
        right: 0px;
        width: 160px;
    }

    .start_line1,
    .start_line2,
    .start_line3 {
        display: none;
    }

    .start-2box {
        margin-top: 196px;
    }

    .start-ring3 {
        top: 33%;
        left: -20px;
        max-width: 130px;
    }

    .start-ring5 {
        top: 40%;
    }

    .start-3box {
        margin-left: 0px;
    }

    .start-box-wrp {
        max-width: 360px;
    }

    .start-4box {
        margin-top: 200px;
    }

    .start-5box {
        margin-top: 70px;
    }

    .podcast-icon-1 {
        width: 96px;
        top: -30px;
        right: 50px;
    }

    .podcast-icon-2.podcast-icon-3 {
        width: 60px;
        right: 30px;
        top: 170px;
    }

    .unbox-r-logo {
        width: 41%;
    }

    .connect-r-aj {
        padding-left: 0px;
         
    }

    .foote-logo {
        max-width: 165px;
    }

    .connect_line1 {
        left: 58px;
        margin-top: -220px;
    }

    .footer-row {
        flex-wrap: wrap;
        column-gap: 10px;
        margin-left: 0px;
    }

    .footer-row.justify-content-end {
        justify-content: space-between !important;
    }

    footer.p-70 {
        padding: 100px 0px 100px 0px;
    }

    .footer-i1 {
        width: 130px;
        bottom: -120px;
        left: 340px;
    }

    .footer-i2.footer-i3 {
        bottom: -50px;
        width: 50px;
        left: 190px;
    }

    .footer-i2.footer-i4 {
        top: auto;
        width: 80px;
        left: auto;
        right: 0px;
        bottom: -20px;
    }

    .footer-i2 {
        top: -60px;
        width: 60px;
        left: 0px;
    }

    .journey-icon2.journey-icon7 {
        right: 130vw;
    }

    /* new css */

    .unboxr-inner {
        width: 100%;
    }

    .aj-banner-text h1 {
        font-size: 45px;
    }

    .aj-sign-bg {
        right: -28%;
    }

    .want_sec {
        position: relative;
    }

    .aj-img img {
        height: 500px;
    }

    .want-icon-2 {
        right: 6%;
        bottom: 67px;
    }

    .aj_animated_img {
        margin: 50px auto 0px auto;
    }

    .industry_i-1 {
        top: -175px;
    }

    .serve-new-box {
        max-width: 46%;
    }

    .p-130 {
        padding: 80px 0px;
    }

    .venture-icon1 {
        top: -75px;
        left: 60px;
    }

    .p-200 {
        padding: 130px 0px;
    }

    .sec-main1.visible1 svg {
        margin-right: 0px;
        bottom: auto;
        top: 80px;
    }

    .venture-icon3 {
        right: 0px;
        top: 51%;
    }

    .logo-comp img {
        max-width: 70%;
    }

    .venture-icon1.venture-icon4 {
        bottom: -211px;
        width: 146px;
    }

    .sec-collaborate .aj-intro-text h2 {
        font-size: 50px;
    }

    .client-top-h span,
    .what-belive h2 span,
    .aj-top-h span,
    .aj-intro-text.aj-venture .ambasidor,
    .conslting-h .venture-h .ambasidor,
    .start-top .lets-amb span,
    .sec-podcast h2 span {
        font-size: 70px;
    }

    .collaburate-list {
        max-width: 100%;
    }

    .collaburate-list li {
        font-size: 24px;
    }

    .colab-sign {
        height: auto;
        max-width: 100%;
    }

    .expert-box-n h4 {
        font-size: 20px;
    }

    .line-dot {
        left: 160px;
        width: 100px;
    }

    .big-font h2 span {
        font-size: 60px;
    }

    .start-ring3.start-ring3b {
        top: 110px;
        max-width: 90px;
        right: 40px;
    }

    .podcats-img {
        max-width: 380px;
        position: relative;
        margin-top: 40px;
    }

    .ep-icon4 {
        top: -95px;
        width: 86px;
        right: 30px;
    }

    .footer-col-aj {
        width: 31%;
    }

    .start-ring3.start-ring3d {
        bottom: -150px;
        max-width: 100px;
        right: 30px;
    }

    .mentoring-2 {
        width: 170px;
        right: 40px;
    }

    .spring-2 {
        right: 20px;
    }

    .img_logo_aj {
        width: 96px;
    }

    body.scroll-down .header_aj {
        top: -110px;
    }

    .text_reveal .p_aj div {
        width: auto;
    }

    .text_reveal_5>p>div {
        width: auto;
    }

}

@media only screen and (max-width: 767px) {

    /* header */
    .nav_row_bottom .nav_col_1 {
        display: none;
    }

    .overlay-menu ul li a {
        font-size: 25px;
        margin: 0px 0px 12px 0px;
        line-height: 30px;
    }

    .overlay-menu ul {
        flex-direction: column;
    }

    .custom_over .overlay-menu {
        margin: 30px 0px;
        display: flex;
    }

    .nav_row_bottom .footer_box h2 {
        font-size: 20px;
    }

    /* header */

    .aj_landing .container {
        max-width: 95%;
    }

    /* banner */
    .aj_img_sign {
        position: relative;
        height: auto;
        width: 100%;
        right: auto;
        bottom: auto;
    }

    .aj_landing .custom_over .container {
        padding: 110px 15px 50px 15px;
    }

    .aj-banner-text h1 {
        color: #fff;
        font-size: 45px;
    }

    .aj-banner-text h1 {
        font-size: 45px;
    }

    .aj_banner .container1 {
        height: auto;
        padding: 20px 15px 0px 15px;
        flex-direction: column;
    }

    .aj-sign-bg img {
        height: auto;
        width: 100%;
    }

    .aj-banner-text {
        max-width: 100%;
    }

    .aj-img {
        right: 7%;
        height: 87%;
        text-align: end;
    }

    .aj-banner-text .ambasidor {
        font-size: 60px;
    }

    .want-icon-3 {
        width: 90px;
        top: -30px;
        z-index: 0;
    }

    .want_sec h2 {
        font-size: 40px;
        position: relative;
        z-index: 1;
    }

    .want_sec h2 span {
        font-size: 60px;
    }

    .cone-2 {
        right: 100px;
    }

    .aj-intro-text p {
        margin: 15px 0px 50px 0px;
    }

    .aj_animated_img {
        margin: 50px auto 0px auto;
    }

    .aj-intro {
        padding: 70px 0px 70px 0px;
    }

    .story-desk {
        display: none;
    }

    .story-mobile {
        display: block;
        overflow: hidden;
        padding: 70px 0px 170px 0px;
        text-align: center;
    }

    .cards_wraper {
        margin-left: 0%;
        display: flex;
    }

    .journey-icon1 {
        top: auto;
        width: 190px;
        left: -55px;
        bottom: -40px;
    }

    .story-mobile h2 {
        font-size: 38px;
        margin-bottom: 0px;
    }

    .industies-serv {
        overflow: hidden;
    }

    .industry_i-3 {
        top: 70px;
        width: 100px;
        right: 30px;
    }

    .venture-icon1 {
        width: 136px;
        right: -10px;
    }

    .aj-intro-text.aj-venture p {
        margin: 30px 0px 50px 0px;
    }

    .venture-icon3 {
        display: none;
    }

    .logo-comp {
        max-width: 330px;
    }

    .conpanies-logo .row {
        row-gap: 30px;
    }

    .sec-main1.visible1 svg {
        bottom: 340px;
    }

    .sec-collaborate {
        padding: 70px 0px;
    }

    .expertise_i-1 {
        top: -60px;
        width: 75px;
    }

    .expertise_i-2 {
        top: 55px;
    }

    .aj_expertise .btn-serve {
        padding-top: 60px;
    }

    .combine_bar {
        display: none;
    }

    .collaburate-list li {
        font-size: 24px;
    }

    .consulting-r.ps-5 {
        padding-left: 0px !important;
    }

    .consulting_line {
        display: none;
    }

    .consulting-sec .row.mb-50 {
        margin-bottom: 0px !important;
    }

    .consulting-sec .collab-btn {
        margin-top: 20px;
    }

    .mentor-img3 {
        width: 67px;
        right: 15%;
    }

    .sec-offer .col-md-8.ps-5 {
        padding-left: 15px !important;
    }

    .speaking-i1 {
        top: -180px;
        width: 170px;
    }

    .mentor-img4 {
        bottom: -50px;
        width: 170px;
    }

    .mentor-img4 {
        bottom: -60px;
        width: 130px;
    }

    .aj-top-h h2,
    .aj-intro-text h2,
    .start-top h2,
    .client-top-h h2 {
        margin-bottom: 0px;
        font-size: 50px;
    }

    .client-top-h span,
    .what-belive h2 span,
    .aj-top-h span,
    .aj-intro-text.aj-venture .ambasidor,
    .conslting-h .venture-h .ambasidor,
    .start-top .lets-amb span,
    .sec-podcast h2 span {
        font-size: 62px;
    }

    .accordion-top {
        margin-top: 30px;
    }

    .mentoring-top.accordion-top {
        padding-top: 60px;
        margin: 0px 0px;
    }

    .sec-offer.ps-sec .row .mentoring-top.accordion-top {
        padding-top: 0px;
        margin: 30px 0px 50px 0px;
    }

    .speaking_line {
        display: none;
    }

    .sec-offer.ps-sec .row {
        flex-direction: column-reverse;
    }

    .sec-offer {
        padding: 120px 0px 70px 0px;
    }

    .belives-wrper {
        margin-top: 50px;
    }

    .belive-innerline {
        font-size: 24px;
    }

    .belive-img {
        display: none;
    }

    .p-150 {
        padding: 70px 0px;
    }

    .p-170 {
        padding: 70px 0px;
    }

    .start-ring1 {
        right: -180px;
        max-width: 320px;
    }

    .start-ring2 {
        left: -180px;
        max-width: 320px;
    }

    .start-row1 {
        padding-top: 50px;
    }

    .start-4box {
        margin-top: 220px;
    }

    .sec-main8 {
        margin-top: 90px;
        padding-top: 0px;
        position: relative;
    }

    .start-ring4 {
        bottom: -140px;
        width: 180px;
    }

    .client-i1 {
        top: -110px;
        left: 80px;
        width: 90px;
    }

    .client-box,
    .aj-podcast-box {
        max-width: 400px;
        margin: 0 auto;
    }

    .podcast-icon-2 {
        width: 102px;
        right: -50px;
    }

    .what-belive h2 {
        font-size: 50px;
    }

    .client-top-h span,
    .what-belive h2 span,
    .aj-top-h span,
    .aj-intro-text.aj-venture .ambasidor,
    .conslting-h .venture-h .ambasidor,
    .start-top .lets-amb span,
    .sec-podcast h2 span {
        font-size: 60px;
    }

    .p-100 {
        padding: 70px 0px;
    }

    .unbox-sec-main .d-flex-main {
        flex-direction: column;
    }

    .unbox-l {
        width: 100%;
    }

    .unbox-r {
        width: 100%;
    }

    .lets-connect-aj .container {
        padding: 70px 15px;
    }

    .connect_line1 {
        display: none;
    }

    .connect-r-aj {
        padding: 40px 0px 0px 0px;
    }

    .footer-row.justify-content-end {
        justify-content: space-between !important;
        flex-direction: column;
        row-gap: 30px;
    }

    .footer-col-aj {
        width: 100%;
    }

    .footer-i2 {
        left: auto;
        top: 0px;
        right: 50px;
    }

    .footer-i2.footer-i4 {
        width: 110px;
        bottom: 50%;
    }

    .footer-i2.footer-i3 {
        bottom: 150px;
        width: 50px;
        left: auto;
    }

    footer.p-70 {
        padding: 60px 0px 60px 0px;
    }

    .footer-i1 {
        bottom: -30px;
    }

    .unboxr-inner {
        margin: 0px auto;
    }

    /* new css */

    .aj-banner-flex-1,
    .aj-banner_flex {
        width: 100%;
    }

    .aj-banner_flexr {
        flex-direction: column;
    }

    .aj-sign-bg {
        height: auto;
        right: auto;
        bottom: 0px;
        position: absolute;
        top: auto;
    }

    .want_sec h2 {
        font-size: 30px;
        padding-right: 70px;
    }

    .aj-intro-text {
        padding-right: 0px;
    }
    #about_me .aj-intro-text{
        padding-right:0px;
    }
    .journey-icon1 {
        top: auto;
        width: 130px;
        left: 25px;
        bottom: 10px;
    }

    .serve-new-box,
    .expert-box-n {
        max-width: 300px;
        margin: 0 auto;
    }

    .p-130 {
        padding: 60px 0px;
    }

    .serv-new {
        padding: 50px 0px;
    }

    .colab-sign {
        top: 100px;
    }

    .expert-new-row .row {
        row-gap: 60px;
    }

    .line-dot {
        display: none;
    }

    .client-box,
    .aj-podcast-box {
        max-width: 350px;
    }

    .client-diamond {
        top: 80px;
        width: 50px;
        right: 160px;
    }

    .start-ring3.start-ring3d {
        bottom: -120px;
    }

    .unboxr-inner {
        margin: 0px auto;
        flex-direction: column;
    }

    .podcats-img {
        max-width: 100%;
        margin: 40px auto;
    }

    .unbox-r-logo {
        width: 250px !important;
        margin: 0 auto;
    }

    .connect-spring {
        width: 120px;
    }

    .footer-sign {
        top: 0px;
    }

    .footer-col-aj {
        margin-bottom: 20px;
    }

    .footer-bread-crumb {
        margin-top: 40px;
    }

    .connect-r-aj h2 span {
        line-height: 30px;
    }

    .episode-sec {
        padding: 50px 0px 120px 0px;
    }

    .ep-icon3 {
        bottom: -155px;
        width: 96px;
        left: 50px;
    }

    .mentoring-1 {
        top: -135px;
        width: 130px;
    }

    .consulting-r .venture-h {
        margin-top: -50px;
    }

    .want-icon-1 {
        right: 20px;
    }

    .stiky-scroll {
        position: relative;
        top: auto;
        height: auto;
    }
}

@media only screen and (max-width: 575px) {

    /* header start */
    .header_aj a.btn-aj-h {
        display: none;
    }

    .custom_over .container {
        padding: 60px 15px 50px 15px;
    }

    .nav_col_2 {
        margin-bottom: 10px;
    }

    .custom_over .overlay-menu {
        margin: 30px 0px 20px 0px;
        display: flex;
    }

    .overlay-menu ul li a {
        font-size: 25px;
        margin: 0px 0px 18px 0px;
        line-height: 28px;
    }

    .nav_row_bottom .contact_icon img {
        width: 16px;
        margin-right: 10px;
    }

    /* header ends */

    .aj_landing .container {
        max-width: 95%;
    }

    .cone-1,
    .cone-2 {
        width: 50px;
    }

    .cone-2 {
        right: 49px;
    }

    .story-mobile h2 {
        font-size: 32px;
    }

    .industry_i-3,
    .venture-icon2 {
        display: none;
    }

    .p-200 {
        padding: 140px 0px 140px 0px;
    }

    .aj-top-h h2,
    .aj-intro-text h2,
    .start-top h2,
    .client-top-h h2,
    .what-belive h2 {
        font-size: 42px;
    }

    .client-top-h span,
    .what-belive h2 span,
    .aj-top-h span,
    .aj-intro-text.aj-venture .ambasidor,
    .conslting-h .venture-h .ambasidor,
    .start-top .lets-amb span,
    .sec-podcast h2 span {
        font-size: 50px;
    }

    .collaburate-list.mt-50 {
        margin-top: 20px !important;
    }

    .expertise_i-3 {
        top: 320px;
        width: 70px;
        left: 0px;
    }

    .mentor-img2 {
        top: -170px;
        width: 210px;
    }

    .mentor-img1 {
        top: -50px;
        width: 100px;
    }

    .speaking-i1 {
        right: 20px;
    }

    .believe-img2,
    .start-ring3b,
    .start-ring3-main,
    .start-ring5,
    .start-ring3c,
    .start-ring3d,
    .client-i2 {
        display: none;
    }

    .believe-img1 {
        top: -50px;
        width: 60px;
        right: 0px;
    }

    .belive-innerline {
        line-height: normal;
    }

    .start-ring3.start-ring3a {
        top: -50px;
        left: auto;
        max-width: 100px;
        right: 30px;
    }

    .start-top .lets-amb span {
        margin: 64px 0px 0px -94px;
    }

    .start-main-sec .d-flex {
        flex-direction: column;
        row-gap: 50px;
    }

    .start-2box,
    .start-4box {
        margin-top: 0px;
    }

    .start-row2 {
        padding-top: 50px;
    }

    .start-5box {
        margin-top: 0px;
    }

    .sec-main8 {
        margin-top: 50px;
    }

    .start-ring4 {
        bottom: -110px;
        width: 150px;
    }

    .client-row.mt-100 {
        margin-top: 50px;
    }

    .podcast-icon-2,
    .ep-icon3 {
        display: none;
    }

    .unbox-r-logo {
        width: 100%;
        height: auto;
        max-width: 240px;
    }

    .unbox-r {
        margin-top: 20px;
    }

    .unbox-r-logo {
        padding: 10px 25px;
    }

    .aj_landing .overlay-menu ul li a {
        font-size: 22px;
        margin: 0px 0px 5px 0px;
    }

    .podcast-icon-1 {
        width: 76px;
        top: -60px;
        right: 20px;
    }

    .sec-podcast .what-belive p {
        margin-top: 30px !important;
    }

    .footer-i1 {
        left: auto;
        right: -40px;
    }

    /* new css */

    .footer-bread-crumb {
        margin-top: 0px;
        flex-direction: column;
        row-gap: 10px;
        text-align: center;
    }

    .lets-connect-aj .row-mainc .col-md-8,
    .lets-connect-aj .row-mainc .col-md-4 {
        padding: 0px;
    }

    .episode-sec {
        padding: 50px 0px 70px 0px;
    }

    .ep-top {
        font-size: 30px;
        line-height: normal;
    }

    .podcast-list {
        margin-top: 60px;
    }

    .ai-diamond {
        top: -135px;
        width: 112px;
        left: 20px;
    }

    .start-row1 {
        padding-top: 10px;
    }

    .start-top h2 span,
    .what-belive h2 span,
    .aj-top-h span,
    .aj-intro-text.aj-venture .ambasidor,
    .conslting-h .venture-h .ambasidor,
    .start-top .lets-amb span,
    .sec-podcast h2 span {
        font-size: 50px;
    }

    .aj-banner-text h1 {
        font-size: 40px;
    }

    .spring-2 {
        right: 40px;
        width: 130px;
        bottom: -155px;
    }

    .spring-1 {
        bottom: -114px;
        width: 140px;
    }

    .believe-img1 {
        top: -90px;
        width: 60px;
        right: 40px;
    }

    .sec-main1.visible1 svg {
        margin-right: 20px;
        top: 40px;
    }

    .big-font h2 span {
        font-size: 50px;
    }

    .aj-sign-bg {
        bottom: 35%;
    }

    .aj_anim-profile {
        width: 82%;
        margin: 0 auto;
    }

    .podcast-list {
        margin-top: 50px;
    }

    .breakdown-p,
    .inovation-br {
        display: block;
    }
    .hover-box-content{
        display: none;
    }
    .aj-img img{
        margin-left:0px;
    }

}

@media only screen and (max-width: 424px) {

    /* header start */
    .nav_row_bottom .footer_box h2 {
        font-size: 16px;
    }

    .footer_box ul li a,
    .footer_box ul li {
        font-size: 14px;
        font-weight: 500;
        color: #9e9e9e;
        transition: all 0.2s linear;
    }

    /* header end */
    .aj-banner-text h1 {
        font-size: 35px;
    }

    .aj-banner-text .ambasidor {
        font-size: 50px;
    }

    .want_sec h2 {
        font-size: 24px;
    }

    .want_sec h2 span {
        font-size: 42px;
    }

    .cone-1 {
        top: -50px;
    }

    .story-mobile {
        padding: 50px 0px 160px 0px;
    }

    .story-mobile h2 {
        font-size: 20px;
        font-family: HelveticaNeueRegular;
    }

    .journey-icon2 {
        top: 2px;
    }

    .industry_i-5 {
        left: 10px;
    }

    .believe-mainline {
        padding: 12px 15px;
    }

    .aj-top-h h2,
    .aj-intro-text h2,
    .start-top h2,
    .client-top-h h2,
    .what-belive h2 {
        font-size: 34px;
    }

    .client-top-h span,
    .what-belive h2 span,
    .aj-top-h span,
    .aj-intro-text.aj-venture .ambasidor,
    .conslting-h .venture-h .ambasidor,
    .start-top .lets-amb span,
    .sec-podcast h2 span {
        font-size: 45px;
    }

    .connect-r-aj h2 {
        font-size: 38px;
    }

    .aj_animated_img,
    .aj_animated_img .profile-round {
        width: 100%;
    }

    .sec-collaborate .aj-intro-text h2 {
        font-size: 40px;
    }

    .inovation-br1 {
        display: block;
    }
    [data-aos="highlight_anim"].aos-animate {
        background-size: 100% 100%;
    }
}


@media only screen and (max-width: 374px) {

    .aj-banner-text .strokeme,
    .aj-banner-text h1 {
        font-size: 35px;
    }

    .aj-banner-text .ambasidor {
        font-size: 45px;
    }

    .cone-2 {
        right: 9px;
    }

    .industies-serv {
        margin-bottom: -1px;
    }

    .footer-sign {
        width: 470px;
    }
}

/* --------------shyneee---- */




.figure:before {
    position: absolute;
    top: 0;
    left: -90%;
    z-index: 2;
    display: block;
    content: "";
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, hsla(0, 0%, 100%, 0) 0, hsla(0, 0%, 100%, .3));
    transform: skewX(-25deg);
    animation: shine .75s  ;
    animation-delay:1.2s;
    animation-duration: 3s;
}

.figure{ overflow: hidden;}

/* .figure:hover:before {
    animation: shine .75s;
} */

@-webkit-keyframes shine {
    100% {
      left: 125%;
    }
  }
  @keyframes shine {
    100% {
      left: 125%;
    }
  }

  .aj-sign{position: relative;}
  .aj-mask{ position: relative;  display: block;    z-index: 10 !important; position: absolute;   left: 0;  right: 0;  top: 0; width: 100%;}
  .overflow_hide{ width: 100%; overflow: hidden;}


  .fade-in {
    animation: fadeIn ease 5s;
    -webkit-animation: fadeIn ease 5s;
    -moz-animation: fadeIn ease 5s;
    -o-animation: fadeIn ease 5s;
    -ms-animation: fadeIn ease 5s;
  }



.ml{margin-left: 5px;}
.mr{margin-right: 5px;}


  @keyframes fadeIn{
    0% {
      opacity:0;
    }
    100% {
      opacity:1;
    }
  }
  
  @-moz-keyframes fadeIn {
    0% {
      opacity:0;
    }
    100% {
      opacity:1;
    }
  }
  
  @-webkit-keyframes fadeIn {
    0% {
      opacity:0;
    }
    100% {
      opacity:1;
    }
  }
  
  @-o-keyframes fadeIn {
    0% {
      opacity:0;
    }
    100% {
      opacity:1;
    }
  }
  
  @-ms-keyframes fadeIn {
    0% {
      opacity:0;
    }
    100% {
      opacity:1;
    }
  }
  .contact-form-aj .row{
    row-gap:5px;
  }
  .contact-form-aj .col-form{
    position: relative;
  }
  /*.error { 
    color: red; 
    position: absolute;
    bottom:3px;
    font-size:15px;
    line-height:14px;
}*/
.error {
    color: red;
    position: absolute;
    bottom: 36px;
    font-size: 12px;
    line-height: 14px;
    background: #fff;
    padding: 5px 10px;
    border-radius: 10px;
    z-index:1;
    right: 16px;
}
p.success {  
    margin-top:15px !important;
    font-size: 16px !important;
    line-height:14px;
    position: relative;
    color: #46b450 !important;
    background: #fff;
    border: 1px solid #6f9b41 !important;
    padding: 5px 10px;
    text-align: center;
    border-radius:10px;
}
.connect-r-aj p.error{
    position: relative;
    font-size: 16px !important;
    margin-top:15px;
    border: 1px solid #D8000C !important;
    color: #D8000C;
    background: #FFBABA;
    padding: 5px 10px;
    text-align: center;
    right: unset;
    bottom:unset;
}

/*-----marquee-------*/
.marquee {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
}
.marquee > span{
    display:inline-flex;
    justify-content: flex-start;
    gap:50px;
    will-change: transform;
    transform: translateX(0);
    white-space: nowrap;
    animation: marquee 25s linear infinite;
    animation-delay: 3.5s;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
#p-venture,
.text_reveal_5 p
{
    display: inline-block;
}

/*-------changes----------*/
.p_aj_txt .reveal-sapcer{
    display: block;
    margin-bottom: 20px;
}
.slidingVertical{
    display: inline;
    text-indent: 8px;
    position: relative;
}
.slidingVertical span{
    animation: topToBottom 12.5s linear infinite 0s;
    -ms-animation: topToBottom 12.5s linear infinite 0s;
    -webkit-animation: topToBottom 12.5s linear infinite 0s;
    opacity: 0;
    position: absolute;
    top:12px;
}
.slidingVertical span:nth-child(2){
    animation-delay: 2.5s;
    -ms-animation-delay: 2.5s;
    -webkit-animation-delay: 2.5s;
}
.slidingVertical span:nth-child(3){
    animation-delay: 5s;
    -ms-animation-delay: 5s;
    -webkit-animation-delay: 5s;
}
.slidingVertical span:nth-child(4){
    animation-delay: 7.5s;
    -ms-animation-delay: 7.5s;
    -webkit-animation-delay: 7.5s;
}
.slidingVertical span:nth-child(5){
    animation-delay: 10s;
    -ms-animation-delay: 10s;
    -webkit-animation-delay: 10s;
}

/*topToBottom Animation*/
@-moz-keyframes topToBottom{
    0% { opacity: 0; }
    5% { opacity: 0; -moz-transform: translateY(50px); }
    10% { opacity: 1; -moz-transform: translateY(0px); }
    25% { opacity: 1; -moz-transform: translateY(0px); }
    30% { opacity: 0; -moz-transform: translateY(-50px); }
    80% { opacity: 0; }
    100% { opacity: 0; }
}
@-webkit-keyframes topToBottom{
    0% { opacity: 0; }
    5% { opacity: 0; -webkit-transform: translateY(50px); }
    10% { opacity: 1; -webkit-transform: translateY(0px); }
    25% { opacity: 1; -webkit-transform: translateY(0px); }
    30% { opacity: 0; -webkit-transform: translateY(-50px); }
    80% { opacity: 0; }
    100% { opacity: 0; }
}
@-ms-keyframes topToBottom{
    0% { opacity: 0; }
    5% { opacity: 0; -ms-transform: translateY(50px); }
    10% { opacity: 1; -ms-transform: translateY(0px); }
    25% { opacity: 1; -ms-transform: translateY(0px); }
    30% { opacity: 0; -ms-transform: translateY(-50px); }
    80% { opacity: 0; }
    100% { opacity: 0; }
}

.hover-box-content{
    min-width:150px;
    width: max-content;
    background:linear-gradient(to right, #21FC0D -10%, #fff 90%);
    padding:10px;
    border-radius: 10px;
    position: absolute;
    border:1px solid #21FC0D;
    top:50%;
    left:-170px;
    opacity:0;
    visibility: hidden;
    -webkit-transition: all 0.35s ease-in-out;
    -moz-transition: all 0.35s ease-in-out;
    -ms-transition: all 0.35s ease-in-out;
    -o-transition: all 0.35s ease-in-out;
    transition: all 0.35s ease-in-out;
}
.hover-box-content p{
    text-align:center;
}
.hover-box-content.active{
    top:100px;
    opacity: 1;
    visibility: visible;
}
.hover-box-content-1{
    left:unset;
    right:-164px;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}
.hover-box-content-2{
    left:50%;
    transform: translateX(-50%);
    right:unset;
    top: unset !important;
    bottom:-50%;
    -webkit-transition: all 0.7s ease-in-out;
    -moz-transition: all 0.7s ease-in-out;
    -ms-transition: all 0.7s ease-in-out;
    -o-transition: all 0.7s ease-in-out;
    transition: all 0.7s ease-in-out;
}
.hover-box-content-2.active{
    bottom:-53px;
}
#p-venture{
    color:rgba(255,255,255,0.85);
}
.text_reveal_3 .p_aj-text{
    color:rgba(255,255,255,0.85);
}
.text_reveal_4 .p_aj-text{
    color:rgba(0,0,0,0.85);
}
.text_reveal_5 .p_aj-text{
    color:rgba(255,255,255,0.90);
}
.ep-top .ambasidor{
    font-size: 60px;
}
.big-title{
    font-size: 68px;
}
.typed-cursor{
    color:#21FC0D;
    font-size:40px !important;
}
.section{
    align-items: center;
}
.moretext{
    display: none;
}
.more-button{
    color:#298a20;
    text-decoration: underline !important;
    transition: all 0.3s ease-in-out;
}
.more-button:hover{
    color:#000;
}
.more-button.active{
    display: none;
}

.slider_gs h2{
    text-align: center;
}