a,
abbr,
acronym,
address,
applet,
article,
aside,
audio,
b,
big,
blockquote,
body,
canvas,
caption,
center,
cite,
code,
dd,
del,
details,
dfn,
div,
dl,
dt,
em,
embed,
fieldset,
figcaption,
figure,
footer,
form,
h1,
h2,
h3,
h4,
h5,
h6,
header,
hgroup,
html,
i,
iframe,
img,
ins,
kbd,
label,
legend,
li,
mark,
menu,
nav,
object,
ol,
output,
p,
pre,
q,
ruby,
s,
samp,
section,
small,
span,
strike,
sub,
summary,
sup,
table,
tbody,
td,
tfoot,
th,
thead,
time,
tr,
tt,
u,
ul,
var,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block
}

body {
    line-height: 1
}

ol,
ul {
    list-style: none
}

blockquote,
q {
    quotes: none
}

blockquote:after,
blockquote:before,
q:after,
q:before {
    content: '';
    content: none
}

table {
    border-collapse: collapse;
    border-spacing: 0
}

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

a,
button {
    border: none;
    outline: 0;
    text-decoration: none;
    background-color: none
}

body {
    font-family: "Manrope", serif;
    background: #0B0B0B;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 7px;
    height: 7px;
}

::-webkit-scrollbar-track {
    background-color: #000;
    -webkit-border-radius: 10px;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    -webkit-border-radius: 10px;
    border-radius: 10px;
    background: #fadf72;
}

.header_u {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5vw 2.5vw;
}
.header_u .offcanvas{
    background: #000;
}

.logo>img {
    height: 2.5vw;
}

.nav_links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3vw;
}

.nav_links>li>a {
    color: #fff;
    font-size: 1vw;
}

.nav_links>li>a:hover,
.nav_links>li>a.active {
    color: #fadf72;
}

.row_butn {
    display: flex;
    align-items: center;
    gap: 1vw;
}

.theme_btn_border,
.theme_btn {
    border: 1px solid #ddd;
    padding: 1vw 1.5vw;
    border-radius: 0.6vw;
    color: #fff;
    font-size: 1vw;
    font-weight: 500;
    transition: 0.5s ease;
}

.theme_btn_border:hover {
    background: #fff;
    color: #000;
}

.theme_btn {
    border-color: #FFDE59;
    background: #FFDE59;
    color: #000;
}

.theme_btn:hover {
    background: #fadf72;
}

.section_center {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 6vw 1vw;
}

.section_heading {
    color: #fff;
    font-size: 3.6vw;
    text-transform: uppercase;
    font-weight: 200;
    text-align: center;
}

.section_heading>span {
    font-weight: 700;
}

.section_para {
    margin: 0 auto;
    color: #898C9E;
    font-size: 1vw;
    text-align: center;
    margin-top: 1.2vw;
    max-width: 35vw;
    line-height: 1.5;
}



/* Footer css  */

.footer {
    display: flex;
    width: 100%;
    justify-content: space-evenly;
    gap: 2vw;
    position: relative;
background:none !important;
}

.footer_paticles {
    position: absolute;
    z-index: -1;
    width: 100%;
    inset: 0;
}

.footer_paticles>canvas {
    width: 100% !important;
    height: 100% !important;
}

.footer_links>h3 {
    color: #fff;
    text-transform: capitalize;
    font-size: 1.2vw;
}

.footer_links>ul>li>a {
    color: #898C9E;
    margin-top: 1.2vw;
    display: block;
    font-size: 0.9vw;
}

.ham_u {
    background: transparent;
    font-size: 22px;
    color: #fff;
    display: none;
}

.footer {
    padding: 4vw 1vw;
}

.logo_area>img {
    height: 2vw;
}

.logo_area>p {
    color: #898C9E;
    font-size: 0.8vw;
    margin-top: 0.5vw;
}

.social_icons {
    display: flex;
    align-items: center;
    gap: 1.2vw;
    margin-top: 8vw;
}

.social_icons li a {
    color: #898C9E;
    font-size: 1.2vw;
}


/* newslatter section  */
.section_nine {
    position: relative;
}

