@import url("https://use.typekit.net/fyc3zvm.css");
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root{
    --black--: #000;
    --orange--: #f7ab40;
}

a{
    text-decoration: none !important;
    font-size: 16px;
    line-height: 1;
    color: #000;
}

ul{
    margin: 0;
    padding: 0;
    list-style: none;
}

body{
    font-family: "Roboto", sans-serif;
}

h1,h2,h3,h4,h5,h6{
    font-family: "articulat-cf", sans-serif;
}

p{
    font-size: 16px;
    margin: 0;
}

section{
    overflow: hidden;
    /* position: relative; */
    z-index: 3;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

.c-scrollbar{
    opacity: 1;
}

.c-scrollbar_thumb {
    /* background-color: #fff; */
}

header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 2%;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99;
    z-index: 1000;
    transform: translateY(0);
    transition: transform 0.3s ease;
}

header.active{
    background: #020022;
}

header .menu_btn{
    display: flex;
    flex-direction: column;
    gap: 4px;
    z-index: 100;
    cursor: pointer;
}
  
header .menu_btn span{
    width: 30px;
    height: 3px;
    background: #fff;
    display: inline-block;
    transition: 0.3s;
}
  
header .menu_btn.active span{
    background: none;
}
  
header .menu_btn span.cross{
    position: relative;
}
  
header .menu_btn span.cross::before,header .menu_btn span.cross::after{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: #fff;
    /* transform: rotate(-45deg); */
    opacity: 0;
    transition: 0.3s;
}
  
header .menu_btn.active span.cross::before{
    transform: rotate(-45deg);
    opacity: 1;
}
  
header .menu_btn.active span.cross::after{
    transform: rotate(45deg); 
    opacity: 1;
}

header .header{
    display: flex;
    align-items: center;
    gap: 30px;
}

header .header nav ul{
    display: flex;
    gap: 30px;
}

header .header nav ul li a{
    color: #fff;
    font-size: 14px;
    padding: 33px 0;
    transition: 0.3s;
}

header .header nav ul li a:hover{
    color: var(--orange--);
}

header .header .call_num a{
    font-size: 14px;
    color: #fff;
}

header .header nav ul li.drop_menu:hover > a{
    color: var(--orange--);
}

header .header nav ul li.drop_menu > a::after{
    content: '\f107';
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: #fff;
    padding-left: 5px;
}

header .header nav ul li.drop_menu:hover > a::after{
    content: '\f106';
    color: var(--orange--);
}

header .header nav ul li.drop_menu .mega_menu{
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    display: flex;
    background: #fff;
    padding: 20px 5%;
    gap: 40px;
    border-top: 4px solid var(--orange--);
    transform: rotateX(90deg);
    transform-origin: top;
    transition: 0.3s ease-in-out;
}

header .header nav ul li.drop_menu:hover .mega_menu{
    transform: rotateX(0);
    transition: 0.5s ease-in-out;
}

header .header nav ul li.drop_menu .mega_menu .menu_head{
    width: 30%;
}

header .header nav ul li.drop_menu .mega_menu .menu_head img{
    aspect-ratio: 2/1;
    object-fit: cover;
    border-radius: 15px;
}

header .header nav ul li.drop_menu .mega_menu ul{
    display: grid;
    grid-template-rows: repeat(6, min-content);
    grid-auto-flow: column;
    gap: 20px 60px;
}

header .header nav ul li.drop_menu .mega_menu ul li a{
    padding: 0;
    border-bottom: 1px solid var(--black--);
    padding-bottom: 2px;
    color: #020022;
}


header .header nav ul li.drop_menu .drop_menu_new{
    position: absolute;
    top: 100%;
    /* left: 0; */
    width: auto;
    display: flex;
    background: #fff;
    padding: 20px 2%;
    gap: 40px;
    border-top: 4px solid var(--orange--);
    transform: rotateX(90deg);
    transform-origin: top;
    transition: 0.3s ease-in-out;
}

header .header nav ul li.drop_menu:hover .drop_menu_new{
    transform: rotateX(0);
    transition: 0.5s ease-in-out;
}

header .header nav ul li.drop_menu .drop_menu_new ul{
    display: flex;
    flex-direction: column;
    gap: 20px 60px;
}

header .header nav ul li.drop_menu .drop_menu_new ul li a{
    padding: 0;
    border-bottom: 1px solid var(--black--);
    padding-bottom: 2px;
    color: #020022;
}

header .header .menu-btn{
    display: none;
    flex-direction: column;
    gap: 5px;
    margin: auto 0;
    cursor: pointer;
}
header .header .menu-btn span{
    display: inline-block;
    width: 30px;
    height: 2px;
    /* background: #0c2d35; */
    /* background: #fff; */
    background: #fff;
}

header.active .menu-btn span{
    background: #fff;
}

header .header .menu-btn.active span{
    background: none;
}

header .header .menu-btn span:nth-child(1){
    width: 50%;
    transition: 0.3s;
}
header .header .menu-btn:hover span:nth-child(1){
    width: 100%;
}
header .header .menu-btn span:nth-child(2){
    position: relative;
}
header .header .menu-btn span:nth-child(2)::before, header .header .menu-btn span:nth-child(2)::after{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    transform: rotate(0);
    background: #fff;
    /* background: #fff; */
    transition: 0.5s ease-in-out;
}