.section_nine:after {
    content: '';
    display: block;
    aspect-ratio: 2 / 1;
    background: radial-gradient(#ffda1547, #00000000, #00000000);
    width: 100%;
    position: absolute;
    z-index: -1;
    bottom: -14vw;
}

.newsletter_card {
    border: 1px solid #ffffff2a;
    border-radius: 1.5vw;
    background: url('../images/bg_news.webp') no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 3vw;
    max-width: 80vw;
}

.row_iconic {
    display: flex;
    align-items: center;
    gap: 0.5vw;
    padding: 0.5vw;
    border-radius: 1vw;
    border: 1px solid #fff;
    background: #00000080;
    margin-bottom: 2vw;
}

.row_iconic>img {
    width: 3.4vw;
}

.space_btn {
    margin-top: 2vw;
    margin-bottom: 2vw;
}

.newsletter_form {
    border: 1px solid #898c9e88;
    border-radius: 0.8vw;
    width: 100%;
    display: flex;
    align-items: center;
    backdrop-filter: blur(5px);
    background: #ffffff07;
    max-width: 45vw;
    margin: 4vw auto 0;
}

.newsletter_form>input {
    background: transparent;
    border: none;
    width: 100%;
    outline: none;
    padding-left: 1vw;
    font-size: 1vw;
    color: #fff;
}

.newsletter_form>button {
    background: #fff;
    border-color: #fff;
}


@media (max-width:992px) {

    .nav_links>li>a,
    .theme_btn_border,
    .theme_btn,
    .tab_area .nav-pills button {
        font-size: 1.3vw;
    }

    .logo>img {
        height: 3vw;
    }

    .section_para {
        font-size: 1.5vw;
        max-width: 56vw;
    }

    .logo_area>img {
        height: 3.5vw;
    }

    .logo_area>p {
        font-size: 1.4vw;
        margin-top: 1vw;
    }

    .footer_links>h3 {
        font-size: 1.8vw;
    }

    .footer_links>ul>li>a {
        margin-top: 1.5vw;
        font-size: 1.4vw;
    }

    .social_icons li a {
        font-size: 2vw;
    }

    .social_icons {
        gap: 1.5vw;
    }

    .footer {
        justify-content: space-around;
    }
}

@media (max-width:767px) {
    .ham_u {
        display: block;
    }

    .for-web {
        display: none;
    }

    .nav_links {
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
    }

    .nav_links a {
        font-size: 14px !important;
    }

    .logo>img {
        height: 40px;
    }

    .nav_links>li>a,
    .theme_btn_border,
    .theme_btn,
    .tab_area .nav-pills button {
        font-size: 14px;
        padding: 10px 1rem;
    }

    .header_u {
        padding: 1rem;
    }

    .logo_area>img {
        height: 40px;
    }

    .logo_area>p {
        font-size: 14px;
        margin-top: 1rem;
    }

    .footer {
        justify-content: space-between;
        padding: 3rem 2rem;
    }

    .footer_links>h3 {
        font-size: 18px;
    }

    .footer_links>ul>li>a {
        margin-top: 1rem;
        font-size: 16px;
    }

    .social_icons li a {
        font-size: 1.5rem;
    }

    .section_heading {
        font-size: 30px;
    }

    .section_para {
        font-size: 14px;
        max-width: 80%;
        margin-top: 12px;
    }

    .section_center {
        padding: 3rem 1rem;
    }

    .newsletter_card {
        border-radius: 20px;
        padding: 3rem;
        max-width: 100%;
    }

    .space_btn {
        margin: 1rem auto;
    }

    .newsletter_form>input {
        padding-left: 10px;
        font-size: 14px;
    }

    .row_iconic>img {
        width: 40px;
    }

    .newsletter_form {
        border-radius: 5px;
        max-width: 330px;
        margin: 3rem auto 0;
    }
}

@media (max-width:500px) {
    .d-none_500 {
        display: none;
    }

    .logo>img {
        height: 32px;
    }

    .nav_links>li>a,
    .theme_btn_border,
    .theme_btn,
    .tab_area .nav-pills button {
        font-size: 12px;
        padding: 10px 1rem;
    }

    .footer {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
    }

    .logo_area>img {
        height: 32px;
    }

    .logo_area {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }

    .social_icons {
        gap: 1.5rem;
    }

    .footer_links {
        text-align: center;
    }

    .row_butn {
        gap: 10px;
    }
    .newsletter_card {
        padding: 3rem 1rem;
    }
    .row_iconic {
        gap: 3px;
        padding: 3px;
        border-radius: 10px;
        margin-bottom: 1rem;
    }
}


.section-main-h h2 {
    margin-top: 10.885vw;
    text-align: center;
    font-size: 3.646vw;
    font-weight: 300;
    color: #FFFFFF;

}

.section-main-h p {
    margin: 0 auto;
    margin-top: 2.604vw;
    text-align: center;
    font-size: 1.042vw;
    font-weight: 400;
    color: #898C9E;
    max-width: 39.323vw;
    line-height: 1.4;
}

.development-dv {
    display: flex;
    justify-content: center;
    gap: 3.125vw;
    margin-top: 7.813vw;
}

.development-cards-dc {
    width: 26vw;
    height: fit-content;
    border: 1px solid rgba(137, 140, 158, 0.103);
    border-radius: 1.5vw;
    background: #1c1d332c;
    overflow: hidden;
}

.development-cards-dc:first-child,
.development-cards-dc:last-child {
    margin-top: 3vw;
}

.cone-img img {
    width: 100%;
}

.development-content-c {
    padding: 0 2.2vw 2.7vw 2.2vw
}

.development-content-c h3 {
    margin-top: 1.5vw;
    font-size: 1.7vw;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 2vw;
    line-height: 1.3;
}

.development-content-c ul {
    padding-left: 1.5vw;
}

.development-content-c li {
    font-size: 1.3vw;
    font-weight: 400;
    color: #898c9ed5;
    line-height: 1.9;
    list-style-type: disc;
}

.development-content-c p {
    font-size: 1vw;
    font-weight: 400;
    color: #898c9ed5;
    line-height: 1.5;
}

.feeda-logo {
    display: flex;
    justify-content: center;
}

.feeda-logo img {
    height: 2vw;
}

.build-lab-card>img {
    width: 100%;
}
.feedalabs-home-video video{
width: 70%;
  margin: 0 auto;
  border-radius: 30px;
}

.feedalabs-home-video{
    text-align: center;
}


.grid_service_card {
    display: flex;
    justify-content: center;
    gap: 2.5vw;
    flex-wrap: wrap;
    margin-top: 5vw;
}

.grid_service_card .development-cards-dc {
    margin: 0;
    width: 100%;
    height: 100%;
    flex-basis: 28%;
    aspect-ratio: 1/1.4;
    display: flex;
    flex-direction: column;
  /*  justify-content: space-between;*/
}

.feeda-business {
    padding: 8vw 1vw;
    width: 100%;
    margin-top: -5vw;
}

.feeda-business h4 {
    margin-top: 0.573vw;
    text-align: center;
    font-size: 1.042vw;
    font-weight: 800;
    color: #898C9E;
    text-transform: uppercase;
}

.feeda-business h4 span {
    color: #FFFFFF;
}

/* section-3 */
.build-lab-m {
    display: flex;
    gap: 1.875vw;
    padding: 4.688vw;
}

.build-lab-card {
    max-width: 20vw;
    width: 100%;
    border-radius: 1.042vw;
    background-color: #17171C;
    overflow: hidden;
}

.logo1-img {
    display: flex;
    justify-content: center;
    padding: 4.271vw 2.865vw 4.271vw 2.865vw;
    border-radius: 1.042vw;
    background: linear-gradient(170deg, #FFDD55, #0B0B0B);
}

.logo1-img img {
    width: 15.625vw;
    height: 2.292vw;
}

.logo2-img {
    display: flex;
    justify-content: center;
    padding: 4.271vw 2.865vw 4.271vw 2.865vw;
    border-radius: 1.042vw;
    background: linear-gradient(3deg, #0170D7, #FFFFFF);
}

.logo2-img img {
    width: 15.625vw;
    height: 2.292vw;
}

.logo3-img {
    display: flex;
    justify-content: center;
    padding: 4.271vw 2.865vw 4.271vw 2.865vw;
    border-radius: 1.042vw;
    background: linear-gradient(170deg, #FFFFFF, #D6D6D6);
}

.logo3-img img {
    width: 15.625vw;
    height: 2.292vw;
}

.logo4-img {
    display: flex;
    justify-content: center;
    padding: 4.271vw 2.865vw 3.271vw 2.865vw;
    border-radius: 1.042vw;
    background: linear-gradient(100deg, #4B65E0, #CF1C23);
}

.logo4-img img {
    width: 15.625vw;
}


.build-lab-c {
    padding: 1.25vw;
}

.build-lab-c h5 {
    font-size: 0.938vw;
    font-weight: 400;
    color: #FFFFFF;
    padding-bottom: 1vw;
    border-bottom: 1px solid #ffffff2d;
}

.build-lab-c P {
    margin-top: 1.1vw;
    font-size: 0.938vw;
    font-weight: 400;
    color: #898C9E;
    max-width: 18.594vw;
    line-height: 1.5;
}

.build-lab-c a {
    /* margin: 0 auto; */
    margin-top: 1.148vw;
    display: flex;
    justify-content: center;
    border: 0.052vw solid #8080808a;
    color: #FFFFFF;
    font-size: 0.938vw;
    text-align: center;
    font-weight: 800;
    padding: 0.881vw;
    border-radius: 0.436vw;
}

.view-more {
    display: flex;
    justify-content: center;
}

.view-more a {
    color: #FFFFFF;
    border: 0.052vw solid #8080808a;
    border-radius: 0.521vw;
    font-weight: 400;
    font-size: 0.938vw;
    padding: 0.938vw 1.563vw 0.938vw 1.563vw;
}

/* for section-4 */


.ai-ball {
    display: flex;
    justify-content: center;
}

.ai-ball img {
    width: 12.396vw;
}

.global-talent {
    width: 45.313vw;
    height: fit-content;
    background: linear-gradient(170deg, #292A32, #17171C);
    border: 0.052vw solid #898c9e42;
    border-radius: 1.563vw;
}

/* -x-x--x-x-x-  */

.industry-leader-h{
    margin-top: 3vw;
}
.industry-leader {
    display: flex;
    gap: 1.823vw;
    margin-top: 1.823vw;
}

.powered-sponser,
.global-talent,
.scale-projects,
.personalized-support {
    height: fit-content;
    background: linear-gradient(100deg, #292A32, #17171C);
    border: 1px solid #898c9e42;
    padding-bottom: 1.6vw;
    border-radius: 1.563vw;
    overflow: hidden;
}

.powered-sponser {
    width: 32vw;
}
.global-talent {
    width: 45vw;
}
.scale-projects {
    width: 45vw;
}
.personalized-support {
    width: 32vw;
}

.powered-sponser h5,
.global-talent h5,
.scale-projects h5,
.personalized-support h5{
    padding-left: 1.875vw;
    padding-right: 1.875vw;
    font-size: 1.6vw;
    font-weight: 600;
    color: #FFFFFF;
}
.powered-sponser p,
.global-talent p,
.scale-projects p,
.personalized-support p{
    margin-top: 1.6vw;
    padding-left: 1.875vw;
    padding-right: 1.875vw;
    font-size: 1.042vw;
    font-weight: 400;
    color: #898C9E;
    max-width: 28vw;
    line-height: 1.5;
}


.ai-ball {
    display: flex;
    justify-content: center;
}

.ai-ball img {
    width: 100%;
}

.face-ff .face2 {
    width: 17vw;
    float: inline-end;
}
.face-ff .face1 {
    width: 16.75vw;
}

.cone-cc .cone1 {
    width: 100%;
}

.ai-bot {
    display: flex;
    justify-content: center;
}

.ai-bot img {
    width: 100%;
}

.new-sol-s h4 {
    text-align: center;
    font-size: 1.667vw;
    font-weight: 300;
    color: #FFFFFF;
}

.new-sol-s h5 {
    margin-top: 1.042vw;
    text-align: center;
    font-size: 1.667vw;
    font-weight: 600;
    color: #FFFFFF;
}

.service-box {
    display: grid;
    grid-template-columns: auto auto auto;
    row-gap: 3.114vw;
    padding: 8.333vw 6.146vw 8.333vw 6.146vw;
}

.service-box-c {
    width: 27.147vw;
    height: auto;
    background: linear-gradient(100deg, #292A32, #17171C);
    border: 0.052vw solid #898c9e42;
    padding: 2.24vw 2.135vw 2.24vw 2.135vw;
    border-radius: 1.302vw;
}

.service-box-c h3 {
    margin-top: 17.479vw;
    font-size: 1.771vw;
    font-weight: 600;
    color: #FFFFFF;
    line-height: 1.4;
}

.service-box-c p {
    margin-top: 1.865vw;
    font-size: 1.042vw;
    font-weight: 400;
    color: #898C9E;
    line-height: 1.4;
}




/* -x-x-x--x-x-x */
.section_five {
    position: relative;
}

.move_ai_head {
    font-size: 1.5vw;
    color: #fff;
    text-align: center;
    line-height: 1.3;
    font-weight: 700;
}
.move_ai_head>span{
    display: block;
    font-weight: 200;
}


.ai-know-world .move_ai_head {
    font-size: 3vw;

}
.section_center.ai-know-world {
padding: 9vw 2vw;
padding-bottom: 6vw;
}
.ai-know-world  p{
     font-weight: 200;
     font-size: 18px;
     text-align: center;
     line-height: 26px;
     width: 75%;
     color: #fff;
     margin:15px auto;
     margin-bottom: 25px;
 }
@media (max-width:768px) {
    .build-lab-m {
        flex-wrap: wrap;
        justify-content: center;
        /* align-items: center; */
    }
    .build-lab-card {
        max-width: fit-content;
        flex-basis: 47%;
    }
    .build-lab-c h5 {
        font-size: 2.5vw;
        padding-bottom: 2vw;
    }
    .build-lab-c P {
        margin-top: 1.3vw;
        font-size: 1.7vw;
        max-width: 100%;
    }
    .build-lab-c{
        padding: 2vw;
    }
    .build-lab-c a {
        margin-top: 4vw;
        border: 1px solid #8080808a;
        font-size: 2vw;
        padding: 1.5vw;
        border-radius: 1.1vw;
    }
    .move_ai_head {
        font-size: 14px;
        line-height: 1.5;
    }
    .section_five{
        min-height: 40vh;
    }
    .development-dv {
        gap: 2rem;
        margin-top: 3rem;
        flex-direction: column;
    }
    .development-dv .development-cards-dc {
        margin: 0;
        width: 100%;
        max-width: 400px;
    }
    .development-content-c h3 {
        margin-top: 1rem;
        font-size: 16px;
        margin-bottom: 1rem;
    }
    .development-content-c li,
    .development-content-c p {
        font-size: 14px;
    }
    .development-content-c ul {
        padding-left: 1.5rem;
    }
    .feeda-business h4 {
        margin-top: 5px;
        font-size: 18px;
    }
    .feeda-logo img {
        height: 36px;
    }
    .feeda-business{
        min-height: 30vh;
        margin-top: 0;
    }
    .grid_service_card .development-cards-dc {
        flex-basis: 42%;
        aspect-ratio: inherit;
    }
    .development-content-c {
        padding: 0 1rem 1.5rem 1rem;
    }
    .grid_service_card {
        gap: 1.2rem;
        margin-top: 4rem;
    }
}

@media (max-width:575px) {
    .build-lab-card {
        max-width: 375px;
        flex-basis: 100%;
        border-radius: 20PX;
    }
    .build-lab-c h5 {
        font-size: 20px;
        padding-bottom: 16px;
    }
    .build-lab-c P {
        margin-top: 18px;
        font-size: 14px;
    }
    .build-lab-c {
        padding: 1rem;
    }
    .build-lab-c a {
        margin-top: 2rem;
        font-size: 16px;
        padding: 1rem;
        border-radius: 12px;
    }
    .grid_service_card .development-cards-dc {
        flex-basis: 100%;
    }
    .build-lab-m {
        gap: 1rem;
        padding: 2rem 0;
    }
    .development-cards-dc {
        border-radius: 12px;
    }
    .industry-leader{
        flex-direction: column;
        gap: 1rem;
        margin-top: 1rem;
    }
    .powered-sponser, .global-talent, .scale-projects, .personalized-support {
        width: 100%;
        max-width: 450px;
        padding-bottom: 1rem;
        border-radius: 15px;
    }
    .powered-sponser h5, .global-talent h5, .scale-projects h5, .personalized-support h5 {
        padding-left: 1rem;
        padding-right: 1rem;
        font-size: 18px;
        font-weight: 600;
        color: #FFFFFF;
    }
    .powered-sponser p, .global-talent p, .scale-projects p, .personalized-support p {
        margin-top: 12px;
        padding-left: 1rem;
        padding-right: 1rem;
        font-size: 14px;
        font-weight: 400;
        color: #898C9E;
        max-width: 90%;
        line-height: 1.5;
    }
    .face-ff .face1 {
        width: 160px;
    }
    .face-ff .face2 {
        width: 150px;
    }
}

@media (max-width:500px) {
    .powered-sponser h5, .global-talent h5, .scale-projects h5, .personalized-support h5 {
        font-size: 16px;
    }
    .powered-sponser p, .global-talent p, .scale-projects p, .personalized-support p {
        font-size: 12px;
    }
}




/* hero section css  */
.hero_section{
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.hero_section::before{
  content: '';
  display: block;
  aspect-ratio: 1/1;
  background: radial-gradient(#fecb0046, #00000000, #00000000);
  width: 70vw;
  position: absolute;
  z-index: -1;
}
.particles {
  position: absolute;
  width: 100%;
  height: 50vw;
  z-index: -1;
  pointer-events: none;
  top: 0;
}
.hero-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2vw;
  padding: 6vw 1vw;
  text-align: center;
}

.hero-container h3 {
  color: #fff;
  font-size: 1vw;
  text-transform: uppercase;
  font-weight: 800;
}

.hero-container h1 {
  color: #fff;
  font-size: 4.5vw;
  text-transform: uppercase;
  font-weight: 200;
}

.hero-container h1>span {
  display: block;
  font-weight: 700;
}

.hero-container p {
  color: #fff;
  font-size: 1vw;
  max-width: 40vw;
  line-height: 1.5;
}

.frame_area {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
}

.frame_banner {
  background: #FECB00;
  border-radius: 2vw;
  border: 1px solid #fff;
  width: 80vw;
  height: 40vw;
  transform: rotate(1deg);
}

.frame_inner {
  position: absolute;
  background: #1d1705;
  border-radius: 2vw;
  border: 1px solid #fff;
  width: 80vw;
  height: 40vw;
}


/* section two css  */

.reason_row {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 1.5vw;
  margin-top: 6vw;
}

.reason_row .reson_colm {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5vw;
}

.reason_card {
  max-width: 40vw;
  border: 1px solid #dddddd0a;
  border-radius: 1.5vw;
  padding: 1.8vw;
  background: linear-gradient(135deg, #1b1b1b, 80%, transparent);
  background-color: #ffffff11;
  /* backdrop-filter: blur(20px); */
  box-shadow: 0 1px 24px -1px rgba(0 0 0 / 10%);
  transition: 0.3s;
  color: #898C9E;
  font-size: 1.05vw;
  line-height: 1.5;
  position: relative;
}

.reason_card:hover {
  background-color: #fecb0054;
  color: #fff;
}


@supports (-webkit-mask: initial) {
  .reason_card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 1.5vw;
    padding: 1px;
    background: linear-gradient(135deg,
        rgba(255 255 255 / 50%) 0%,
        rgba(255 255 255 / 0%) 40%,
        rgba(255 255 255 / 0%) 60%,
        rgba(255, 255, 255, 0.5) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box,
      linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
    user-select: none;
    z-index: -1;
    opacity: 0.6;
  }
}

.reason_card>h3 {
  font-size: 1.5vw;
  line-height: 1.3;
  margin-bottom: 1.5vw;
  color: #fff;
}

.reason_card>h3>span {
  font-size: 2.5vw;
  color: #FECB00;
  margin-right: 1vw;
  line-height: 1;
  display: inline-block;
}

.reason_card>p {
  line-height: 1.3;
  margin-bottom: 2.5vw;
  transition: 0.5s ease;
}

.reason_card ul {
  padding-left: 2vw;
  transition: 0.5s ease;
}

.reason_card ul li {
  list-style: disc;
}

.reason_card ul strong {
  font-weight: 600;
}
.reason_card.card_acc {
  max-width: 60vw;
  margin-top: 2.5vw;
  height: 6.5vw;
}
.reason_card.card_acc>h3 {
  cursor: pointer;
}

.reason_card.card_acc>h3:after {
  content: '';
  background: url('../images/drop_arrow.png') no-repeat;
  display: block;
  background-size: contain;
  background-position: center;
  transform-origin: center;
  width: 1.5vw;
  height: 1.5vw;
  float: right;
  vertical-align: middle;
  margin-top: 0.8vw;
  transition: 0.5s ease;
  transform: rotate(180deg);
}

.reason_card.card_acc.active>h3:after {
  transform: rotate(0);
}

.reason_card.card_acc>p,
.reason_card.card_acc>ul {
  opacity: 0;
}

.reason_card.card_acc.active {
  height: 100%;
}

.reason_card.card_acc.active>p,
.reason_card.card_acc.active>ul {
  opacity: 1;
}


.track_slider {
  width: 100%;
  margin-top: 6vw;
}

.card_track {
  /* max-width: 22vw; */
  margin: 0 1vw;
  background: #17171C;
  border-radius: 1.3vw;
  overflow: hidden;
  border: 1px solid #ffffff27;
}

.card_track>img {
  width: 100%;
}

.card_track h3 {
  font-size: 1.1vw;
  color: #fff;
  padding: 1vw;
  border-bottom: 1px solid #ffffff27;
}

.card_track p {
  font-size: 1vw;
  color: #898C9E;
  padding: 1vw;
  line-height: 1.3;
}

.card_track .link {
  padding: 1vw;
}

.card_track .link>a {
  border: 1px solid #ffffff27;
  border-radius: 0.6vw;
  color: #fff;
  font-size: 1vw;
  font-weight: 500;
  width: 100%;
  display: block;
  padding: 1vw;
  text-align: center;
  transition: 0.5s ease;
}

.card_track .link>a:hover {
  background: #fff;
  color: #000;
}

.track_slider .slick-slide {
  margin-top: 10vw;
  transition: 0.5s;
}

.track_slider .slick-active {
  margin-top: 5vw;
}

.track_slider .slick-current {
  margin-top: 0vw;
}

/* section five css  */
.section_five{
  position: relative;
}


.workshop-section {
  display: flex;
  gap: 2vw;
  align-items: center;
  padding: 1vw;
}
.workshop-section:before{
  content: '';
  display: block;
  aspect-ratio: 1/1;
  background: radial-gradient(#fecb0075 ,20%, #00000000,#00000000);
  position: absolute;
  width: 50vw;
  z-index: -1;
  left: 0;
}
.tab_area{
  max-width: 80vw;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 3vw 1vw; 
}
.tab_area .nav-pills{
  border: 1px solid #363636;
  border-radius: 0.8vw;
  padding: 3px;
}
.tab_area .nav-pills button{
  padding: 1vw 1.5vw;
  border-radius: 0.6vw;
  color: #fff;
  font-size: 1vw;
  font-weight: 500;
  }
  .tab_area .nav-pills button.active{
    background: #FFDE59;
    color: #000;
  }
.image-container img {
  max-width: 35vw;
  width: 100%;
  border-radius: 1.5vw;
  object-fit: cover;
}


.content-container ul {
  display: flex;
  flex-direction: column;
  gap: 2vw;
}

.content-container li {
  display: flex;
  align-items: center;
  gap: 0.6vw;
  color: #fff;
}

.content-container li .icon>img {
  width: 2.4vw;
}
.content-container li p{
  font-size: 1.15vw;
  line-height: 1.5;
}

/* section six css  */
.section_six.section_center{
  width: 100%;
  min-height: 80vw;
  padding: 0 12vw;
  justify-content: space-evenly;
  overflow: hidden;
  position: relative;
}
.section_six.section_center.whatwedo{
  padding: 0 18vw;
  min-height: 45vw;
}
.section_six.section_center.whatwedo .case_image_float > img:nth-child(2) {
  bottom: 2vw;
  right: 3vw;
  width: 12vw;
  animation-delay: -3s;
}

.section_six.section_center.whatwedo .case_image_float > img:nth-child(3) {
  top: 0vw;
}
.example_area >span{
  color: #c9c9c9;
  font-size: 0.8vw;
  text-transform: uppercase;
  font-weight: 800;
  display: block;
  margin-bottom: 1vw;
}

.example_area >h2{
  color: #FFDE59;
  font-size: 2.6vw;
  font-weight: bold;
  margin-bottom: 1vw;
}
.example_area >p{
  color: #fff;
  font-size: 1.6vw;
  margin-bottom: 1vw;
  line-height: 1.6;
}
.case_image_float>img{
  position: absolute;
  border-radius: 1vw;
  box-shadow: -15px 15px 50px #fecb0021;
  animation: float 6s ease-in-out infinite;
}
.case_image_float>img:nth-child(1){
    top: 1.6vw;
    right: -5vw;
    width: 17vw;
    animation-delay: -1s;
}
.case_image_float>img:nth-child(2){
  bottom: 10vw;
  right: 30vw;
  width: 17vw;
  animation-delay: -3s;
}
.case_image_float>img:nth-child(3){
  top: 20vw;
  left: -7vw;
  width: 17vw;
  animation-delay: -5s;
}
.case_image_float>img:nth-child(4){
  top: 30vw;
  right: 15vw;
  width: 9vw;
  animation-delay: -4s;
}
.case_image_float>img:nth-child(5){
  bottom: 2vw;
  left: 10vw;
  width: 9vw;
  animation-delay: -8s;
}


@keyframes float {
	0% {
		box-shadow: 0 5px 15px 0px #fecb0033;
		transform: translatey(0px);
	}
	50% {
		box-shadow: -15px 15px 50px 0px #fecb0021;
		transform: translatey(-20px);
	}
	100% {
		box-shadow: 0 5px 15px 0px #fecb0033;
		transform: translatey(0px);
	}
}


/* subscription css  */

.card_row_price {
  display: flex;
  justify-content: center;
  gap: 1vw;
  margin-top: 4vw;
  width: 100%;
}

.card__content {
  position: relative;
  background-color: #fff;
  padding: 2.5vw 0;
  border-radius: 2vw;
  box-shadow: 0 12px 24px hsla(210, 61%, 16%, 0.1);
  transition: .4s;
  max-width: 30vw;
  width: 100%;
}

.card__content.dark {
  background: linear-gradient(-25deg, #FFDE59, #FFDA42);
}

.card__content:hover {
  box-shadow: 0 16px 24px hsla(210, 61%, 16%, 0.15);
}
.card__header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-bottom: 1px solid #0000001c;
  padding-bottom: 1.5vw;
}
.card__header.border_white{
  border-color: #ffffff3d;
}
.card__header-img {
  height: 3vw;
}

.card__header-subtitle {
  display: block;
  color: #000;
  font-size: 1vw;
  font-weight: 600;
  margin-top: 1vw;
  text-transform: uppercase;
}

.card__header-title {
  font-size: 3vw;
  font-weight: 800;
  color: #000;
  display: flex;
  align-items: center;
  gap: 1vw;
  max-width: 10vw;
  margin-top: 1rem;
}

.gdt {
  font-size: 0.9vw;
  font-weight: 500;
}

.gdt p {
  opacity: 0.5;
}
.card__header h2{
  font-size: 0.8vw;
  font-weight: 400;
  opacity: 0.9;
  margin-top: 1vw;
}

.card__list {
  margin-top: 1.5vw;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1vw;
  font-weight: 600;
}
.ctc_mgg {
  padding: 0 2.5vw;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  height: 22vw;
}
.card__list-item {
  display: flex;
  align-items: center;
  gap: 0.6vw;
  font-size: 0.95vw;
}

.card__button {
  padding: 1vw;
  border: none;
  font-size: 0.9vw;
  border-radius: 0.5vw;
  cursor: pointer;
  transition: 0.4s;
  background: transparent;
  border: 1px solid #000;
  color: #000;
  display: block;
  width: 100%;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
}
.card__button.dark{
  border-color: #fff;
  color: #fff;
}
.card__button:hover {
 background: #000;
 color: #fff;
}
.card__button.dark:hover{
  background: #fff;
  color: #000;
}


/* testemonial section css  */
.Testimonials_card{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.Test_head {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: relative;
  width: 100%;
  padding: 2vw 0;
}
.Test_head>h3{
  font-size: 1.3vw;
  color: #FECB00;
  font-weight: 500;
  text-align: center;
  position: absolute;
  margin-top: 1.5vw;
}
.Test_head>img{
  width: 6vw;
}
.Test_review{
  font-size: 1.6vw;
  color: #Fff;
  line-height: 1.5;
  font-weight: 300;
  text-align: center;
  max-width: 65vw;
}
.slide_reviw{
  width: 100%;
}
.row_slide{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  gap: 1.5vw;
  margin-top: 2vw;
}
.client_slide{
  width: 100%;
  max-width: 5vw;
}
.image_client{
  aspect-ratio: 1/1;
  border-radius: 100%;
  max-width: 5vw;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.slide_btn{
  background: transparent;
}
.slide_btn>img{
  height: 1vw;
}
.btn_slider_left{
  transform: rotate(-90deg);
}
.btn_slider_right{
  transform: rotate(90deg);
}



@media (max-width:992px) {

  .hero-container h3 {
      font-size: 1.4vw;
  }
  .hero-container p {
      font-size: 1.2vw;
      max-width: 55vw;
  }
  .frame_inner,.frame_banner {
      width: 65vw;
      height: 35vw;
  }
  .reason_card>h3 {
      font-size: 2vw;
  }
  .reason_card {
      max-width: 46vw;
      font-size: 1.5vw;
      padding: 2.5vw;
  }
  .reason_card ul li {
      margin-bottom: 0.5vw;
  }
  .reason_card.card_acc {
    max-width: 70vw;
    height: 8vw;
  }
  .workshop-section {
    flex-direction: column;
  }
  .image-container img {
    max-width: 50vw;
    border-radius: 2vw;
  }
  .content-container li p {
    font-size: 1.5vw;
  }
  .content-container li .icon>img {
    width: 3vw;
  }
  .content-container li {
    gap: 2vw;
  }
  .example_area >span {
    font-size: 1.3vw;
  }
  .example_area >h2 {
    font-size: 2.4vw;
  }
  .example_area >p {
    font-size: 2vw;
  }
  .card_row_price {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .card__list-item {
    gap: 1vw;
    font-size: 1.4vw;
  }
  .card__button{
    font-size: 1.2vw;
    padding: 1.2vw;
  }
  .card__header h2 {
    font-size: 1.2vw;
  }
  .card__content {
    max-width: 40vw;
  }
  .ctc_mgg {
    height: 30vw;
  }
  .card__header-img {
    height: 5vw;
  }
  .gdt {
    font-size: 1.3vw;
  }
  .card__header-title {
    font-size: 4vw;
    max-width: 16vw;
  }

}
@media (max-width:767px) {
  .hero-container h1 {
    font-size: 2.5rem;
  }
  .hero-container h3 {
    font-size: 1rem;
  }
  .hero-container p {
    font-size: 14px;
    max-width: 80%;
  }
  .hero-container {
    gap: 1rem;
    padding: 5rem 1rem;
  }
  .section_heading {
    font-size: 2.2rem;
  }
  .reason_row {
    gap: 1rem;
    margin-top: 5rem;
    flex-direction: column;
  } 
  .reason_card {
    max-width: 500px;
    font-size: 14px;
    padding: 2rem;
    border-radius: 20px;
  }
  .reason_card::before{
    border-radius: 20px;
  }
  .reason_card>h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
}
  .reason_card>h3>span {
    font-size: 2rem;
    margin-right: 10px;
  }
  .reason_card.card_acc {
    max-width: 600px;
    height: 95px;
  }
  .reason_card.card_acc>h3:after {
    width: 16px;
    height: 16px;
    margin-top: 8px;
  }
  .card_track h3 {
    font-size: 1rem;
    padding: 12px;
  }
  .card_track p {
    font-size: 14px;
    padding: 10px;
  }
  .card_track .link>a {
    border-radius: 8px;
    font-size: 14px;
    padding: 12px;
  }
  .card_track .link {
    padding: 16px;
  }
  .image-container img {
    max-width: 500px;
    border-radius: 22px;
  }
  .content-container li p {
    font-size: 16px;
  }
  .content-container li .icon>img {
    width: 24px;
  }
  .content-container li {
    gap: 1rem;
  }
  .example_area >span {
    font-size: 12px;
  }
  .example_area >h2 {
    font-size: 16px;
  }
  .example_area >p {
    font-size: 18px;
  }
  .card__header-img {
    height: 45px;
  }
  .card__header-subtitle {
    font-size: 12px;
    margin-top: 7px;
  }
  .card__header-title {
    font-size: 32px;
    max-width: 110px;
  }
  .gdt {
    font-size: 10px;
  }
  .card__header h2 {
    font-size: 10px;
  } 
  .card__list-item {
    gap: 10px;
    font-size: 13px;
  }
  .card__content {
    max-width: 375px;
  }
  .card__button {
    font-size: 12px;
    padding: 18px;
    border-radius: 8px;
  }
  .ctc_mgg {
    height: 280px;
  }
  .card__list {
    margin-top: 16px;
    gap: 10px;
  }
  .client_slide {
    max-width: 65px;
  }
  .slide_btn>img {
    height: 10px;
  }
  .image_client {
    max-width: 100%;
  }
  .row_slide {
    gap: 1rem;
    margin-top: 1rem;
  }
  .Test_review {
    font-size: 18px;
    padding: 0 2rem;
    max-width: 100%;
  }
  .Test_head>h3 {
    font-size: 16px;
    margin-top: 1rem;
  }
  .Test_head>img {
    width: 75px;
  }
  .Test_head {
    padding: 2rem 0;
  } 

}

@media (max-width:575px) {
    .section_six.section_center.whatwedo {
  padding: 0 12vw;
  min-height: 90vh;
}
    .grid_service_card {
  flex-wrap: wrap !important;
}
    .feedalabs-home-video video {
  width: 96%;
  margin: 0 auto;
  border-radius: 12px;
}
  .ai-know-world p {
  font-weight: 200;
  font-size: 16px;
  line-height: 22px;
  width: 90%;
}
.ai-know-world .move_ai_head {
  font-size: 7vw;
}
  .hero-container h3 {
    font-size: 12px;
  }
  .hero-container h1 {
    font-size: 40px;
    max-width: 360px;
  }
  .hero-container p {
    font-size: 12px;
    max-width: 350px;
  }
  .frame_inner, .frame_banner {
    width: 90vw;
    height: 50vw;
  }
  .reason_card {
    max-width: 100%;
    font-size: 13px;
    padding: 20px;
    border-radius: 15px;
  }
  .reason_card::before{
    border-radius: 15px;
  }
  .reason_card>h3 {
    font-size: 18px;
    margin-bottom: 10px;
  }
  .reason_card>h3>span {
    font-size: 20px;
    margin-right: 8px;
  }
  .reason_card.card_acc {
    max-width: 100%;
    height: 65px;
  }
  .reason_card.card_acc>h3:after {
    margin-top: 5px;
  }
  .reason_card>p {
    line-height: 1.5;
    margin-bottom: 8px;
  }
  .image-container img {
    border-radius: 15px;
  }
  .section_six.section_center {
    min-height: 100vh;
    padding: 0 3rem;
  }
  .case_image_float>img:nth-child(5) {
    bottom: 3rem;
    left: 2rem;
    width: 90px;
  }
  .case_image_float>img:nth-child(2) {
    bottom: 3rem;
    right: 2rem;
    width: 160px;
  }
  .case_image_float>img:nth-child(4) {
    top: 40%;
    right: 1rem;
    width: 85px;
  }
  .case_image_float>img:nth-child(1) {
    top: 2rem;
    right: -3rem;
    width: 130px;
  }
  .case_image_float>img:nth-child(3) {
    top: 40%;
    left: -3rem;
    width: 150px;
    animation-delay: -3s;
  }
  .tab_area {
    max-width: 95vw;
    padding: 3rem 0;
  }
  .card_row_price {
    gap: 1rem;
    margin-top: 3rem;
    width: 100%;
  }
}

@media (max-width:500px) {
  .content-container li p {
    font-size: 14px;
  }
  .case_image_float>img:nth-child(5) {
    left: -3rem;
  }
  .case_image_float>img:nth-child(2) {
    right: -3rem;
    width: 120px;
  }
  .example_area >h2 {
    font-size: 14px;
    margin-bottom: 10px;
  }
  .example_area >span {
    font-size: 10px;
    margin-bottom: 12px;
  }
  .section_heading {
    font-size: 22px;
  }

  .section_six.section_center {
    padding: 0 1rem;
  }
  .case_image_float>img:nth-child(3),
  .case_image_float>img:nth-child(4){
    display: none;
  }
  .hero-container h1 {
    font-size: 30px;
  }
} 

/* hero section css  */
.hero_section {
  position: relative;
  display: flex;
  flex-direction: column;
  /* justify-content: center; */
  align-items: center;
  min-height: 50vw;
}

.particles {
  position: absolute;
  width: 100%;
  height: 50vw;
  z-index: -1;
  pointer-events: none;
  top: 0;
}

.hero-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2vw;
  padding: 6vw 1vw;
  text-align: center;
}

.hero-container h3 {
  color: #fff;
  font-size: 1vw;
  text-transform: uppercase;
  font-weight: 800;
}

.hero-container h1 {
  color: #fff;
  font-size: 4.5vw;
  text-transform: uppercase;
  font-weight: 200;
}

.hero-container h1>span {
  display: block;
  font-weight: 700;
}

.colm_section_incub {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1vw;
  position: absolute;
  inset: 0;
  z-index: -1;
}

.row_float_incub {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;

}

.row_fst>img:nth-child(1) {
  width: 8.333vw;
  border-radius: 1vw;
  margin-left: 7vw;
}

.row_fst>img:nth-child(2) {
  width: 6.354vw;
  border-radius: 1vw;
  opacity: 0.1;
  margin-top: 7vw;
}

.row_fst>img:nth-child(3) {
  width: 6.354vw;
  border-radius: 1vw;
  opacity: 0.1;
}

.row_fst>img:nth-child(4) {
  width: 12.76vw;
  border-radius: 1vw;
}


.row_bst>img:nth-child(1) {
  width: 12.76vw;
  border-radius: 1vw;
}

.row_bst>img:nth-child(2) {
  width: 8.333vw;
  border-radius: 1vw;
  margin-top: 9vw;
}

.row_bst>img:nth-child(3) {
  width: 9.792vw;
  border-radius: 1vw;
  opacity: 0.3;
  margin-top: 4vw;
}

.row_bst>img:nth-child(4) {
  width: 8.333vw;
  border-radius: 1vw;
}

.row_bst>img:nth-child(5) {
  width: 8.854vw;
  border-radius: 1vw;
  opacity: 0.1;
  margin-top: 10vw;
}

.section_two {
  min-height: 30vw;
  overflow: hidden;
  position: relative;
}

.section_two:before,
.section_two:after {
  content: '';
  background: radial-gradient(#ffd9425e, #00000000, #00000000);
  aspect-ratio: 1.5/1;
  display: block;
  width: 60vw;
  position: absolute;
  left: -35vw;
  animation: fade_light 10s infinite linear;
}

.section_two:after {
  left: inherit;
  right: -35vw;
}

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

  50% {
    opacity: 0.2;
  }

  100% {
    opacity: 1;
  }
}


/* section_three css  */
.section_three {
  position: relative;
  /* padding-top: 15vw; */

}

.card_yellow_diamond {
  background: url('../images/1102.webp') no-repeat;
}

.card_blue_diamond {
  background: url('../images/1103.webp') no-repeat;
}

.card_yellow_diamond,
.card_blue_diamond {
  background-size: cover;
  width: 27vw;
  height: 32vw;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  border-radius: 1.5vw;
  border: 1px solid #3f3f3f31;
  padding: 1.5vw;
  position: relative;
  overflow: hidden;
  transition: 0.5s ease;
}
.card_yellow_diamond.active,
.card_blue_diamond.active {
  height: 45vw;
}
.row_card{
  display: flex;
  align-items: center;
  gap: 1.5vw;
  margin-top: 2.5vw;
}
.card_yellow_diamond:after,
.card_blue_diamond:after {
  position: absolute;
  inset: 0;
  content: '';
  display: block;
  background: linear-gradient(-90deg, #0000007a, 30%, #000);
  transition: 0.5s ease;
  mix-blend-mode: plus-lighter;
}
.card_yellow_diamond:hover:after{
  background-color: #ff951cdc;
}
.card_blue_diamond:hover:after{
  background-color: #2F82FF;
}
.dia_cont>img {
  height: 20vw;
  margin: 0 auto;
  display: block;
  position: relative;
  z-index: 2;
}

.dia_cont>h3 {
  font-size: 3vw;
  font-weight: 800;
  color: #ffffffbf;
  text-align: center;
  margin-top: -4vw;
  position: relative;
  z-index: 2;
}

.dia_cont>p {
  font-size: 1.2vw;
  font-weight: 300;
  color: #ffffffbf;
  margin-top: 0.8vw;
  text-align: center;
  position: relative;
  z-index: 2;
  max-width: 20vw;
  line-height: 1.3;
}

.card_yellow_diamond>a,
.card_blue_diamond>a {
  padding: 1vw;
  border: none;
  font-size: 0.8vw;
  border-radius: 0.5vw;
  cursor: pointer;
  transition: 0.4s;
  background: transparent;
  border: 1px solid #fff;
  color: #fff;
  display: block;
  width: 100%;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  position: relative;
  z-index: 2;
  margin-top: 3vw;
}
.card_yellow_diamond:hover >a,
.card_blue_diamond:hover >a {
  background: #fff;
  color: #000;
}

.container_feature{
  display: flex;
  flex-wrap: wrap;
  gap: 1vw;
  justify-content: center;
  align-items: center;
  margin-top: 4vw;
  position: relative;
}

.container_feature:after{
  content: '';
  position: absolute;
  background: linear-gradient(#ffffff00,30%, #0B0B0B);
  display: block;
  bottom: 0;
  left: 0;
  right: 0;
  aspect-ratio: 3/1;
}
.card_track {
  background: #17171C;
  border-radius: 1.3vw;
  overflow: hidden;
  border: 1px solid #ffffff27;
  flex-basis: 22%;
}
.card_track>img {
  width: 100%;
}
.card_track h3 {
  font-size: 1.1vw;
  color: #fff;
  padding: 1vw;
  border-bottom: 1px solid #ffffff27;
}
.card_track p {
  font-size: 1vw;
  color: #898C9E;
  padding: 1vw;
  line-height: 1.3;
}
.card_track .link {
  padding: 1vw;
}
.card_track .link>a {
  border: 1px solid #ffffff27;
  border-radius: 0.6vw;
  color: #fff;
  font-size: 1vw;
  font-weight: 500;
  width: 100%;
  display: block;
  padding: 1vw;
  text-align: center;
  transition: 0.5s ease;
}
.btn_for_feature{
  margin-top: -5vw;
  z-index: 3;
  position: relative;
}
.dia_featt{
  display: flex;
  flex-direction: column;
  text-align: center;
  width: 100%;
  margin-top: 2vw;
  position: relative;
  z-index: 2;
  transition: 0.5s ease;
  opacity: 0;
}
.card_yellow_diamond.active .dia_featt,
.card_blue_diamond.active .dia_featt{
  opacity: 1;
}
.dia_featt li {
  border-top: 1px solid #dddddd57;
  padding: 1.2vw;
  font-size: 1vw;
  font-weight: 500;
  color: #fff;
  line-height: 1.5;
}
.dia_featt li>span{
  opacity: 0.5;
}
.drop_button_feat{
  width: fit-content;
  padding: 1vw;
  font-size: 0.8vw;
  font-weight: 700;
  border-radius: 0.5vw;
  color: #fff;
  transition: 0.4s;
  background: transparent;
  border: 1px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1vw;
  text-transform: uppercase;
  margin-top: 3vw;
}
.drop_button_feat >i{
  transition: 0.5s ease;
  transform-origin: center;
}
.drop_button_feat.rotate >i{
  transform: rotate(180deg);
}
.section_center{
  position: relative;
}
@media (max-width:992px) {
  .hero-container h3 {
    font-size: 1.5vw;
  }
  .hero-container h1 {
    font-size: 5.5vw;
  }
  .hero_section {
    min-height: 60vw;
  }
  .hero-container {
    padding: 8vw 1vw; 
  }
  .card_yellow_diamond, .card_blue_diamond {
    width: 38vw;
    height: 45vw;
  }
  .card_yellow_diamond.active, .card_blue_diamond.active {
    height: 62vw;
  }
  .dia_cont>img {
    height: 28vw;
  }
  .dia_featt li {
    font-size: 1.4vw;
  }
  .card_yellow_diamond>a, .card_blue_diamond>a,
  .drop_button_feat,
  .card_track .link>a {
    font-size: 1.2vw;
    padding: 1.3vw;
    margin-top: 5vw;
  }
  .card_track .link>a{
    margin-top: 0;
  }
  .dia_cont>h3 {
    font-size: 3.4vw;
  }
  .dia_cont>p {
    font-size: 1.5vw;
    max-width: 30vw;
  }
  .card_track {
    flex-basis: 24%;
  }
  .card_track h3 {
    font-size: 1.5vw;
    padding: 1.2vw;
  }
  .card_track p {
    font-size: 1.2vw;
  }
}

@media (max-width:768px) {
  .row_card {
    flex-direction: column;
  }
  .card_yellow_diamond, .card_blue_diamond {
    width: 52vw;
    height: 62vw;
    padding: 0 3.5vw;
    border-radius: 2.5vw;
  }
  .dia_cont>img {
    height: 40vw;
  }
  .dia_cont>h3 {
    font-size: 6vw;
    margin-top: -7vw;
  }
  .dia_cont>p{
    margin: 0 auto;
    margin-top: 1vw;
    font-size: 2vw;
    max-width: 100%;
  }
  .card_yellow_diamond>a, .card_blue_diamond>a, .drop_button_feat, .card_track .link>a {
    font-size: 1.8vw;
    padding: 2vw;
    margin-top: 5vw;
  }
  .dia_featt li {
    font-size: 2vw;
    padding: 2vw 1vw;
  }
  .dia_featt {
    margin-top: 4vw;
  }
  .card_yellow_diamond.active, .card_blue_diamond.active {
    height: 85vw;
  }
  .card_track {
    flex-basis: 38%;
    border-radius: 2vw;
  }
  .card_track h3 {
    font-size: 2.5vw;
    padding: 2.2vw;
  }
  .card_track p {
    font-size: 1.8vw;
  }
  .container_feature:after {
    aspect-ratio: 1 / 2;
  }
}
@media (max-width:500px) {
  .hero-container h1 {
    font-size: 9vw;
    max-width: 75vw;
  }
  .hero-container h3 {
    font-size: 2.5vw;
  }
  .hero-container {
    padding: 10vw 1vw;
  }
  .hero-container{
    gap: 5vw;
  }
  .row_fst>img:nth-child(1) {
    width: 14vw;
    border-radius: 1.5vw;
    margin-left: 6vw;
  }
  .row_bst{
    margin-top: 3vw;
  }
  .row_fst>img:nth-child(3),
  .row_bst>img:nth-child(3),
  .row_bst>img:nth-child(4){
    display: none;
  }
  .row_bst>img:nth-child(2) {
    width: 15vw;
    border-radius: 1.5vw;
  }
  .dia_cont>img {
    height: 195px;
  }
  .dia_cont>h3 {
    font-size: 2.5rem;
    margin-top: -3rem;
  }
  .dia_cont>p {
    margin-top: 16px;
    font-size: 16px;
  }
  .card_yellow_diamond>a, .card_blue_diamond>a, .drop_button_feat, .card_track .link>a {
    font-size: 12px;
    padding: 1rem;
    border-radius: 10px;
  }
  .card_yellow_diamond, .card_blue_diamond {
    max-width: 350px;
    width: 100%;
    height: 400px;
    padding: 0 1rem;
    border-radius: 20px;
  }
  .dia_featt li {
    font-size: 13px;
    padding: 1rem 10px;
  }
  .card_yellow_diamond.active, .card_blue_diamond.active {
    height: 32rem;
  }
  .card_track {
    flex-basis: 100%;
    border-radius: 20px;
    max-width: 350px;
  }
  .card_track h3 {
    font-size: 18px;
    padding: 16px;
  }
  .card_track p {
    font-size: 14px;
    padding: 16px;
  }
  .card_track .link{
    padding: 1rem;
  }
  .container_feature{
    margin-top: 3rem;
    gap: 1.2rem;
  }
} 

.team-container {
    display: flex;
    justify-content: center;
    gap: 1.2vw;
    flex-wrap: wrap;
    padding: 2vw;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .team-card {
    flex-basis: 32%;
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .team-card img {
    width: 100%;
    height: auto;
    margin-bottom: 1vw;
    border-radius: 1.2vw;
  }
  
  .team-card h3 {
    font-size: 1.5vw;
    margin: 0.8vw 0;
    color: #ffdd57;
  }
  
  .team-card p {
    font-size: 1vw;
    color: #bfbfbf;
    margin-bottom: 1vw;
  }
  

  @media (max-width:767px) {
    .team-card {
        flex-basis: 46%;
    }
    .team-container {
        gap: 1rem;
        padding: 1rem;
    }
    .team-card img {
        margin-bottom: 1rem;
        border-radius: 16px;
    }
    .team-card h3 {
        font-size: 22px;
        margin: 0;
        margin-bottom: 13px;
    }
    .team-card p {
        font-size: 16px;
        margin-bottom: 2rem;
    }
  }
  
  @media (max-width:575px) {
    .team-card h3 {
        font-size: 18px;
    }
    .team-card p {
        font-size: 12px;
    }
  }

  @media (max-width:500px) {
    .team-card {
        flex-basis: 100%;
    }
    .team-card h3 {
        font-size: 20px;
    }
    .team-card p {
        font-size: 16px;
    }
  }

/* Search Area css */
.Search_box {
    max-width: 700px;
    width: 100%;
    border: 1px solid #ffffff7a;
    border-radius: 50px;
    display: flex;
    align-items: center;
    margin: 0 auto;
    margin-top: 1rem;
    padding: 5px;
}

.Search_box button {
    background: #FFDE59;
    display: inline-block;
    width: auto;
    height: 46px;
    border-radius: 36px;
    border: 0px;
    padding: 13px 20px;
    cursor: pointer;
    font-weight: normal;
    -webkit-appearance: none;
    color: #000;
}

.Search_box button>img {
    height: 24px;
}

.Search_box input {
    background: transparent;
    border: none;
    outline: none;
    width: 100%;
    padding: 0 0 0 1rem;
    font-size: 16px;
    color: #fff;
}

.tags {
    width: fit-content;
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 0;
    line-height: 1;
    padding: 9px 12px;
    transition: 0.4s;
    border: 1px solid #fff;
    border-radius: 50px;
    opacity: 0.6;
}

.tags.active,
.tags:hover {
    background: #FFDE59;
    border-color: #FFDE59;
    color: #000;
    opacity: 1; 
}

.tag-area {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 0.3rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.search_section {
    padding-top: 6rem;
}

.head1 {
    color: #fff;
    font-family: 'Heading Now Trial 65';
    font-size: 56px;
    line-height: 1.2;
    text-transform: uppercase;
    margin: 0px;
    text-align: center;
    margin-top: 5px;
}

.head1 span {
    color: #848484;
    display: block;
}

.head2 {
    color: #9A9A9A;
    font-weight: normal;
    font-size: 18px;
    line-height: 22px;
    padding: 0px 0px 5px 0px;
    margin: 0px;
    text-align: center;
}

/* post css */
.post_card_area {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
    gap: 2rem;
}

.mainPost {
    background: #eeeeee;
    flex-basis: 31.5%;
    transition: 0.5s ease;
}

.mainPost:hover {
    border-radius: 30px;
    box-shadow: 0 0 30px #ffffff50;
}

.post_card {
    width: 100%;
    aspect-ratio: 1 / 1;
    position: relative;
    overflow: hidden;
    transition: transform 0.5s ease-out;
}

.post_logo {
    width: 50%;
    position: absolute;
    z-index: 1;
    top: 0px;
    margin: 0px auto;
    border-bottom-right-radius: 20px;
    border-bottom-left-radius: 20px;
    left: 25%;
    background: rgba(0, 0, 0, 0.1);
    padding: 12px;
    backdrop-filter: blur(8px);
    text-align: center;
}

.post_logo>img {
    height: 30px;
}

.post_card>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s ease;
}

.post_title {
    padding: 1rem;
}

.post_title h3 {
    color: #000;
    font-weight: 500;
    font-size: 26px;
    line-height: 1.2;
}

.post_title span {
    color: #9A9A9A;
    font-size: 16px;
    line-height: 1.2;
    margin-top: 5px;
}

.post_title p {
    color: #000;
    font-size: 16px;
    line-height: 1.3;
    margin-top: 5px;
}

.post_card .Post_hover {
    position: absolute;
    left: 10px;
    right: 10px;
    bottom: 10px;
    border-radius: 30px;
    background: #ffffffd0;
    backdrop-filter: blur(6px);
    padding: 1rem;
    transition: 0.5s ease;
    transform: translateY(120%);
    z-index: 2;
    overflow: hidden;
}

.mainPost:hover .post_card>img {
    border-radius: 30px !important;
}

.mainPost:hover .Post_hover {
    transform: translateY(0);
}

.post_card .Post_hover h2 {
    color: #000;
    font-size: 55px;
    font-weight: 600;
}

.post_card .Post_hover p {
    color: #000;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.3;
}

.ghtf_row {
    display: flex;
    align-items: center;
    width: 100%;
    gap: 1rem;
    margin-top: 1rem;
}

.post_card .Post_hover a {
    width: 100%;
    color: #fff;
    font-size: 20px;
    font-weight: 400;
    padding: 12px 20px;
    border-radius: 50px;
    background: #fff;
    color: #000;
    display: block;
    transition: 0.3s ease;
    text-align: center;
    box-shadow: 0 0 15px #00000027;
}

.post_card .Post_hover a:hover {
    background: #000;
    color: #fff;
}

.post_card>span {
    color: #fff;
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    font-size: 20px;
    text-shadow: 1px 1px #0000004b;
    mix-blend-mode: difference;
}

.ad_box {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    background: #0000007a;
    padding: 2rem;
}

.ad_box h3 {
    color: #fff;
    font-size: 40px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
}

.ad_box h2 {
    color: #00DD4B;
    font-size: 40px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    line-height: 1.3;
}

.ad_box .shedule_row {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #fff;
    font-size: 26px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    line-height: 1.3;
}

.ad_box .shedule_row>img {
    height: 32px;
}

.ad_box a {
    background: #00DD4B;
    color: #000;
    font-size: 35px;
    display: block;
    width: 100%;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    line-height: 1.3;
    padding: 12px;
    border-radius: 10px;
}

.countdown {
    color: #fff;
}

.countdown li {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 20px;
}

.countdown ul {
    display: flex;
    align-items: center;
    gap: 5px;
}

.countdown ul span {
    font-size: 55px;

}

@media (max-width: 1680px) {
    .post_card .Post_hover h2 {
        font-size: 44px;
    }


    .post_card .Post_hover a {
        font-size: 18px;
        padding: 9px 20px;
    }

    .btn-row a {
        font-size: 16px;
    }

    .ad_box h2 {
        font-size: 32px;
    }

    .ad_box h3 {
        font-size: 32px;
    }

    .ad_box .shedule_row {
        font-size: 20px;
    }

    .ad_box .shedule_row>img {
        height: 28px;
    }

    .ad_box a {
        font-size: 30px;
    }

    .countdown li {
        font-size: 14px;
    }

    .countdown ul span {
        font-size: 42px;
    }
}

@media (max-width: 1600px) {
    .header_u {
        padding: 1.5rem 3rem;
    }

    .post_card .Post_hover h2 {
        font-size: 38px;
    }

    .post_card .Post_hover a {
        font-size: 16px;
        padding: 9px 20px;
    }

    .logo img {
        height: 30px;
    }
}

@media (max-width: 1440px) {
    .head1 {
        font-size: 52px;
    }

    .mainPost {
        flex-basis: 31%;
    }


    .ad_box>img {
        height: 16px;
    }

    .ad_box h2,
    .ad_box h3 {
        font-size: 26px;
    }

    .ad_box a {
        font-size: 20px;
    }

    .countdown ul span {
        font-size: 32px;
    }
}

@media (max-width: 1366px) {

    .post_logo>img {
        height: 22px;
    }

    .post_title h3 {
        font-size: 22px;
    }

    .post_title span,
    .post_title p {
        font-size: 14px;
    }

    .mainPost:hover .post_card>img,
    .post_card .Post_hover,
    .mainPost:hover {
        border-radius: 20px !important;
    }

    .post_card .Post_hover p {
        font-size: 14px;
    }
}

@media (max-width: 1280px) {
    .post_card .Post_hover h2 {
        font-size: 32px;
    }

    .post_card .Post_hover p {
        font-size: 12px;
    }

    .post_card .Post_hover a {
        font-size: 12px;
        padding: 8px 16px;
    }

    .btn-row a {
        font-size: 14px;
    }

    .logo_area>img {
        height: 16px;
    }

    .ham_u>img {
        height: 16px;
    }

    .search_section {
        padding-top: 4rem;
    }
    .Search_box button>img {
        height: 18px;
    }

    .Search_box button {
        height: auto;
        font-size: 13px;
    }

    .header_u .col-8 .logo_area {
        font-size: 13px;
    }

    .header_u {
        padding: 1rem 2rem;
    }
}

@media (max-width: 1200px) {
    .ad_box>img {
        height: 12px;
    }

    .ad_box h2,
    .ad_box h3 {
        font-size: 22px;
    }

    .ad_box .shedule_row {
        font-size: 14px;
    }

    .countdown ul span {
        font-size: 24px;
    }

    .countdown li {
        font-size: 10px;
    }

    .head1 {
        font-size: 42px;
    }

    .tags {
        font-size: 12px;
        padding: 7px 12px;
    }

    .post_logo>img {
        height: 18px;
    }
}

@media (max-width: 1080px) {
    .post_card .Post_hover {
        left: 5px;
        right: 5px;
        bottom: 5px;
    }
}

@media (max-width: 991px) {

    .post_card_area {
        gap: 1rem;
        padding: 0 1rem;
    }

    .post_card {
        flex-basis: 45%;
    }

    .Search_box {
        max-width: 620px;
    }

    .Search_box input {
        font-size: 14px;
    }

    .header_u .col-8 .logo_area {
        font-size: 11px;
    }

    .header_u .col-8 .logo_area>img {
        height: 18px;
    }

    .mainPost {
        flex-basis: 47%;
    }

    .logo img {
        height: 24px;
    }
    .tag-area{
        gap: 10px;
    }
}

@media (max-width: 800px) {
    .hideTab {
        display: none;
    }

    .hideDesk {
        display: block;
    }

    .search_section {
        padding: 4rem 1rem 0 1rem;
    }

    .ad_box {
        padding: 1rem;
    }

    .logo_area {
        display: none !important;
    }

    .logo_area.logo_u {
        display: block !important;
    }

    .navLinks {
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }

    .navLinks a {
        font-size: 16px;
        color: #000;
        font-weight: 600;
    }

    .navLinks a.active {
        color: #00DD4B;
    }
}

@media (max-width: 767px) {
    .post_card {
        flex-basis: 48%;
    }

    .post_card .Post_hover h2 {
        font-size: 26px;
    }
}

@media (max-width: 620px) {
    .post_card {
        max-width: 400px;
        flex-basis: 100%;
    }
}

@media (max-width: 575px) {

    .tag-area {
        overflow: auto hidden;
        flex-wrap: nowrap;
        justify-content: flex-start;
    }

    .tag-area::-webkit-scrollbar {
        display: none;
    }

    .tags {
        text-wrap: nowrap;
    }

    .mainPost {
        flex-basis: 100%;
        max-width: 350px;
    }
}

@media (max-width: 500px) {
    .header_u {
        padding: 1rem;
    }
    .head1 {
        font-size: 30px;
        max-width: 320px;
        margin: 0 auto;
    }
    .post_card_area {
        padding: 0 ;
    }
}
@media (max-width: 375px) {
}