header.active .menu-btn span:nth-child(2)::before, header.active .menu-btn span:nth-child(2)::after{
    background: #fff;
}
header .header .menu-btn.active span:nth-child(2)::before{
    transform: rotate(-45deg);
    opacity: 1;
}
header .header .menu-btn.active span:nth-child(2)::after{
    transform: rotate(45deg);
    opacity: 1;
}
header .header .menu-btn span:nth-child(3){
    width: 50%;
    transition: 0.3s;
    margin-left: auto;
}

header .header .menu-btn:hover span:nth-child(3){
    width: 100%;
}

header .header .mobile_menu{
    position: fixed;
    height: 100vh;
    width: 300px;
    right: 0;
    top: 0;
    background: #fff;
    overflow: auto;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    z-index: 99;
    transform: translateX(100%);
    transition: 0.5s;
}

header .header .mobile_menu.active{
    transform: translateX(0);
}

header .header .mobile_menu > ul{
    padding: 10px;
}

header .header .mobile_menu ul li a{
    display: block;
}

header .header .mobile_menu > ul > li > a{
    padding: 10px 20px;
}

header .header .mobile_menu > ul > li > a.drop_menu_btn.active{
    background: var(--orange--);
    color: #fff;
    position: relative;
}

header .header .mobile_menu ul li.drop_menu > a{
    display: flex;
    justify-content: space-between;
}

header .header .mobile_menu ul li.drop_menu > a::after{
    content: '\f107';
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: #FF1E21;
    padding-left: 5px;
}

header .header .mobile_menu ul li.drop_menu > a.active::after{
    content: '\f106';
    color: #fff;
}

header .header .mobile_menu > ul > li > a:hover{
    color: var(--dark-brown--);
}


header .header .mobile_menu > ul > li{
    border-bottom: 1px solid var(--orange--);
}

header .header .mobile_menu > ul > li:last-child{
    border: none;
}

header .header .mobile_menu .connect_btn{
    display: none; 
}

header .header .mobile_menu .mega_menu .menu_head{
    display: none;
}

header .header .mobile_menu .mega_menu .menu ul, header .header .mobile_menu .drop_menu_new .menu ul{
    padding: 10px 20px;
    border: 1px solid var(--orange--);
}

header .header .mobile_menu .mega_menu .menu ul li, header .header .mobile_menu .drop_menu_new .menu ul li{
    margin-bottom: 10px;
}

header .header .mobile_menu .mega_menu .menu ul li a, header .header .mobile_menu .drop_menu_new .menu ul li a{
    color: var(--brown--);
}

header .header .mobile_menu .mega_menu .menu ul li a:hover{
    /* color: var(--brown--); */
}

header .header .mobile_menu .mega_menu, header .header .mobile_menu .drop_menu_new{
    display: none;
}

.mobile_menu .nav_close_btn{
    padding: 10px 20px;
    border-bottom: 1px solid #000;
    margin-bottom: 20px;
    text-align: end;
}

.mobile_menu .nav_close_btn a{
    font-size: 24px
}

.banner_bg{
    padding-bottom: 100px;
    /* border-radius: 0 0 500px 500px; */
    /* clip-path: circle(88.7% at 50% 0%); */
    position: relative;
    overflow: hidden;
    clip-path: ellipse(80% 54% at 50% 41%);
    background: #000 url(../images/banner_img_bg.svg) no-repeat;
    background-size: 50% 50%;
    background-position: center center;
}

.banner_bg .banner_bg_shape{
    position: absolute;
    z-index: -1;
    top: 50%;
    transform: translateY(-50%);
    left: 0%;
    width: 35%;
}

/* .banner_bg::before{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: contain;
    background-position: center center;
    left: 0;
    top: 0;
    z-index: -1;
} */

.banner{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 80px;
    padding-top: 170px;
    /* background: #000; */
}

.banner .inner_content{
    width: 100%;
    max-width: 850px;
    padding: 20px;
    text-align: center;
}

.banner .inner_content h1{
    font-size: 3.5vw;
    font-weight: 700;
    background: linear-gradient(115deg, #77973b, #ffa9a9, #0eca91);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: linear_gradient 5s linear infinite ;
    background-size: 200% auto;
}

@keyframes linear_gradient{
    /* 0%{
        background-position: 200% center;
    } */
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.banner .inner_content p{
    font-size: 18px;
    font-weight: 500;
    width: 100%;
    max-width: 600px;
    text-align: center;
    margin: 0 auto;
    color: #fff;
}

.templates{
    display: flex;
    padding: 0 10px;
    gap: 20px;
    /* background: #000; */
}

.templates a img{
    border-radius: 20px;
}

.templates a:nth-child(even){
    margin-top: 80px;
}

.split_heading_bg{
    background: url(../images/rectangle_gradiant_bg.svg) no-repeat;
    background-position: 100%;
    background-size: 50%;
}

.client_logo {
    border: 2px solid #eee;
    border-radius: 10px;
    padding: 10px;
}

.client_logo img{
    /* filter: grayscale(100%); */
    width: 100%;
    aspect-ratio: 5 / 2;
    object-fit: contain;
}

.client_logo_more{
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
}

.client_logo_more a{
    display: inline-block;
    font-weight: 600;
    font-size: 20px;
    transition: 0.3s;
}

.client_logo_more a i{
    font-size: 16px;
}

.client_logo_more a:hover{
    color: var(--orange--);
}

.heading h2{
    font-size: 42px;
    font-weight: 700;
}

.heading h2 span{
    color: var(--orange--);
}

#our_work{
    position: relative;
    width: 100%;
    height: 100vh;
}

.work{
    position: relative;
}

.work_1{
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}

.work img{
    width: 100%;
    height: 100vh;
    object-fit: cover;
}

.work .content{
    position: absolute;
    left: 10%;
    bottom: 10%;
    width: 450px;
}

.work .content p{
    font-size: 24px;
}

.work .content h3{
    font-size: 42px;
    font-weight: 600;
}

.read_more{
    display: inline-block;
    padding: 10px 20px;
    background: var(--orange--);
    border: 1px solid var(--orange--);
    color: #fff;
    font-weight: 500;
    transition: 0.3s;
}

.read_more:hover{
    background: none;
    color: #fff;
}

.view_more_btn{
    display: inline-block;
    padding: 15px 20px;
    /* border: 1px solid transparent; */
    background: linear-gradient(90deg, #F06C2C, #F8C025);
    border-radius: 50px;
    color: #fff;
    line-height: 1;
    font-weight: 600;
    position: relative;
    z-index: 1;
    min-width: 140px;
    transition: 0.5s ease-in-out;
    text-align: center;
    box-shadow: #F3962B 0px 0px 10px;
}

.view_more_btn:hover{
    color: #fff;
    /* border: 1px solid var(--orange--); */
    /* background: none; */
    /* border-radius: 2px; */
}

.start_project{
    display: inline-block;
    padding: 15px 20px;
    border: 1px solid #fff;
    color: #fff;
    line-height: 1;
    font-weight: 600;
    border-radius: 50px;
    transition: 0.5s ease-in-out;
}

.start_project.start_project_black{
    border: 1px solid #000;
    color: #000;
}

.start_project:hover{
    color: #000 !important;
    background: #fff;
    /* border-radius: 2px; */
}

.start_project.start_project_black:hover{
    color: #fff !important;
    background: #000;
}

.split_heading h2{
    font-size: 9vw;
    font-weight: 800;
    text-align: center;
    -webkit-text-stroke: 2px #000;
    color: transparent;
}

.split_heading h2 span{
    display: inline-block;
}

#split_heading_next{
    position: relative;
    z-index: 5;
}

.border_curve{
    border-radius: 100px 100px 0 0;
}

.services_bg{
    /* background: #000; */
    background: #020022;
}

.border_heading h3{
    font-size: 9vw;
    font-weight: 800;
    -webkit-text-stroke: 1px #ffffffb3;
    color: transparent;
}

.border_heading h3.border_black{
    -webkit-text-stroke: 1.5px #dcdcdc; 
}

.service_stick .border_heading h3{
    transform: translateX(-15%);
}

.heading_gradient h3{
    background: linear-gradient(90deg, #F06C2C 0%, #F8C025 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    font-size: 22px;
    font-weight: 900;
}

.heading_gradient h2{
    font-size: 55px;
    font-weight: 900;
}

.heading_gradient h2 span{
    background: linear-gradient(90deg, #F06C2C 0%, #F8C025 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.content p{
    font-size: 18px;
    font-weight: 500;
}

.service_card{
    width: 100%;
    display: flex;
    gap: 40px;
    background: #090e36;
    padding: 40px 20px;
    border-radius: 20px;
    position: relative;
    transition: 0.5s ease-in-out;
}

.service_card.active{
    background: #fff;
}

.service_card .service_card_img{
    width: 60px;
    flex: 0 0 auto;
}

.service_card .service_card_content h3{
    font-size: 24px;
    font-weight: 800;
    color: #fff;
    transition: 0.5s ease-in-out;
}

.service_card.active .service_card_content h3{
    color: #000;
}

.service_card .service_card_content p{
    color: #fff;
    transition: 0.5s ease-in-out;
}

.service_card.active .service_card_content p{
    color: #000;
}

.service_card .service_card_content a{
    color: #fff;
    transition: 0.5s ease-in-out;
}

.service_card.active .service_card_content a{
    color: #000;
}

.service_card .service_card_content a:hover{
    color: var(--orange--);
}

.service_card .service_card_content ul.service_card_sp{
    display: flex;
    gap: 10px;
}

.service_card .service_card_content ul.service_card_sp li{
    padding: 5px 12px;
    color: #fff;
    border: 1px solid #fff;
    border-radius: 50px;
    font-size: 14px;
    transition: 0.5s ease-in-out;
}

.service_card.active .service_card_content ul.service_card_sp li{
    color: #000;
    border: 1px solid #000;
}

.service_card .service_card_content .num h4{
    font-size: 120px;
    -webkit-text-stroke: 1px #fff;
    color: transparent;
    font-weight: 900;
    position: absolute;
    bottom: -10px;
    right: 20px;
    transition: 0.5s ease-in-out;
}

.service_card.active .service_card_content .num h4{
    -webkit-text-stroke: 1px #000;
}

.about_us_black{
    background: #000;
}

.about_us_bg{
    position: relative;
    background: #fff;
}

/* .about_us_bg::before{
    content: '';
    position: absolute;
    background: #000;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: -1;
} */

.founders svg{
    width: 100%;
    height: auto;
    background: #fff;
    overflow: visible;
}

.founders svg image{
    filter: grayscale(100%);
}

.founders{
    display: flex;
}

.founders .founders_images{
    width: 20%;
    flex: 0 0 auto;
    position: relative;
}

.founders .founders_images:nth-child(1), .founders .founders_images:nth-child(5){
    z-index: 1;
}

.founders .founders_images:nth-child(2), .founders .founders_images:nth-child(4){
    z-index: 2;
}

.founders .founders_images:nth-child(3){
    z-index: 3;
}

.founders .founders_images img{
    width: 130%;
    filter: grayscale(100%);
}

.founders .founders_images.active img{
    filter: grayscale(0);
}

.founders_images .border_v{
    width: 100%;
    height: 100px;
    border-left: 2px dashed #aeaeae;
    transform: translate(60%, 10%);
    position: relative;
    opacity: 0;
    transition: 0.3s;
}

.founders_images.active .border_v{
    opacity: 1;
}

.founders_images .border_v::before{
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background: #000;
    border-radius: 50%;
    top: 0;
    left: 0;
    transform: translateX(-60%);
    opacity: 0;
    transition: 0.3s;
}

.founders_images.active .border_v::before{
    opacity: 1;
}

.founders_images .founders_info{
    display: flex;
    width: 100%;
    gap: 10px;
    transform: translateX(15%);
    opacity: 0;
    transition: 0.3s;
}

.founders_images.active .founders_info{
    opacity: 1;
}

.founders_images .founders_info img{
    width: 33px !important;
    flex: 0 0 auto;
}

.founders_images .founders_info .founder_name h3{
    font-size: 20px;
    font-weight: 900;
    margin-bottom: 0;
    white-space: nowrap;
}

.founders_images .founders_info .founder_name span{
    font-size: 16px;
    font-weight: 500;
}

.g_rev_line_bg{
    background: linear-gradient(90deg, #F06C2C -6%, #F8C025 23%); 
    padding: 10px 0;
}

.g_rev_line{
    display: flex;
    justify-content: space-between;
    gap: 10px 20px;
    flex-wrap: wrap;
    /* background: linear-gradient(90deg, #F06C2C 0%, #F8C025 100%); */
}

.g_rev_line .g_rev{
    display: flex;
    align-items: center;
    gap: 5px;
}

.g_rev_line .g_rev img{
    height: 20px;
}

.g_rev_line .g_rev p{
    font-size: 16px;
}

.our_work_bg{
    background: #020022;
    position: relative;
}

.our_work_bg > .border_heading{
    position: absolute;
    top: 20%;
    right: 10%;
    z-index: -1;
}

.our_work_slide{
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 20px;
}

.our_work_slide .our_work{
    width: 25%;
    flex: 0 0 auto;
}

.our_work_slide .our_work img{
    filter: grayscale(100%);
    transition: 0.3s;
}

.our_work_slide .our_work:hover img{
    filter: grayscale(0);
}

.big_content p{
    font-size: 28px;
    color: #fff;
    font-weight: 600;
    line-height: 1.4;
}

.heading_gradient.small_heading h2 {
    font-size: 42px;
}

.our_work_bg .our_work_mb{
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100vh;
    transform: scale(0.27) translateY(-68%);
    opacity: 0;
    /* visibility: hidden; */
    background: #020022;
    z-index: 5;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.our_work_mb .border_heading{
    transform: translateY(50%);
}

.our_work_mb_img{
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    overflow: visible !important;
}

.our_work_mb .shape{
    position: absolute;
    z-index: -1;
}

.our_work_mb .our_work_mb_shape_1{
    width: 50%;
    top: -10%;
    left: 0%;
}

.our_work_mb .our_work_mb_shape_2{
    width: 50%;
    top: 0%;
    right: 0%;
}

.counter h3{
    font-size: 42px;
    margin-bottom: 0;
    font-weight: 900;
    color: #000;
}

.counter.main_count h3{
    font-size: 12vw;
    line-height: 1;
}

.counter p{
    font-size: 22px;
    color: #000;
}

.counter.main_count .line_div{
    display: flex;
    gap: 20px;
    align-items: center;
}

.counter.main_count .line_div .line_new{
    width: 100%;
    height: 5px;
    background: #000;
}

.counter.main_count p{
    font-size: 42px;
    margin-bottom: 0;
    font-weight: 900;
    flex: 0 0 auto;
}

.start_project_content{
    background: #F8C025;
    padding: 50px;
    border-radius: 20px;
}

.start_project_content p{
    font-size: 28px;
    color: #000;
}


footer{
    padding: 0 5%;
    background: #000;
}

.footer_menu h2{
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
}

.footer_menu ul li{
    margin-bottom: 15px;
    display: flex;
    gap: 10px;
    font-weight: 400;
    line-height: 1.2;
    font-size: 18px;
    color: #fff;
}

.footer_menu ul li i{
    color: var(--orange--);
    line-height: 1.2;
    color: #fff;
}

.footer_menu ul li a{
    font-weight: 400;
    transition: 0.3s;
    font-size: 18px;
    color: #fff;
}

.footer_menu ul li a:hover{
    color: var(--orange--);
}

.bottom_footer_bg{
    padding: 20px 5%;
    background-color: #000;
}

.bottom_footer{
    display: flex;
    gap: 20px;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
}

.bottom_footer .site_map ul{
    display: flex;
    gap: 10px;
}

.bottom_footer .site_map ul li:not(:last-child){
    border-right: 1px solid #fff;
    padding-right: 10px;
}

.bottom_footer .site_map ul li a{
    font-size: 14px;
    transition: 0.3s;
    color: #fff;
}

.bottom_footer .site_map ul li a:hover{
    color: var(--orange--);
}

.bottom_footer .copy_right p{
    font-size: 14px;
    color: #fff;
} 

.social_icons ul{
    display: flex;
    gap: 10px;
}

.social_icons ul li a{
    display: block;
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    background: linear-gradient(100deg, #F06C2C 0%, #F8C025 80%);
    color: #fff;
    border: 1px solid var(--orange--);
    transition: 0.3s;
    border-radius: 5px;
}

.social_icons ul li a:hover{
    color: var(--orange--);
    background: none;
}

.inner_heading h1{
    font-size: 8vw;
    font-weight: 900;
    margin: 0;
}

.inner_heading p{
    font-size: 28px;
    font-weight: 500;
}

.inner_heading_p{
    padding-top: 140px;
}

.about_img img{
    border-radius: 50px;
    transform: perspective(400px) rotateY(14deg) translateX(10%);
}

.content_split{
    column-count: 2;
    gap: 8%
}

.v_heading h2{
    font-weight: 900;
}

.what_we_sec_bg{
    background: #020022;
}

.f_size_b{
    font-size: 13vw !important;
    margin: 0;
    line-height: 1;
    -webkit-text-stroke: 1.5px #ffffffb3 !important;
}

.book_meeting{
    height: 100%;
    display: flex;
    /* place-items: center; */
    align-items: center;
    justify-content: end;
}

.book_meeting_btn{
    border: 2px solid #F8C025;
    box-shadow: 0 0 10px #F8C025;
    color: #fff;
    border-radius: 50px;
    padding: 10px 20px;
    transition: 0.3s;
}

.book_meeting_btn:hover{
    color: #fff;
    transform: scale(1.1);
}

.youtube_card{
    background: #fff;
    padding: 30px 40px;
    border-radius: 20px;
    position: relative;
}

.youtube_card h3{
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 0;
}

.youtube_card_link{
    position: relative; 
    border-radius: 20px;
    overflow: hidden;
}

.youtube_card_link .youtube_icon{
    position: absolute;
    width: 13%;
    left: 50%;
    top: 50%;
    transform: translate(-50% , -50%);
}

.heading_beg h2{
    font-size: 42px;
    font-weight: 800;
    color: #fff;
}

.heading_beg h2 span{
    position: relative;
    z-index: 2;
}

.heading_beg h2 span::before{
    content: '';
    position: absolute;
    height: 60px;
    width: 7px;
    background: #fff;
    bottom: 84%;
    left: 2px;
    z-index: -1;
}

.year h3{
    font-size: 12vw;
    font-weight: 900;
    -webkit-text-stroke: 1px #fff;
    color: transparent;
    text-align: center;
    margin: auto 0;
    line-height: 1;
    padding-top: 20px;
}

.year_slider{
    text-align: center;
}

.year_slider .slick-arrow{
    width: 60px;
    height: 50px;
    margin: 0 auto;
    border: none;
}

.year_slider .slick-arrow.slick-disabled{
    opacity: 0.7;
}

.year_slider .slick-arrow.slick-prev{
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%); 
    background: linear-gradient(0deg, #F06C2C 0%, #F8C025 80%);
}

.year_slider .slick-arrow.slick-next{
    clip-path: polygon(0 0, 50% 100%, 100% 0); 
    background: linear-gradient(180deg, #F06C2C 0%, #F8C025 80%);
}

.year_content h4{
    font-size: 32px;
    font-weight: 900;
    color: #fff;
    position: relative;
    padding-bottom: 20px;
}

.year_content h4::before{
    content: '';
    position: absolute;
    width: 30%;
    height: 3px;
    background: #fff;
    bottom: 0;
    left: 0;
}

.the_beginning_bg{
    position: relative;
    background: #000;
}

.the_beginning_bg::before{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: url(../images/the_begining.svg) no-repeat;
    background-size: cover;
    z-index: -1;
    opacity: 0.2;
}

.breadcrumb_sec{
    padding-top: 150px;
    background: #020022;
}

.breadcrumb ul{
    display: flex;
    flex-wrap: wrap;
}

.breadcrumb ul li{
    color: #7A7A7A;
}

.breadcrumb ul li:not(:last-child):after{
    content: '\f105';
    font-weight: 900;
    font-family: "Font Awesome 6 Free";
    padding: 0 5px;
}

.breadcrumb ul li:last-child{
    color: #fff;
    font-weight: bold;
}

.breadcrumb ul li a{
    color: #7A7A7A;
}

.inner_heading_new  h1{
    font-size: 3vw;
    font-weight: 900;
    margin: 0;
}

.inner_heading_new p{
    font-size: 20px;
    font-weight: 500;
}

.bg_black{
    background: #020022;
}

.team_card{
    overflow: hidden;
    position: relative;
    z-index: 2;
}

.team_card::before{
    content: '';
    position: absolute;
    width: 100%;
    height: 100px;
    background: linear-gradient(0deg, #020022 0%, #22000000 100%);
    left: 0;
    bottom: 0;
    z-index: 3;
}

.team_card .name {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-45%);
    font-size: 200px;
    color: #00173a;
    font-weight: 800;
    z-index: -1;
}

.team_card > img{
    filter: grayscale(100%);
    transition: 0.3s;
}

.team_card:hover > img{
    filter: grayscale(0);
}

.team_card .team_info{
    display: flex;
    width: 100%;
    gap: 10px;
    /* transform: translateX(15%); */
    opacity: 0;
    transition: 0.3s;
    justify-content: center;
}

.team_card:hover .team_info{
    opacity: 1;
}

.team_card .team_info img{
    width: 33px !important;
    flex: 0 0 auto;
}

.team_card .team_info .founder_name h3{
    font-size: 20px;
    font-weight: 900;
    margin-bottom: 0;
    color: #fff;
}

.team_card .team_info .founder_name span{
    font-size: 16px;
    font-weight: 500;
    color: #fff;
}

.team_card .border_v{
    width: 100%;
    height: 100px;
    border-left: 2px dashed #aeaeae;
    transform: translate(45%, 10%);
    position: relative;
    opacity: 0;
    transition: 0.3s;
}

.team_card:hover .border_v{
    opacity: 1;
}

.team_card .border_v::before{
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 50%;
    top: 0;
    left: 0;
    transform: translateX(-60%);
    opacity: 0;
    transition: 0.3s;
}

.team_card:hover .border_v::before{
    opacity: 1;
}

.technology_heading h2{
    font-size: 42px;
    font-weight: 800;
    color: #000 !important;
}

.technology_heading:hover h2{
    color: #000 !important;
}

.technology_list{
    display: flex;
    gap: 10px 30px;
    flex-wrap: wrap;
}

.technology_list img{
    width: 70px;
    aspect-ratio: 1/1;
    object-fit: contain;
}

.technology_stack_card:not(:last-child){
    border-bottom: 1px solid #707070;
}

.technology_stack_list ul{
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.technology_stack_list ul li{
    color: #fff;
    padding: 10px 20px;
    border: 1px solid #fff;
    border-radius: 50px;
}

.technology_stack_img img{
    border-radius: 20px;
}

.technology_stack_img_bg{
    position: relative;
}

.technology_stack_img_bg::before{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: #001438;
    z-index: -1;
    border-radius: 100px 100px 0 0;
}
.technology_stack_content_bg{
    position: relative;
}

.technology_stack_content_bg::before{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0px;
    background: #001438;
    z-index: -1;
    /* border-radius: 100px 100px 0 0; */
}

.split_content{
    column-count: 2;
}

.work_process{
    padding: 10px 10px;
    margin-bottom: 20px;
}

.work_process h3{
    font-weight: 800;
    font-size: 42px;
}

.work_process h4{
    font-weight: 600;
    font-size: 28px;
}

.work_process_list{
    /* display: flex;
    flex-wrap: wrap; */
    display: grid;
    grid-auto-flow: dense;
    /* grid-template-columns: auto auto auto auto;0 */
}

/* .work_process_list:nth-child(odd){
    flex-direction: row-reverse;
} */


  

.work_process_list .work_process{
    width: 100%;
    /* grid-area: 4; */
}

.work_process_list .work_process:nth-child(2n + 1){
    border-bottom: 2px dashed #707070;
    border-right: 2px dashed #707070;
}

.work_process_list .work_process:nth-child(2n + 2){
    border-top: 2px dashed #707070;
    border-right: 2px dashed #707070;
}

.development_project_card{
    padding: 20px;
    border: 1px solid #E8E8E8;
    border-radius: 20px;
    height: auto;
}

.development_project_card h3{
    font-size: 20px;
    font-weight: 600;
}

.development_project_card p{
    margin-bottom: 10px;
}

.development_project_card img{
    border-radius: 20px;
}

.development_projects_slider{
    position: relative;
}

.development_projects_slider .slick-arrow{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: none;
    border: 1px solid #000;
    z-index: 2;
}

.development_projects_slider .slick-arrow.slick-prev{
    left: 0;
}

.development_projects_slider .slick-arrow.slick-next{
    right: 0;
}

.case_studies_card{
    padding: 20px;
    border: 1px solid #E8E8E8;
    border-radius: 10px;
    position: relative;
}

.case_studies_card a{
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 1;
}

.case_studies_card img{
    border-radius: 10px;
}

.case_studies_card h3{
    font-size: 24px;
    font-weight: 600;
}

.case_studies_card .discover_more{
    display: flex;
    justify-content: space-between;
}

.case_studies_card .discover_more i{
    color: var(--orange--);
}

.case_studies_banner_img{
    padding: 40px;
    position: relative;
    z-index: 2;
    transform: perspective(480px) rotateY(-12deg) translateX(0%);
}

.case_studies_banner_img img{
    border-radius: 20px;
}

.case_studies_banner_img::before{
    content: '';
    width: 80%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    border: 1px solid #E8E8E8;
    border-radius: 20px;
    z-index: -1;
}

.case_studies_content p strong{
    font-weight: 800;
}

.department img{
    width: 100px;
    height: 100px;
    object-fit: contain;
}

.department h3{
    font-size: 24px;
    color: #fff;
    margin-top: 10px;
}

.segment_card{
    display: flex;
    /* flex-wrap: wrap; */
    gap: 20px;
}

.segment_card .num{
    width: 60px;
    font-size: 52px;
    color: #ffffff9c;
    font-weight: 600;
    flex: 0 0 auto;
}

.segment_card .content h3{
    font-size: 24px;
    color: #fff;
    font-weight: 600;
    margin-bottom: 0px;
}

.segment_card .content p{
    color: #ffffff9c;
    font-size: 16px;
}

.filter_btn_list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 20px;
}

.filter_btn{
    display: inline-block;
    padding: 13px 30px;
    color: #000;
    border-radius: 50px;
    font-weight: 600;
    transition: 0.3s;
    font-size: 18px;
    border: 1px solid #DEDEDE;
}

.filter_btn:hover, .filter_btn.active{
    color: #000;
    border: 1px solid #000;
}

.career_filter_btn_list{
    border-bottom: 1px solid #707070;
}

.career_filter_btn_list .filter_btn{
    font-weight: normal;
    color: #fff;
}

.career_filter_btn_list .filter_btn:hover, .career_filter_btn_list .filter_btn.active{
    color: #000;
    border: 1px solid #fff;
    background: #fff;
}

.career_card{
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #707070;
    gap: 10px;
}

.career_card h3{
    font-weight: bold;
    font-size: 24px;
    margin-bottom: 5px;
    color: #fff;
}

.career_card .list{
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.career_card .list span{
    display: inline-block;
    padding: 10px 20px;
    border: 1px solid #fff;
    border-radius: 50px;
    color: #fff;
}

.career_card .list span i{
    padding-right: 5px;
}

.career_card .apply_btn{
    font-size: 22px;
    font-weight: bold;
    color: #fff;
    white-space: nowrap;
}

.career_card .apply_btn i{
    transform: rotate(-45deg);
    transition: 0.3s;
}

.career_card .apply_btn:hover i{
    transform: rotate(0);
}

.bg_white{
    background: #fff;
}

.breadcrumb_sec.bg_white .breadcrumb ul li:last-child {
    color: #000;
    font-weight: bold;
}

.highlighted_features h3{
    font-size: 22px;
    font-weight: 800;
}

/* .features_img img{
    border-radius: 20px 0 0 20px;
} */

.features_img{
    border: 1px solid #CCCCCC;
    border-radius: 20px 0 0 20px;
    overflow: hidden;
}

.segment_sec{
    margin-top: -9%;
    padding-top: 10% !important;
    clip-path: ellipse(90% 100% at 50% 0%);
    padding-bottom: 8%;
    z-index: -1;
}

.solution_applicable_sec{
    position: relative;
}

.more_faqs_btn{
    color: var(--orange--);
    font-weight: 800;
    display: inline-block;
}

.more_faqs_btn:hover{
    color: var(--orange--);
}

.faq_accordion .accordion-item{
    background: none;
    /* padding: 10px 0; */
}

.faq_accordion .accordion-button{
    background: none;
    color: #fff;
    padding: 20px 0;
    border-bottom: 1px solid #3a3a3a;
    box-shadow: none;
    margin-top: 20px;
    font-size: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq_accordion .accordion-body{
    /* background: none; */
    padding: 10px 0;
}

.faq_accordion .accordion-body p{
    font-size: 16px;
    margin-bottom: 10px;
}

.faq_accordion .accordion-button::after{
    display: none;
}

.faq_accordion .accordion-button span{
    width: 25px;
    height: 4px;
    background: #fff;
    border-radius: 50px;
    position: relative;
}

.faq_accordion .accordion-button span::before{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: #fff;
    border-radius: 50px;
    transform: rotate(-90deg);
    transition: 0.5s;
}

.faq_accordion .accordion-button:not(.collapsed) span::before{
    transform: rotate(0);
}

.contact_us{
    width: 100%;
    height: 100%;
    padding: 20px;
    text-align: center;
    background: #090e36;
    border-radius: 10px;
    /* box-shadow: 0 0 10px #fff; */
    margin-top: 10px;
}

.contact_us i{
    font-size: 42px;
    display: block;
    margin-bottom: 20px;
    color: var(--orange--);
}

.contact_us p{
    font-size: 16px;
    color: #fff;
}

.contact_us a{
    transition: 0.3s;
    color: #fff;
}

.contact_us a:hover{
    color: var(--orange--);
}

.contact_us_form label{
    font-size: 16px;
}

.contact_us_form input, .contact_us_form textarea{
    border: none;
    border-bottom: 1px solid #fff;
    padding: 10px 10px;
    padding-left: 0;
    color: #fff;
    background: none;
    outline: none;
    width: 100%;
}

.contact_us_form input.white_input, .contact_us_form textarea.white_input{
    border-bottom: 1px solid #000;
    color: #000;
    width: 100%;
}

.contact_us_form textarea{
    height: 100px;
}

.contact_us_form button.sub_btn{
    background: var(--orange--);
    color: #fff;
    border-radius: 50px;
    border: 1px solid var(--orange--);
    padding: 10px 25px;
    transition: 0.5s;
}

.contact_us_form button.sub_btn:hover{
    color: var(--orange--);
    background: none;
}

.blog_card{
    /* padding: 20px; */
    /* background: #ffffff3d; */
    /* border-radius: 15px; */
}

.blog_card .blog_img{
    overflow: hidden;
    /* border-radius: 15px; */
}

.blog_card img{
    transition: 0.5s;
}

.blog_card:hover img{
    transform: scale(1.2) rotate(5deg);
}

.blog_card .content{
    width: 85%;
    background: #020022;
    padding: 20px 10px 20px 0;
    margin-top: -10%;
    position: relative;
    z-index: 2;
}

.blog_card .content h2{
    font-size: 24px;
    font-weight: 600;
}

.blog_card .content p{
    font-size: 16px;
    line-height: 1.4;
}

.read_more_btn{
    display: inline-block;
    padding: 10px 0;
    font-size: 18px;
    color: var(--orange--);
}

.blog_card .date p{
    font-size: 16px;
    color: #737373;
}

.blog_detail_heading h1{
    font-size: 42px;
    font-weight: 700;
} 

.blog_content p{
    font-size: 16px;
}

.blog_date{
    display: flex;
    gap: 40px;
}

.blog_date span{
    color: #a8a8a8;
}

.border_1{
    border-bottom: 1px solid #a8a8a8;
}

.blog_img img{
    border-radius: 20px;
}

.blog_content h2{
    font-size: 24px;
    color: #fff;
}

.blog_content p{
    margin-bottom: 10px;
    color: #fff;
}

.similar_blog h3{
    font-size: 24px;
    color: #fff;
}

.pop_up.modal.fade      .modal-dialog { transform: scale(0.8) }
.pop_up.modal.fade.show .modal-dialog { transform: scale(1) }

.portfolio_card{
    background: #fff;
    height: 100%;
}

.portfolio_card{
    border-radius: 30px;
    overflow: hidden;
}

.portfolio_card img{
    border-radius: 30px;
}

.portfolio_card .content{
    padding: 30px 30px;
}

.portfolio_card .content .web_w{
    display: flex;
    flex-wrap: wrap;
    gap: 10px 15px;
}

.portfolio_card .content .web_w span{
    display: inline-block;
    padding: 10px 20px;
    color: #000;
    border: 1px solid #000;
    border-radius: 50px;
}

.portfolio_card .content .name h2{
    font-size: 32px;
    font-weight: 600;
    color: #000;
}

.portfolio_card .content p{
    color: #7a7a7a;
}

.portfolio_img_slider .portfolio_web{
    position: relative;
}

.portfolio_img_slider .portfolio_web::after{
    position: absolute;
    content: '';
    width: 100%;
    height: 50%;
    left: 0;
    bottom: 0;
    background: linear-gradient(0deg, #020022 0%, #22000000 100%);
    /* opacity: 0.3; */
}

.portfolio_img_slider .portfolio_web .portfolio_btn{
    position: absolute;
    right: 3%;
    bottom: 5%;
    z-index: 2;
}

.portfolio_img_slider .portfolio_web .portfolio_btn a{
    display: inline-block;
    padding: 10px 20px;
    color: #000;
    background: #fff;
    border: 1px solid #fff;
    border-radius: 50px;
}

.portfolio_img_slider .portfolio_web img{
    border-radius: 20px;
}

.portfolio_heading h2{
    font-size: 42px;
    color: #fff;
    font-weight: 800;
}

.portfolio_heading h2 span{
    color: #000;
    text-shadow: 2px 0 #fff, -2px 0 #fff, 0 2px #fff, 0 -2px #fff, 1px 1px #fff, -1px -1px #fff, 1px -1px #fff, -1px 1px #fff;
    font-weight: 800;
    font-size: 60px;
    display: block;
}

.portfolio_content p{
    color: #fff;
}

.portfolio_info_card{
    background: #090e36;
    padding: 20px;
    border-radius: 10px;
}

.portfolio_info_card span{
    color: #fff;
}

.portfolio_info_card p{
    color: #fff;
    font-size: 20px;
    font-weight: 600;
}

.color_sec{
    display: flex;
}

.color_sec .color_card{
    width: 30%;
    aspect-ratio: 5/4;
    background: var(--background--);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px;
    border: 1px solid #fff;
    border-radius: 20px;
}

.color_sec .color_card:not(:first-child){
    margin-left: -15%;
}

.color_sec .color_card .num p{
    font-size: 24px;
    font-weight: 600;
    display: inline-block;
    border: 1px solid;
    padding: 5px 20px;
    border-radius: 50px;
    mix-blend-mode: difference;
    color: #fff;
}

.color_sec .color_card .code p{
    font-size: 24px;
    font-weight: 600;
    mix-blend-mode: difference;
    color: #fff;
}

.typography_card{
    background: #fff;
    padding: 20px;
    border-radius: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.typography_card p{
    color: #7a7a7a;
    font-size: 20px;
}

.typography_card h2{
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 40px;
}

.typography_card .typography_weight{
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.typography_card .typography_weight span{
    padding: 5px 15px;
    color: #000;
    border: 1px solid #000;
    border-radius: 10px
}

.website_info h3{
    font-size: 28px;
    color: #fff;
    font-weight: 800;
}

.website_info p{
    color: #fff;
}

.website_info_img img{
    border-radius: 20px;
}

.website_info_slider{
    position: relative;
}

.website_info_slider .slick-arrow{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: none;
    border: 1px solid #fff;
    z-index: 2;
    background: #fff;
}

.website_info_slider .slick-arrow.slick-prev{
    left: 0;
}

.website_info_slider .slick-arrow.slick-next{
    right: 0;
}
.related_pro_slider{
    position: relative;
}

.related_pro_slider .slick-arrow{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: none;
    border: 1px solid #fff;
    z-index: 2;
    background: #fff;
}

.related_pro_slider .slick-arrow.slick-prev{
    left: 0;
}

.related_pro_slider .slick-arrow.slick-next{
    right: 0;
}